From e8badf2865b64a508f2070c3cfe44a5ffa7d49ac Mon Sep 17 00:00:00 2001 From: Jared Kobos Date: Mon, 29 Jan 2018 17:47:24 -0500 Subject: [PATCH 01/25] Draft of Split guide --- .../tools/split-files-with-split.md | 149 ++++++++++++++++++ 1 file changed, 149 insertions(+) create mode 100644 docs/tools-reference/tools/split-files-with-split.md diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md new file mode 100644 index 00000000000..1dae7f914cf --- /dev/null +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -0,0 +1,149 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'Practical examples for using split to divide large files into multiple smaller files.' +keywords: ["split", "files"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: [] +modified: 2018-01-29 +modified_by: + name: Linode +og_description: “Learn how to use split for practical applications including dividing larger files into smaller files.” +published: 2018-01-29 +title: How to Split Files with split +--- + +## What is split? + +`split` is a Unix command-line utility like `grep` or `tail`. As its name implies, it allows you to divide a larger file into several smaller files. + +## Example Files + +1. Create `example.txt` in a text editor and add the following content: + + {{< file "example.txt" text >}} +example line 1 +example line 2 +example line 3 +example line 4 +example line 5 +example line 6 +example line 7 +example line 8 +example line 9 +example line 10 +{{< /file >}} + +2. To demonstrate working with larger files, download the text of Moby Dick: + + wget -O moby-dick.txt https://archive.org/stream/mobydickorwhale01melvuoft/mobydickorwhale01melvuoft_djvu.txt + +## Basic Usage + +1. Run the `split` command with default options: + + split moby-dick.txt + +2. Check your working directory: + + ls + {{< output >}} +example.txt moby-dick.txt xaa xab xac xad xae xaf xag +{{< /output >}} + + The new files present in the directory (`xaa`, `xab`, etc.) each contain a portion of the original file. By default, `split` divides a file into subfiles of 1000 lines each. The original `moby-dick.txt` file had 16,000 lines, resulting in 16 subfiles as output. + +## Options and Parameters + +#### Prefix + +The first argument to `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the outputted files. By default, this value is `x`. + + split moby-dick.txt moby-dick + +Each of the outputted files will begin with `moby-dick`. + +#### Split by Number of Lines + +The `-l` option sets the length in lines of each subfile. This value is 1000 by default. The files output by the following command will each contain two lines of text: + + split -l 2 example.txt + + {{< output >}} +$ cat xaa +example line 1 +example line 2 +{{< /output >}} + +#### Split by Size + +The `-b` (or `--size`) option divides files by size rather than number of lines. The following command will split the input file into subfiles of 100KB each: + + split -b 100k moby-dick.txt + +You can specify this value by megabytes (m), gigabytes (g), terabytes (t), and so on (P, E, Z, up to Y for yottabytes). + +#### Split by Number of Files + +To split a file into a specific number of subfiles, regardless of size or length, use the `-n` option. For example, to split a file into 3 parts: + + split -n 3 example.txt + +#### Label Files Numerically + +Use the `-d` option to label the output files numerically rather than alphabetically: + + split -l 2 -d example.txt + + {{< output >}} +x00 x01 x02 x03 x04 +{{< /output >}} + +#### Set Suffix Length + +Use the `-a` option to set the number of digits or letters used when labeling the output files. This option defaults to two (i.e. `x00`). + + split -a 1 -d -l 2 example.txt + +{{< output >}} +x0 x1 x2 x3 x4 +{{< /output >}} + +## Advanced Examples + +The following command combines the options above to split `example.txt` into 4 subfiles, each prefixed with `example-` and labeled numerically: + + split -a 1 -n 4 -d example.txt example- + +{{< output >}} +example-0 example-1 example-2 example-3 example.txt +{{< /output >}} + +`split` can also be used to display portions of files without creating subfiles. The following command will break Moby Dick into 100 pieces (without creating any new files) and display the 10th of those pieces: + + split -n 10/100 moby-dick.txt + +{{< output >}} +ut every time ! " + +" Ay, ay, sir ! There she blows ! there there thar she +blows bowes bo-o-o-s ! " + +" How far off ? " + +c< Two miles and a half." + +" Thunder and lightning ! so near ! Call all hands ! " + +J. Ross Browne's Etchings of a +Whaling Cruise. 1846. + +4 The Whale-ship Globe, on board of which vessel occurred +the horrid transactions we are about to relate, belonged to +the island of Nantucket.' +{{< /output >}} + +Like many shell commands, `split` can also accept input from the output of another command using the pipe operator. To divide a log file into separate entries of 100 lines each as the log is written, use the following command: + + tail -f /var/log/syslog | split -l 100 From 04cf8b2ba7bb18c53e150402cf3b602382a0002f Mon Sep 17 00:00:00 2001 From: Jared Kobos Date: Tue, 30 Jan 2018 11:44:45 -0500 Subject: [PATCH 02/25] Draft complete --- .../tools/split-files-with-split.md | 32 ++++--------------- 1 file changed, 7 insertions(+), 25 deletions(-) diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md index 1dae7f914cf..45b2df128a4 100644 --- a/docs/tools-reference/tools/split-files-with-split.md +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -3,6 +3,7 @@ author: name: Linode email: docs@linode.com description: 'Practical examples for using split to divide large files into multiple smaller files.' +og_description: 'split is a Unix command line utility for dividing large files into smaller files. This guide provides basic and advanced examples along with explanations of the most common options and parameters.' keywords: ["split", "files"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: [] @@ -12,6 +13,7 @@ modified_by: og_description: “Learn how to use split for practical applications including dividing larger files into smaller files.” published: 2018-01-29 title: How to Split Files with split +external_resources: --- ## What is split? @@ -52,13 +54,13 @@ example line 10 example.txt moby-dick.txt xaa xab xac xad xae xaf xag {{< /output >}} - The new files present in the directory (`xaa`, `xab`, etc.) each contain a portion of the original file. By default, `split` divides a file into subfiles of 1000 lines each. The original `moby-dick.txt` file had 16,000 lines, resulting in 16 subfiles as output. + The new files present in the directory (`xaa`, `xab`, etc.) each contain a portion of the original file. By default, `split` divides a file into subfiles of 1000 lines each. The original `moby-dick.txt` file had 16,000 lines, resulting in 16 subfiles. ## Options and Parameters #### Prefix -The first argument to `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the outputted files. By default, this value is `x`. +The first argument to `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the output files. By default, this value is `x`. split moby-dick.txt moby-dick @@ -82,7 +84,7 @@ The `-b` (or `--size`) option divides files by size rather than number of lines. split -b 100k moby-dick.txt -You can specify this value by megabytes (m), gigabytes (g), terabytes (t), and so on (P, E, Z, up to Y for yottabytes). +You can specify this value in megabytes (m), gigabytes (g), terabytes (t), and so on (P, E, Z, up to Y for yottabytes). #### Split by Number of Files @@ -124,26 +126,6 @@ example-0 example-1 example-2 example-3 example.txt split -n 10/100 moby-dick.txt -{{< output >}} -ut every time ! " - -" Ay, ay, sir ! There she blows ! there there thar she -blows bowes bo-o-o-s ! " - -" How far off ? " - -c< Two miles and a half." - -" Thunder and lightning ! so near ! Call all hands ! " - -J. Ross Browne's Etchings of a -Whaling Cruise. 1846. - -4 The Whale-ship Globe, on board of which vessel occurred -the horrid transactions we are about to relate, belonged to -the island of Nantucket.' -{{< /output >}} - -Like many shell commands, `split` can also accept input from the output of another command using the pipe operator. To divide a log file into separate entries of 100 lines each as the log is written, use the following command: +Like many shell commands, `split` can also accept input from the output of another command using the pipe operator: - tail -f /var/log/syslog | split -l 100 + grep whale moby-dick.txt | split -l 100 From a157bd091871ddc4f63f7f9962ff708f23f1c658 Mon Sep 17 00:00:00 2001 From: cwlinode Date: Tue, 30 Jan 2018 11:50:26 -0500 Subject: [PATCH 03/25] Update install-alpine-linux-on-your-linode.md --- .../install-alpine-linux-on-your-linode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode.md b/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode.md index 4605ce1aaa8..8052db6a884 100644 --- a/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode.md +++ b/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode.md @@ -5,7 +5,7 @@ author: description: 'Alpine Linux is a small, security-oriented Linux distro. This guide explains how to install and configure Alpine Linux on a Linode' keywords: ["alpine", "alpine linux", "custom", "custom distro", "install alpine linux", "alpine linux packages"] license: '[CC BY-ND 4.0](http://creativecommons.org/licenses/by-nd/4.0/)' -modified: 2017-01-18 +modified: 2018-01-18 modified_by: name: Linode published: 2016-09-22 From f9e3cb3f9e4ef83cba1cd90bc0221f044a89ffab Mon Sep 17 00:00:00 2001 From: cwlinode Date: Tue, 30 Jan 2018 13:46:33 -0500 Subject: [PATCH 04/25] Update how-to-use-block-storage-with-your-linode.md --- docs/platform/how-to-use-block-storage-with-your-linode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platform/how-to-use-block-storage-with-your-linode.md b/docs/platform/how-to-use-block-storage-with-your-linode.md index c4b43023910..9febfa88868 100644 --- a/docs/platform/how-to-use-block-storage-with-your-linode.md +++ b/docs/platform/how-to-use-block-storage-with-your-linode.md @@ -21,7 +21,7 @@ Block Storage is currently in a free public beta for Linodes in our Newark and F {{< caution >}} - Linode's backup services do not cover block storage volumes. You must execute your own backups for this data. -- Your Linode must be running in Paravirtualizaion mode. Currently Block storage does not support Full-virtualization. +- Your Linode must be running in Paravirtualizaion mode. Block storage currently does not support Full-virtualization. {{< /caution >}} ## How to Add a Block Storage Volume to a Linode From ddac055bc50bcd210589a430fb1cd072f77dba51 Mon Sep 17 00:00:00 2001 From: Jared Date: Tue, 30 Jan 2018 14:24:17 -0500 Subject: [PATCH 05/25] [NEW] Thingsboard Guide (#1374) * Fix Roundcube alias and image * Draft of IoT guide * Initial draft. * Moved Java install to /java * Rebased; passed checks to nginx section * Update nginx to conf.d; finished rasp pi section * Copy Edit * Travis-kun, pls stop * Update install-java-jdk.md * Update install-thingsboard-iot-dashboard.md --- docs/assets/thingsboard/latest-telemetry.png | Bin 0 -> 62676 bytes docs/assets/thingsboard/login.png | Bin 0 -> 25093 bytes docs/assets/thingsboard/pi-dashboard.png | Bin 0 -> 133384 bytes docs/development/iot/_index.md | 5 + .../iot/install-thingsboard-iot-dashboard.md | 293 ++++++++++++++++++ docs/development/java/install-java-jdk.md | 35 +++ 6 files changed, 333 insertions(+) create mode 100644 docs/assets/thingsboard/latest-telemetry.png create mode 100644 docs/assets/thingsboard/login.png create mode 100644 docs/assets/thingsboard/pi-dashboard.png create mode 100644 docs/development/iot/_index.md create mode 100644 docs/development/iot/install-thingsboard-iot-dashboard.md create mode 100644 docs/development/java/install-java-jdk.md diff --git a/docs/assets/thingsboard/latest-telemetry.png b/docs/assets/thingsboard/latest-telemetry.png new file mode 100644 index 0000000000000000000000000000000000000000..6a2df14b03195808a4460e2d760d08ba93a991f7 GIT binary patch literal 62676 zcmd42cU+Urvo}l!LBIwmMX;hGARr($Akq}1_YxJUA@mLjO+`cmL3&j{kltG$0Tq$n zYk+`s0-+{>gd|Vy-#PC&H$LzC|C>MZxw6;p&dl!2?96v3(fUs{*;#p6X=rHJwY44@ z($LT!(a_L&u`p3va@1+^XlPj5oYmCywbj&w^u632oL%i{Xtbh}Qkad6EOj%d8Dk1K>rz2P=nO~mK z|J5E*RMbnKTv-$Bhu@@R2G5D3VB5hce^l%0F+Gj*tFG0;@6|N+9vM8b5OuTwZZ8Xoa)nBGFwMjV#X-YikcKxv5VIk#qJu$jMT+35i`xS^?!L z77I#E521IwXDLnm6f5U%e~$c}u0(#izQe9w9`rliq%fcOB$Wqo*D1ScbLyxj^Exgz z)iHVSnqT&mjvghDyYNwCpOjJM&Rw&gEIE#Q25TXPkR_h;LP)hwm8SPcUTMmQW`*@=pBtKqH~OSvw`1;b^ZpZWHhCH; zM=wkwBCkJN`fU*CO7akE7)1Hp(%qk_(=?gEv^2{<9_kQ9t8M(~JwC_W;C|WP;ZQHy zMsqcumR03a5k2@BjZXNDO2!XuTmiIzGp~Hk(VNn859{#`ckx!zy3z*b(rhvjRc=2x z{UOZ7gD#U!cV4maba^B)m+c^|Ggt6*xY;xQ5E`R13=2Y%kHSA)Vb|i3d~^4T{L<+_ zRa*U97w9`w`QI`}e`X&vEuy*e>hWjRA|}Emd1jk8ZVzV%)tqQ}U(Y?vd454Bg6o;I zIj1e%$aC3AL5?W1@B9zw`y;#;vOG>%pAwAXTj<#VH!@?QfbHjRg(W;RFi5{;bU|P_ zob_SHmvaVmqc@F}i!Yi)7i-q#P8;C$NktN)!uPp#RYwNDI%(F5%hUBebj+3g?4SE& zXlza6z~n&bfF_8a#IE+M=*4>pj*Cn;d4IH*wl6(@C((J&QDWkrQtFjn=DXZaIyUUK zD&dnCT_ydL{Fre<^|Z)$TfaD72zxxplUcJtoZAR zHmg6ayHx>~m6?I>D>{HbQ5~F%g)G$!HWBn!-nQK=y|#Ik|3>W@%$YYVMvvsaC=W$n ze5!NP?Mm_)bo9hqy|>%>`T4c^n*|T^8x5xnZx{*}xM{I#L9TWszSp{(&vjkGS@_$# z(Z@krL7F!cvA@fg%&XtFBwDM%A3`Jup-Oa7MWp!Kg_QWkUR&z!OBg3&OU0jZKUIw8j^-U$q&7Gd*zPMypgVRkT-*v`4x;_Q5SQI+Cgx*W(#F268)wHj#!gB5 zN()NEr)ld%Tx#oS)`oo(eemdd^wW)X zwE8-D1T@SyWH#)$=D0qw4v-MyYrOdKqA~A`>`&fdcB9jryndJ3HDoljHS9I~-#@pr zvMb+JU35GDKDzbPK>l$4z^9iR4(ZO8j`Ghmq}lHENPr}RTOT=UZzd=`nNA6jYLL*A z2Dp$XAI^OrxZ3%p<4;+^#~VG>y?b!3scxi8jY-WIAIJ{PfL0slbiE}LE`xNPc7;z* zPqDh9!J1n>n}0UDw+L&j2hRu`1oq(ftuT@UaUYk%?<(+!qmZBMbKh6Tv(%U0q8M@i z`T9^nB52l32Q!PRiqy)$-|b*9p7wA8v2ly4*TvZDAQOwwZxu zy`TpHt_M!oM}dTZm0-W1u3+_mq#&jJ@x7IRiNHAG{+K8}Zl?Q|39`5sr_RT#3J?RlDXRbN94~{$|&A*=qKCHab ze#QQZ_(Rc$vajl+48EI2jlF@e_;aGT$Pc~?J>(zazJ0#wYV}Po$!@9Qd&Pht?So%y zNQpZVGpQ@))~+u%t0tqDZF}&df|k!~uDYvlKPDxC%;u~Ms_*!Yy&jV+Nh{IoeE#Rl zAD2b=y~xz0-sk|0kig>yJ&|=e*mqmqVlU!uKDcq==4oO18{9WPcw{~Zmdn!?)9%o= zv*vWWjn}Pq-&LBK(>sMMU!?E#P9lPMBn zJ3Rd7AAV2z?(mWB1yueg)1U31^lANR_Gy9>kILm*P2EJ@!JYDXzQ_r7$3RC??d8_& zIyg9T<&7vGlT0(Xbdmx54mDbD5$ugw`Ajv?4bh*Xx2>Rk5(Bq;0};|LpeN;)Zhn|~ ze`VCzvi9n!Jwm;lo5HaYAsBXlbK7ID>f-8sYA0;Q!=jQ z0dHU}NtmD~-D&)Ri=SxOQL<6NQ3kiPGcz(Ov4oXyl%Jo7y$tkhLBCp!UI`i@ykl}v zYuENL4B1;A@C4wq_W)yl>Ck5KdraD1&8M29SpCK3U%OxPzmiu{S1{ht)oDw9tA6qe z+>^1uzI}V13*wv2S}m!;o&>}3f@o7HdeXjsxxIc299QuO*c2+g?JI%3QRiSx6I((RlAf}u)CXXI2sC+4Yl3dHOQei#$uZ-cRguLf=t zAiqdRrJkVX;A=sG2W4yM&^GA3y?fY&49&E-ua_MG?TTHYcZjuzX&W`&sMDdKwT3Ok zy?MF8UB%6#Mb+{764Yx%=%sFmD%3!+RKi;7g`5|3G`JSMyqBU@aai&7*B&{Zn0H*) zj+P2-CQnIRR#HCD*l{3ieemzzE}pYOxM#3r2jH%3{TO{o)?AJo%UR2r253SqXIt(w z;tQ5a7ABJ2$*63dLS4Q6G`f{iE|n|vPjwjP!CW*;7k?@U!P9Rkt)@9L_8lEt&{3jS zL$IZ;v_)QwLRb01XnyALKYZhc%WTN5(pe~{sjp6WAF7q=WG|Nz^Xh?KZ|C~DzYER0 zCC%ZT)a-2e2TCODEyGPU8cV5_7Q*|=-+S6@iY-OFA`TI{~qy{pQsLPA1{UN0Tw4IgRz_i*YjrK?UpJ|6Po z;{N{rV*XNM?p}`K5^{2K;`b!QB_&0vJw&|&-F%)0h`M=S`>#p@ADV#zCKDYXC<7w!_tMTk@S%n2|4 z7Dy$2!0{y0Dm3Bu&kFt4OQhG9_?ImIAtUsARq9`>_a8DU=`3fK3cJGdFa9minWg

|358vuBCc%o?3>3X{$>+`gEXMl;75z9Z1Hl zN-5Y&XZuM)Gymv!aq?_2dvdFzdzD$A7i_59{yb=;^rN(k{si2rX^vaW%5G{Z*bbu> z+(40L-9pHuqAzFEyEd?6J}22FeO6Co8n1LKqsK`EyMHJ{)%MkIPlE%iO#MI|mI#kG z-7iu^I;+R{uGVzF0Jd71pa+|suUE{!?r!x(KD9#FXDqKQ3Fu?$MR~2V(#Ki{z88QZ z#$G5l_$aey#^FMD_k5EROGJM@wO6_vyD?F<61y=qH>23lT303elmEnS2&psPx%<1~ zkBS>&#Rs%Ww_&awjtNe5M3!uaK1cdtKGd1N3~KmLwwa9{z;08Hj+t@4G)J!O|7pEA zSd(X?xN-|USZ@*D;bo)WQVU5GEN7>s5zmERk6|_VMm9#!Rx}0T zQp0^$;aL@%CTG-@y7?&M)OMEWJ%&O(3WLDdEWQxhfYsTT;-FeO4IdQllH5WKZ4Azk*7}R zv`R6Xv3b1U8-sfYzs2!mZ86Idlf33Sm+8UuMjAqYXzmxyJpMN zY!PmtyNNI09V?l#w~LzY>g0Dov>Y1~JLm_dT5gC$PJLW;B37ia9)!-1n}JDPYQ#xv z|J`SQY6CxFBY0dyJ!*Pj9>a_gKx>&_zJf(|6F{FYvmSa--H?Ul7iGYJCa3MZtzgeB z696S1<{?4KC}6A}S5KGHyd1cE4Y~NC$F2hMr~Cf2V8#^)XO$j2 z6Zp)g^_yAY*DTK&8UQIz9A0(w+R}i(^5N%GL*4o6?}8Os?K`bb*jMf_%Z1G|IS*lF zytdL<)0*Id@+~V1VV>H~$E+7Y6UEO_WtQ9Y&Wy#KoYTM>L2xT{R>53)q7Vuzi6$d! z7TFjMEo~tL3h56+j^kLd$!4t`XI!#wuX9ENrjnQw(Bsf3G`aO5%YS%2wMQdE!f}W- zcoQ2(D(&C0G@qT8&J#`EalTO}-a-$vmVGUZI_#Z0a!t;WcKQ7rE@R`aOmu-G^smP4 z>s@xWun01_7pqjCBaXf-D-$l(a{W#cHsHDo;5YM$BS|Y+rJLzUHC(vQdOpKdi_dL_OW^B-3U$nqV7I@7mf4Y){TnpCp1a zYq|se`wZAd*XRd*-8p@i+0xJ3@8(e#_7NUZj|~+mUJu4C!#hxGsJj5l6pt#j(8@Ilkv&TF3)9y*+K zJ`s#mZUMi?>P6O!*gZ-uXBTIS)*kb|hGg-ziBHtYnpJLt4j1oF<=nRm|EAqY*ryOS zs<=zO+V&J_BQ#**x-Q6;Dxhd5yE0GN=?zQ$2hN5y8rUtmiF_M-$_%?94>~z)Xk0uK z=sd^MscZ|6YE)(0H_9%vHS-w!*=b9hjID?ViO$l*bZ&uOe`XWng{dq<`ezMufdi(AUuYhuoN%)P8$f$6DrgQXhMF6NN+2k3PbnazwT%T z0~Zw85Ebi8pB4JB5@wcvGzR0wMRT2hG?zyc$YkfE7sSc|hHl0CZxS zoBj`Fzy4^=W-)H>%^3qtb6v5jQSPDgJ>0N)qULIBZKRcK-49OiwqWo;U){RcycuH0*?XpJF5-QjqKL=n z*4))D^`;=yQ0x_tmEYlC;j6s6l+P*3@9&<2exBa!8Mw%ueIc-Qcq|M>`KjP3{-D-* z=r^idtlDtxH7@wiXrM&oarLA~>h@Gq*;tuTkGsJ(U!&MLNkD&Hu6|p&1S5HwN&J0s zcA$5HfI=kV1--I*3nxu+pd#QK)gP%43Ej)}0@! z(2Mr{-9sBBg%czlhgiJ4)^IyIEq-E+8n zA{U77rn`N1sifY2XwUa-p=J5aP>&ojIPUni8L|Y58!~KdmIm)U&$_0I;4_cfEd_r+yNxO_=6e_?Q=@U3Q~iqSl*c)f}gv4l&{in%<)hf4vlE#ughs9 zY`D+DL*wOQuOOV!Ppy_+7EJ0Jl(QD-NV5wzB0E8`BB&a7J+XVD0p9hX@6d&{D}G4M z&grSl=O#k|K8!Jl zR?J=WSV5M}pL9=D0BXd59`TtpE4pW$=ut4DdC*|=28*ruLD}+*oE_^ecDQD!X0=%2Eq%b3`q!`%%>)+cwl~#O6tq&{&1h2-z2DPgce|=6K|<_cQDcyE!U(PRq*p zJpx$OJdfd1^bED#9gmR}PwTuk=a=?>Ywm~giuqjwSwgcR50AA-s(9x8FUPw?4f~0` z))~=%!|A&U62@Xur?GODb+BZ4lpfGVO=tgOCqcV7=SW@+Ol?)r(-iYDBUE&q`&w6@g@ z5IFn9rVl6X1F1JDxqSJ3StQ?R`M#=X2s?$O*8)b%sJjnW1dmWQ-WipBg|VZCNX^r* zoW8vb&^%KNjFdhC0UronCg-3`Ye|E(Txgji3+5(Tx*mn~7aEa4btDJbCWX_VH1Bl7 ziy->C&6Xxbr^p?J{PuW7`SK!@)VLFd{gX>SW?RTW>7o|@VP>@|+|LBkJZ25IPh=8v zQk=2n1xOpxNh8cGn_Z|#@$}5^11E8xs`<%l&BU8T)p*3TG`rdU4!79$d23WKyLAdr zffUu{9IQ?La)bpOO*>5q`&xEVBf~_#GF!nvdoxf);uqG^n}>QIGL|sr9xVcp0JGpR zER3>(G*K`66>?(Da>G=VW^G%{gwZqQO?;nPUVp1LYgo0db&U-!^^MFBZ)l1!<2Dx_ zLFK>nCe7#G1=bABW!y(1lzL|0mBV3583}HEGCnHM^W;;+^kL#9336~~H$R}zDr%hU z=NFXcuoKs;I_KrJcg#YNwe?Csq~?~WwX5k8#FenO6lU1rg={o}5INLp;u^)+3V1k_ zYb(k(j>sS(MD*&4O=^zkBhSCE?!DFGHj2M7vu=*-=vyIm)qtlqV&T>)u}WVXORD%! zc$axbpN1O5oLAMX$IvZ**&66L(s#&IrwAFw>032iP$&TQw+a1#$Z8a0ir-^2Y`zJE z9gb$?Oznh6St`lqBAbLSJ9D-keij&lCBg)Q!GZyLnKBi>?c}JrkQKr?L)sT_NA>5N zf-|6kIK=UpnJAkua4+KsGvc_@+ATB)@EUpabc-zx}=zyXQz19 zFm6fs<5mif#gj5-pDSwG(uXczL$~eRfAN1t>=2+G4=G^JJPObcjbPJ_rO2d1j-_z} zeV!z=puebu8$9H_@Ak|%Qxi<+XLBElTo>^A--?zdrr+aR2R}Y|?)N?Z7+Ju486HiB z`w@yKPbavg%@rcsabf6R0+%l+rsg;ga9Ji+EauTnlVZ|jT<6>>bPtEc{f7;rEJS4E zGni&Zf@*lg@T!5mN%%hfvR0Slx_*xdx?GoW@{0kFYd?UY14cMpp%l2Q+ZTF)n4N`e zauDi+o43p~3jw!qo&JtiQiwXDc(M_*vTWPA|s-3w}$Pc!#_>B1ZOcSTHnsN>G zWw7)Gf*l7Ebgr6U6TcYnrf`?{-#)fmZ~jfpQ$?XRibIzRY^yzG^Sc%K`2-n*AY&YY zaZ8Wk>RtdhMTPqjmxq8h-ffunhwbgf`v-_LIilD61l0VV>Wn z@3B1d?ZKkRYdRC^0ipJPhE4c3h5Z2*&jxWGwp_c-Ps@18GK=iiX7sa7TYBXks-+4s zx7!e;bSWLQA{n8#b>#o`Q$R{dJw|$S;)bnAtl96bzB+cRdg9kz7h08vCzv>+1y?bm zVyt7&m>X0%>koSna3`eAjm=vVA(WLKy%-c1rv{s2tIMo|EPUD&wD#*IY_HS~f_Iq>2X9u9NH3&#?y`wvfN{Q& z2hKVT#*dqIkHDd!T{fk^>z|ji9btJs+!^#ic!X6Te|8pci5FWl9I2m@5d8NRpHUH7 zr?cTut^`0z9N4$Un4vG?DCFYb^GoVmZ_~HYrc2+FUoaA)Pw$wld=j()jB%VM{>5y( zIjwKW_Go=zmE>$KxR5WC#D*xvByfxRx=qYD^aFXprmvr}(UFi9%0DL7(B*DQGqb-( znSr_oJ%*8j7v85It3)`SaHTZitY@9pF<(rPjLqr=S+MFYN|Q1HJtI0ib~p6dzy|}f z^-(db%U+}aI~_@&{4V_rS)^?uEF_v`r;a`1SS9`M={|7>94<%Ww%+;5RGMkRHV;1E zZmrn$bEA-G{)n112QnNLc-x8o#RJ2sQd`87@e@Jut?Aazxvcw0l;rlb_lKB7BpG$q~b=Uf}QpBHlDXK-XwN211IYRcK4%UAFuar zPJd3Ch4x*N&>Z4qT13L7ka5kSq}O?OMM`{>@ZY-hzSCZR^4CHpoZ6hp0;6T!8`>ew zk8C_KU%331-7iZh2`W?ukJ`h%bqU*nFEf`{xP5O6ZER?#6%Flg6W0SxE1vc>Hgt(t z=OG;3%lj-ETYeI$K}mF%IqhF6e2MP7atgQF^9@$cMdQv%d9gNrg`^&z0M_-%EmgM|v(k(`pu~N5`9OYgO zj&*y_7X&&EkPQL{0PNQ5QXHJa*V7K)2m#K=$=hq3@EeBKxuJ0!xX{&DpKI$Av6nVW z;@~d71)=Ldt`heP13b^y2QwU<%DaB;uVs3~I$CBk!i3v+nT3>Y_yD#tkCM>^@7LR4 z{DMKQRWRMTO!b~Ebce|Krmn|1JgU$Fz^e-)HRf*@^l8}-=NXkwMF zzc6ogNha+&u4a7w_?HSvYEtoQF6xC>yD?g;S15kV4_D`6+%WP%X{PvTZ*}y@3Rkca z_oI{IYKi~DbVsAh4{jKK$kVn~1MA}Vp6z%*c|i+VBi!lGt2aYp7YtcZ>KSR}GF1E) z4cRW=DzzVZbAxry-+sFaNW$LenX8fQc=8+b*L}@(quhs)#~$q$azErKc5Y03v*&q# z=|v6YxMg{1NrT%N`K1cGHu|gDx{N}F1;JhKe4*Lted1p5rRMYk};mZF*bZPl$~uue@xq0z($S!oZ`O>6pn;ck>sDfmswDTLclJ{)Bl z%RA;e_hqfYvnbu9W0w5+HPR0hD%e@E0&(P<#rc9*d~Ni@#3SvP{isppEV%-?DLd5b z>!@$RH(CY;!uG^1>wkH9?~7Z%Y*I9tbBEj5_e{8+-Zl)MC`*^Av@I`aE1wN^U5T)- z4@7^U+YkK9qw6;@8s7ZPc@aSNg0l;F6bX!0YhRBS+;BPUye!+sEe-_L*^C@~j0~RY zSuC6u2KF_)5nEHTTcXKWq&pOVRYPQy)QIVHPB-e#=nDxj9O?3n)d}VRx{Ilh zI4T4-jPm#Vc~)stPp?JbRLCND#L;pM@e~7(HOrQpso$Igi%=1EvXXqd%Zj%b9$4ft zA-ws;=tDI%JUU|I+Om}1wLj{ldI<~za}&P#P=Cbcy3=Ym!WGM8WuH-&!iEv|K~sV8 zj&bnJievNr-@CtwYhemhi;=OhNVz&0`*T! zK6f0T@i}3K`=mq2t!B-)jz@U*$e5{Rfdr=S@2f&J@geDaZJ0D!;i*p+F)jP%cxZ1W z9M>`94iO3^?2;ffe7)PVSRt!M*D}t{Jb~1hPX4XPr6}9XdC&-#F*R!%aUG??;Y|%U ztqhPeO$wA34rXriMSifsz2d*v!mPZp_5x60;t!a34N@ z+GnBr5P%&jv<_qwFbH(IOS6??dA`(}7T%qZk%I0S`>g9NxC3f+S{ED$ou@y(Yj()wW(C7beB zWdZ@xNHf3zEHubXRgXte)=hsx&nWcxpNkroiPGmTG8Itb$f~+vV+A#wBR_7ZUVE`F z$@=e-l@B_m90Hb~0Y>$dO}%DUAm>A3c|3Aptv2CH-NThoFtRc*IJ~Q!&sY2bI3RRF z7!kW2RY3!MYI0l<@$B2=0551BP@z*>W4%QxGs|{(Vp{I4jG8JehpDacKH5B;`nQGN zW-t`{?T-5TjZ+a}Q#D6ltOrZ42N0$^nZuaqJDtOn*l$jtIAUWbH8(VzpJ`-*Sfis5 zidZ*;63LTsCe>F%>ayMyUGTQ(oh*KrlZbfF{h?(KRPZPCHrG;#`*D{hzK+XnzS%dU zKBywe&F3iFt*ueX?Eu0^R4ukGbIEsZiSQcJ!7J3Z3XC>KE1?NvosYZK@^JoORJZgL zklSLj@mg?d`VRz}DNm$d=9)+|4>ji4Cl1#^o(TQ~WplJ@OmQYCD^fj+mnggCsmKxlO3|fm#ywMkAeU*z|WBnm}z>J*&!CpOj zLYZgeVHV`i$MMnFX#{kn{*Ob4*Gcqz`8*3F7VLF_vNW|YRZ<#?a{+D5HT3tnn`8k7 zT-C>d;O|9hHl}&TY-F8z<{=h&1-d0e-DQ_tjIttBDdbzVbR0&yJf$vSN{mg-zL^^B zWhY{zk0YukO zbc+_#Yuhzb$azGnVxwP>WW5gGGfD>z^&yB`S)m8rf!qg7WCT?3~AzEM@x$~6R^enJ?U9(KN zX$qYGFDjUECecBxRuqYswVB8b4h{Be$&%V&fsM|}Kb_DS zcbjn?Xq+a@CkLLJAQTr&IPEW3diIT|&iXHCxNpVAeTA8Fo478;&-v|1KxW&Z3O1s6 z9+@ey)wf3E0oyiFFL1ofXrvzy_}2aG&TKLED;sCAI_Gf9jgn1?iLGawZ=vH8b@KW# z5$-mW!@^$>?z?}sx$m{jLbn}LGGB_f0{WE6fB1qA#^S(Bx!HbwO`TTRR*qjXOeffN zCckKteg_3E&^3Qsz=LF5tDF8;F`vi=i;6gechEY&hLSw2okOXCAAes=eyh~opKmItHi74hX7U!Qy zvG1(0j`f4^+;#sjBxoC$;*-H^u2;9EzLkf$oSS}N-cT{}mSi={$T15R((-i~+p%LU z3V!IExHl+c2X3f6sy>NE>o3rKPA5KM!tZw1eV1Mj{V}#de1>8?f=@shnTSbue#bHQ zDE<}n_Hyl%rP;&-f+j*>FNiw87+^N9OLwRysl6Np1p!oYEaS``6%VcuxD1}vN1x1+ z<2C4rF56byvo3aiVjg|#j>cLGqn{|-8FO_LHaR2(UJg(8!)n&i3}oqdkU8?ubp3F)(rbQa~GAR6;b1Cp-qH;#dnKt%$;q;D# z0=GFu31k=q{Gm_?F&Tku!Nk=993p_{mxM2V+B|V&(lVSAk6)#GX(r$nwQc*{43n95 z$bMa})5uSJk612wSbg1@n%-zf+&Fm+O%u*=>W~I7;8W6qtbh7g|Lby2EKX^F@u+wR zA9sC|P8E7izw6w|)fMujbNN#~AJE(XI_Zlbv^1e4l+1;6ppqz=QdWiDg?#-xiD_wr zTW*ibA@A5rk-mq)OH}m}D^?kVBaRs&69oPWYyL3YH_md|CE8c$Sbycp9N|JnPKQJs zvnpS3J$bFDk~_l?65C*b&Md>B!HGTKnyxv0C>Tyyfr;K|l*vgyekrK5_t!?;N>YKI z&IFash6S%DYiwJleu5t{9IfNDKP#R*E96-iNaHrX_#}lpDAE0Q@(iS!iAMDq`}bOM zF_w7&`=|C|R(~3v7(+w1ES8I00oRa&Cz6TDk?f{&yLU?n2g0Vy!#NCz=k`J#<6iKf zi1njJ^Tm-mc|pj_vs<{X;~z&ZibNr(48a~x!$qk z0%ibjTsbd{5&fiLWrTKHIRr;7A=0-EI%dr3k7F*0 z4No8>soEoXK7sZx?U7{I)6CJ+=x1KBc+kd~%)(4)uYIJ{&^23CaT8!5*UWZ4y60Wy zUqsJny=o)xu5hskD|E2#ko;`UllHWUJ=V!vCZ1**=Ms%9a1p*|Rod7}XU#num>13n z#cPGH#G-{I754u7qzpfOPXBFsVj{J;YpUL^lLK_zN~1>U0?`dTvr;T6f2!d)$ets^7o2{H3W{m%>~7EN_5;cjVjjG^SYg5^+l8S5Qv!uK{{l9A0Sr(?8k^St;QNq{t>=Pc-!g0b4fzbGEeA#Ax5g7G>b=o*4CCV zhH^7E#Vu)Z_rcD=!5llP(5vDO`iX+N8P0zxG1r|l41{L?N*Xeg_gb-~h=Tr=gNk4w{F@f_hjl9FgpbD*X z8PkaacezvpX<1;+SggHalT$g6mN`uKuOsLaB8(0qJyBuX+6-1$tlmR~Uw4&&X|o}H zI{M%`cQU$De?Q7Oe&mwC^B0*k#tVl`(nrPXrm+olBz8NoJKl3#S>Z0bCds+nfTAuv z<4URr7}8AL`pY>#;?kclnRa9RDeW@4Q+HH+s-pCEQHPm@@lBUK5%kBGh`;ve@%1yK zD`>f*E;El7+%VshPkMJmOCe^LBGQjNE}gH-8C?>7oDlMtg`E>SGozsw?%9_vE!u!T zTfZ1TcMA2iT53koDIevZq-t*<3hz!{`*g^EzBOv;QyEG(!>Txma z<}6Is#9wp~7qd+oRa%NZR?vQF`%UCm_LX=j9qSvDeSy)H5}A-Ke5hN}=TJD#vqNti zOABq}2HHQ?DE{-*DKNU<++xlT2~N()Kx;m79nO#T#mr1Gaqv5pSv7oc#eCGfT=klb zM`MmzoI`Hu%!u7gqi1_QeYT$B?jr@lS{~^jaDQcLF%IBHBH|lH^Z>1G)#5EX5xP0b zv(Vibp!saGuP)NM`epPil(@y1%rDSHRDBmzh=A$~^zh5WL-rKb9v{P86H;AO-zrJjdaXU;qgN+peFk z10my}2iGXJlrqb@ZZcs4F)h)_ZxZ^xRQeaPv=O{;5G*fKy^J@S{^PTm4bCHH#lMp9AFG^MQUtdv$(4 zl=M2R-JivM@ay3!oVEavVwM{bl<(_bBs8beIyoz;Dd;ps`MCR^+9|kIUHkNX_m_pI z0W-fYBL}F+@snWcWx{K-*cQY=t=+L#`>Q{9QFRaz*z&*tbIGG@Y+cX6s~cat~;8JKL#7C7Ez zk*N*nkcTZ`3SCvG*mIAF9{Ww<<)*+zf_9gz<=5SQT6M@O^AT5)rboG<=tJuMZ4Rn& zVo`FjywcS>a(b&V?UBsPQ-swd5i<>VMtSqboe}^1i1&H`(r6CI=V`H7MK*SA=*Lqf ztTAe}QiUmLr>_A8wVGEvBlexk%=$T1`(9B#`;F+zay5eE`zHnfloobAncil3 zxeeJj{nC3ad)*?}j@J0UdRuJIwUYdU3|3#qh&2~IMBsnObOi~JTe-HRO1I{M&}DPA zJIV~J8hzW7Re2B!5hdQD6^;+3K7c#kap6XC$fF1N&j(A1debva-fVYypx)RqGva>W zp?~k=r7BSNG)rE& z-@uyd{+OOdE>P5hH^R)LLQuh~-nHtIl*1$sFyy(s1amkX-h#a-<)9Nj>on6?wJzZ@ zdJ6!VsWVK$oWHsFoBt z#h5MYHseI08bpZDH^GY$If{YRO2<1tzMhYVYUMvkNTP!%9need80!mIFI)ydTPQ>K zU;JbNx(42w7u#rLSYa*p{XQm`^MR7Dop`K%5pwf@xp?thZ88hlJnHnN7rGfTb-w8F zqZp}b#O^P?GSx^XXdrvz*{Aa5-I~Zz$#(cR>t?51lF3d*{y?7LVa>YmCQ*+mZRgVO zxta+-Og9IQ(gwN#kVSP2+f|%}Q1Cw}uFH6ln=apI-IJ$Xh{k$wr&zGpjN^E#5g*@l zMaDp$NzEH_V4;;>h2Ev<29-G_`G#H9{R;Bl7g4L$_J0yzrSwTnU~f&RG9FG*P}+=- zyox-e7GB`mSG~6mRh7!TVaEo>!G8S|4i-tw&^PeMp6&iQbdO}Nqb3^Fs#aMX>b4Rw z#3gpi)B^v@sr8!F@|7qLm!aD5(2^rd%A)w{)EH9JJhHj&S_}jumRvel*?~aS$Rfrf z#KN48jAmcQj`!__GJwKMOYam&_WR|8+I(u-Mz}Yxs{8FP7n&n5TeIZeh8tp)+k;=z zP-H1gz*hg9-D+k)erS#ur9*-FC$XP11yQ6J;hhBczR(6gTFFoj8&o&U@;+$&vMs%A z^x$`nyl-(%#g_A>8;oK(A$!pR(8C2k+>|3x5i9U*f4LyVb|d9mFNG1+*B&Tj&7Fmk zw&5AIzmyqT`@Wy6+BmHInN3CB@@KYDJ{i}YeP3FQ)eY+IsmtVH-v!&g#kNwmLn+Ae zrj_*C2YB>8-?mh#V1^_cv_V~HHfH|N3BLC>#k9f}9K$1yi&=XChZ@~l_lEAYGZQBW zq|Y(y*EByI0DPnkI*oXkYGdd9!^GF4<(wj!U8V_Z=rFUa15jxR& zF#Lr4{oxMZy+fPNA)kgx?)^Lolrvi1w2VJgDZZpK^tRRN*i8Kvct{}55(Xg6xVV}p z8nUwPq}YTunD`Tm9`|}sPw0gAG(Z~0YhM`>*I3J4%##k(sg_Tfo5)9b^@x5H{r0R~ z@?$j7mVvfajN{gCvp#JUoH3G#F}~P$d-Pi(BBA7bm>AQio9mA&pI&gek$e7~p}t5N zINvC~LhuWCx^@?ka6o_mL3C7T<_2>S9r1f-VbS837^cUpm65*KMYKPHn8i8s1G&TY zhKwF5jH|dkm`}i>kqX-_i=n3vHm9U&jSo^>B+j_%nH_U2HMor3k<mS2Vby>=PaC*8Z^G+Ua#qCOk8cCa|L?sz&0_+dROU=Ovtb3U%PiXMv)qCKm%RhbjLKSu2Wg|G@e~xox{n;90C^OO4$+6I0HAyP8S@b# zV~U)DlS;q8wACbwx*S=sB@=yv8rjaZlcS^z;(^B9UMQ2H@jl9t6ZIxl7g;5RR8Ezg zcBF5+O$u_j~?(J{6Zm1ueP^cJcw$k&-CdlSfvydAwuJ+W#9XKL>zwjh4U^~>DqB# ze#w4Mia1_6fq*d>j^oTi+}A^%O6b2$=r;u2TrS%mU+K#rshcr25U#{?+zz?SlA^h6 z5?|r%=Rr28{L0N$%n}c*_11pC$#|qXtj?1q>@&ww_$QM`ay=OEK(qVS@g-BxlLGTq z4M5FB$~yiPod*fd!hGaXaPE3t+X$+U8YZoa_cM>M0S3~gdk*x~BcUm`owKO%#{@H> zIjjP8OLcfvb(NI(RQ`6V@x0tPDpTxn{s_uC{NX-R_jNf*-K?h;$-4Z~Sb0gvlaNme-_T#xIT31{;xryt$0IXgaPDeY;z754OA zfv%|K5;HeJmHRkgFlki*(|FBL&3d}U$XO}t*_ix`wlG?;UVGh`0+^ArAJ*)!IFnN?e9Z}r6y(RXpMK+KUZNERBB@?)ERnR=8lPptY z)#I`W+8T!Y8u6`Lsualp%Wh^vK-KmpWiL`1=K)!USNmxTy3|x*hK;@-`#lNeY&lV* zy#dI2@JDX-@K*Rly*mm+Kbz}EF*J*$pn(*5Fx_!(=}`9ArWI{LM5EB{HZxr}ZShf& z$&sLnR-9$LNp!XpHW)DN*!alfHTU?cd6J|{;Ab`>p^RsAgU7Pg+#Ny0C?GQT*b<-@ z{MUy&8iw^{Q-z$H?}RHK@2G`-6ivMh{eYD%#AK{{8Hifj+FpwZ-HxrY*g2t8_v1(APrzJ$N)v36OPc*_WZHlOTA_~SNy z7jabdlogK(4GmWx%LiWU&?ZO}z)hQ7O21lB>jd4TTaDU)!};k!Sfyb6tp8Ry46{e- z91F2tq`$r|^vMU%)7;W~urSPdjnp_a<~R1$Nhk8rO`AajBOOwkNe``bmht)Cfb}FZ z+uc6%@p2n9s1=TH-Bwo?*&P>IR~)l1jM`kzq&FF12^Kar7_SQg0ViTe853pySYkQ<41*P*- zX7_(TKpCp)E&)7vp7^wH+%gL$Q~zj1@@fzDA}@xbs;8wv42he2Qc*`x^2bx^Et7D& zhCbg#ks??dwV>pmx&&}4h|8eNg^WeA{W@KRFYK*i&bj2yD>eV~N^6;JOhTwEcNHI( zyu#Vlus=(m7mK!Q<}LbujQxBt^Zm){sX7hAT<^UuVJh0cT(&)xn_(GNuxmG}q*M2; z7-FoSZ}}M8r&o9|<(R|8vb5~IS=CAKF7BTa4A}{HC*^X#Xr90OOA7GDhgx0w4@4Q|*@z3`^=0rY+an|y(`3s;`t4^=6O z5a)8?z^fHd$a|r0)tbcIs?_pU-1IZAB{?JV%2mb{Mmp!aXMWnhbG)!5;+%dtz21Ja z0D}u^EybS4TlK|)dQ4vUFRs*g%-(eGaZYJOy*;YKtFps!b&7N$T#eR|R5x+EsBRD> z@IE&!bxwqZY@{J)lJt-&9Lj(`n_p$u$-O3ZNrw}Fei17+xTcvQrnvT?C`02* z=;6jy!$WT#w?Ao^obXEj+KDI06*WhwvicakuI*~cUPjbFqvgE6a9=(3|8UXuk4K$d z;B$pmP(dBh!A4bRU!g7DpZ-9J3@h2((sO7I$HDj7F-GnoE(pr*)c7>}_mtB7mLGQ zx=XqRX#wewkdSVWZUv>gQ@WKdN$KuV>F#cLC+pd3pDpY8e9n8FYp*X0;m>`~o@4xC zuyyXN16*jIf1hX#tR-{K&NtRZZlk@9%3gN#G$sFGs1qMR#0+r7LJzIlLpXVY$tfV| z9SAK@92gX?Tkx@^no*-?PX6Q|Vt1@)OGeuAO7t4t>j2ujd{TgFf_l5{Yf@$roZhPm z&gq0CLcG1c;(gvw?k_EBI$6KHuC2y+XzQo*MP7Vxmqv zeSb`zf1t+pbCquK=Hh(NqVc$v1l>gg^4g}eA9LwuTViJoZ3_FUO{s02Yq&@~(uQ-Q z62`{%cT%^qu00`tOS>A$lEdwA?Y^3HX+D3y>sOM*CPWH#-8GE)+fC>=KjA$O`ikI$ zX-(_kF8O?sg+1D)u9f9^sixDP2yTD)l1=tnw1SyLWkPQILrJ4-lpj`r*N2UuuU-kT zSruE7(+7*~vQauR%tX&gR4oGUZ`Osq$W*O43zYFb>f6?f?=*Vt6yARi3nw;A{n|b^ znqSwd>OBD?a5in2n_F2Q?H6XUDBuU_CgWB-5k)z>&Wt4l{dV893@3rUAo22zI!AGK zbI~DlcXJEu=Z-4tx$83o_wi;U0q4!f4B>e&*t}u->U4P(SS>P+`Z zlNEu$D51xhwUXa0d99xC71TXR{(`RWchW2Q@k{CJOi!e#9U0MR$B(-8N+PXmC^UWs=5K-qakw_I9EoNzjK7nmEfA8%0;}96o8M zXH|CKh8;?Z@6I+XnI%9y$qI%q%o#;&u9f!2mLas#qQiF*b}2J!wVP}d&z8GD`Qb3? zV`cvPSN2;S_4YTwq+7a0_Ml)>-R5ebp1<@aIy|B^|NX=4cxT08uL5tr@4k`Fh15e09xoo7UvUc3H8Zk#G2k?iJ{~?#BsHhY6%oVpZl^=Qb!yOn6)^vtEh0AmaS=Jj ze6)D3err-sR4Ll7ig3)~auxgUS^&=3aA*TD*%`XaW%)R1O~=7oqc}q^b+#Q_#hK`2 zqCl|OoIhkM{j;ra>pbBu4Lbq8naS~+Y;%^(_1v=!Bo6PpJ7%@nTrJBDXSqspJ>d+e zZ<2UF9qpb<-3-7!5ugB|pXdTH%+=NJ*QoWKBqNvV;Ysk$N3C~1n{S42b=(6>$ZRbW z$+4#y!j0GUOoF|RKMnCu$E8(S?fRd+od3K^vQT6zeLIn-FQ>P6)%ry!NG4v_&CEAR z^B3thff4x8p*lWgIu zSVVX2dD45&_-aQ>$x;DIVP|x{`jkWGb~0T3_8TSprcp67&XB-y2pKlbhAyTR5nt){ zRM~ktfhTh%i}_Jr_AD#xY5ja@Sh$e-6=unhtjo%8(@WemTo11HF^)wJj2QKa5_4h<2u8hrAgi3|P2=I3Qst)60x%c$eoB7|zI1Mi1zb=Tec{btAX9er1eZmQqJ zZH4(1f2GyCt+R~RNA0h!+L5=uw5(U)&IMJ$Li3@*#-LA)?Gn_&M zyv=ecleI_tbedYWj}c0sGcwp?IXEHM7@<@yb|;Pp<$-Ff=p zHr03hGCTj1xz~6;C)~xsaOS6(^N>g@r|rC2qaQ;SOILH~as9COZREXeHcztYC)Nvm3aWIw#gIVrgnEpDeAEi0-=HPjEvv(L|l{7XAq; zjWsG&yAN6~!S(Nsj-7E?nE{?4^v!VbI#FS}2(`TFqu4c7ThSsV0P!_f30^M+c`yU8NiIcPtRRad_T)`MYWte+wthww=r zXS=tCYNkY2a%AgTpu$(yLi}?xeKFJaK&hcZsq$t^c-H2o@!y}4KpzjaP)3Y_4iyAX}o>dN4` z&U5%iy6D(}qb}~};W@Q^-s%U7eDm?_z`k``!*wH2Wigu&n*?2_n8kW)Veoj3ahHnmy^!nb~(L?&Il>D_k1QIGJWqAO#{ zyLf-&>kMgEsr3$Fp&5P~&9cL|%IA(-bjo#_bQL@}rw_D$lYXajR?bPKssNBfu<{r1`h# z;H0{htS>a^miccc;V}|18&{GGdmNG@Y@HG_7MbKM@TTawey8qcVKJ-r7h!{8XX<8w zLkw0?0@YSz+!m&-{)Y=46(=X&3532Q&tSPJHuiIZf`Z)=Js=%l3rzQSZMD}@C}ZHG zs;cvPi5K>m7c)u|;h9E*Ule5}69}|8$b!9$8oNT;^Y`#u*Vnz!1iy&6qJDy@fBlGz zl*UvPA(d~vet0FZu3DM@DzY$qAMBX_dBK5PL^_hBujgaZGfAXaUtsb?gI{TM)o?Ys ze-qHT<5V_}=-e2re3Vu~fW@`FZ@y=lx)s)ZVpx67kB&tv{wfhS)DYJ5e#u)SmO z5&KGxp`FniMJ1cx6TaL2XFU`!zVx9G1E&lFnFf-NN97ZXh{NrLQ2!$(lL#pCfU%;U zB-Ro3j~D5IxoSdpc>JXN=U}vA*A%~HJ?{GtJo4`F{q{GHM-j9NSPpnqc4!~Z$RQ|S zw0zC_r#%-~5o9R9xSOHj@CQ8}Mh`H#|DSb3q$+C9OjkEekIIF4^NR6Lhv|dkh6*oV zDJMve&Lu2P?6aQ->{(r1T^x{HxV_3C3ypa!3P7M#69F;!gUF(|nDL%(7B`4w1s?Ja zFgFiG(a4bj;o|{ApnR?06-J^~@opf&*X#4uN)ep*`e3T`Po46|YZSs)11hKoC%H?e z1MSFv?Xs|k=8;hWn8hxUX{phdj!m^$-ba+h`cq$zu>Wr_RTo)aq2mgVl>zWYv`b>g zEW+61Wg(KW1NE|Fg$nJcuSs_0Pu1GP(DYz{YE1$3u8)_QA|zN&I6i~aj~^%%09FmV zN)OiKjgJJLR0iS5^+?m_Bf<_gWpt)Y+T(Sp;sc%pn^7VCcwt681@)#-RF58+Lqsy5 zz>^ptQXfkn$Rkj|@-xbhqIoJrKPH4wW!wyNS}lkdA1@=4b6l z9HZvaB0xD)<@_sq`B_+o&;(Buw*iy>{d7{>OqC1iPd7n~ivIQ4?%7f>%WSb`1yXUL zi*h(%a@ypDZyf>srQmxRd-@7g+#&NkiM(B*5&lMYcMy1XoPICxw&_8J_HKZ%2+w5_*~)^6QXT$DgUC(rtqPrn_nOIER*Vb`9B#@no&K3P&g7`jw$olJ3u>g%=TqX~Z`2uB{hKr@(-Rx+2_6~yw`ONO`?+rUdB@4vt z%-v=BHe8Rc4MlmV!UA=^<9?2kx9tJ1YYK%fxAuyemw~3{bG@8#QbPH_sccX__1=~V zn_(x4cEkG;631cD_j`5gTIYMeJk`wM?rWNF2LKtnJFk!?FynQcJb%H!+ePN>VdT&& zN%jFS6!TnGvqpmMXO+k-jjUVnFFb#Dg_G?k-&_3jc~HYhgy1h8CvjONeFr3dZX9$y z{mD+n&@ABmcN&iegJ)sH)k9BwwHjT%>D{Hd?|mcWG@oXw`DrjwxGOA|bpP9ZeetgQL2-V>Bj=Q!0N;I>ZL&->zaXV@9?ja1O>0{xz$tkFO@ zPyRHSgjL^1$8qE(?3pr$iuI{Ybmc8@&l;LYPC1^ zY%SSF3*35E2MeuUjlNl7e7#|SAcK18y`Jjacs%_L6sT@TV_*&E{?EfTf)^^to6B-q zACP1x%W)m_uCes09y=Ktvi?U8-1#@$66~>a$?#YM=dAq|AW_-A-eZWcoT~;!X0)fM ze`+9ml!wezmm({Hi_6-c2;vr!R6nXcks_PhY|8i8$Bt~vxvYs)@FCR=3 zoZ~mGl-40f6xeUNw$>AheR*tDwxEs2dUrYGjXS-u?{&`aez6#M+kwPu;XU#EKHU2z ztAIt$7R7*IAYFKVKbSdYW66K?K{b_^Vjq-Vij1&GuGh6%=6zcUv#EzD5shvMayyUjH?aX9ZPxXyUm6fy(il z=+BJ}d-V*~YRn4*;EU~}HxOy-=0_BL^;-JERtqh@k!Eg-<}IF0VEEmAH+$Fb@AmI+ z`0j7_y^r50rqq}Wr3v8GUazt=-yC%xmFCVXIB?#$mJS7^@4+4SIWR%pTrrD;GhW9x z-*hOrU+>mXj2V0%7J6gb3hU)M6_n9pz&t$QP_^M|l42*3)`%Q`CyXtub5=Sjy#I+JtXnxvG{_ixx=6rnml-(|c@KYJ?fSx#vf@EVG8g6-R3lSc-CmtG^}IBa2*E2%R6BP2#U)yGX+E0y z?#Lw7DGmsA2BuzEoV?6g?Tf!Q;Z# ztFhyRqSDtzTDMwN<}(A_^E>;D8Jl~4!8S)_MTX|Fia%GFzh3M?o9krmZYLD+HdSZs z!HBv6cJx-jiGln-15}ZB$Y6n?WVW7+%kbzX@jB$D{{rW^OR#E?tJw%Br}UJ*;Qj+z znssEJ_9`8%n!UR1jYH%8_`SBYXj4*JVD!}~gOBQ%BZ=cF>=eAjs}UzQkyo7)LmtB! zqIa0O+^@^3yid2M&gYQ#)6c|w%g&h8=%r_30{u*3Hx>b|`%2@@tNQ&kjI_KxB&1sZ zQaGd~r>Ekg-|Oivg-LZ)daT*DkI1)7lML?O9sDUr2tLjm`i1dbf+vZN zkuT1jRCwPw+~sQ)dAk>@M3r~+ij5g(NLFH}aa#b&x_dp{+q!hqqq2hnnp`4PGvxDw zhAS&vX!e097oPO(cRCcSksLpKlr0dB$sP_HaOeN_JpZ+BSk0_cf1$5;m`H%ytHeJlO#xH0^+ zTn0#pZ%ps5^z-2~@$jF!HB0a6sLv8IEo|!{g6tL?Tc@M9fVW24oEd>`Km@ z3@PJ$S|!n(3Ik_V9v5gPALA8H&mY>1b@(7xbhK&LsOs$CMQH85M8f`+;b5me5@-lQ zrY7EcP|yO`-L1CurXO|I#5&@8LaWu!5W{|zh_c8Xr)%L*&Wv*^X(~Ex>7&pp%dg*= zw5zer2pGbbCt-JEFtv1zMf%#MoYB8JoI;m`dORDwE@pT4|^mRtI`#8L` zdb+&OrBV9+!C|@01K=#V&F#I&V z@;V46-;W}M-8TCPfm)w0JbAd>b^Q%0H?v|pCU3l3$wZb5!l74Qw3F3~ktcIdBo%3p8p#B~B)j4=xGrX}Y z`gPZuO+S#-Eq~|*#cC1V_oOL{uZ?Mf?pLixj*6V-jSb)Z$RKsICK)tT?@<7YP;O3I zNx2H|n=SxnHivdom!vuCuGse}3(vS4l#G<-9HKJ>v8Fw4JZ< zKht&JC0^u~OFNAEcDVs)fi&vg~2nGES{B1j}_Yui8n8${)sMwOrC9er7p$8IMZ zi|4QLUXi+OJQb#I?#(wG)LBR+fmhAGMH(MzFUEs(lsyFr=BIBDzH;d@vFk07S$(DGxW7$+YagJvA(57 zt-V%>NIwFRy_SC55DMh4LR+wT&HzAvt>poA)6cUP^B+)x@6i)Q*_GY|07@*s?mO^Q zL&pkj&Dg_+hC?|pBr)Pa?D*5u(gbx5YVe30zs@*&YbuAKRYEA2VjwM zqaN-8s8%M-=z2`{Kc7OMC^FLCs9p~Bt>Hi8=m%)Ws1W>WE~#tpBbYPdJ-{N&oTcb6 z{=^(aa*;4rOtvEPem;7V84W;S-Ur4&{pZd9-xvHR>iORx`g_g%cNP76UHo^W{TpHa zzwsZuDI!*Vk;J37#(&^f56q3fh|J^)&9fG~ zCgvx!EPsZHps$I4l^bz&brs?%0~EtArzxErA>bg(O|~uv0embUy4qjBuvCgqQ@r=x zaXP?>c6Yjj@9dV?scHWGHs4Poy|9;&g3GWE2eim60u1C`FiR6Y9hR@x2S2=j@3b}; zrSdwjHW^8YzrKaTjKS36z2FNkhyMSxOvC`NH&_b=P4~;4p%nnTpoXlY;tn22=DuDl zU!1KpvOWZkuWxy2ZuE)CozW9h}!aQUn?#Bb%Rzqomk(Pe*?+E*O)wI6q``*7gIqV|q()zIZ(1RRoKr6Jo zRbCJP7BTHc7rR6U0F_h$z5SRj;GfyoRpU@paCf^v)}#BylGJ^NtpOk;&$c%{0G|$t z>kt4ErJ7oLV;OdVp(pTFB729;PAK>9ugNw|GtK)GMe0Y+`t!JLkWHPMu0UdXOZ7 zWaE>(PTGATMba4juQ$U^@Mim)^d5RUIl6Of>T|8x;l8NIwK_2?~XtbaYLVI8kW#$!I|lLH7LRCt}kx|=_+B1*;8Pap2q%s)VVH};VP z0E+N^g1F%>?jHgCPHm(f2ckv5=&7eC9Ha*jIQQGrDPTRa@=DVB9YQ876xGbE+jM(2 z7kN(QipkVM_S{sFGPq)pFIYtQODh;!+F+6SCePcgD?!X`UWc^=X4z-i!k+Ow!}I)}K$DAlSe zypQw*Ykx-D=KJcol;|Bzx`zRPdOz=E`dLqWKqcWDpRF`ohCVP!bM0iVU4Zfy74dcW z?sh7tUgE^gw;aMDCtRqSoEHblH#1SJ$q|*VD?Zmek|jB3lJ2<{pUi0yhmJ=0+*IHD zdT!psCoMMC7>sMh{m^espPtvn$dx_|FwU|Fd$>RSV4Q1f9qgP@?MD{&{`&9D^V){F zMj@vH*Y6dE4g7CSqK>`icTOr*RMUT#-jx*A0CU=Omo_?JKLe=a9mRcr3p#A%rq@R?uV z>(CQi6b~T>2(^V=n|U-vAFd+SF+w7ai)ARJ3qcCPQlxvq34RiR-0s3R3@NWitJlzN zy1%;);=?u0k6$r+`0R6jNQz7UOQcMZEOKDT{QdS@2W~K?{g+=Z39cFXjeF&N%x?kA ziI(nt=Q{1Wo@y8jPN@2?ivdLMYn>QMYYnCyh6I<}(I^O9*Ah*ZY(|}C(&FuR+c&?0 z;pzBg>JC!PCFrR4StscDtmK3cIfm|28it{)Ge*%LUrP{B?SSn&QV>xVY#j1Fg@DNN ztLXFJnv$*#1DxvpiY=Hg-a}jIc^q~uNBElMCQ>i7C{mL9hGEtMcah;0{cR7(E=kcP zAVErV+b%^BicRvF2d$^jbtO`=4T+%`1IK7omtZ-_-wNbz`-(ZSC^s@6@kh$UJ5QfP zh^i(tS~|jXqSs;DehWbHq(lDFD|nQ4KFw- zeFM4E++IRG$q$E!^w?v&f(mg>aW)!ZW&Ct)T~tyX1ZyY!8{8Ui(>>1+DZ&NpL)MmI z7Ak;7d{TX8-aXS&fp0VWTXV*sN03*JpOSd`TUg>EDG{hA8?=xpZq!6nNkgn+C-^7y z*}6J;N~v2^vE8-0P)|(Npa{Ww=zRlbV1!4~n54!tE4DXm>okz+qC}pl+_WIViqRkZ!twKoNq$9nS|P6JD_HT<4I< z3=`NPj`d1~kvf!$xztt^^i2kW=BFq;2{x)z06bIu#uql@boV-d3j2B?F1klaQ-Ah+ zd4G4i%t|zRIzwh6BKa}Ky*!4`;H%-rGR8(X8;Mo?wX6t~7&9b0Vi&j!HpY!M$TfY8 zaG#xS@J%=}o<==AzwhLTZi$dt@SYrxaC?7$;L3JMVyHP57>HuH%~maqBU`c0L7kdU zKzD;*hkqs@GRosbDidO85>?-LaPUkx^(Z6DdQuN) zip{1(`01-y1o6$FtrFh`5Ez`KA>Oj?rF&g%mTSV}!-%6Ny08dG>V6yL!w`yP^6?qir3x9&T~r4&A^UqBe@- z&rj*PTOEpRU4mUqq&y(4{VMu5+nHD9N8F(3k#Bb=V+!GLu3&>2RC=_+;)R%PyZWcR z`{KhPPhy-}>H4mZ87Bo%?j$g>sry;*j{&*yK;M3Tqt_S8FlqZTyM|8$LaavJ5*NLI zV>KMhHuA*~kDk&-7lBF2=+^Rz%Xo*YYA>m&vtkbtwrA(LGQ1NTgSXHZz48WODso>! znA)Lu4TH}c8x6n;y!-}_2M^SK_kl+H6vTuj`}9OudL~CfiIN-=u@cGGXgb=ioAqTj z=&f*>IUjDK{1%m~7BiUn0eSrd#;Bj~>z9$3-l1?szC%$_`T`d}Ox$TaIuoTkt7)df zn_435O}t~Oz+QShcfeW^IzHWa;N|*dCN|6$eJ+}nfh&3p+?ZZ$scGZy&w7xJ<78dS zCWUl&109~l#@?ZK%jZ+>i0Skcyf$lgo5Xr8rwMzyvo8b=kXsnrA9l@a6-KtDix4fD z3BQf?ygyHzXO|`0_tF`9DB0*wOrpGJP>$N_pBi#>UvfD= zZx1J=U08)~D5Qsbt;TVn>>A2?Kqm`Lh7<$?hYqEj1No>xB-C!FU!&zYlFJrDoqBaXt5SI)naGXM3=hu=aGf_lYE-E1@8 zG%~!uWyT@)eBVRu-;eY8`^jR^zPZ6G&?FS;;b0^E$M663C772a_9#8?<6p{uHTI9+ z_Z1hR5RN?1{>M*-K^34Q?Hj0BkAFV!Sw>{K)CJQ&US(728{B3eF1>#=Ap*g4h31JDSk`}k`0wFP0mB`vCz8zak0wZg zR%0PHQ~f>U|9&5nya+{e2TR64{J+2T_fsiBt3Q93|NEc+9zS1PnvBT#CA{Iae>UL> zXtj77h*lmoP9zv>xZCCs+4T6IP52C2{cN%3A7hizfoQr?a{*g<`OhYZXGm&obf0I4 z`ty}HTtDoczen_6Uk<;70`Xs==8L?L8#km<%?kd;*I)k1gde(!($h68u>I|Pt7$R}5`3bz~&36n_>+x=h#%KN}b3BrPb_g)^r^ZxdyU6)nO!>xcE zE_~-QV=s&B3dn%Ahgk6;{v8G?m(hVmP}(BoG-fVt{_^&G9v#RU%oA+e5Zi$-h!|fe za;1kR9R(#&YP7;+i1qelEH8bxsTqXd2jH!NAUbRws5W=1oMF2@oV6%}<>_bdW6Vi@ zQQ{yEuhIYqv=(j`XLB}VrHAey{P4O0(_>tPtg>QykuF@*NVt)ZM zD0u$U7M%3~6KdK_#ej*&(e|29Rez~t21=&n*M<{4oJp1JU=PFTdj;u36K?QCSw${=4u)cR(Qo0PQy);SnHr z^%5LMrGrcA!Hl&7#u`6VyI0e`hiZ9$3C){D-*LZcN*81Z)}L&!T!1^X%?A>?4Xhxt z^A@RGPoSXi)BvD+JEkP@Yc27^b3n2Z0OTOuCo*|(^#hjtr#bJN!>+GuNfrU%-oQrn z9=uF245K3*Y6FvqLkgrFF1m7F-Mqz3S6dyPg%huT(rJTBl)DX-%E6N$FpgnuL!kID zBy`P~0@m(ZkmZMm1(>g=u;k5h`uwtP*u`zSIqK6u?^+zM-L0N$``Vtg6Scl^6rr$? zWKoKU_3HWS1b}`(h4q0^OoOHf%)ETg2K7C#OtK-TFp%Nz`9KsAe+b(Tj2Fe@$5e&hHMB*VHLp=Z! zOCzz(QnwPNaSTR`h;>C>*L9U^#E#3rBMn55Z^30-?zu?Dg}TaY?+ z=@h0q(EHo;7Q9EDUI)uJyqK3v2$bvzgcH(_$qa%xM;a^vDLQo;ccLV^z=03ko#Lt9 zLXS)aCn5%AD=+VU<8c6xqEv7yw5dJZEv6U`OVNk&G);;#(hdAs>#nd!R)LQ0iXkDQ zQ02JK5?HG=FT#pJ4$LM~4K~J)`AgyK$z@upNKaBN{OMu_oL-80c{f2nwva{uSFq8) z`rr+^6}lTlM1SK7@>qlFRzGBB{PTr3Ye1mmf>zwptsubo%2cDkz`-wq1+!Zp! zN(9KgaPQk~y~Dd-mK6gp?8irLK%tF~KpY|P?$)wyHO?*p^ZvSzspgI2)}qQ!P+DpE zAkFLcs^iuM{Ln>?&$HYu4urlDSG;?iDT$ufXQ7(nMv$}*=iVJ6RAcBSXfh)HRWM_@ zlt(U>BG1m(_O=(uOxU;}6Sf7ZZ6{;9{car)rM1g2lwgNHR75iLq1-i@kNYb~seHJr z;og*(<)u~+OtZw8b!K95(paTp-xlO16>4C0@|mqyWlM&WvJKovh@l}qXpdA<>?m1< zs#QLT$LEfPv324*O+>Q<+q3Qv$V7Zt9oKD=w$L*#$XVjK3FVrlm1rGnI`x<;Gz5ka zv}2^^1@8xWVDQyiBK)3#LQ zE~zYQ7X$1*p|rnaZL|}AhCdGuRWstF7vrSx%Ru{ue+QT|p2h%L{B!(79s~)29u?)&~wzGR3ghpY#ASXbaRqUCXx=AVSi&#d?4$+6gU+F+*Li zIM-epBw#uOv8qI(ND{{y@y8)01{$$M@wx!<&ku+;<9HohXNrpb+U2ldPomZ7n%L1} z5VU~Mm^gZVfx#cL5tw^BVw{z94k-v{o7bNIb`Kt`$9-X<43aZk%9bA)9vjUYQy3|U zMr==wSO&P}EEhq8!w978R_DDpu5FE;@FW-n(JdWF5$7NrQ?aG6&(|!{O8I_j4nB|t zfq}>vh=6StsGfS_K)b}Ms(q%r#7@OtBlEh*)WC|~jm`av$GwL8sg{kO@wf4)!Dk+h zLsGL#{8BnAvT)8`ff;Dm#i!uUOr1%uh5)Sr8%f%+h+Wr##5DXe-qXjJvM1MelImr`u{4&W8d2$sMB0YzBaZ%0->!ZJcLPD=lT;+}`Y4xu z%DYA+l5UDr9 z#=glv1eqiteVBjxCf2!gctihiM;g|Kp@^w6;bjg-3DLZA|O3i8Ki1vE&#Y1lL9888pIM=or{PGcI zXT!*QU93+Bxe&9{n2T?g-qw=YHf5470AohM!RrSO&fPHHA`C@+hc+kc z%H|mUQu_h^l?Z^PB1AYa7EmQoxQ$*I!T2{n$8WoOpbQ3S$|tofUeeG;lSFe$lbO%M zJp~^&eF+uTW7DEa!Pg06hu`SpckJgYjh)7JivOE-3LQw2M>6{Nwd+%U8xLi>(vHe$ zoP#m$qiU|B?ZP*YK+hMyP>rdq;= zP`rdHk@8{0+auc}NU;U1f|mg5o|)3Q^tuT?#{GU{&KK|dJ2t-#dD@Pj+^ZiPHTIli zOh%6}_gDgO79(V%4Mr74;OQQY?)qQ|K7v6v$7fJ@jX0l#zN&0ABxJ{+wA1CKunXO9 zZev_=u_Nxz$rN0ImxSuHdX zz@s~Ayb7IKWD{fTq+RY)(|G$)<>g`W1|QZ*q>yZO=(p3xIa1h0incraiN@qK^@+E% zDEO=yJni=&ZX-!^+bXzNXulrdUE_eo2fU1m8_Le&fnz<{#EKkkLZzX-&3(x3GiDG` zq6x%e=l$a>1V^@>vmsW{p)+Ul;@kCL>{tqh(&ts2#`B}Gu>F2JI>=8iUTzUumM1qz zw44n8TK%IbDH4Cdc8*_#AJ^&5OogLzpqF}~|9y?ecb6sJniZWPb*0S|GYU94U2`4i z>B#D0DSavO7EdusVc|O=Z{66t`Ooj|?#IX0SNbeenj=`o0B$1!rSnu|@~vP!(k+#n zb)DBxQwf85iy=5TTSa~3ECTcm)Yq(XRpKLW#Fxk})=17%W9`vX?Tr_S%|7@l%uMvQ zx|FVGYLm0$-kQ8J3_R}2U6omXW4=(~U1E{po1T9qNQtq~RPcUZ<;t6ep@3sF z-z$^D$vxyD#I%Rmnoun~jX$$m?XH&xi|HNIu2|*3PpvuXf8YZVV6VQy>!G3VV_3qE z9!MA|MOs$C`A6>CGAxooM{(JI7m_)z`V=QcGwXl<%;vL8k*@Cbtp6qFRuuNl4Oy9* z_c#Yp@*kKBXw?7xa0p{~-SfX|0sI#lc?6pPMBu;B$itZY7aIA01sV~y&hqq-F%Dtt zL;$h3)#ld4HIN=4g2cfXKmoiUWv@PcUz?3i@vr!%M)ddXD0YHhW z>8t^k!hClJs*tul$S-n1npw_A$p57%gZq`xr!{+;28xb3^W@7i9Z)1Ch z4O*!i@c^f=ya0(zJIEy`_oij8a2SCiGnVUAj=hJ{S3$QhwGUK;BHc~{QA|4^3zLKy znL%x|2H&$*dTGuxGcthv`rc#aTVhJ*i@}5mU2WJtAV2;Wb?a%tGP{d`WTbsAAct>< zBeKNcZ+-xF2*VyKhXCC?+t-d$~X2?8%q)pQe3DhM$G3U3j(C1{zx zTwM1ul%W7zO<|!m=3lsuD@HM>KbZ;0=?-{Gc^@#7xh?|8U=Y<^fR|+%Fmq4Wzg}$> zb$Qxq3=cNyXAkkNr!0b0aHtGTp!Pk0L#9W?f}%R`70oZYv}yRVoM>7(*PS|b++CL-3&}cVie7&1m1vCTEV{oPBJ))=+{RZ zCbjCli033|B3F4>3Ic45-+nw<)Vse@SE-x_dEM7eLW>ywey4{Zk57)gZ2e?=iiH>? zWgYCSMpHn!z&a+!(E$NBD0!7FV-L`=K+rsX!e*LON2Lq_nD1FC@L&2tu*GF9iQd|i znqq69bD>s@wJEh!a!+ZFH$4!Ozjhm=eYWS8|sz;WJlP#utUhZ zu@4+|66DHFTT%TSTHV%HFWwnVRC${?_wp6Ln3Tq4Z!fKQ`D2+-RbDW(8)dOAMp<67 zTcFtPyttjw2y^pA?hjnkE?jNP*WG-_wM@Zhc;#VVBLtr>?Sn?veg%vYc4_TW(2I9G zc1FngYhZ>J^(TQ3?I>LU2kuwS(A4vPSQt<9VclN~hl zePNL_eTr*Kaj%!cn5Fb-pZdHCvkD8oa03)kP=MH#W~!T@>+v(4scU;c43-FL}1Lowd{%I!<%n?bGi;#gOdyN2I&< z*H2(6zoZEsEUi7@d2Yi5&mf9+M3n?WDw&l=F%pc?lMEyv+aW*Qw1-wdXm5OrVX|jA zKk?t((s0PV$VK?je;B2=TMnZY25}B?e=lDAKyq}GzR*y3p4zPt^-wR3tt#Cr(VyYn zxRH#V+%08vKqkL<*#`24q!2jbTugIQJ^~n<7YA!hkz-xAJ7$9CjZcj72YbLET-ySH zQwQVIXNK7WPe>?chdk4i-ps@!41!Zan{f*EAr`MfP#Jaj1QE?7l^(#FVh@-QWFz@F ztgAd#HBGAG%2Ao!00p%%-(kT|L0N$#;j16tz7p^2@et2Xmt!bL$M`ZqEJ@k?{1>oE zecG!zXhX(3E$$z|1ZuC=gjbqH@?ishe0KPBR^-ahH{CYW1vo|(U(KeSFr2LtC`#iM zzh@>6PV1N}>lS+OO=?a^fXggR11}NMwV+d|IUSq@E%$($3xDr{T}-0vd0O z)dQcm{aR1rlzBa(gF4%zp1)D5;K{9M^FIJu1a!?GO&T!hj3}@lPU;%e2&}hrPy104-C`T52YP7(2gUr zFF9!gPt=sur4?35JIxYebg-X~iV@_c8*_J@$OX`|ox`5fw!2{jKxAC3b$#nZy?Y?I zh7qCqKZ^T&Y+{lILcpvnwp;o66LlW)%?7EbU9^($vVLeEr!Fq$N0fQNm%9?B`>Wh0DM>$>;&@6E>@6wbUFp zih5EsOre}BoOTqhd5`0Ky%DslV@AX0d<+TmKABNGyb)UKZ4R)KeMfyPWamToiv-_5 zn&0&nHOGNb)i9mqL2|I*4ftZBn{=P@5Slo)eF2S)gG+rE>bFa^;{>@*u}z1$O~5g1 zw}ZcYMlcn&j)l(j+EPd$f>rL=Ns;t)oG`lY17iVk=Y2dwVBl+W7Bo~+p%8!yQ>$jS z?-jE)g}}dRs>ln&o*0Uk{g4`{AXGjCoycaSN$Bk;zS6afMP(GC^?k~xJgPm@(Z1P( z|4p0-14wf_SjlV}4`0MZ5l{$9FBVVSRZVI!NTe$M?nYX=6JLDkyFw~f$AA+fM4dVd z6_OlA7^zsTy-CnDUv0jL20 zRc7X6MNG=5iP<(BmP{D?&=ltS@smt6W-N6gg)G~qh zsJKK&Y!e1Pl4EpC44K3*9@&wpZl4tm$0EyG5yqNXvNeqtWZ8Upk{kw&$0P9?;`R{KA^!ZTa*q&4I*Hs$AO#>HD^BuBfjPR z+~^R`raf#K4{W6iz7;SEbXIM>O;S8g4p3W(}Ig#%mta5UUSkfoQI*ik{?%^)kVJC>)_z0k2!<6gKmRYL{e8c(fMB**nU7PlS$exDek_}Z>w8WY_anpl?s4%qalDW zGXB!_EwuWu-+%y|ZhH%40AWIfG?}vT&pH-XblZfHu2^~+^#Lt0KT%4~Z%8^BRGLhX7DfyZ8aZ;V zP>(-=cwq{U&h&xJvN9E0`-6Iatn$TjC!zPJtC4~{O*4jF`Ed*z9*H}ECBONJigqA( z46lzLvGy{FWIZ-J%_4#rEktrqctMH4OIBa%nF!_gigPO}v=h%0GFoHWa1zWt^(*XW z293{K0z_u8Q*LIeZA+rB3LoB=3jvCYh*!QC;?E}1GvkUS z^WrQdBMYOg5vjd)pct2elAQlmy9cv^LkCM)m+;AT@ zb3rA!g5G9hjn}rWt4(D`2+6p|cq2L`Gq*AIe#SVS#|F`pK|)|;{pNZPv1y_IM?}Zh zmp0<~<>GVs;b*MkFFLg0%!6}84> z@doLS2AxVu?_BR`Nem@F+`3A!mhOO?CwvgLv4(aZ!A!FsvgHk=05(sT2ers|C$>X8 z!&<2UdYsOdMU>XB!dv-SOST^xyHdHH+?pr}5!1N1Zr*&Rv`0ZVOF^*p!9foPP_(CO zJ0$v+8#|-S+_nuOAU5~NMw#o%q`5oT)EJikPkV0}Rps8c{Ypp((#ix00cjKvkdW?@ z7C}iV1C<7ml$Z!eNGsh)hm>?nr&5Z52uMgPz0b?F*8SYKKJVCLzaQSc#~#o6u*Oosn=P7d z_Sdt(kin~0a_#A^bU*$J^Fkh?9~Sz7*cVAyaOJGhlA27P5rt#2WQdTEW3kc(3_F%^ z#U&Gc^i8=o#<`*;U@I;9P5zN|d*_mOx6f1W(9(!H3I%JAC&gix2?%XdC0Ne|@@_3i zE5-U2Y9*ky2#?JJ81=EzkA`rW=HN-N{l&}T4#p-y16~%kh-v5R<<6>frPx*+jG?A!I=)rq$~kg9g!q9f z`~Ahr0s|i%|0yz*7G4;U{!68y5&JY^>EgWWm-aO!2Dp8fX(MGKdk6Q+b02KDAPdtG zyvQNSfMN0)sYjeqH$_NX^}bCghvx5`6Fb)~U8RJPOZy?}!LY(jH)i*Oc#o)WW(Q)` zH>((K`YajTD^^EZZZaYmmwDq1sNR;u_n2QeravHFP|h+8_3q30{7VkkAL*3BFWi#+ zJX)Y!<@x@eMf9w8uf{^BK(=oE1k#|oM>Ufm%(|EC+G$arjvYay63KQPnAtnL!uzWr zmr0JV3)5Qcin^hKtL%QO$}BfuM*q9&`Rto3M`txB|^xiLzr{m!n_3oA48)?rm>&x>zPA?xa1hE@syKFWS$a@Rx#K4f!`oLM*S8 zB&s>?`u{A5o?S=&^g_Q2=GLxiQ_jCh;{5)S+VUH5*T`k+bET_=$wPki_Wwf@_fGMa z9Fp7c4hip5_!E;-O!mOMM)j_+es`7qzmfF+heyQz-{KJ^L(BTZzXPn{Xzu(Y>d!7k zauBxb_P6V$zG_sv+Y|<+md?ll{tc~6PQh0F@Q6)~AmWeL9O!|(ST%dp^XtU;_rLS@ zCxdSI|NPN;*bxf@{e#pxqaf^@Sp_C)4KiV!b6OBb#n$&Ji7f~yQJHfo`g6aZ!Q;2M zP)~{@zGh3N5&b9li=xKkH@r}OmG?>99jPX7CLeSeB%Mt#n%-5VCmH!6y42W zjH3eQPGWzW!kp)#@&~W`x@wgnY0t0Rth!e4&ncdaj}HO`$Kr`air0%&BMzw!ZerCf zAR&?&fjNh#hkvMSXyA^Zh3b_tbJIa3)@!Y8j;-`nel;P3*FP5O9LpZdICGvE7XbE+ z^2UwZ&qIEKamOD*e#KM;Ms!*a@AK|~P~8N?h1O(}pAt*l1&{H(Ej0E8jR;ALpzNdL_dQgSujUKkF|%nl@$@%|%l%Qe%pHURRbEt=>D=Le@K z4Cz|0i9HCj*MkoA^CRP{BggKUS>Y?~my-Yq>wngpMnL9+z3nqijsuMV%I zJz2++FoXyZD9}ANFHS*)EXbgO7fgZpyH~kf(v?cL12mBAA;Th-563v>F4gf9Jo%wPOQIQ-MJu*}`_E<&wfRHsFmVn_e3?I3*HdzLixzK-xVKO>(n0nA0PU|5QsT?JfDjv+{q64Bc+S4IJK zJ*96&S79-5B>mp>j2if(eqLQ_A$Vn7qBI@IS-@uQZ_luKmNNIt=owwTlrXBVwjbeg zGU{Ob>IdIFyHXvL=g}s>It_n9Ph$2p5?;cylvjH8a++wlw_ORYktz7|p8Zm!$7Bk^ zYVC@`sHSbn=U>S65$Mm;dDa6b>Ibc%oUJ0Kdc;1|1e?|Cpu6V>yR0Tmm}q<@LKn^k zdcWmq?G8HsyVnoC9ze-ED}BZLw(TJprF2HYMmYPZ^Q+K~%$?19x%p>fHa+hd`W)18 zSrNrF0Z43EJ^ruuH9xy|O=2mqr{#Bh^1T6L2Z@8jd<&EZL`$kRCv@>;aL-o(q zA}uJ+mRNVEstsqpctO8F2Cgq%gD%^JXApNMeUNZc>J(_zkJjB`+ywt5v#ck9ZiWq9T5a10DfOekF5dR#)Q&W}5U>p@ zk4nw4p8RO&Y?a{M3C18UvNY?hi{@iRi91|H4Vb0~t%-=~$3$C&2uC7qgGp`O$A-RQjSgM+iXtuex$5}(hMeaCTdX`v|r?D&V z3bwlRy_n=%2CfE-TX~1yW?xn*tI<*Jnxo-Z^q{%*TuI=twCodfrZ~-|B5ymHy|H`O zt?J4-rwaX0Z|i4T>|&JVn{L?(?OYeT;Ea`g0+x*mtHEi3V5YuMW>2{7&FZnV1q?kl zx%>H$O0mkRwJ)DPEh@91TPQ9FdpicNML z=tp!eNU!C5#_8tx$V$*OxmP}=JQ8_4I3rYlfo+!%L-IX59m+&XYCtla2|KBq$$KOu zR?_XQ*9(l^S?#9L-lC`7S3joQ2ZfnfHq9Sh$LOug>^0DRxC^9H3%`bzROy0pjq`#` zNpMnw4W)m3zu@#8vp7@X$?y8*s+E8xrwu+^4}I#|Bk-YRRx!bxjd)gyDzl~56K<|; zhg3J4#afE!Xr3zBP<-C{;*s@$YbYij^5YnS9=7sdUo{=HiYqh&ia7YeHMK6CkY5+I zi1G>HRT?bZPVjuNN0t*$)BfAL4~?$h8nq3s#bSSj+{tHeKT~{` z(z!`QoHlF}PbFLR_=E>M0gIVf$@B`a3Uwciw+ZpkX(43U&5<@!ErYm=pU<@OC?(pK zuS>E>$MrHu&?R*+XnhyxxJskU`XlHhNJ|%Gz4oIQD1PuOQ~HbJxLl!NPHcr^O-t*4 zFqPIonxU?|_BywK`m{5niV(Jjs^(UJP0GS^Fjf=?TQ6wDt46NSG`GZV<2^7F(Bb>v1`anY-rr;?4P4HR z%)fcxGZ9PFx#NP_hIk0`OJk0V`6j1$M%6Eq^`6H$-ca-Qq85w7ipY&FI03x(ctSjzjJ9x#33g|n=|-Q zQe8g0M!RbX%l5OOHzn8Ao5YoJ+9%?lFNL<9pcN*qaIJltQ?qrAHvKCfmD(Hq^|7R3 zo_Jc>bDL^-bme0|t77LQUBzo$V&^kH-S?`9bMVv}q`)Us!md=0t>MeaicUNip~bs( z(jt(!lS;;&ghh(+b(4GGQ20LW$&kxc^v`rJLUVl}Typ0`Z;z|*EGf-N*(W7cg10}a zUh4d!G8yzsMk^r8zJZHew6huvmtVd})Kp>R_;AGm|8m4eHTEGR`*&=C1?>Ut4t~{~ z#Yh?YYiBVA4#7wMR%qSmb(%rdoI|~;7JKLE+F!4BgEsr562=w3cELq?)^bP?t+jpVT5{1v#T7UMiWDvlj+1{3(LcdKn z{HdSGXo*3u%q`J{?A2!6POcG|fT8;K5cc zVOU*1b`v;-=)q%}5&a=LM5V{`OQvml`~9Hxifa<{;&_je#KeWN&@-Ng`_% z>3iphh}-(-GJa{mWz53-8y1yZ-nuLe$AX2jO-eV^6mw;t$uOwUe;t-Y;u>NTS`OvM zFA#ZIm!!vjY_4?#Lq%JKW*ELC6>87?+{gqskEmA%`CMl8Zsw(5?CuTxesxoR7O~(B zAKIO1PscxFUi)`;O{ACdAbGSoxH>ty4zz>ptc zZz^N2GpH)#E{qt--G9Sg*-32KYSry|Wzi_A_Q;dGk9zMBp+hAf@frWCjX5=uS1HT+ z%!AJBk{JyIGwCB|Fyc*|?H;G~R)}V!z~Lr-R@47(pz))_(6s>{6$ip*e!0EP{pd?s z&ST`QnX@e}7I|782c9DSIxHgc-x%bQZfx1QDc4`yAKClrEw!tPDZ|p}LoAMJ?_*KG zB4!%2enuIbl6nrJHyYtVORwi zg>H=|io|!~@py9PsZC;e3Sxyx;H+lH4oE*Q+xBcGO(^=*4_s2$$SVE;@_Lkt&EzawcBIOe zY@Nn@hngj%1|4SfqLWWg6lYm99V6UX=OOfX%2$&ZGadR^Dyc#E<%ehetuNGM1I5C> zU05I^q|ZxNA#rOAZ?HM>l|=ec`mrdaLZqdrdn!G~)=^wn*UFjH`WPCV*Sp}6lXxKb zKuTRjhH_(q>ABcTRKKGINDro8yzd);pe4Ytr^1 z=9msTsQE6`v|Y}TYFn!eD&rWqroe&6gB36OC7o z-+FVup{{1y1RONEoXw1Hpu5MTkH(yimV7mVc|7U}Kyz2DL?oKVF3bI&9`&`>+*s8Ydg>VPEhcmV}UWqJB#g-A9 z(PzYzUH2FJ1%XjZok;K}ZhM?V*Y>4RH8AD_U-l+q5|Ig5m|B>CQ$w|9*yj3end<(@&W3lm_GuJ@@)TL(00`nR&`cQ7qa&$M3sY zuq9_tM>S`^1P4jy@<8l$L?NcdYO}P;(42E9KeB5N50t|uWGYL0N_y+Qo0x^&C)AW| z*;@|TMq94*XJ#97>tX5FL^W{GYsb0;pOhV=W@XL|RaQF~+$fMj8m5p2Lg+-nl==fH z5SQPoXe)Fj$h_Hq`Gioxa#2i9n5|Igtcu^R=t7rp0bL5w>XUfQLcn;onIUK@vxFgUPsAfiB%H1eY^CduX9gXD@45tR|P(5MztZg zw{`jA}O4Z9iKQbR&HxxwcjBB z&BO4n=h0{ZYGGTvbYmNdKq+JX9D7hMdcX`KPx2hTi2)xeU7QT^z5Z5x8v5mu0ep60 zihCEqI~F{!{CX{r47rUq^vik$kk2yy8!PRd68cN~{frOV@6*(Y0eqS2n_2CD8mg;< z5d9a!`+xLb{QqNq^#9R+|Gywl|BwFre?b3z^)%S1(r3ue zU^sEOF=giXRa*D0foZ6s0&&)X$Dst$v)Bd*-gYb?wC9Q%anAW78ZHuyWm+~MPk`XY z|BWEq1Tz(G=Bgx4-}b8f8W_5%_O=$a`44O{0XF1qoz?#dx^5HL=V|(a z-VqCTI_yof}ABXL^mj! zc=*;YzkK|4&lL}y`+{l#5Q-!SN;st{82|8)$bKQf0-Irr0|hiU6qB#xA$dv|=nv3` z_`q?kJOSC8BG>+%B`yK$cT_epvzYa;ro!nMLnr;==D@2}$TP?UkI|&s1M3nC=^ivq z1gHm)w0r*XLJ&{a0Jdof`0=MZy{RhyPyq82|-3PRtOp_sZ;dc+Hgbx!tXj{}D29=9&Cw1HzWg@9+P-)AH9Z)=bcihFk*BqZx+(ib^3j}R zFOm2fYbKBN$}vOwvFwM4lvm%7Sp#M*33$h#P*YD_ceOtH0rTQ1OHZHu3r3Bz?-iaE zF2XburdmOfMVY_6oB2#13(D|6UFCo?GGL`2%;xuXL1*FIokt!WCmt}RhJv+x_~DL^ zAq48pYMk0xfyo5xZoB!4$x(P~616~V$<5RBHiElA{7TZ%mwp-I(*#^al6qh`PU8zZ zy<87oJT!EA#JS!KYYp(COM+*^@@Q8*_lQdFkffTy1QgGvoA>k2@CA1y?*idGbLAN6 zP=ohwWQ%5tXHVQ5F4$04)Di{KDv;s$$5#$_=abOD)>QZGfqgu!z;y#xlgM98 z2LDA-{CL+7Bs%RmM({VpK5nC`kPcqN^S_+qC4V``3%mgh7m^>(;d_U;Gx%6}lsBHr zoWSy9z*T(XG?aL-J?-|+>vNi7GRPkFeQQb3gb@6cWIlWz5-#-kCzUiUDv9(j!w?sx zN&oQP__Lsz()e?o@ZbAv&ct~aW(2H%YG!CS^hEf4D4DrM1{P+!-JYQk$2dO&#va>V z{(*g+kyswSdOHge8xN@dqAOfp#Ai8ADT}io;k9kSarjg~6O5DU zg-7)K+Lf^j)Vt6P| z8of|nVUbo6E>eCGeZN>`fB&MlC6lBR=^;jlbP0OF2i5CinzXu!fKo)742+>`J@FLg zU19jLx*9KIZbO0zFfW^a*1#9rPBBO8F{)vAh9d3>Xa!xet@T7!ykPa*t1nnE?Qs$> z2Tm(YQVg!9r4*fcan)6SjG9i4+!h@kB9*`$=vQiR`SE_qU|(*1UUkxP$x2#?!anjI zi@({7*x&}Qs`j`z-)`D)gjg6H{M`&ovE_(P(_rdT;`351M9t?+=`9ZxV&5dGzktaz zmqTj52ZXEN${h*sRGUI^q<`eY5|139(M?bPA?@!X0xVO1tc*djt)O?90})#_+K92wQOrgwYpeV zZ8_StV%ZVMeq)arTO%dB>3@RfzL@+rDD7I4=a{0vshysj=A!K^u!uOd?;4UB)hoOd z;p zEy>HQDD_~I1-=lJkH78SW4J?(H`^*f#M*90ti}bN3nUGTa{is*F4n4v8G3BX?I>62 z+(GnN{8wli9L4w@a~5W?;GL0Nw7^8wC>`>px5<7U)6BVs+SEH?D`J@~bKrc3rqZzG zRbtB2wcwogHA}`Cq^pHmd{k=xE_CbC6P5@mQmdwF1$uY>%NPkz$OTY*r-g9V%t6OJO-SkBavZKbvoZyMs!Pvl; zAV@K{&69Zet3qXnf&+|Iz*SnxCw#`A<$G{D-ki+1cvI~4U?svi2qhJlpB-wk8+pwd z6n`9E1WZ2qr)I{cn04y3U3eIgcX5f z{2F)9THmMv<5KsThW(1i3G{pm&a(GLY~g9wex+y%>^tzdPkxMzJ%0L>}KYq=bE{fDpZok@NB;Kf9Q8cf-;JaO=rYP9`fwOg}qRX z9egLUBt~qM_D+Mc^S1xJlGtB&@E&E8w=3mAW2y_LHSX96uj$0{^!wVKe%;CBOk%rH zuQ_i-+z~KKU4Kf{Ya7Fl&UU$seLq1mV+GhUt=$CuJ|PFK2BoXtvq_%yhKA=mh|c$n zP7LxcM(q@qC$gQtTX~nU`k+qLU*VPO&T^db$LTp`$F<|=!kA_3-h3wZt+HbNYQ6lA zD9LV#{t^3cJlMox4JM3|SBQ=`ck6uiqn`xX?$DlDm5R4Q?LvD!z+OM{)mBN`Ty;I7 zr+Yq?ys=f}nd<%?VJ(u4fT?eByEhv3_!T?t_t;-XYI)w(yf0B(_bmPb$7m5B^+R7? zgPf2-PhFO&rR+%RpESn#AB9LnW@H!cJef4cJm$x^Y^?q9o{8Hep&wukvr&=Z|2O5h)q!AN@YL3CXCifiZ9X$Z$Co<`9ARdMS{&kpdBr zh8*oa{|&G8E2sbhFTFz}yh?uE`u=r^!c_>GoFpRF`AIWS&o>kDsiK5zOtK0w=Ab1) zHx2EWMF%Q6w%?C9*&Swtw|vCxRel}bBdj=q;=~Cy3?*49oqt`6zqZoP1*@S~bIPMc ze_W7~l=%FH)gF|6S+|IffoW?7D=DcZfM`6uLbGLe2{y4rj}JCYL4GDg9wVr`>EYwn z^X(8ePSOSgyPPIKX|GrVuq5VUMOhe>%swR9NJ!WxsNQ(`L^plu#5j&sZdBtKl-e~p z(mW^|=zL%Yx6i+>muvE$;g?S>ur25#*+ygUQ@9b9%c3Hx-~g7n5WyBq;#dl$@TD54 zR5ISm9^Qf6I*x+E%tD=^e2zu7oX>#$2)e=J(G(1;)@ir{@>}gS$yi_e>Z4bGz$ZsT zIe(=aRtlz25%*A@i9v#(J4{lav2Z-hb-Hvn3!%M`_^%a~hJv;QAmZ?c1p!5)*dBEq z%W^%0%TF4yMQ8nPizW!VSgt1oK$aO5gw@+Y=H2P03lXYh3u`)It;u5orJ3}xs z8meY~NE#%~kfZQK4Bo$To1s{DR-CtkaX&39P>GxAfl45gB<>#QFY$kGk6!DaYjpgR z9W#L%`fqm3B^HK?m3yO45-)#rnz*APNN^Zpb&AeKYL74XH4}LtQEu`c z=PnG$obl9@AjNCt7%17H*1>uJ1~S@Kj$ z)H1^ygZ;WYUf)0NU5%td`*rJan)@4C1qHMVypDIJ4yS7JgVlIRn4>iKpoh2-AN1E+ zuKtjV<)f)#jykrt&aQBqCs;5%xzjR5Y3yce8gcCkJGhe1_;uTW;d$V86wO;mEvLBL zELzYdTIt7i+o+?ayw!bB+Op+rCfq2SU<4@54Y93$8NX$z8y$2S#it`999RAFnxFs0 zoHghC8*}FP({K5W|N0MDoL-NG@bq6s=%s!Fr0Ql^Dk6Y-+l9fNrfh;WA8tAlr^cGI z!o(B@U;pgc1s$x-&lh z@MpGqWLi)kIm_ItJ0%+K>v!-G@!4~v;5VbT?#*Gev05y zrOC*U+%F4s_W;T<``%UURbbpGou!Q5ftQaHI76Aq=##|b3%dH2w;A}Ff~wDe&Dr4D zekyuyy9G3`TtKS=dw%wL9%*;PpKP5Pwgs)|tmi!CM)efPH!r7j4CIYp0a-(!|D^^o zno@o!_4*W=7$qD;5Eo8cF(MM9)4&{KpoN&6Z&%$l6p-hUitzw|WoA`BIU6xtXUa^t z&yQ71ES$n8Jc+&Vy;7lgpi60@W{X4|a<6Es^S>#@eg>UBhgsyOiT{(WGC_IKU zCc{(k)gYkAo(L~zo!yXgA04>VdC1W7%lP~sNSfnUTf?2Az)ugyPv>3}{8(1Won!ut zv%3VX$eVV8STNkPa^Q++uQ~JikpijWHERaGOaB3*!NL2^4g45y#8Of^5-5W|KpCTNM3d2gDXJ7k-euUEK$H~q;N98zYM%^>ibW{3^2NE?GcVf<8H*FP^nWZz0j>lb7KCD@INbJ0+?K7y{psW;qF=?-o+y}N17@Ze$phuroesF{ngb znMa$y7oqG-=AMs}t^#K?8{cX(Hn}PZ-)&)kt}-q>9j5?U_I)>6B$oV`2_oOTjG z@x^$!QF!MSt*e?GN&~Ga4IA*ppqU8RP^5)IoyVNa1a-mntjMXwIaEw~E?;~Rll0UJ zi%V@O-s$=Fq9S_2!k|#6G4b{^Mt-=#hOQ$w#LvmRHGm#0)Ey+Z9lx9&UPsZs0AeKl zl}VfC+Yvl2Lq#XHdVwLUsmyXUsFQ$y|KgZI|9IH{Ir6w(aD7Ptm9u7Lr15dO6$Scrc4c zH)4mElvVTMo=BTXba~Q~(&#V-FRVy+;Tyq+>HLM&-(Ig9L~Iu6>OX{_@tYARh!h>j zwwT-A4t;l!?N>l)tC!KFQMa?TafG|G%wBt{{h}(0r@9Nj8at$Ccq(dW;Kf6^V}onz z@$ld`<4@>j-un(d>8jXW#gFEfNf+C5q`r6ndl)Kmy$XM8<3TIC%2iwW$Wzr!YDS$L z30{@sRT@P0N-4L+@m=oO&G)Xl5s&c?OsMvDfeQAIbL#Xnhswhfu{A~#-cfBmqvP#w@Yw0o(h)f zBFZHdJQP!(_B~E!%R)2l_pdXuExNrx(q4JBMyZ&Rz*pT)l6{3!+;RPL(~0wTvCh){ zZPt^w4oGNyDMNf}!i~NQd|ts#-=F12#5>aSTI$2+GA?reB~%_=m~vi2gvziZ<*i@} zHHzEup@;iFxK}&HURrvnxt}_x$!JSPc9HQ39xh$rLniFj7x?0vr(CEzhXXb)%7C3# z4HM<-<`PYg(f;`YiB@5{HN&2Auz7qaHlboy-?`l}H{}8RmzPg(&LJTuyqtkYtc#pm zDNzo&H$_fi5N+}A@yDkw_!25~f3*u7`HIF1>rt!~x_VDoAPze$SYeB~1f&05K>Cmx z;~b0}+UvfurMac|=>+(zU3&Wq`9v`jq8cdYv~cD!7%=8gq^Rcb#@%Vrwkpw93T+B> z0887*XqG#Yh7X3*WzQ2QWA$ZAl@^FwnF+ zBCs`Y8#RK&;1=VF7>m?ha7ojw`GwYLr64|QQh~?^ZN&psjAcGxuf9X~K%MxiXiZe) zv5RDsM0a^-?!yr9{%}0;3%kaM8k*zTSii&SjU_sSs<3_EN^Tr^fE zhLN2drVJT||73Cp?^WCCn4#VE`l&OGMXc2=8jO)bsmFI~JnIa!Og5#J*?&mLU}@MX zeP?~Dt)xM;v~vFrZYQUE30RT{cd<*9yk~#zY@MYid?Id6;Mme(g?HYaS?!p=g0#&_ zoJ2}Owp_9*?%RM0o+yb!#}X&kjlukWO&e(zvGCle59DB1rc=C15>JUxYWy{}$|UP7 zFOz(ORZB=;<7*yliJ1BOFk(A&oNd*#feS+cOH6KncW`k@*kAY-M*@LNNk4(9*JqlB z6cu5@9>$4eGNv8YhzLB1r7%@$23R@9Tk$t|)SA+py7MD33Ga&e3ro=%ZQgoam>d&!GVViu|Kf{>eu;_>R|{D!AF%|= zX`kH;?x*XGm{tsSY+q3Dyd5mw&bZZ6#?)g-aU*)S*#_JH-d721Aylg5OELY3-3Q(4 z(rqU;3w5qiKE1d*YvSz_?TGq0g37QYOKy7Bq=8FAv^$L%HJW9H)UiiNUW_vW+kCfbf~6C)dmtK5ng6bSyqP$8@~7%pwjh3yRF{k< zECMS$9Q+9X@KrfwPqJ~vtt5N{m-90WZ5ro;o|?HR4m}iV2*lO>#pT&Yqg}+P&gRfU zA4VVFCX}b|i%i4RbRY|dN6 zb9)S{Jy6Z@^(J@MO?nFbtc}{5bic6yJL&` zvVEr948`aBtUM(stW{Q6wkP7DUvFzxd}3_v6`^m^TXER73s?iEN%wU34E6*EzdTzW zI!?tRQp<6=H1aLK6|bE)um9q7_=l+6;zHf5i3>bsWGI%mcgN9so&D!$q$5wJanz=! zcRw^VlCux!9kd-Vb=HNHEUP7MXPR*CNTcBX5M?d5`?T$k&D_$kov*J^&+2uAK2o=s z$xFTl%8hC+^e+$$2yQN)A!&vW3?$h5)ihzw$brYUb_DkiS4Y$$--LT`+#?A3Z(!F+Ts?@?K30 z1!CBy);x0WF}&C}`=|KWql##Y4SV%Ft5;=vQ{hH$@LFkE{yFuvhkbo?eZu4M^1@P>alDe z{Yac2do0d(?uQ^>AGx%+C)X*qWG~Er|5tyFWHjGy&yA^zXEY=+PE!2azs}>MHX?jO z|NXa-Kh`m52s2*CDck$~g$o!m9xv83|MN{Gy#onQ8=RlKbd7(1;ettrI+-}fZy!j* z7T%`yT>m%D-(CpACfrqOQuvRL2%nhal1WFQ3)W5d-(Ps)#UP>dGy6ZkZn9+SNy6PT zk0f&oe}93D=L;)7{qK7ryAnv3nbUW+e}6#{(`S%4UlbWqm2bUT{`<~g>&L~!!r2nN zF_jx8Vc8ukp8XR2Z~OMIUG1%l&7z(-Ir~+N7-Oq4w_fMBBOvJ=4_{jNjlZMjZ?7c# z!pFi+eEa*}3yXkno%O!x((j)ql7#0=OoRQ6-}jOoeC_#R>i2TLA00AG{{u3Y)z`o8 zCN=nZ{LSX--%lhBX*ew~`wV~IPaR4PVM*He^(cSevN9fOL*;W-?th$)aLk3_w6ni= zdMWkyE#t$9fiLQO{kL6lo)vzsmTzkK@8>S^J8TRl9o*jY1;6i#FL2`ZtOs4_7KZVNLK$-v`cyo$951nlfC8njN{bf&M2c4T|!wA3(C^+ix;*NMT+6K5M7vu-+m+pzrT*mYk0X)Yx6b+1=C; z&eV)dtVo36DKI6G(l?IJs{D=7ikp318B%~ugA_~zb-a50%LJ8zRwt_++a_Q9X%LRC z)$bH1;nl$R^=^D^+U(ydA%iAbVYS-%e%B2?@ic%c1UC$9qPv&6|)rv?{;fsct7)X8oI(5Lt zN$MF`##zj8c%3|}mwX>5n7hvn!%9AQ1cRcf4Us(BLTJw=&F>|Rm0IEUy4N4>5I{%6 zNqeMa2F%)t^W{I0iHDn$4?V0kteq{n!PP#w2GX0KAEl8Hku?v&E_9L5@Hs98(}{`b z<^a0TyGKkXDpbxo58<_(ty83y{>1cjxWV8~FI)q_p#4bekwpiR9MDXB=ySehnU&8! z$K>5ocgWy(JnCf`PqSN=S%Twt(#jqm(0-pM!mMB9n)D*U0f;#~u9|fuhkDGl4{Af?O$L zTXl>?5g?FO!{83g{9&DhG+R^Xx)7_2ZR?DhM_g;Fw4I%?8waHH;(nNVz!zeio@m%l z!jo`p#c&Rh^j`!I?V+=)d!!J?ph&)<-ze##58tgBGK46cfJZC>^EMh8a?|TTW`Mw& zYryXKB0k_cCum@{HOTeXgOPcLat(nekzhgy1yEaX63>gSMCK$R^GFwN0XJam7K*IE zsRt|YcD7oId&O+NcLCJ@-ZzgD=Iom|zY-eo ztl7;)-S9`kT{&Bwq@`eG&hC)F*y|VX1mzC%8{fG)Qn4lw-?-B(e!4fmJ!^2-IHY0akba{xU0JF zTrBBeT+Hy;9c4Q|hg!RPLYITY1aICz*%of0?M|jqIEP*tD-@WQVjlG43MmwPWJQq% z#`Ul)+jB*8kiWzm${Vd*NDZ3lX5$pThb7)_@$Sh>fw{v4G)>G8s}oPhoKN{^_%ch2 zhi+qvPY8(6buGvBSQdG8DGFVgSMmHRrhiRx+D#b8PozHy+WLDx<4HP#A4Hwno-d6* zg|P|RY~eZip(~SFT=7R5()WxEtpomZf9t(S9n}39g*Cw;F!j_-onWeT=u} z=LGxdxNpgq`Y9=2f?M2Nrd#(ZExhGzY2wDG$rYf&`p;ae3pDOL+LS+B@EiAvyx)M1 zA8SPdV|wk#9>#{Ns#FKXaFDD~Ri+s3Zm7TIW0Q?Fh8`^z-*z{({VE0KA!L});<{Bz zy@zXnS`8-5^$&62dr&$8?$siL=6T)zXBI2}9Jie>qg9-GViGSiuMT+>Go)G)&& z^-SLrlTlEc$zkiq3rwORqO9M zh+5tjCSnLW!toNFFIz%p z5chd+GBp&})QoAp@t9nGe5T?F+*@b2H)`5A$S^M*R_lG;e$4jp)SlE3L}?KE$zqeFNRm0sCL z6o0Q9kL>GWE}=%z@XJ^1c1JaB_2rVLJihi8CKu+L8oH5CbZ%jjH<&9U_Y!j7hu(TX zy!Q=|6VjN0p`9&U9G^hH^6!hA8k6NaRtHtyOrCnWy|oN>m+tO}w^JP&V2Q7c@j6pH zP~$t@wZOWd^clW-Y+zI*BtBVlUp$>zfGzP9$M}Wz zbgstwW7m)Eq9z$Ax@F@-CXZuFT+XSnz8=%6h_ z+KUHGbVSs?rES?34AetvQ8SR~@AG@DW%|`K0^KV=Rb_3i^R{^CP6&Rh+S=LF5b(5I z$KNxs6!19s`BSgY%%irABM6_IrKRG2JDK|>Z8M9rF{elN_q*c`c1OtF=>M*A7Wll! zz52X&S*v3GETW_DC+ZIx5dO5*CX^S=8pf&eG~TYSI<v%PrFCxblA%9$<)K8*VJ z1q18fYJ2VOHHmSa#uJ$I&EHXRdmvG8o4&w#_07ZMzP?x6i!1XfW3%&vICtffMsS5E z)%`?@n$UY+Y)*STxGEfB%sFHK_h-n?JE8Kr>fw{Eg#klnw!-Cidh5F!4I2l&y}b<* zeIF<@D%#C-JqFX2Y5>nXLcgKc(D1@7Ey* zrL&5P9`Wy6Rz3x#GiLSM-*?6T`XG2m%Xla#D7>rq^J`EnJa4GE{8)t{$>%hxfACUm zPU-&dpDuw5m#YR3Z)C0iqFzFM?1?OsVAY1yHc7v@#l8&y&HXS(bLUn zG%1t3Z;A}M?fTC4Q;#8rr0Vo!iTm&KP(NSM(6iZ6|DjZPVPd;Re}y61Z)v)Wz1zqjisbS5#@{^wEl&$;QnL*SBouv6hJ@W;ud4riHr x(}L7LzxvOyyHgKm+2I3|)4#v4K<@2%;(c!5#e_EMofGhnlAM}sfwalf{|hqD@frXC literal 0 HcmV?d00001 diff --git a/docs/assets/thingsboard/login.png b/docs/assets/thingsboard/login.png new file mode 100644 index 0000000000000000000000000000000000000000..f0c1737320dd2ddf8bd594a368f388dcbf4b1b42 GIT binary patch literal 25093 zcmeFZbx>T*w>CeXvK>sb@}K|vA~84no_4h~gXN=z9J4xR$|um0j0 z@Qnp-S~DCR@()W<(GSw1q9h+2?aVA~OyS_9LgN#ktEy<>^&WU_k!C+7BcVKraE6zv z$d;<$6oDs=Ls$M#Mas(k$@sk(;=~g|OXP^BQB@>w7+!uto_TJ9{^8fpPlbhp2nm%n zUasf6_i0{B%*!nYUdwLFZ5uZTaF&7n8wH)!aCt{!pFR+~X**5!##61d|sN& zK)TGx%?(GA(s8Fp>=`{9vY$M>c6EMzujaUmNQweS^LEv}J}N%w5ZA=H`U3tnT%j&S zd7DIc=Bia7HlkF(i_A=;VFI@y`x}CLK|X5!353;1xD{!+@BRpINZ-0GlNr!rg7ZFC z@DexT$$I6%mXNgh<`CPA%R9pEK-_LPbj16%q=&|^IOxn%F z%9kq@9|{K}v!pex*VR9vJjq))tx?pP)q*4h6i--Io^VRR!K1$#dryb{1n&@0mjuy! z4F{8CUNo*!oqaq|lGiWYA1sXlS%^}J6E;57G^1jdbwc5VV>5T$kL}1E&fo~~v?fh} zAp83WVyrQAC(Xg7c|Cz!?-G%_W~|n8MX=8fqkLmB++$YH_ydkC>It$iZXtrLA)H(Q zW#!X|AK30sgwO+>F%ZD|`4fc=;9n#+T)v z=d(~w{Cl&AUj}Fx5_rR@pd+r5u!;r5k)lfBum&-Z@~*w~c>m-B4HiPrdxDVXq1mXT z>V~G}XkB@%0kgR3qg&z_z&*I8<%aVmmZc3b}od}%3c@o^BivBA6 z7|w$B_8Apk*U!?QYervLdf%C|OurLIA{~6r@J6<0+jy_CedetVtE+(P^D~nAC-YzT zexZG&w&zY`9e%qJh|~kFn1LdU5`m`OEYVo!@OoRqjNB&ke#WdJMXk zdtUu1cu|e0_X&YC7 zZQgFaNM57ztTLrCbv{T6Rmz8~KQ>&7C=Z*0#ge+{>x7J_l&2(B>}g;5nr3xKYpkwl zyNIvE9gTc6XRMi2O+J@wqBNJxa=b62XcQ#gAy$hrmQsbmNgEn5n8fg2U2#e@fwo1u zUhXW-CUZBCKzvw)Ns37x6s%jeAm8-bBds-~HIZLOP~$G-2K(|o^4A>sqpV6A9a>4+ zX&O;v&8I$3gG8!D0y>etD131c_Yk-4k?N`YYWfui>$-@hm?-|eeExn;M$VbC5VNw* zT0M;szd!oSK}HorZ1a z;$fkhqn1lV|Dybs$S$6O&ls;R(jtRDtvY!!iDj*B;cBH|xn(VGv2MX(Auvg0HC~5V z7gjr8+v~#a4DZ6ZIkCk*M!7lW66<`vQ@^9Iy|p90Wjk&?h7ZvgGv74dn%)v(A;E8a zYw}hVZ-J{DZwyuCI132ex=4{&M=4O#?c5Eg0oOgfk4(wfRBA*yupeWJMg5l47L z@e~Z|KJ5{CJ#$fdZh6{sado|av}at%q8X0&t1&ZuS)!xlj^h5^z4HCW6Nx9E{1b$^ zN15&IR$@(?!S3LcPr~Tr7IvfKhPNx>D+VH!q(4bbNts0$MYsa%gOxhfgC~Q0Ubwwl z#=hh3BoQHiyrIQxBCDoyWF25Depf8yDSh&5bDo8cWg!WwscU1hTQw89t`9zEB-S>n zA+r-dkhzVw)>zWbucmXE{4&W}l3b$LYxFzkx7DBacb}8u2SeQ@yghEX!Jq3gPrvRB zFnx@q;-8t)90E*{&iGEVX!wu5yxq@!A9N!m4=0-@ z6Hkkk^R%gh80~C(d2?Onr%}y4%x`On+A`|eZ9hYU81bKRHrtlYAliOio~YOIa@vPx z0~>Ukv73=r$9ITjgm%!QgTu;Nwp<(Jy1(KkxIDQoy@3R~s^%` z+%aaR`<47?&1zf$qfJHV2x;DYfOVY=cc-Vf*tikSeOnxwUu@|$RdmVLHBw()S^ClT zO}sYeCg=QG{h&q5M$g+_$f3jC&re!d`uIsYLdz>}T6wxXS|?^}8V$x}eL;^XpTm99 zY0=Z*Ni-aSyBqTJ-sjkY*x%wk<9j44C0Qd|x$!(|Z>g^oIeJwiunDfUdrGz|(8}7i zjWtwMO0-)_(8@8VzY!TYwC)6MghD;Xuf9IB68$M{uj~z5A8`;m&wvR{x~BLx--Yid z!)oGcF28;F)BNk`d*1guXcBba$#-K;n?Psy?&F#4q{q;)DGnC%ZnIQtl9$7k@>G7P zy6?`6>G1l``bpc!3NeEwKaMr44UT(ju5vGfjsnWZ^vAOpo|vrj!EbFGgsqa z`QBLrTVH{B%lTRN-hBn9L>~>=^RfLfH@$uR_6?7NE1zGt^8#ScW-oG2;*+w?9lsyG z?_lpvS5qaEBfk@w3;pEp_oKV6y-41!8CZVlXT905*YR$JXY`1F_wvvCsg;uDFCBik z13vG4mH10pblE=gIQmX_)$Xjr5=AR6D!%`M-9=sJ-qiivVe@Ogn`I#q5Im7MG`rf1 za2q%%Uef8XOMQ{yenz_2HDPimxgI&0xtTd9BivX-vV9@@QuV(PT;v6&BFW}qIQ zC$r@SmX?;18NG*lf`~2*d{})Tsd^SUl>PeQ;^7;5VUpD_e>nITB)|s;lQ2oq5mVOR zs~04|J-&bM{l6ubDBV9CAtFz|e*K#B0a^S({x3*Y6axYS5&hKpOQ+h=C=}3X85rU| zeS&vb3a*Pxd|aa!-DUpIqVw`7q~#deS5`L+fA0wAELYy#cqj9FHML&+gy-=jqXu<2 zv%h>?;eavt)1AD2#zeGuS&7r=H50$gF(1BQF-cKp6ACUa4gDnc%y-IHIs;x0`Vi2F zGwK)8VKE%w$u!}VlUadv!5OvLAjdquwzk$+wY$)GKL!#0t4jkIqfS{FD5q(g8$Htj zVzF7vd_P7Eh_)jhCxRN_o+P;ijLiUnFz4f61tjT%KeA^!@gYHi;Y8JwKh7AP86Gjl zeM@>S;86+vBcHyY5Zvc4ete6+aO(?nso(k3me2p{q~IHpsEfwqLf*fZM`Xezp@|uJ zgnvbIq3JLD`_FLh_CJyegA1V0_l$A!tDe~lK@b&bqC!Q7w;qJ&c@U4&FD*S*qe3q&Cv_+jU-+;H=x+mR zGA$8AqT}Ld*zS&wS#@+&RVl8~2xA%fUiFp4ZVaUL?0^>{UX3ti4ciG_`B*MwmEUZx zYM7q=b}?V3mC(6ajx3Kq4l)}6$3pvzE9AaGlz3h~tfxORy41i0k$61Cw2^>xW&ml>Ws%A7b5jqsb$4=o zg6c4RcTu5CEua=b02aJPV_Eq9e*8eO^{9$~-{I__T}cw>z{>$ScOG z%i|A}-v*Cpe^N+Da|a1ExvLsjPL@XRa$c7%R_o|{`$Z6NdzTL0wzyeX)*l#CY1N|< zZh+Nv*4AG^Q)G!u4V2%qH3sYQfU;`25))58j@2(dU;jLk(06iKGQcmPwykFN9@;fP zaILZ2G7u5PZz(~}xi@2w(?^B61DJuxI6=L6yg#a1H69JELdI1#9JWp8Q(>kD0pze? z9HEzc$2E5PbnM$umDFR(l0o$M^B ze;?Fi8i$s>w8b4V4n$sm`mmD1NKfFUks@k3kTMOjve#^6KQ$Tu;Sy?;VB#)FTs*04 zl4JR?5XweV^I7igtj7NJIDWPJ&=f|GuGcF1Wj`a1Y}pzG1QNKL#*b@LKP{vYj!(jM zb7RTld?FU=bMjU@gQ=+iwwF#usLc`W^xP#8*Pt}o>;A$sl!sZZNFx*>sI6$XN)mM! zm~uYYI(FkrJXsFuZq;===@9Go{7BuNC)cnz`E}pPh{ix8set&#c_8z~$sU=lj!EB? z-gB|VT18}JWO3>dtLxsE`%KH1lg9>4h&cK|$IWijQ)h3j8+IK8tA%ns!ZDs6KYOsV zBox9VNJ^@^;uXVXyFs2~^B)yHnd|sEcYWauXJB(uzB>j{&SQ(6fsj%T? zpY%T&J+G)YGWiqX1N#ws&qB=>srJT>8xz?J=EhTf=XYWst;tbe$7>$;A%@M@>Zawn#Md4^dl&7bojA5Kktf$bL< z3>@teTr=NYg1H7#p(Z8Z(WUgXp}i5(Homz`;$eL=yWF86K2xyod8|0A$C+{q$i0Ip z+oxE$VstoPU-fJz-}P0SfS=}fXVCay#Qwt33QD!-I1|K!Z~ok*KT|)M>^|jA++x03 zf0JgkBD`w9;1)KUQ^%RMS>M)DOKY7dby3I^YTqw=?cS@ zVJ+tntBLzPQ;d~9F^}(9gg*BU_ zjSOG?aBWk-TAMWuAJN0u-t-nq3CuibV~8ZM{cziOj~4Dsz3HHN`WBzN#_dL;+O#CW z3sg6v8wStCQ}seFIo4bG?OI&E?sk^rtJk{ctiBVE-N{$_hjYE4_igTCZLIFX$%liu}OGNS?UG-8@DQ;7ux1~zlr|q%I zyE_Q**4NreCV?rh3R?4vnq(=woAw4Ej@N3&yEGxgYLL*%-l2ZA12Tt%!-CWuLK?2c z`|vgtQ?dJU*Y+>NO`{v$-p%%P{3>+9YIXXqJB^&!6{I3(AK5kcc z!0TYW@`e--VK>v~hU>|C$E9lU_pZ&lnGM9$&C8Uc_+j34kAZv9q7DrF0#Gqu-Rv#9 zG6iCO(q^|LA-*{!YO&su#qoMY6rGvGXL;hPfl8VC+&LBktsaku8i8_$(mCByduuCL zkLjI@WZHHk)^F63jT2P@O$d364!#!IZjXF=IHl0}fwkf|Yg)>gE0R}X3q6e+)M?HZ zk!=3BE8Mb}%dA+{(5!AzQ2FiTjZvGp`u*l2zvBHt*;t9J^|4K)5^TJ8sa8ilU*9O0 z=G;^~LT_of<<;h~?%ce2d0Yc(=A*CEUGXE?8t!QR7oK%88=1pp(%o4ynW>uC#@9e* zLT#=pyL6@KLl;l5-Ih4@Li_#2BI{|9*N|x2S853F{AOR+(zBAVAPjS08fiX&K-U3* z26yN;85Q`Hyowy}JxSC*Sv6;PJRpzg4=3+oy>>drOVwP0Da@WcxosZ8)3*%6kI8tL@0nT@@It%F5rf-AC#JIsQTW7Y+{#9)7-z4h~ZAHB^sK}|UvR3`jEOzG2M ze4nKt1z%JHCOk-Q`=X7nN>z<&zW#9gs!)mJ?%{2hK?m0#+3QNKHq@((RHo`zu1-_d z^Bwo6D7*8AO>D!SzGM$u`@$e=4R`E*??@HJIk0od)%sK5Fe=2{l|jF4G6L=;d&A~7 zru4M!A~`+Rn@BW^b(i-3KSC`^SIOo{a(+-jEh}ioCZ?pz{AbAs*~M|jT?+~2ugp#% z{I^roW8-pJlhjSVSG$U)0Zl^}fysz`jT+A(l2tpgI+-5V<5BWz+t_nW6Jfx%p4iWB z@I*N_u26`7zTc?a4(d!2G*Zu`9fRn?#x`O%*GXuT>qM?$@DE!0;~qXdO4W&Ydm(z~ zz-w%nwBO=`22+)y+MaP{H*fz?^r1}O1 zc#pdoh&jZG%Q6xZslVSjj(@hh$bs^5<)mM>(erw)B8Ev}Pbw&3Iht@N&u4Qj_`#QB;3vJrSur+3l6EzZoXm8g&=Lci8PeaSN^m#?@=5+^>PuF>y zuFoqH8t@<0IskLDK)LNCY=?rJTvS7p?w!3orq+2_B+3%04Wv0hP%3aa! zZ{2~SP2c!3jXXzsuie9H=kjlNRK}>*S2|H$ewfwA6dJbzT>mIAH4svC2%egTIl~`d zo-b2Kn_)@&A+08wm4ACi>C?IGR!&HN1%^4-ZrC34`D#9f)xQ<}g)#hmw!v?<`udjd zIaGYjd~>S=`NX?=L2Qu{8!?*)IS@WiBH#Vbqhk67oG~(w`!WuQzG)MKu&dsT8oVoX zBh<5^x;ta(u&>NbZftQ{Ce>;&ZD_leB3AjwRAd51>ta`9xn9QZbW-T=czN9pWp(zH`@4XC5fdKW$7Vb-!FPe-}1W1dPC2- zq(ehlkJ4BSEUjH?tv{U0S$-(Um{5?9CDy$~^$H1c+3BCT`&{zJ{xQlRF+>Eg#CyDx zoiV*J6`5x-g6YjtZF5_Kc3S=0=QhjI)lP~7ztZPr%L{|t3Sh_im4%gJ{a~)L#O7bM z^5alS!41?$G{YG&CRgQUzPlO;3#pPehb>)EowCXN(qay^jyXihe+r7|wRWL2>tUFA ztH~U?wg#1|k@#l1yvjgJM;8;frVT~ZqZq>Dj4Asbj>$uvPBusxM>STcFFNaDSV17@ zJLp@Ui$q&zH7iRXkIx<>p!IzHN3`gfNjdfDke90rNMFA&yn6e!wxzxW{xjF1xO1pC z-jycva;@!{u2n()z?49Xyk>v&L>!joY+)z?>z<`CQx$+>8O<*=>LXZ!wws*p1$i8E z8Y8r$rfOVb&0<_mLUwtafrws6=;K_p!G|nnSqAzBo4B85CnmjjZU33LzZZa*dWk9~ z+D|rZfFYQ@l;^4$;rQ=V^;6FR1U%e8lj;)ZgcLh&Ht|pNTEHn~siu%-HK@xg%V6{+K_rv#iC-Bpy5Cw2qrIO1O}cOknNDo`uVf@Mt91YE$#Z zjJAu@<1UmX+RQi1XUs^R5g8(k6y2!A7--TMU!f-8d~Y=umG(G&AvsjIEIcMR!=2)@ z;G1UC*%zNXTtiL;phBjaW(FR%S0-$9s*+S`Yy*gqZQp%+O_G|@^0SN8%S?FeFQQ(K z>{5@v8LA=8HwI7D-&!}=CNP!FOP3eTOCFog!z52}N!Sv+NwvOzTLr(t%%gfq$k^X6 z9g}%K`2(Y!vEng#LI?PXMQMo@^&mqDIQ9>%T-Pd?FJYz?xJ8AD`qR&191wyB@|xIo zH+#M^?ySccZOjRiDO1pM+C@DrNu00WzLTtu?0G&FJjnIkdqnBHiqSLw!`1INVe=1Vw9 z(V4oKf^&1i%7zlcf@wnFI4>!yWX?t3{z=#2kox@A{L0F{8BY@N@B;#yT!@z$WA6gq(1@0?xwhg_|K=A^HekcWgjJmL^Qro9kG5)m=>ealRFa z*4y7F>*x1)8x5{p_L<5CO^MpXRQNb1earpUlV3kK=P{E|#~3ulG3NmdjD|KwZ#&$W z)Ymjku$=O~IcslfO3O>sDJSv?2r2R+RLS&qqP0p!62;?Z58uoo=k>I?9c<_7wKZZ| z+{{Ug_H^5|k(5^+Trcg;6LZokNkG+b{p@%*Fx($~WkwMstc-?E{NRAAVUa|sz8c`}Tn8wPWkWQ`+Q+|(>VQ+xISc{4Vn~2d}yqyH8r^_zc^C3j#bi=uF582DB%fvof zrzQz%lkILbf$VLIuGegyIXf;`>wzB2^&TjE4s|(`Q}gzxj>Cd%V;>CnrM4`f-zd~! zJcQU~!BZ^!HZ~kiDs#!Qg1i_xv8p@y1+wWffv;_iQP>6?5BrSpCFYX)tNNia$~l%Q zdE%1(+ey)cZS38D(G0yO5>h!kxW{8=%mxgi&F2X_BP~)fn6akQKYdt@k3@7L_pZ;A znh3Agrot-T9aF=^m_L^;RR3I(he1BgvikN(ZH-r@CUYoL$a0n-$FT-pY#g~B1_**HJ4ER8^z_&M@7ZQt6?pY z8LOmZ48jJ>a{orM-Owx|!LNeiwFyWFrs)ir7?@&`>;uhgVs`OEd@jYxMigo9!BgVQ zZH-#P>XGjkS@*o7#i^vY!-)8JXtflQuQXhwW#o{DSa@`B6TiJRmP~OLL_-0NmKE$L zw-tx79gPaCtgIA0H(ZMqit!Qr5_{OT+Yaha@J9zO6I+75RCk8FDIP(9_>?qT%!0b4 z#J8)wk3F|cK$EspG~}vk0_Caia-Q;F>Wh9!I2Iuu{4SU3cEDhcA}I0T>)4YElQ`t| zwzFW4Dy7{ICgV0^(wIFL^vM!&3YD?Lbj4iysAnGWi0MiLn6B@3ng6ufK~PZHnDS162(0t3(Hto4RU_gCM2h$)?mS8;rLP)q@&hUh9e ztS2;29KmZN=KV*pv++#t&mlf_FBwbdWMv#bF?il;sLjUvJc@7ty-@BgWRatBQ;-4j z+Ay&D%b#C*^QPDB0*(q5zGDq48q(b0G>qHHQ!r;);)n)QeCv%0Q^a8Tqevld3ODNJ#7mAuyI zrHX3YRX~07aC~R%@%B@P;q?7JEivsHwq^Z(Z>R$sq%;5$%b2e4J01u@DLmx+`-2Wz zdajZWs>>ZFtgW50wuYssDlab|-`dI#k=<_&tl*PnDJ{H7pY?uBC!^yBgkn+;{0Kl;pVTmjFD+$gIv(aT zoi5jd-5ig|UNp~4P-#k%Mu}B*aM(Y1jl2yY`bL80-k zR1x|pyCgJ3`>`HSZITb^@Uc|#FK1)d#O;sxdkKUnn6vUqOC-d|uH zST(U16in?;5s`7+cOUbx{=!LcPEwuk+#h8Gm;(;LAQj=dMf|-B2X6%Iz;`e8A8}e> z>O(-v-|E-msgm0+UCjGwp_OI= zJ`thZIs9DGq0}!hL+~hSs;76bVQUT#cLRdd*BA!QnDGy}SwNQUPv4Rr8QsU!`pj6W zKAJX?93TVq+C%d{L#;w5iRuF zIynA6mngu~3~@Zq{;`5$fV&~KW<>eVWw!|MG>U1&U*ZEC{A+;u@Nd`u3LMx1|Ed`v zgnu^|U?|X)NO*p0tE+1p+E+w4&SU51OZFzXE_0;1fsYS{VwlxI<<44vJrsZ84}dvR z+TEJ3AR>3WndX+3l8UU+OCDohVmugF2yW$ej9uH5cxjSSj#;#QQ@q55ME3C~=t zWe=Eacg5xbl8;PI)1ay+#GWHd(hCxeLug6c1^`vj8R^>nSs8>BU5LcyklQO)YkGiU zH7v;)XqsZ%mB=~7mZuZ^COa}lPHLPNjpf+>q!DkSGx5yqq`+z3?93^hWFbfT^Qe{W zXJ5`rb1z7J)x)Z&VL!N%#uoMvAI%)V6%0k`^Wu_RHwZPq(R8#QobXmHy?X+(FUO#JM+}C^T?4RU2n@Cy>rjhAxPCt3t^74`1 z@C|a-jVp^$zZlW0)>j8DSb{g_%D?DUtkUsOYoMjT#3Q6K%WX{n21qsYPSV<1MvNS0 zR&5z?aNt8uzpzwTTvDPFTs9!MdVPEq4i~T%E}n0&=(a;?kc{&iF%pJ6e#-kb>w4+% zxL{y@@N`4kj3|^y5(o8F^JYkIg5LFd?9-AxueQ?MSYe%HNT?o_{{t1Sxz?5`lTn+# zgzKPsKAd$m*Dul)U@LL*NlHk*;{+|64``ZByIGB^GVvEQY)X9zLPzD}oy)Gk#Kg?g z3wzlQ9%&#o?+GG|QKr{QVK1hZoyHEXdh*>S{T>F5d&)^+nJwz+R{h?%h4#gZR*iXG+~Pw&2d0DW>ad{Z4*BurXymxSUFh~ z^5lw&5VQEu*Uv|3n}YKk!$;2$+EB}R(6GltL#+TEAYfBwv73Fyc97qfke;4OEk7s~ z74d9Kk3ZFQH_`lFK;^4K#q_Npznzo%~M36t+nrJTCEE{V!NtXSl{^O+>0TV6Cy_vN@gbiCO=@cu<0fzEaR{tiO<^gK!_oDF#okVWRx|>K*Q2ng3%cQ z7n9-$rH^u>Gx(mu_sLmxEl4&Ptd9xDnS$9KkzkSB?9J*IAC5n!Qr>15LWnwBYn)lS zP%B$4?+!6-L89;(B#57g(;iz2{8rZTYQRh-C?asv91lqJpRdio#zN)FXVxQR$tClg zcf5V!B(j}fkX)(q7Voy|`3CcYJBbW$X=xb~tKuEX!@;2jgTX}ZQC}M1d=XU=OZt&q zqcjuTdXniMVdmX#W8D2!@$Kw%DRYdQpgu*g{09gmER`8w>tm)Zm2hjlS4LauSdSb9 zVchKdlj^~1wm0*8>qqff&AnRu$L1Im!{C`_{k;CqD`q8pbHiD}<#M9Lkn_N=LDwl~Arnq0uc2xDbFDEQ9xsr@Cx zIY#-mVZVlT0M-=OmToG*Vv_YHy8DHDiPZ5~idmco)4i)*kZ3gLAk2sQf>UP)_0o=*y+~Um|}o>Z-tnoKy&h*3uL2|J8YPo$IZ}fw$-TvD+z+3$C=t+ z>!~qTwHr&xM7~wlpBRa2NL{$C$5A(A5vriRXiW8+*XS25*Ubi#6OYWncL?WZe(^%9 z_ts>7UE8VK$j`3TRMSQZhmNSwc7Sd*t`!uiuJUCctpKPPa0)!Gh zY2F?2`b3aRQiLJOB=E1ZhFDdXn4+N9KE5GLp235`(6dD)gqD669Bd&EbxA(Klp6jM zF#J86Q)oE;oC*^gY3CZY6L?Q4*)-!>%k__B^sHkkXNU*Ga83hsn=;+DWh6XelQ(^X z)pXwxcebO%=UJ$}?`#vZtXT@5dD^=_aY|PkaZU7VovUqYU#k%I)~VaBsmBUswr)Kl zfv`1>a%GSh;?mUAbNnZ5uXCCw^N5WX9tn!4b!5}C8HZD&>>QJ?z&>W}%_VRlF&ME! zAaxL>r8&$d>FoSoQo{MNe+XxO-YosL(+}qT71Pmrkex;hoz~_UB$93TH z*>xrdhZo+YcE^9yMRqq`JxK3b8a>d{nyiFY&MlulfgLo{PfY~K^OKH z?sWUVbZ_3*=Yr5;HZS{?wR}8){spWc2i{AZtk8*pcmgP@BdMohJ!d8jA7~%M@B{~5 zx7s0~_b-G6IJbm=Ryz~WK2q|4?sb94Uw5U7{+|F@OcDr?2_(RUap*I*58x z@0kxvs7`^jiX!rY=OsG)(foJ9=WEb=k2&8ZfFFIi^J?@r+jPCIMm>jp%&5k%`ki>TqaD3(|966orloZ1e#L^Tf--oH8RTfzF1St19@77 z?xk}9j(fkj+s#i8YrlkY1EuJ`fUaISzWMu&c+ zSXT=k*{2;AVs^NodV2O#gKALA4K(@O^x!ACYb+G^biL!(t9X{rUQ)eN@+R{c3?5Dc z@E*6hBjPR@UWcwl23&gOO&bm^ZBu)DLU+Pw#C){No-10{$|3mzGRYu2JK3Bu({d~i?R(>rGlHwWo0*~exUkw%f(56mdyzJ6?X}} zm_2j4-DwUB>R&g0E|usyBqs!l)(}jhKTZI>DBBR<1t8NZu8k1jC@~H&ae|cq)fI{| zd}l<+gtrgDluMWA7VKgK6nEt^wr1+|aSU^@4hJn-=yvVdS(r@+pnuRz>%P+@YCXnl zx@)J-`w;s{t31;_V!`PcG5M$m@AAAiEYG|kA?IgNMp2jD{T=aTZ-)@(hQUFDflK+~ zL6e*Ltk3Z=%I?UR-{8n0?FpJlp;Q5z%&;1(TEg1$&{6&J>6i z&C;j2Hd^TB!V`b+?q)#M@$OqhI*B#l&W>m=WpWCt%l z55;vHHzhYY$=Y}96=m)N>N&OyMdGI1hGR|vXyuFJu_^hw`Er`YyoPhLp9o27NHTyR znN1M90K5=o;Sn~Vb||jLy52V*Z@JAit=2M{)a@2Z>4hO5f#!xT#JvTIUpKTpLu zA#d58^;6Ynqt?>{%A^unj|+$gJVe=S-AALpwY2-T3;gsOiOZ+9)2rVTqy5=%#bjAa06p7gm~@Tr4asnUBgjFW;GZn@N1~bhTl`8*UgoIcM4M|G8&qwx7y(4}*eZiaO3YP*ddl9? zBsInk$;S!h4c9z=TOFIHYYX$?Z^W!2aM`vt7EIZjj*vq^Dt=0EF0&5}5Vj_OhY1aZ z-0sF8BxRrV#|o_#CYoFMEhEyrcI?C?3C{?5tt4@uo$p&n8alT{(8ymbk;BrTXO1_R zIrjvulaVYG-a@`j zh$e;*|?64c+Bo z1!{sm2rE|evitRKwrA(I-()sb@BAR$vbyW(a6jej=ObirMj)gdy~NST6w;hafyCN+ zq0QZHPfEwPn`MX;H<{$-BKgQAU0Mt~vVBrAWFFa+ke#-zo8JzcqB3Le){0S3wBG~W zQI@aogtB;F!cI2j&(RpWgvuv&wCiFha(xLQs@ddNyv;Fo64WOc;X#P$T-oofhY|!> zdnT^mI3-Il)9}GlJc!fk!34|DB5%fkB%H##Q(+>FtS~9&YnL|-Ik40;Vnn8O|0nWzLZ5u(h zQ@vWx8iAl=jVTD`8Ail#6_Nqj>H7=UVe9nXz;|gJS^4zji zfQ_U|rw+qbcTHg{;|H@1!|KE79Azn-m5Horwx?@%C{Fz(v%1YR);u1bOp-IJ19J?& z%@I6nV=YG(aONa7Ev)l3|odYoqdjAsi0i+ePY?X>TX^_d744estLl3j@ji$+bOo4``{weMoJ z{jR&L*L5_$MUS-W($jP8){-hnVmd3A43Ce7)^xNU(={E`%dShl>iF1|F&x=s?`{V% z-Zp*PW)cg6&-#wtMv!+bosc}51D-2u*{gbfvT3+9G!gj~MXC-Z)ykTZsCWEv(|FlfNEpUp@}cK4*@Oh4sNh#u+Ij2WR*szknZW~%aLM6om zImhH>*motWrMk{x9!4#BityKjb5S4uzS`wKHlj2jJB`yApDs3m=m?-CUCFq3{P2?HbG zeVEx1hff_*$)S=e4dA>w;Vu(hS_x&$X!yL%If?Dgfg*P6dNq~}$%ni%5jhMzgiYSGv{HR-A zVHuP=)^C^(y?7_0%(hQ}{REMp;_yT#bIu%eb0#@GAhdKjs84lq)zh`x8YHQIQ#qJo zW$zB%Q`|e|^*ua2auq3v=)76I>_4lY>A3CC+0BO&_^EFJ3Y%QN*lLkHGbN0r9;Eqo zUeO^;)VgDpY}@&Hn7*k$ZS52-^$YZp3Zj4V#zeLZb(M4Q%Gg5je6qOWy^Q_je%%lZ2SGP_hAhn-X~ zUxR_buR*<8JHm9wE0A!M&UpNZF5yKjX- z#4BslotgyDnLbJk1pp;jCGgJ&Ygm0RS~S*zm*3hc{-QPexT);azq%x8@JfI>x3qbO zO@8Uxxk}eIgDnS>+?-k8ysNt{vYoU+pJhNWS4@)XjDY*&h9UoP1#b4o6N3$2xAl+5 zhU{%?Rnv0tKE3>rVu}%fw8#cc%~(qWpPOvAVpD!yww$Y6;BVaXcG{`Vs5E%j&_y&d z9FI?hmS~Ww19Axz7wrbBTQNL|z^KqA#hwbn#P}7YWbE0K;;1gpV$_WpdnN^mZV?$YzEY`S zUE)3(sQ8|;cE0bAT2scJk6u#o!ei{UsGM*b`UHisy{toWggLaytYt1(>6;b{^C#1L|ZqNQKd7ryt)!u7ZRx z^GdIFgkI(nN}O<;qu85H<`-vP3WTfHE$S~sN|)*HVs8ijrQZAifTJfn_9X!cBzA#vEzR(0kL<_-u{{hbhZ z`&#%%COlFAA2W3b&(oQF?nFd1l41i@_)vTWdx?IZj563KwM>`L33{Xm`QmWfSrB_MjY1r~ zK!;wRtqSh|F5=G}jbZPj!9>Llf8Fmz7-W186fXzTsEhwfcp?2=MaGE$Q%xiKm?;IAW9$7x_v@t(jll$?u2-0=WA^JQPegP0axU}d7D z`IY^WulYEK4j+oL|67)m3E5ENvH1o1JFV^v%-^{j9An7vq1LXypt^r4X)9h&hM$63 zqJ)2|M*-q|1dD&v0gx*P>C;C*3CO#{t|peSB&k zvfr3x4wj6%+C1#{I7*-dQ})XUdWcg1jzKzgF7wT22A!(hg@pDqD16i9{0O)Z#h3Zs zTO5pj(F^VjNw~&pgQw}txPN{P}tWO_%Rb6 zQ}|!WE9mV%ckGzsB=1@EQaFpKg|3efaYrl4T2JOSV28OXBB_?#O}FKV>*FI+1E*p=u`oZ9aUb-ETbSFnR{e2O;reoHosZ(@+BeeAyn*$y zGBQz#8BJ;#H{;WL_1W0@`V>@DeHX`U>+#bY;2`;HnX+|8_!o!|Y`bp#f}s~;=$b8{ zNIgCa;cE;XRJ_rtc7qyF#ch-I$ZKgCnYg9ovfb<4UPqJVJ7Y&OK4xcHDFj&$aHOAo z_Jo3L^zz-RDARacaQDUw#Q)XKwMIj=hT$-sL?l#;+%hv5=b(%`orW1>hQeg9h*MUF zsDviB27{u;5C+Hn5^`IGnnAgrjFnVEr&1ElDPxdJn5JCjd}H_b{66PLKlj>uuXlal ze!u5?zWqM$Lx^`WlbAkNkb<#?IlB0S3x*cT80ft?+B92%$J5j-)w!hd(Cc07I(4|! z9nK4;m#UIg&FkUgqIVWw4=WMgMbAH0oQb}?Melqxcb2{$yK##v>0z2Iz=Q`}3U z0+Q7%qHJPzgT@oBlOSW_!!4fLckj|OGFhH|*AGj9c{K(ySheex;otOE(X7)>*6vL% z4KE|E{64qF9gRHRbWZP3TT6B-o{tnTmO(f2TiQI5d1|gcUqD0 zaa%%yRDci>D42_$nfD2buiA~8o+mrt<>!Bij60obv$(wDYj4ANE(zY+=Zy~e@R2rP z9yzki+%IK4^6BCAIh~5+$V^&ilj|`z<`W<0%e#S(%qWlNRf*2d%(R87CWk|tJ~kR)7Kz(0_i5&m>JP1t=O-CmFS>W#dWY*8l+Orn?~DU>V4j=eJlydFhm)zVsU(f#>^|y zrW37<0|T&}(0eW+0o3mVMJ4~p;wRBImHqSzk=vj$tPWeI?T1Srt?}#ST_-ynLMchW z)(pBUJ!oGvn;_iOG6ei1Y$(lSQ>48`f(CGMZH)F8SV#aj6YhxxlJ@4q(hyLt0i0Zn z6p=RFyCh&-v8HtI7y%9y#THrsK##9Ge1ZV`nplwPa}l2Q9lpl_K>uffbJsn|hzrKL zul!N7n+4Pf&xCVSdBVckl|ybJl5|ErfpFjiW~nQP(shv}1J(6}?idltDtJztYS_qw zb(wLbR-6SG^%(E1M|-w2GcxqjyFQmF=ZAb0W?rt0@UC+i#Www{Ulw~?^q#)VD)+ww zGF|A2alls%Y}l0udB8=@`Jf!?S0iDIz3Fj^B+-3s#k!hdi3-vp5{?+(_~08o+e@P> z?;cUg@eN_3A*!Lay=Y^ewkRFVMCkBKy#+pHJeV=@#cBcAZrivamFspo1sLr|<*zzT zij;RFleQ`<5_6(nZwFs+p)NjIo;5`i71J_w5XeGWUI8V+w|a)ra%bOX&m^!Ac30`& zzY#Z=rwZ*%1?tLzVv-{q>%>7Jmi|TVJisk zZnMtKpCDD9a8$xQIWgIxlUa_2Bis!N*EiF_#y~+;Zitfb)lChbLc7$;)u>lX;2h;$ zv7^WBH!TkIv+{TVb@7NKRWa0B9R`8kmFG&%y}DA zc!vCxos3a5ja<5oVBn5sC2odFM0Q^uN_;WS-UIFSF2LH$=CuJ?21??S;C%Jt?!V54 z@Yf6k0zoKddzWx-9)l{nbF;m90cP5cIV+PV5k zq-pVMi5K{T&H|sQFRo0V_kU1Bd&G8uPEJ{}$q~7o>Z-(uh~^JG9<{NGEKW%PDpN93 zhx?v`W)Lq{fWW7QhdXT4DTgS40Sy}xNSO-Eg3nkZjf|cN>`A1|($y=iP&frrw~8E* zNX)bfpB|yyC{ZeY2A`W9$^q|Qug+31%~Rg9$4YYvV4OGzuohGR4H@5_&odgN=vlBP zIQIs6ZNtBOV{?S2@QI?GXD6qIEbG8+tin$9_v|Df1{2dq7^z!y%Eorq6#P2dB>P1m zfw;G@LGlo_j04Jg;hk4CXy`HwGyu_A@;5D^w}pTxa3B6wF#uh1#07`}tL#aLwoU-E zB)TRw&FcG@PJXzz@x Iw>z2m4_y8b>i_@% literal 0 HcmV?d00001 diff --git a/docs/assets/thingsboard/pi-dashboard.png b/docs/assets/thingsboard/pi-dashboard.png new file mode 100644 index 0000000000000000000000000000000000000000..2bf70ea19ec853267ef4d6e7fd289d96ae16cf20 GIT binary patch literal 133384 zcmaI7Wk6MH*Def85D@8(MR$XAry$+kAtGIi?(XhJ3F(kd>2B%n?#{E^TYaAId(V6L z1I&5X=rOKw&k%W8afCOxZy+Eb5I#tVDndX&9YR1rlEJ!7&<;Yk&zIcIyMwWMfNL}!omZ6A!X%jNU7PmC(zA;S8LkCV86#s#)X}A zs{q7TB?JGXH|!;Me%1rPw|%`HHDGF|1^J62X~qSTC+qNtX>&!SHB z1$IvlH!muZ7Lm!&5a^*c0IeZOv0GLaf+~L!IEX?WiADVyQO<4&{KDX907@%=_ae@5 z*1A6qL540G$~FQ7E&@bmmvLx4M07MFB)wm^*m-mbN-bu^9l(DB1!Q!VY~hbY%qzgg zW*N$Z%r0|Vz`NMCDIL9K%+kP;xo4v3OxUWP+@by8#UJ@nI)%P>$oDo{Xgvhb5k2R; z-#}gf-LD>9L1vtIcer;oITZI=bc99f5XdoTkuNt!ClyD^XPQEt+Qc4*g~B(O`<+R{ zQ)nPoU&9koqzAv!`j(FJ{0Y0tl`K41V`NpFKE=e=&UtLHrP;(bhE-bCzR0;OQ#2;4 zM2{egSc`E@464u7c;sh0N^jq1BYSsu6I-FL77_C6G?p!_Nlw{ySo*of>EGo3m2A@HFP^Q44mDLp|o*Uy2opX ztqtv=RbZ84bhTq^7&(T?P}i7}HMSts8$sy8S3qO06o8aIJbv^GB+@E8KnQl?1D!gY zx`e9Qq;1Q9eZ1b^*UE1BIU7<^=d!E4X@eXzUbmq6xZv(?LBKmvK4T_jd znbes1k`0E$=`f|bQ}uzBkhAI*s30Iak{iT=w`DiTD5%1S6JHi+>SNy>u$s&X$ADKy z==9bJ#R-NZ{J}q|^I+Zb%=4DB8KMnC&tD+4&AZLdD>93S3N;*d#2*=uR*@Jj$0_`Y zc#+~Q8bz?AC|WKpvv0EKqA(rBG+H_8L&(Y2=H}&A`ex$5*%tdC#$ZNt69Wg;P0Ckk z7D|`6#JI0tGroRSq}_wu<4cidr*Mnj=tDi1wWGgdxr4il;}u($%p@L7Tp`n=S)uY0 ze~thM{gC*fWRNGEFC5cB9kB4G90M-2Cv-Vfx;r8?FVqy{0lhb#N|IfYSn`{si==ph z6;+FT4>ca`15I^8bvzQSo+?3ZHq~o%>o;Ll5qAD|2`nYPD$EK7g=F70i}2Oz@t?YC2wDP#axUt#xr_3q$LTK|8^8mBb zN$!%LIc)i*UyjP@rKfKh|S0(m1`BcDcq3DBy4|>%E6c{ z8+(8C{St8b)fK}v!xinG;y&hH>k99Z5Dyt)_jSnYfY+9gDEmmepW>SV$<|M^nc=u!fN0_0;Ap?6i z`%IT_cb4$89Y1`nZQFC*_&>Hzy8n0_xbsLPlad>JJIFmKL|dd%@l&;!qL>5zEmjx( zY)iJs4<~cC1M~yZ=_reMOMqqV{P)@BYPLF)xy1S9YSM+fIm;^ZTDPV#Lt@jl9|1Q< z)YoB0bqjTKUiLN)$XruA;hebKJv@nA*W)U?IhVZmj+EhXNs|->_Oe+Sz;yBv%8VC> zN{0_1uKjbvn0}IxT+*;W?JJ#>GK{iUR;+c-bs|=;j$MzXZzOLD2woFdMA1a;WPZ&2 zklD+-;;i8o(mdiE;l|@;eQI?jba(r(dFyab^YH#Y@s|H=@@C`y=Uv48!bACmH9|WS z6!anDuFfxF_pR$cs1KVkZzGk0h$7UD&*#42bn%I51-rntodBe!8NuoZ14iLsB zb`vHDO7+hVdTvB-Vs$Xvn=mzCH#q2=@1$NU?uZKX3O^0)i*iOc!=;X}2vZE!Bv8R) zBRE3SLFPlQCi*BcRH`1K?rC9<&%i)aMq_1>a#GbY7?`xcII6qc)M4D6iov1!xkOsS z#WSIUX1hq~Ectf#_RE=G3h|KSwmN_`ht42=Yk0obwfkBht4f@+EFCa%Av)9L+l8gA zc1&;#JDQ=^znqZXu=u}CsXvB~8Ch;HLHGwtvQ@D9-zHC7A;hAIg z2i{4>iyg;Z#}Y@&gR5z44T1U}_9ETyKN)rO)XKb0t71p6zFyI;4yY%08MM|at;4i< zs-Sn(l1c6caPy zg!DM>7>^2(!D`vM-fQN$oV+(T@4ioJMJjDgWKE5DP2~2>566kd7^A@` zN8kxSc(CYyu@Nro07$a-mXzA&#>*9Xa`gy%;H?-xZ zmZ-bejO%c9&(>z1w7|E(sO!|?c^r5VQO&W(k!HoU`1!Eng!3Zp$=Z|~$c<;svut&2 zxBq!hcgkZe@*zXY$>UhJskh##*z|*(leO{5Q|p$;tDCtSJzfcy(`$pC&Jgjm2j(ZP zC=5a@zHwK@yQaAlgja~Kc3?bS^JE4Jc(8Wix?Tm{MwNGJjP{L&W*+dDdl)>dF9xqj z%nX_^2I;}+$uy5Vr%kL3EGM^eJr(q30lzSR>9iKJrd-)-QS;J!GFS_$tsJYQBvcZR z4c~EBd{Mqgd2V=;x=h+ZD{fnF#q@gjFn!Lq>-J*2zxg$q+E7*t5}jqWOB7;R<&|Kh zShENgM3>3CXBW+}@SQA*(=6v6Be_9H@6SjOBpk1h!=2;(`j~{1{fCqisXJb^gFsbh zNFiuP7N&MF$XKCwtXy}xco5p~5G$f_acD3Ulx;wvP!9+}^ZRh?EL6<1b!ZA@#|e3u z#Ri3A!1`-Wnd!Ve?vq>#A|2# zky}yp{qO1E|M*BgIXKvGGcr0kIWaiBW3aX}Wn|{!;$mcCVPs*U2alk)cd>FXaHhAi zC;fMkKkJB^*c;iI**KV4TM_+Q*TB%)(SeVI%cCxbnO%|9y#$Rt3 znHiWE|E>+5%KPgnx4fCNiG{kTnWc%9J$Mg(W)^lP-hU?ik5~WM^1r5P{AVf)7t4Ro z{I55^XYw-sqTs(M`j=h*JO%TM{|ztWU*7Y-sl3*C3jrYr@j+Bb*%|V%1twXiJAqz1 zxt!6Rj13N4mV`lR?i21PwvEr z%rXtS6Y%zO7jH+gfx`C@63K3}x9}p^EQD=3#vESSy4m^BTn64LeIE9-y~pVF&O3m1 z&_&Ggw-WW4av87+Kq#C=g&P)6o(cQ@3o~b9K8s; z4tM~O?We-+n8?BOmawyerZc>?=)D9}m3GA^m48IQl#Wv2@^gDqafa6kb7y+}%BE*R zpy|(Bc~S2j6)CNZ^+of$S0N8#vvXZman5qg0^v0qymJ4ppFJfQ*t}lMqwL(gx4SDJ zJ90kO)0=V}eep*!YyRHDb-ZnfNlD_c(R%6cEcuTZA|uEZECx+7L4OF86@#*{su}IE zrz>c{zc8uHNVs7;#xhVlL`U)txS0B;6ei|*^h#MZI^kk?)!I}n1X+XU?T&trI_-u zg-kQ_n}q}q{WEgb|B7@>0E#K-JpFU&lT!=v+TX`aOi+zlgNP+{B`R%jJVvl6eqs&* zITGCPCV2719rOKKx^-mq?I9ImuGY1)8f|GusBV7qfpDU;}j@ z=sldnTYg3ivwLXK1 z|6ag_X;NlL)0MK+r7ox|X16xzk%$u|2$&Vw$<92r7BEJ(7Wk$*76mYJX6=1bRxWYbJl}TzT=Rzm1gwOyh6# zL?Uo3+KAk4*R^8kf+t%oxcL0>6-@ES*ytTrQ-um^lUdIWkLh2;qYyWGBH+{NEPTe_ z4tuToz{r|)Sd~07-L}Ksp_VHiTz=@ZCol zpA>J8Z(3(|5E{C7($PG3oIEK@G;3&hY1`nD`5)Jig0S@5nI9i_1PEVy3B3gWcBPc0 z06*c`qxl-z=DVsv5`wJT+ulyB*3$r+tpv5#_3?y=kj6huy{^Bo)TYAr16|PtN@+vAA3>X?bux)O~4U{Dw#|<{ubEZLq%a7a00|OmM zo~M2ljtA4Th))SgNkK`vuGGykkvqPEZo4@_9ezms*azyl1rKdEEhh-0gE8DxP>jv1 zzNbhpw^0V8nS42AWenPmKULNat4H3*g+0EsJ{*UkKG1IVwKwc!7B7j!3Vdtjf1L4p zaZ>+olYSsL*<{;^_u49%9uR*61``ikir_0GsOocnpO~(6; z%pO3zTrv}Jvlu%8g={+ZapS{rh1C+baj!SC>E1*hw`$IzDGNjM^}KoI3>eSThc}EiqYV&R)gOaa73#4}x7peDc2}Gq_4y%f2{Ix-a?Fi~wf{N@6SPLO34rpNke+8VA+J%7eIjY0r7I*1SnmT1G~iT-ZQ+cb?* zKmu9c?bXfW7lFr4oBME_H7UJ&#d?`Yz$#2A%&#Cp0Ev7ETT@emn{+SxCA+Q?qSu-L zWr454r`otb_Vj7NYO))^j*Bd~{-Q3yT6p)d5Buz(?F?@%q?ZuM8Z~yQW5?@g#z9Db zCV1tk%qhUBAKu{c_U!)YB`{nC8;0p4k^azaTHEu%X@u89oy~MQ*BWV6{cTJk;1r+W zuR-Pn3R+(PGo7;A&Q>n-In1;khLU;OD9IK~1s>*@bl7+JpT5Zjyxcf>&4jXL^10QH z6r&k;mg=%kjH1*4yC4$FF!AbdpPqZY9(%d5v^MaJ`OffIvIuz{`l@*UCMJ=1fPTq~ z`XvT0Qe?9>TC{yE|5FwWoU%5mUQ>gIBYAEvc6RnarBMKV^J5XY6bX_B|fqIeB~YbZA=C=SNb}wkGg$A@GX!?D>)L zndEzDqfG#ER6V7qJ}=SvGg3(UOZoGD`Tau6j1yEKG(f(jMJu@W6%68LWIk5gqz6tI zKRLWN;nS{o(ex{4`5vG2CP8+D>`lLQOyhZsDqD!A1fn@lx+{UFlu`eO2c>N_%a=6+l_u&I*yQz zXe8Ucvy!dv#5Vp)J>W%(#p@APc;$uovk(sez5_*o-9~!G4@?^wY_mpWp9n%2mU0o% zjcI=*7dy13mKLdW_lbjE55RrL#u$?ks&FqmGhiRlAS#|za1UN?j&s{J0{@FacZKS1 z=YkiUfweKPXe0P#sS3wn14sImzCoqM91Ho${aBvb-+U$#7c%{^UXZ;qjL||DiR|qq z2mcDZ{pLGE{ver+*^gY?>#eW9d##610wg{_Swyx8$+ilLuKxIwlW?NIrppHa58vyv zxD%`NGedCF%H1K43a`=JDOd^=0Pa2s-Fqm&dZ$@8e!$u$y2yU? zD{cA#O9Y!;cz1sCl-YVqV54&KYiU#{#4uc^!R=w!vkrL1!d~vf%(R`^W1Ia!^;51n z$Cr0psZpel@?$;~4^G76dLCCQN0?CeS(0~@#s!3LRv*M5ANUlWg)QA!A@{w-!Z7z@ zmJt}+7V~IlXV%0dlipRt#QxXOh>H0O1@7G$5-*?nMjEbep_QZXM=jsYnX;x>yBilkA@A2|D`hu?- zI*$cnUF$w3BtwEv_jz6TD!aBx2Xyu&I~8eXq~&~&BgoRJ;cN!K5t?ves1<10F2RGpQ(MPb)R0O%IOxw$;^^29}~h=W_V z*nlZ!*jFtA`09c+ottyXR-RN9N8!WkIj9DKoDuEoggL5_BUhO0!Q$%pJ6d!!Y2{u| z2bJ96Tiga%Yo}ez!VuSJ1%p;K0d1Hp_tRR|KLYn4yUrMW%rdTq4K1~i5R=9U*I=M57KwSudMt%xJ>O^U4ZRzk3V0@Tzbe*L zef*J~vWGYSI4SU?^hIa`58)ZS|*FXWybSf zv0z3vP$FQt2QXXSq#XRgIa9aM;aj8%Cu)@U8AOgw7_Vs3(GD> z+#XKDB0xooG7xmE_lzsD3MK^EIiKuJ37IF>FK$WyqX7s#TWN+o01@8h0 zkqKXBdpoYyTR`6mAF^>DLub2h`+@}Uk5RSoY_iW}n8RNb&LHNrZfR{D#wmK&`DuD> z1kTQ)f@VZx{0K$l@4=Q7$p)whQI+Jn3DbKd*?!TssLi0sVKjnl9)50^Eqo{klP=HD zdys|V#;12bk-#`&y-7PCTF6q`x|24ecQuA+s{hC zvPr3joO&(+=*~;+*eL?PxBJ$2<2LK%O7G-bO44u8=&b^j?3D{B`(jD(S=(vFqb@b# zu4dGO!Clp&ucMaEQ_sk+xd6h{%Ih-7t5DddE_BDqVxRO;8Xa^Sfv8n;SW#5a+C22H zjqC3c+0YDEniz(+$Q{QC+RedV#|ugt?7*ST+i?{+eqZ}ODGSfJ?m`#L%?r=lV3>5& zCHvI}1k{SA6RIBQ_>`HQ<9q4^0fP=Gl@kK^YRJ6%8{Xfw&kwQe@(WYFgR3hu zLM)zg_R)?MoY88ce2Yvz%(jE0l*o^*)%^Fkop<=#eb2KXXhhDRek+@pHcy4l-Y=^# z0@wsDmkNW|zafiNGQsR}`+t@rz0kxgvK;!bYIXQ?#xwLvwy-0TFrRWF>;Qo*f{@7h z3jMX+%kq8KlMP+1ayv?s4^(tMk5YO3E3*?ze4l0H_OroOXW)@}%knYD)PNfvykPv* z`^2m3r(-MaU3g3)0N?M5A-x&)(((Dwyd@{RYkbJ*=}8+I{W7RTt-?XPaMC9LtX4K2YF1qv~gD7!f+uHug8%-s50IcY)Nb9-IaELT9EV|$%u@Hho7Shqc4-|R2_ zR)2gs@CYaHh%@(V#T#xDxF$uy=?idc$CguEWK`Hwe94*y*cCgzmWD{2w$WiA+k+J84{680wj?jL-^pp zpon|k-TI2U4n9)0skL1?vUjn0vou5a0yvIYPw{TbW${08@`bGQ{MnWB3i;IKdg>wV zp3?4LCgs|L6BBJV`(kW%$8svbmFlzpu451+fV4LX2}4Cia)?@iGK&kV zU{j0ibax(>_sQ#(PtZ#XYa~>rHtA?t5aic_M{(_%&nnn_t`3D5RdtfjP6J{oA>M7a zT3TB8)`|35paG*b!e21fKUEaxG%WA)?S^e;X-Ub@aCK>Escq)f%2h9}%gJweYgJj? zd#38=&!0KMT~a0v`!?BGD;S_xVj~Mz!GdBkGKHAyc});3h{WQvKFK1UxL9yJ--Ej{ zqI)zmdw{6$)o84>o|lNv+kX`5e@L{wKfoIeL^-o^@YQ9W1{p*u?(62)(1?Ag8N$_H zqfU!E9*9kk3=bDnPb$-E-Y>3ME;N;Arm_gxS6=R#9(KN4ddVuQu?A}S^u ziS`BiatQhwE^#HB-nitHCF0qdR&M@3w$U#nS@mC%e;Q2R9EE;xR4ITnFcr;k&)jto zMvbM1gaV!``66;rr(hZ>??T-LHWIC}q=6*+a`*?7)<@7C8#u`?^ViU?C|F1IGwAlwIS`C5aC=B`iAnOiT?)ePBrB_?gPszS@%Q`v)s+ z;Tw`(M(4X2xO-K{t%uMS(R9L69d4R|qq=)KszZHZ5{l!8bgCoy4<8y?RkzY<4r1L~ zWHCToX^zy)LD!P2{cQ0L8NhP@HRa6v)ygVF;|x?+MVPzytB&5yov;2MY+Z#S0<#qk z!h>_MN_r7nP1t}kM`G6Oqhv4+bH1(Q6mgR`yb-S_p~pjc6Xlsm>8P#&R0Q~U z8mHaR+Kuwn&}lt=lkQZzu>sn`Q{oI<--rwp>D37l?5B)$b9H@J6wmWff|~f5R1) z=cH{8+$@;E|MK<=qv5bP9b?n<(0AVH&iV*fOf7P4sWI2!qekR9Rt|GMufM&sKc?*S z7Od_pbi6+ap$2G$T~tbIsmeN(VO^KQCU&^Vp^`OmU|o2AG_@c*j%1H+D8T z1?_k_yOju7?%C<|0p}P!`h=}c1{o>*GrmStRAZCj@2_fp;2}R099q+q04uF^m7=)i z9N2^LDNLI2k?f;VqK5!RryPNWlu$Z(&GUj&{l&t4jgkAG$q&Qpl~|ZO-^l&LUz6vXrG9P|5>F*1s`N!gs+il)Ko%HO8M8#mM+N7pUWshV1wW zrbBi=QB5@vQDG^eVCIOPUNiGS(DR=vy`A}edoTypPICMPYu`I^uu${k7YWY)6EL3rjdifT@5i21S@IFVKHqSc0qB9@fSBC@06+3;}_a_wnb>Y9n z{WipaAW3B=a3s-U94fZ#<3xI}ArPI2Q7K8+uV-x)Qc64A@VvuJx6C&8XjKOa0Zy zTmAGabtWO-y~Tw}N3l=MLbXjqni$&Of#n=bQitQv9+YA*w7A0^463jL7L3cDb5C;K z;EYE>(bxI<+Ks?A8ZJ7YX4jnlS4Zx*t}Fhs)Sj0&L|aAgOGu>)*)`n`^CLV9Z!j0-BEBq4IUs_)$fc7$4$CVR?E_bAwTF- zQSILJ{w)c8L`2_)Ir(-8!G1pDCTRpR9Ct&{ZMb=t>N0sE3oQ&vkX>XRXCR3}!3?w_ zqw2N)|1Zcffy3*H-!{al{rP+<$GE^n}Ry2>IQ0a3{3Ul52Mt=BU`8rjh<{q@L!-njml+JzpOWNnHoyhelEELg`#Q?gGH((JBH%gCL&rd(kpy}B z^`J^AH8H}ueRWk+H*>N>V{)@OT&M3lQDt_-Q!eggs#xxdkYP27Kh9A&!0>F@K;eft zBcAw^g;PbkavKg6u`NN4ysvRv>>m)vmvP=evEB zIaXPVDL7&na)Mxxffz^ zklWP@-*DqlhQ}ATJ45EmoR?^WL-L1<1P7@P?B6-;Mhr_Sw}{5SGX&Rs_e?TJwlw4G zV&``v-XGJuA6n|hc0-$&r5(_xG_ZJ=MpTRvUHPpI%MZ~0)Sc+QGXS*4DVTwkp(v3uA1g&0ufjy% zR~pNT>Hfa4hJ$U3MtQpLqF^h?>7+kFCYepEywrWAC&`Fw%E>WzQKXlu*R2?vz1I+n zY@x4TDLz>$-su!T3kA&NA>W^;4Twe)(}9i$QQNAGQ<(M3p*wxM2*C{LW`>4sdZRFd zV;hA1mB3JC@dM$nV4#0XtZ$r(V$aOJE@K$&s9+Fe9&LF(QM*^OwFTQ0?_AwTv{I5u zy>~eu%oRU42<~^QbudI6X&OC#E8&%)RA9*^iO}C*oc9i%e2&fC)SO^%HE+<7(iu*| zHY)kmw)xAPfBa1!>8igDK~&s@+!Qrjd3PXo`7iq#I-CO!#lbR-z`R9z^$)NNJvc3iW` z1ts=$LW%+xDwNh`G2>h>F}gAqVTyR^8WZZ{x*dX$UABnM6$605Jf%SawaxQ+RvPxz zgmFK?SGlxZ0JAI;k(&P)l%NbADx)@zV`>9Ag!@}m_6gD9#DQvI!vC>F0rLUFiKPwWudSeDz!tuPc)HDa+SBvep)l%4Ds z!5y+j&Q7!YwOKkIgrSlkJQb2#rXtZ2U)UKl3;NK>6;O0ya}=iZq;;D{YC}VuZJg{r zN_(c0l!R)#S5xt+ikYO#1J|4@m|0s2h@S_epcb1Q=N@fyFF9Fg+Lhh|vaF0YOC0S= z%g>ACrw!(C!Kv)MI(4FUv;;>yJT&LN0|wC!L=3?xv-nsiyCoVt-2XMtkqxD#*gS2w zjBpeFSs!?Nm{1@CTS^b-6EJj58pM*2QFvDGF&+sdv}BuLJm5T`#@td!P&*|V6gMpO zsNx+&15s7Ghm}4DSAvVJyC4v93Z>{u@OUm}yfE0KeeX{-%GYC1f4K>JCI*>H7%6^LuAdN#mFfM6nA=9vG6n=^q5t7F(=>RTL~_LpXW zXu5j_l-}%j+BkE%j!GsN1uSEs(C=F{{WagD4jX=T34P*_Aj5Hra^p_8Bsi3&aPB^K zWzg&h7UpgE>X@r5x-vrN62VvD1z?yeRC)p+N9Zf5w`T@ z$<|xwv?xis=A_?~k|O33O^tN0))`dh*s$V%PLF_ZPW^wZSDzDXyi5J(Grg5+T<4lD zsZ-e?^G%^k_0fdGNeZ$YwL1X7VtsW!$n&s+;F;S)@!Ao_h z{DCseVYALq2tk;!MYTKp>w7)`boU7*N%9OsIXueDn13 zRGu1DcfV)qk73==tDka(E#~LWRNh{?)2YI>_@!t@9L*+# zZNMQOmCEF>Trp|U9YpsBWGLG3aB9jYh$(#jkwB)yVL~%XoFj%WLN?fgT=br7)KI4) zqOp-$$xx0;90xG5VVd#H%x&R%3N3N!{GLmLOX7Q}TuJB_XD*NIluIEj^vYCsSf|v@ zGDcB%h!_v`;ehdY2C{X^dYMdQhv9fS)uG~oV^yCj9tb0)15w=A(Ke%p=vdkZm9Ps9 zEH*ghyj&LnF0d8w z@-zAQ64&O1Bf?`4-pSStYL}Qylr>(nrev{Hzi}>0oF0*X=OSC;Wjr{^904tH*H^h- zzvH-+{n>mGIQU=pKvbX{=mWW=hv2|B24N_c2TXKS-chIB2xg0QAQ}_E*0KtIH8>#p z+Ay?F#86zaSNpc0fTouW)TS`Aqmd0xGB{npfa5XQomLIpkB|QN1PyjW@w-PDGe`2{ zmGs;io7e^gTVgw?EW2sKQAe}i)HH}6E!L60SbWNa`o7j~lFqotentVmUOG9;@!`NR zN7wNvIC*87&L1mbCQp_e9H>SK=qt}{P18{pfU~LJ&gJ=a2auz!Fj$8AcsFG?`=s8Xnn#X)U1L9~kE{8^3-R`EdIEPnEz#1>4sMTaYC zOu_cfohbX#5)sCx^BDzZedru-s}MaXG&Oa$Y)>$MKybV8KBRK#d04AnBbn2*78L5~ zgb~@vPN#vokmG*QiPT-Il8c-|wa??0sY;Ao7juueC1usBfiKq`8E>y{n@YpBWRn_`k89IKa3l*RU-Q(p%=k;2a z@Re?P5?WPim9~(~ZuXcGNLn~<X+SLDwzfDK6CFt2LPqrm-sV}Zw%D{8g+00g$bE?fhibylR+(2q0 z{maIZ+np`AeJp)bL#iEedh z;m>JNp+lr`$TZiB26N7J${-&zwBeeUE^E_}M_kV&_Flo=KwK%t%Xx;u9CekimWKQy zx*_UtMg|i)<0`0X>44?IfoRbNe|i9^xr&}UO>oIe~0s zYxC!!WWe*%<>Zj6I7Sa3e>4tt%X$x92Nmb)2R{^0y?;wR+&7M+z?63-p*?O+Cva%S z8?SP>*#xq&_?l~2x3Ez2&_Q{rS}&Sy?elDPrs#S>$@;qtf~D<{;^B1Y3o4PB=)-K@ zyXKx(V#TRLJ^`&&!g7CFnx;?{bAIgyS^IGB*5{?SVE67n9DqIEbz8zCi3emb7j5-b z5@>mHp)xt^jmM@0SC*-p@X8>*4{-<>z!KRV&HajV)UNN{J&0}@TzSjHhBv@eIr~-7 zfgf@~;QhdwQSA>c3s;NU!uG+r$~aFE?zK-V*te5AhAicjyMnWOEOc672_^ihk>#2R z?}@jfUmLu(8wQ*s9?g~|NzBOfhgXu=pA6!BxDIlS!=w{NAFM0& zq*z9}D`3ayb<-5X5ou_I#_pxNiu@KIG(EB1Y@YbZ38uvS9$gnY(*^GFv}A!RjL7y?(ri&2ST5p&@Z?UXNm%Yp zF%|~$;}U#k-Fd`4aMj9A@koLb)Oa4crHC{`B`)xOOylXIyqRW*&$N=ja;ehMy#DAw zFUtE6MR5d{hjgc;;%pTRXRD}9jAeP_U9pG+j%Ai1yd|`*9vOo7*rPw7REEWX<~a#F^Orq<`}3=yOBFZw^bAcO|9-` z)R6Nx3SmioC)CCDAwQLLeu=ghEZQ6&!CEms)=X1pKIpy-2f!E-gP+sE^AG{vd3M#t znB)jav>r8@^xFx7-jDQ!OIcvwlSvR(BfOYKfmCCZlz6sUdgROz_(0oNYo8^COS1-b zO^=Xh?290lxI#gekhcasJrRtj)PcA+Zg&X}x%Xt;hUl`%os#}ppKLemX6m3Zh{Zp^iOejo8>XVF2bFoS4cpz=hISClfZOwS~~e>nMawCVceoFfq4KfCjt4=D&b;%E8J=-cSKl>JsY~rVXcZJ%& zML_hprYjBvI9Lf1Sl_Rvas-6hOUs$?S;B5fu<63D2cp~cT2Omsf5f=rG*O&W2!8mIZ4A~@temazYEyAu0!uW|pX(7q|Irqb0P|*+| zn0`?F@&4IE6}@LfA`(RG)#l9f-TO(+{K$(3x}?X&FgcOgCA) z)9|+r2Bqn59kS@ITNsK+y-o6ZWebzo@K;31?P34m9h|kWg{}ya4VSmHhAKmjUn-39 zGN$8d!Ooinn&4c8nbKByHqRw-)G?aFYwm7sct#f}u-QmSh_nr1_|Ow!a8`Bk{q4r& z_c{BHT7-})=Y{+TgFP`?!=?~~$=p{VOFW=1TX>9pV|>=A@@a^t${n>$(ox~1*~5DJ z^ZM{f)i&i!n&7aA$=5Q&tWn?(hwQVj7RG5Z4JRS;Sb`$2Ey7EX@k;QyHLGn~g%6Q! zy)|IqlP`)6O!rKh3dbwCKH6vhJo|GAVp9wv-?zy4$V6!Pb)I<&Vx5&X6b(#)sMBj@qXy9OZv zOVcOYlAcy6&dgPA3AKSrS|wxFW9i5i60ggt*P^)k=8>JZlhve^55|?B4Vs;~MJt}O zv#a%c4NBcFz94DE%y;2=x#ny7xJLH#R_mA|WVadtY&%lyJIE>{f*=-Lcb46iu=z}i zXbzQCDE$f1o$`wYsrSAPoy+)O8BtkG*frJt`mV#q0oGf)IM(Q}B+)N|ty%g`Re3hW z4$)ECr682^&NH=RWM7@DOvX`-){ItMTfow_el@hX0}6*yaQBCmF1)4sDw=P6b%o=` zVB(ZBNko(wCCZiZv_$Rkn9X;K&*~84Gdi5^Or%wzj);T<0~RIp(|dN7*V~e;pUlWR zB5^U{crt@lEu&tcnKQky%Hb^kcBD!hFNRyU!S86bi9oHWt8V}2Q$0JD?s}PM z(lpj37mLyDU;42mqgV=3q7I}bfyVr(h-iZ`)qy}#b&3B2bb>zOVE4ve}_ zV)RA&{IpN7GyZ8YljA#ATRrfpZME^>NO1!Ji7(fm0G(BSCnXj!l&hILJ3TIGTM8Z- zR(|$dE<;2qLp=4?xv)3Z+=%ZF5dA3!7~9yz@Y$8l_0L88szDt9TqqUcqTRI%<+(#N z*SRERoKhkgIR_W{Kl&6L*8-6|ndTD?;>)l1g9yezB6-O=X}oD(4k32rU*Sf3|XEU^S#R2SjR7)#QH180ot?=KTV(o z!86v>gI%2=suWG%rQCYvWn`>QZ5=YkRR|ri=h!pDeei;Kbc6Q6l!^wj6L!m#F73Xd zM^On&*};CWr`jK3zT~&x=!>ej&t@o3{=ZC!iSXLenAc*KlIM{@b*)v{?zQ2@jIU{H zWRU~IJ*oO)Xd~4EAL&a~%x{GOVN@ACZ+Y_>@df7ZhIsrYhD2iz?rQ{O2bYefxK|?J z?rG_6BG3@@3_&vnkqL#eB~og%V$cemYp3~mjWRl+o7(`J_K7|4JyL-U!VXQik}$DD zfy(JbkayZ5n2O6WiXcu!e-&reRiUS#$T*n*?RW7~@{WC-5)|yjZTv1I=a-9!5A6cY z+BEJZ4hC#N&IDuVJDYIh%C)rnIH?_g&EcuzVi8y;QMPut%kmEK-$$0Sy^{;@1>mqN zTbMcK_`9m>@ihD4^mwdhe5unR+2%7W7tkbeqBRWR7Z$o&6B1EP`GB z!5?ALOD1l6X6D<;%5Jgk0X$3wn|^SP14=I*_hzimYsNbFm(=(*dzYt4W^_c(pW(Yj z&$qmx(@PmYPJG18FEDS-8KnR#`m$sR?kz1J_Y78yq-k2}rQ25jvRk!}40v!n!2XZX za7Dypi8*1D&i6{gce(OuH|TSq(*9Eyvq!#8D&3~gyY=nVINK&_k5Zi~Xus<1KFdZ1 zX7RpMjrbHbBV>IQPY3~SRtOH~0}BK7S`$Mksakrz1u_${tLG;-Os6ETq-nj{i78d; z65b~$?2eWi_2DkewVabq4JJ_(HhB*V(aMh54tP5=voM%eQa8N2)vHbJkLeXcs^9!K zAWNWMz$>Y=|L;@%&!+dEjs>=SI1ralHsY!1viQDgjLUE9h_J1=p4J<+rF{j(EeudZ zbpH96Hu%`VDc=JTt1Dk|U-f>S&diJ2}xL7 zX0Z#eZ(LQ7#Pu3(0NHSw;5*-)%l8d^d2H^p5?oLBn~vpbC#|s=wMHPYqWE1C2gS-( z?%vA|b;=U3!-rz#qC^Q{_<>GqEz>`_D!D}vj>@{!+FC-{0cnd2kTZ7u7Gn>i@=ERX zGVY=z>(Ji%i_z)TdCE5S^0UhP0|SA5(nw+^<>3O3iauWtbSr=D9|w+wPYMvlke2wz z-4>#!nD~1tYtE>E{PF)kd2P}L@)HcMFaL@DaD6wInz!p(tN$3hVmlALCA-sC~6Nz&6=`$2SBZc zj*}Wk+2SCvP60uia=~|8L@SH>o}pq8f|*4ZWOR-$EdwFFVI5=HO!A z#K`80!ag)^F7pC^8S7is{npivdLI6L$rJqoaHmp&uRdFzGfgoc^sZ}~g)(+va|-)yt?NPFC?^2@%`QcfOZ&kl zuuhgIZg*2SxS}y|YXJWY7p6)m?#)U8QodN2gf}z%*99;hOPYlX!ZqeQRdPh6!)l^L z5ib;R{%qZcy_1e6z?93_Z%YoTF#(Re%JNn}GFZI1(n`flB4Nj-MXridi4(`4J7)uU z&G=VEUpyH$hjv&zjvRtXg3qsQ7%|*;sPL}W{>j2)Gp<`J8wDY`O-o#pyf>q~dc)tu zHGX|BrUG|=Q;&bsRsJWWo7aY5#7lZPh|qNwdl(K(!S6k^Mm>-0K1~0Y8-5m|>X<9X zh9JXfyp4=;wb5a}_}i-D?4}PJiDBNqo4+0~6hJsBY@&)+E8i@IAs&zNCqlzAF82m- zkZ`JNb!-qIhwSN9B5h$}A{e0dU)7hECXhNU8zsStMPtWc-A~{tyMh+h6(d&d1~%hu zeJ-X%wi641f~x%f(^*ooMz>$G9Fpj5tMGc8o#{6&sxZ+~E9svGwm=V}P>{aQ?w*eO zUC2$lLjUSvIpD*u|86-l_|>3h*&m;$p5E72X&8vNV>0M~wPHhyiSD zxh&gQg{z+w2A>h$EJqxwz7fp-^0+*_ztl;;drcVx1;f>lU{qiDYSj`%L!fdU!t3s> zZRo|PpbN%(Lxy#uz62|tOB%%nsH{Ssnx0@L!Y+00UD-z2qNjCK0H#eJp6xdT@Vl?E zGzqab0D3i<+w@aXD=#dN>wgd88)ko9ER}5Vo*w5u*6*fFbMmmy_suM7TkceQpQ^-J zd-}%PXiMGh2_Gm$Q|B6r)xuDQODBCvLi2N}1lTJ<-{;Az<)W#uGuVAC2;pg)sP#)s8v(x%`u_BIb9hi}H~$W9{WFA4erzQoHch>c%;VXt*YF$k(eN zq%$EU#k@hL^3l<*BlQfsT39VoWQ0q{`R310EXTQk0}NA4y{^l>_aDKK$u#I0F=RyF zVqF{dBoVINS=JB<9+<>uq$aS)TIe!cdrg_KJ6#mpRu%aP`!-96|5DV%Q?y6k&YWaw zure%zO!%kaapWgSUooe`S_>Q>!r<$ndu}!S$^~cpQ7|4%G#ui8%rE#doj^Yi1yvFc zC%E(6UihbG?OS&4`X&(_4DW*+0mQe}ZwqS(Gf;j}fyeihb@L1U&m0dj!Rsc?PNz!$ zZZASiMQ|gF z+F-afb=pK-m9U@4;*QTQ=-|AfW^fN`ljwe8w)eKk**|Lq!MyyHib=XNAT!{7Gz_`bP`iJSAT_Cl>~aQ zxokF%3Z(kV&oe>jM%xo#`kQutXL+=db5uC)&`@}|E&GDg2`R2lz0dqN!iG!8z`l+A znOnz0on^a}aI%wfavdVh?wpNP|7zHN-iJ%llAMem;muB~q-Q7;-n6$I$4eP8kq0hp zte4mciU{*mDj>Lo_A7VeK?<{`k+`v4oAJkVl8UH9+|N0X4SLS*@$V*^ogBz_StVy+ zSv?bIBAVIqV!Nne_gX)WM0$99!o!oYyqQP0^vGXnYB6;DqtlQ@&mS<`b{>3L{)gLM zkp*p&BkhF>5vtK~Yor+i8 zKC!!@C`<@UzoX!JteMxdvWjV`TkGx7{fVxSzM?^`AF)&t+mUR{cxi7U-sBdKj$XW| zetx^amKq^n`kHc{#Aza9%dI+-;bJoVyKGsP%Vmka(`@@acgOw!3Gnkbc2Bn*qH8>e zScY(n5cFG$Vo7`79@V?E{OX2RR;y#TYffqK)lbb7!e>%MDR0gpc?~&upg7iq#^Q)2 z9?^Iao4kO0A+5CsnGU_*9ID4ykG1Vk3Z;_0)qm+IWhZ#M!+AME-_&r=3_#(q`6&q; z$Pju)_j8k*ClfAxO%cHlAb+=kgX;pbWgm6rxR)Ex;F+q{=t>1`V43Df0b&sYS_1eu0Uclc&Yf(RV}ICZA3v1 zLGe|sky<=)P`?p_fslvsVrhTUkBhYSzn@}&m+1;3ugvw?&MBkZ*Uh$N@wsw+I;FEf znxeI9I^zbSE^c2%OlRq%QvM9oM`>i-dW~l+iZ>ij5oz*XQgaiOQQ9{Vxt| zCPW{|U8kf<_v6F`G4QugSrSbHFN&0HFM2z5+yF6n{KDK^AjEmVZQA446p zIs3^_nvJw1Xs-!DieTvATKBLyrnxos?3+N4_u5c~R*C2=qY0ejSIApw z!CL@Zl}6z7^@Sw-%c6H`YST9l)uIT>F6U(2hzacTmKqTr5yV#;n{}8-I*U#4Simke zR@Df9xM)2%bm)7OxLtC+DST64KKMuY`|2Ey80n{B^T}1gY>J@pdZ)Q)vL4XQwrm|H z+6}RvoITDQn z!&3b4b3DQSjRy{k1XIxIpUY!zsd<3gYcK$@vsVH+zT!9&*;1L07A8b^vSdeot0ID2^xLF0QcFfK=0OdLVc$?qm{fzWu;G9JG#(>zExpEKtrOv-2ll@kEyV+i<0!zIz3RvO9t&u3z=7iTxphH;=<>v7LC*YrMQE(!X#mLY+1J&Z+L}~EMN$( z7Ut6R89YqAX-9g4pT#@+v)+r;oEu46nviTE#x5B#4VFU##xiOd++MR0rZ_D`hz)-- zQR8+|y4L2pjrn^lgZm)5Lh#LG4>j8d?uY}Bzan8~+E;)ddP90cD55e!9m%X)JLK3* z7ZS(byC6f!cGz~Y3Z;5&Vl^OziU}z!_D4c`rbZtBqFk1za`$* z#bs<4K91B?rc0EIYm_yOBI1B4aW_+b9iD6?vPvB8bH&`ZnG*WXz4z@YEDP~7R%p@7 zGX%<-E0udneWjrGq1|JK91-_FFKh&Ow@a{b{5<_!6%7(XZ`2UY^~xSaFs;rnz2tK9@fX(4`oqP-ufQh{-W?&{}CG7H*V_SFdy0m32y$06y8W z8U3G3XKDH2LAg?LMA!LVrIxaoq%+jn^2!h7mWG)q7s_)N9q$V{AxZTL2Z{mnIUNVt zu4Bv+M8vsYr9yC&T24HRuN-026a5S2erNwi=lbnJpAPerOlPs)%w~NGF6)Ug?JmOs zyU;huQ>n1=UWiH-J6TC$D`|!w=p+g{)|k;?A-34rpf38btc))8Y^1x9J5}B6H2T1n zTA=zvbmt6j4vA$4tGI;0*8=Mr*JrEu=BtmmjF>LQxzRwDYIdA}|7xV7@Hq6ZW92*x zb@(oilRQTKs_6rH#iSV%*p~b|KuU zksQV^(?k2$Y8vU?N7>syC#^(D@*RlzYN-J0=TaTm_+00oSeilQY(kdwg)tH&5ATS6 z)@bey!&$L|Y8D&0!Zs!GDNuOKJ^=9p4jh0)J{RmUGrU@edLw{jUcoGbLmp7H-%HYB7Pn%H*_qGCk9bczvUG5S#d=Hj@#^`^g;dskD zG3F?JVsz=~j~H)VISgzAdDOJZ9c?|UuRAg9=7?k}r1-O#`VHZ@TT+8tmNg8LUHpYy znz2=x_DtO1rw45j0)1p~fyFk5V2EGUy|-R&JYKAbNArJ8+%F?N9n{Y7JtqOANo{;y zsD%Tc-eM$Ybg5A7wSLK3s6OxOC^B=;+n3}vd}h%q#I{P5YgsCr^B?hB@mnWx{@eX1 z9UN~q#yP1VD0zGLbi0phR8Oz96f_N_aPycN(e||Mr#6p97v%)T)e1edDiXF6yYEmW z__Elv`BrvjNkR@6VKT6TBNMuN_E*dpD}uZGykj)BF>c)03wF$oebsIE1A8n^s+VAA zlNtJm{c>lq9U=u`apZv#S|9QL01qY1%y$~84Qk9&L%Bem0oAEt`Ibfwfh~50m2$T^ zPdYwQ< zi{n;S3_RDqaIzwncpZ1N#+N6QYJ+BK_^qjdfkmdmU6&O} zece=xi&I}6X?`peS5vBF8{YkWZh8Hw9VHhpD6-}B?E*-fIIkfYt4;0#*+B`jzofV# zON4`sk6e+1$Ns`H0J;5SC7nvDB8{Qk7H43kqR?8Z)walaMJui-BkV`?ROHhcF8x$4 z0($4eRT}P6utij%ct^QaGP}~>i7p}8cy79Sk9g9f;LhzwivZ|>12pIfk8?3F zi+RHVW5whPYpqIi0}0nSm6q|-0av9xDPzC*yX{=xy8`{Nes;|eyhyOw?K}qBYhF!zq3WNRQ>&y#SvME#qrcU7( zP*x0jpUOAlm8oMXBcu)v4D-N?SV7nKkV|U~=Tmc>9U`3rxerEJ-+znVo{Q?L?orH^ zlfyjRo@YvYd7~dM;I)hf&tK24rse*fs=op6TVim@npJ4;U~2=qImftlPD1k>A_d)? z_-aZI&}^r%kvM-RB6q4u@Uau zw4kR7P$Bkjd(jPO6*ws?J{nW{5?Rz=BF3TwSL=#u zbQ2(BSNWzVqQHy39ZJ2bqB!#jq1sn~FkV?AbPJ|Xk>K@11Y3q;-b_O${3tmvx<99> zpjFrA>JDuy(V+$h%49`>FeS>4{dO36wf-aLBtr9H=i@c`hFaO(dbhmkKyLIu^gM@422fBswk>=B?s!-RE>W z!N?YmDkoo9Gr}SN7u~!-H8XnW)6Xdqf1qK-eBvkaFq+%SZGF)iN%fM?E=Zg-hc18> z!cU!K-GW7(2^1Md68=535u6v~RCn=oe>QlTi$?wPZ+fxa>E@%`hWHdZd3R*3g}>+t zYPKzWL^>KWmHaA0@}(UrFR)@R>0RYsnS$b^j3`@EJJGiLli+DukCB=~&fNsaZI?iR z@i%_|*_W<6`W55eY)`n8sM)t3UOF@Uo_%R`0G6(V%@C)SeR_G%auF5Im8euoz4>p& zZ|ENd5;!Yx_Qe12E~ebR6VXF1P(**f9z9>&Q{&ga#fbX>~FtS*GFY;>w4BFQ?a z8XBCSF8IvEOn|8VOG>d6y(QVR;fR#M)I``_wK`?^BT#G6fVvv?$$f@#ODykRS^x7) zRPBY6p1f_ok>5de8}t?zy~#t@x|m8ERBIJ}#@xHTJC-Q((D_g&GZKA~!DAgm%(Kzk zYNKnYc`{j7_0wz0@`m3gH-&Y>HHJt@q-~?oz-CY!lB6O60iqz*YJe{dZD|>ep+RqH zp6UqD81|;aQat@Y&cB`2H*%$T53ueGUwuI>YYQLr%zD=t2ga@fx=dL1fl2rrd58Cy z8%M}4oE;#}A<1KVWt`FM4+xV(*>`tZ;N+x-MVW@~A@hQR+Nof7UFX1^v6KYz*U^Ei zat1vhs*0mV)8*to{x1@eOQwITf_VO;!7=$?zt zz>e)m9HH_z9~*<9HD-us@6#r%LtzhQl(?}ua_sMr<+&Cj?i(B~HgGc_M_H41d>`dD z$tzMt(LybORKwANJu5zCJ(RHGpUd&=cXy5Zzt`Qfo8(|!6xKw=&Y}Y>oDa2SwVOp^ z&qLnUYFdYx5cKt4s^;c+)`N|GT77r5l z6XC9P%!KO|-l@~^%w^ah>cPPkg>JmIl${NIH zte;yxYS$r)T1PV5K@gf%k99LOv3JKfO@6RR6yq(XQh{qP>Xy9Js+B|wm~{HuFH=ic z-JBWF+le(cK5a5IloWq3P*Z9R%dpY+IGN%+r-bju(E4jFipo!?!(220{1(_m6_5GF z!3~%g=VlH;mrj`SWb+ZI@WI%2uCX)HgA!t%Mzo`qKF5AOlMB9K&)cWZ_4b7gc#uB; z4Ly`cVH#}g{b|7MGZL4|+DMv?^j!m%;T&zUtB*QRk^4~4}?&Q$}KhR3z>n>KwOw~Xf-eftLR zQi=-+s27+Ep6|a7^EQu{yB1FX@z{C7(BJiw6Znz(7~V3oAzwvDeiIwpmKS^XXA$8I zs36_;NY_dpBd9$#S6Qn2epk4tB9f{tdpXEaaIv^gKIvST-LnzHTrb|5kh6)+@s~lj zhU$FK916>3Jhg-egebg&!erq}L8GR7fufg_d(zpyCCnpj!0^-u=KS@tg3`{u8Z3E-VrZ&dq}dkit?=;tbUlpg1V=B4X} znX-6*^FiPBguf2!6m13M;QU0KNIp$0aFx3H*BM3)5THBJ9Dth{Bj2e0xR)Kh71+)B zoRs3we;PvnX1<6nS~BJD3wa%KFBzASp`&GX`EjxGzm(z}OoZ__pJ`}IxbneQZZz1@qNYZD>Et^@<#9G5dPD5ak4z$;Lz(SR%j4b-Vy>xSQLWh} z-f_UK=*KXuDG8c6^%FOC zWY0Q{$dK4zmU^4T20xc-rg1ht8bxjQcGN9dY%Y4wEvaanTyJ-b7~M~#Gu%uj$$!Mk zxOCUy2DJ7%_sEbE4*M&Eri7K2w8wKdz41SPeWMRsS1ojKp|PT`(itAzBOXHk2iP;C zB9N=WUUNJ)?@<@qUnQ@4xy9_LV8xt>%I$$CMwg?8tf&p^dS;Eu_7aWq;PA<=8zs)T zLoGTl&fEJ{k|~4Z`JM%ZgYf5!_HkZBvQVVcr>^a=G z1Nu)07o+1Kz;#^M8bIR7^pszQonj)d(%Xeoxu0SLOXvC!gpzUa+}W~UWK27JN7K*& z*#R&+HLSu1zA4P%#k<`0BKGAH1^>iagj?a?hI1ozuqsWaDG1lK&E+*Q-pXp@1v9Q> z^0a}94w=jGi~da0RfUVFuh9jn^Zr`P)z%^_XZU%zWEs5e*L3b`0V=P-?k{ zf&+7p0lDXgy@*k?NEnf~?8W56)gm6L5^6VwV}d7A53(2Kg$g6e1^YtMS$?7)e&1wH z!sl8$n|0Hfp>J0E;V=DpDKy9)jG5u}Tz|EdDl0P^K=((GPetk%j>`K1V5+w4 z>Tzf^^ct>PL~g(e5zjK@@%IVtI!RJIkMtxc9&OVTSi%$Pj757P^*nK>RwhO>G=N+) z3+G0-T4B~tdDur#{pN-?dcWQb%;xA{|99PDp6gdhv@xJAZaN$Ml#{chv9wBGD%RkZ zX6Q3bFQ0c_Ldzkrs$QVIv~tGw7t^vTy8sh^Z=V@pi?f_b|8Wro zW^oUp+_PEM?%R&fqw#3|p?&U8i{?~4$PYfK-}2h={a<2r(+4iQmqE;>j2t%C_4Uq6 zkQXQ*#8NHg$L{D>OM&~aCO5%yI|Tt59*Pym2NWmwCt}K{#pO3t16~QmmmYmv*^%_r zTE3#zyy(i~yDI#aqb_i7b#;$B=kmG_dpm2Y0qrL|eXuQ&;VothCvkowH71lLq0yE6 z_`*7i4YBt5)?NIo-G-qFU3iFymnoN)74M@KZjxRpz2s?+pV*J$T#T+FFSdJ?C(c~4WiH$BWrZ(>tc_PB{ zuo=>exKaXm8%2Kk5OpD(W=wV#d}Pykc~Z96*Cdjma29@aefyW)kpRCNejdMf{S{|i zjSru~fWHzuZ>cH@-Rh_bLrMJafU}eBJ=S&9UsL@1g^07-L#F4BWP(t3b5P{XSm*+w z%d`vUh-4(D?oMwhD~{FGF28d&OMQwI8$rp46%hP-p|w@jy!tjkH=Ib%Bp0y!u-M@} z#87_sT&IbBCwespU{JQ5!e+`%JL6f2H2gbw2{ev3q6qbAey=Bh%O1!g1E9EdS8Dad z{9r5;ZARfup_uXey+?@`Nlf~Oug9{faV7OUlM%vg5-W?)DI~aeH+>s66&Ti`eI@yCGUky^nNa^Do_%PPJ zp{lXX9%tPx)*K5OZ~q2i##tQzHnf8k2lp%|zWKox#}QvA!>pAidqPktea0=VOrDE1 zEFN{vw33$U#wJvf<7}Yax5FuTszxt9-#so_@k(3#^K7nPmiL#S*QS4N|DeGYwN@#V zegd4vbma$`<&-j%#0syo)MHh<90i||kilZ=(=4soNIe6F{zOG?E&19ZM$ra5>oS*U z65NQ?xHl0hUxS5#jS*z?58vrj8AU})ytBEekaxXCK)`1So&7kz2fa4_n(?zw?+GQ82 z)$g=y2+N|OVG(O+p#`U~NV$A`6F5aQp&%r7!}e0Dp&0Jo0{L8C{&7XWGr{XK2lP!u zo01!(9_S&kC!OQ{Y^B#97sF5<_ads%PDe0We+f4lQeEH>8I7>}#h61gR$SZXTy?YBW3(#0vNbu;;HzA41@Yy&g zrmZjS5f)svA|%Vb8hfU>Q$D9qXl;p{d{=ss6ZU}Dqr(zxy_!vk2d1t*%)J#R{%#9F z9EN?!w(7zuz=?k^^HFdv4^Q> z>AB7J{^4=3MfTCk{vVg|Tr-bL;Aw*;c9D+>46eE?JwJE(K0$-wpY65Hn8;$EY#qfm z{M_YMmJ>@!u0+2@4toZEN@Q;V>e!$>MKNU~_A%%6G!AiYgn`J9OjtKR`$6Ix)CbuK-F$Isf@u@MRxQghi<$e$GSWv}tGsz&&-#Jb>t{dW%dRw$X2 zOL;z?h;=r``5d#f4Yl3!i=CgF27R(xg)|x((d(Mt=~U)-ES0TrjHdmzG>_?q9OdWp zzA@U3Sa!WhS?Uc4#&s7Oje2$AIx-{yVnwapd*M{RP{vv>W3+GKs{AB)+tl+U9BHN98=4Q-@oq zg>Yd{hCcu1aOZ{SZ5EzOLM1^j2finZnj)ZrqGs;%XKmftYaY&QfluIx;+KuMH4i=T z&rglV?cF9?d3f|WksM+VY#U!ODo)!r5)XxfoR)}kw8jHI$ZZEJ01J<@iQWMv)b|Yn zNtO*T5>=3Qs+e8sY{u}uV7Tg=BdAiR3jqWcAzresJ7 zeAB(1kT5O*T&H)#6;2ifALgg7(=xLq$rPFw^Nbn_Uq=f$4}ol&svO4+x(j1RL>mWO zP%*l{bxaeI(FR22g&dDDOPE{6`;<2npnu;?nR4DBazr^ByN2jtI& z3bb>socM8Bk3}R}Q{~}Gqa#@=xWlbYrCWTTuJ!NA!259^&HTCmz`Bq{IN`CBKu3xk z{7DPAzjS+ApN;Wu_6o@T)dkOau04nQ^x*zenyH^@Nw45CHcFSKiFq5tNfd#WTfG^* zilP|9+)fK^U(<~bGSlCATrZK$i{h}zS*DN5wgNL|bQT0s&UEy-+3e|Wvq?B0-NRf_ ziJ__2;WuG;Nj~2l7neG4DV!`r77u=CHId%$IeGQ63tLpSC{oWR!JVyZkVKd694$<) zRFwtPl`Nc+?z#K6-65-P1cryWc^&J;sFoG=GQ0>?^)(`Gv{Y?Syp|@X3I*BFeZnyGL2g!&(&^WT z_mMwr@$acx0GrV>ILn>pr~q&lv!Ov~D=aDvu^_sC}SNf@v>5z0X5Go#_U^At`G+CFr!L zJcjM(ZCxJrz?xBaHi(1*d?LR<^}Ca_u82L^DsVZH0CA$}?zoB18m}ZD(!FLn*2jz2 zb1sGKPP-V~c!WCrNR7Tk$7li8cq&Iu06a?zp`oP2N&=+?F5(NzsvdlMl36YqaVg%z z`@)HW)A4zR>>#>_#1`BDdP1z94fhxv`$blX2ys{bA(&qORb#sHp_(a^(G`Z;lbH(b zfFVj!aZmz<7Vf3H!6U+}rKC|+C$F(ZyC5PTkz8^#Mnptih5ezwj@4s$9?#WlZWSeT;Qesbo1*mzt&;2C$lrUvNq9 zMIByPsc~dq*PC{Kfc*hq@|vG>J`WEB`YS5}>hy+^{#9PAp5jm{_A5#<(KOklZFd6< z?s}#G8XU#lNAO72NIw%V_xxSYM0A!?H zn9+)fO^9nk0#GBCQ^~Bn-VFWKyGSN&sT9bA4W`8{>DX#t+}NA{32~<(~}R>GpqFc;aKYD9LFSozLSpJPVydh^x6-rG@54G)$p{Za`mBCAM47!?FtN zv9F^>MLaP>*Ly2!z)!AX4E!262%sy@zl+ShcLojp-~H{2R8dhFPeL}Qp>=kZH^(8B zyl<#SCAZ;YJeV1AcXv0kP_=Xa&a@xHURZUdsr+D;N0p)gWp--0>wYk+ck~@sQfEcq zc*7*-@oU856?^yh2#>BGbxrUk1V)$kRxLEPxM85F+fI_MxPv?$koDMP=k3^^VGeCK zjvo!EjZlW_quehd>o1tTCV)}n#^^%99gj-t&^lCy2|0P*rmrQgM4EN2-OWQXezc(5@ zxmqL@jz^sN9Xg)W$zfJEmWMUe_0wg1%@)T`(|Ki5{eOSW14c&3M&+UK(idDLM+mU^ zy9F#G&C`zwbT{7MMS@z zuj2nM)D+%(6s?%P7ae<%$`z-EZ$LIIV`kXym<0HsQkA8W0UpVqMj(70)v*&~(&D16 zDQoPb4TsjPnqHn_k+Cv6!MutEG2-@64%u0PB4E=}5D`FNFYA!K;%~nHs>{Htb&_O$VC4LOAq{L7wUaBc_ zMhwRTUTnvu!e5f$jM$%ITaf*$Rtd@o2l0!$_|It@f7G7sOrA)c34SE#XI+ zqaut)3I*Yx0l5L4(M|yWXOE4`&i8)1=uJA_r)^&p#fJ7GTSI;ZbF_v0{D7GS8iDCk z%FBGoz-6I^Q@%lxvWG_W`0f`0GewoOC-KDYU>#64iVVG1X71Gn|;1#Br&kRz$cE>>eMw zr$Q`nVM04qv!C6y+KNiCP#rlHJT+)(GHH0MoDn`->jXvqco=YuXky6`7}NNQ!k?IF z-X>%%muhKHz9|Ncm>lOV6RN8*a~3P{r(rr=nt}n+C9O?&+*DKm#QH6Lb(SGdFZOTZ z#fIG7fqM-e$J`GY6CMg#Kah((4pHgG*z;+!c%v}{A%8L%c5R;r3X>Fjj3_Sbhdth( zt`)Vaq6$Lj`ejTL#`_u?mT{(f1EAhvY?pI5m3PG$I(^;$@zf8|ui_$Y$Cv|MtG*#> z#_RNmGslYIGVBZr)4k#_ql8}TXjl!ETQhA;n|2xtpwxFbi=rg?!YNQ(lcDp)b*h4a z`&~zY2m$?8t*|j1_s2V7qdQb5UGq)W8?&*FJJF90-uDu-FH?lHc{cYF19KnVAeh#b zenq=J&BV^9g+#s0dUhrDqCBH7uuH)ODV@)lHtNl)B8O)Oh-N6;4@NK3<*Z63?jFxZ zqE8XCvmCke33LdaY5qxA;_Et5w{J#G(mfMzW7yy z{)6x2_X;RMC+vhNUI#Q$5-dmTv^eXIzx{6w5iq`DbR!9zAMTGs*q>H0YC1Hil(f@3 zL?U7B>gz$pP*NExxK27a7R>N|5j9Yow-DR14$l={>mTn0$222Ly+YD?>#@~Y61#1;?3@F zB=J?Xep$}x1=v}=-A!yqE$y{S5gX`#4W3qyXOS~@h;2rj)2?=FzF+F zTHv70Q-GU}NDn;InFa2TK(qKNC;fPeS`B34+?)@zYH@jljv~qQC+;8`%l9_3*tbw< zjjSI?`2aSfkGXx95Z6smc#2zmuRIAmZ9n-`fRmMeqR(Cp%q_dcbq6Rw(h))U+Or&a zXu(}7>QyM9ut{r;=Mh9(XkT0iobkoaoMot#@5eYsa2uVLL&v^E_Is=2H;;xF{;DYq z&)ItJQ~?NV`~w;ceFy9?o?=E`F3_(~N};O3jTC&`j&77-*;;tI!&dpw1iCS-p63(! zdYJs-glaT0(+T zAzah~Qoc8HOdBgWcK;Qk%3o2sPgHhGuXHfI5Q%Jqi&xl-Z} zf+i>=)C=sUTg`uV6q81uO7z%hBmN5QoY&d~pwPN+#&v#<7zc>XYj%>+Gt_0sJ?D<< zcLw-FsJt6Bkx*vKQ3aA$AeNA<{ zn$bTXRFA-BG)l#fTjdh~;GpB}IF#@swCI;Q#UrJol#vQL)ymkL70)_d8t^+%96KMk zX(UDaPcAKg1R$QEHZrJFAnfTVU@TT#-p66Oo%MKV@u%K%f3s9k$KIUS|2!%$;I`To zuM1qVbHN+I=dQ|312AD0vN^xLJcvHCdo^bv!SKjADBq%$<$w}~RM1^=1jt7smK$sy z`*C-g;7ejfcy>xRDj5ezcbNYcb>9(ihGSP3d)HZ&T_snY(g35FU#FSGvqb>NnI_#% zdPUoh^FOLLs>_=R)9%p_nk`pjjg6wA!`?KGMf+`M=2Iau)Wh`S&z9$x9P3Eqa)Cu+ z0H#ITGXCr6YUkk_3i_Ks>bK(n)=$62e`M8_kzQC2yD(@7~!;zIrNRo7G6)%?bb z)AHP}lpBSBn-QAl_Z&Z8f*O67@ZU)ov6J^&BluCvsb*MI#+6|M*ebHB@qm*$8qDLF zR`(DLOT!c~Uc_x-pv!ks{#@_vfwb?ya2@4NqA5{B$2EjR*(}i1#>JdwSR)ykZLkWW z>)y$9{N=@ruYQ{=9itU4W7+dn+rS>?RApZ$M=4( zCb#qp^8%Gl0bhw+ZKg83Y+lj$rqo=M8^+o^x}1Rn5!?cuAEL*FQ4S)Yeh05|kvs2+kuWDB8F4nppT@GruyYix2-oh5UZ~a7n zif*^;b%;7=uWp6xXs+7I^5>J^F)baNtJOOE<`S}sqG<6MmK6pD?w}XOGOmOm?-@5Y zz8cPOYCX^8|8V+AFFpHK^{}H59VhFs4Bf#YGj>e0*;x3!C04IodrQd=D@U4TJX`tA zGAe{Ufjv|tFGmw$I9LP7(BpgYu`M6WEKyUIhkNW3hB?=wP6I8&*re_39wzVQr!ALc z<2evLG^|qZ1$l-GJ6fNp7LV6v>I$fEd{18GiCITldD=;Vh$)EhxF5O zl+jPa@eI|>I?GJ9dVyl-Eb3~O$8PT0uhU=a5rT_b^3CYE%Ii=CZd;3azTm(4x#uO@ zS9Pk7WWJY$3#cpnz;@fV0|5^l!fSF=cN^PpE=?!0r4Kx){1+9}KyfOpM{qeKH6fvf%MM`!+^u#{6 z|22x9Pmw&Pf#Q~B`PIp=)+KV(){_>2;Pg*8HEWG|d0meKdwCsqK)NjWZ0X@2T$8wcO3Zye|h+SFaE`eZGKgKF&>wSFH9SU%eXM zS7klOLkfnf3b*t_h5A0cUMYk|x*-hrX;p>~53e*e^!Z$R1|&1eFcUGlO9&R|i^-R{ z%3JFVVd-eQ#WKHW1PmJ>Y9D7&Cw=fO+INq>a<;FLVfz^a?JU85=c{{|X7pzB0#`6p zWB1oF-7W-SlD=&cXSA#+afs?Mkb7cOvD42s_s|>ZQt04PKxcUI(S8MKyyJp8%92Wb zJyhJnPjKhf{iKO12=p3!iudaO(exF5O}+2m8#P2=C@LL_0wUcpV2FT0N=tX=sF4Fy zP)fQ(x*6S#G^0BuMve~Y-#*Xx_52Ix-1j-x^-jy5FwlvtX-TB{pdkbE5R(GtcLJ(O z^PGjPGmQmxSzZ4gmULi{FTuN=aA0lK?kgO`YsS@a6Q^*mEN3b_jW$2)3>*rBOH>7> zKx(OHV%KaylI{A7X{F(_NvvMhCX|%$Yn*|F`G{#Pxlq5_3#UOH5uGseHx|p7+Cq+d z{qQywl9}hM-t7m0sO%=6p{6A0^ROTE5jIYdAqZ}=HwcZ1=_iZGyyWDmFeik++niZ7p|a;gM^1|(y~D?i zyJ13OrFK^*yES&_O{&wWKi90SvT^qXN@*xK}nQjN_8v%OP>p-8h-Av&iVxm z0i#K|kP8uFo8G%}VR|gx$@8T;S0mEjVg=VKrzr$`ad>PO%onUQb@gn=OAMN-kV{t~ z&tWKv7SkO#KMu_PPTXDF>jt+HmFNx;N_0IPZWD!?EALaMr zES$xrmJ3!fjnFWy3^o99=K7lfwH+BY04IXg4VPhD4^UlbA**#Y9-{pEpe~DhF}U&H z&Kv9V1#`*c>nhz=O|ZhG)>!JSEIp!j>*@JluY_F}&0O5D3(U(>J6H*D)Kl?d0}R6dj}DwQj%BG z_tOm%Aa|N1T09{y-lf2hOy^K5#>%4MMH>0&t*>cg5Ot%X&G!WJ!7KJ@I}_?Xk>~LP z{z+`Owp9vdrIc;u2qzKofRLE7@{<@AdOWoC|3)9$5~dXx_@GQgP_%`~8j8#s;yd|t zJCe085O+#QHhcFHS?h*hHbbyQhxkCTIni5DL<(htLDkbm&yj21RwuRuD+v#M(mTDT zmW&L81T@9A9vp3?^6Tp>LD+Z3%f1wiq_eiJw(#&C=zfddn2I|9WNsy-{{V08#Ee#V1 z)N!{#^KocptdgYNElnoLU0vchhQ30yAVtyyR3 zOdYwfW1}HEV$k|VA0k5QFM$a(%srw&L6%x%fYI{m$_0dRWR@NJJ@t`SI$ zR-w$$zf&P+l$$@+Bg_mh>N`VMU9gcasfzEIQ<+)Ha(mh4_tr_wsvfGDJoqZjw~VKv zqENzu+{oMxN>criK}s`A>5G&}b;6w`=?!78pJt0S?H|e0GEj4`4htZ~6KCAjQzUmE zJfgb}wB=p;_*76d-FPqaR%a)0bXm8oi-$>x=Kl>hTa-Y6-=1ra2;#E+f=q&F2%eq1 zQxr__D4{T?(&0g2`GmnazjYfT3eq!A8&sJ}n`Gsbt_Dl!`5TOu!?{lTC$TRdQ8gzu z=u2vEy;E_N!7_i6n>N?3EWw?r#}G)(ohNSepgv-wzScfq@3f{wvi?p3MfA&N!`8uP ze$JD$laMwRK^LtBaYDEBrL9#0s;mopKi4FaP%5->V=@_eMoNME0*P)ZU+Vh{t68|J z%${@nHOnx#`~1$!Ei#iHKb_--PZ+d?&XXF&zPk^}brpzpI`?4p_lZlSVt6y{+4H|8 zTb)~_2OH=dg3aO+-H?0OFc-T#n`xS-!E#iTp55I8a9RM~y3RkPRz>ig!M(+os}YBi z-8DRo_I>D|iOEka`p)ojmD&}d)*5fL<*Eror5B|=Y5yZXRG5%9%^MiX1-)D zRqwf+fxxpz8%cwrJI#kSe(XwBEEH};HJ2||uNIo8Vf5qO)~6>Htw{LU#IL z(|k!L+1=!mj~E|}TQrOHhxo!sTCG*z+k^j_&)F=@XPi1(rEeLZB<5YGsTpM9K3EP` zCWUW4$AJk5>JuFQns0&s76)||hqHrhj@B=(UM(}xlp5%sHiFz-y95LDH3Ri1!it#U znX+EsIG?`Zofpvxp&8CCv{8Lp)0Yxhuel`cV;c5&`P6~S+oeKOiggg zj#`|}!N01lEo9GVC-lU`w#>W+8Y&5n3~LhGgIj}yoZ~j1qa&P|QAJJ?T*p7%2M#n% zmN1^lY0q`gnL#9Y3>BuiucRR!?9i@ z!p$>k8qSBcgs7);a54|!AKX&ZSA8eHi5ivRKB|VaZ8T6_uwQqTY7-xZI7O8Tbktxt zv*G*uK5WNxBE}Oa}Mp>}t#oy~uF(yi(Vk5#Nj4^gFNY_=zjrnM=2%^+23w*Km+zU=Y%8 zaSiA!{WkY*idm2A z#0;q+9`|`4mv1?D*VaJi#e!bS%R>mJm8qH%TYfH|z5&Z+a(&O9Fi} z*C3`Bs&}#aaVgJlxjclbxdR7JmhosWLie59LoV^_&}HTwG1-&Hz?$UwI%#~09%{T9 z@6x$}YcB|j&Di%~+IqJCgxkKO&o?;}7JNj`;<{RyrwceGnHvh|Buj>~-!*zOj>bk}2w%R4`gM$G+PL&@S*36@ZtQUmG zrh8cpNmNZX3sxv*Y-Wkr&Ut-olM`teyBK;=n59RgNVr|~^8H6-XM&@L>Q%nP zlWMKAfiu)~SY|j`kTqh^`ivtgK-$$GsFX;S^ ztt?5wlpK848TJywk$Yvh$*B8;UvNDMDPqU_Yw#P|k~Bz8 z{6^T5PEdU+#W`>@TN#>#t#e#*q*v}O@qgDNKjb^7GXvli7$h%n6lo+1&An=EUe?D< zgm7{|=R#`l7ZMnR!xCJasuR1J7euLGEP#N&PS4y3k34KP(rz{vW{%$fV9^APuqC?* z(NuMpNwxCkT=j3SZw4@z0VOtAo1^AID1@D!QC1j}te?qDhn^u29!w3^{yd z%{5K&mDSr_ue?u|{|pJ~1(Gy6aooci#f za8K3y-mt9n^2NSfu!;UreYgegMwQUf$SF0=(D_W$q~XAy^EGcug?}@DW!NduqG;;_ zCGx={o|6EdG0WPj+&j^K9)4k@zw#1%#b?U16dc?g93hV`JR=|N!|X!eoOoGP`;xae zd-l)!S#Q`1n3tsZTra2AbVc&~cf2j6xum+bAMIqwAM*gB1nedw74P(D;wGOp6NWH{ zkV>hl=1gWLLnMrJ^d85M<{mA$@IMkC$rRl+(;jJb*CH>S6)XN@0gb%#@(s04BC|n+ zRbA@iwejPw?h(zG8uujnG!XZ@imVWraN>H|_R9HI#u)UB1%hlJE9KhFYeK9m~lqDvd1n`q;1*8v#zDcBU&Wx z%^nPkR3rpKFa`VV@q_Uwm=2E6J<0T_;`>dW&mCJwOkYXCqqy5gLf< zTDP8y`zZv^y`oaGNEUh!NVeCGZ3tY3Tdcz2zW3mz*-Mg0U-d)khm9Eg*`kvxuDa9J zRiwWt{pDF%3ENmQTWLhUR9KMZKBMt@|IrKO7W?^9PKHm+ zjVepg-5ZTNZ{c^wmJ$bhJ5Ud=3zsrUduz`*z}XWyFV2g)h@DTjyfir4TQu)>4oTw6 z*?AN22RhdJbdGHTHFh+Yl0?q+xx)!I-9&XTcSj=)@QvfGfW)mDCFoJANVZ%Fn> zImcuddz;d}Vpy_Un!VtG{Vn_phg&%4Sodo9PNpE8gZ&J0x7f-9qD+g}eKLF601bZ? z9$PE7yyL8Q)tj|F+PaV2X(GPmV_vc-rGRSs!?-a&#l;rI-phGz1iz@+}?~ zI>)#N^+553;i}J8VMJ`{+Q#X25Cg|Bz_?WZ<9hVPw6;gQ_bT}-F0-Sloz~h<5_d;Y zvW+N9Ttdjj>Zeb0s>bJVVLisIqPfq@xo0%R5|lnm;H7bOD!(2D6!bs1J0hk=eGLZxTeYJw98x$F};oM*if2Z*J%imA|VGu{F3)v}n@Coqm*Ttx;ZnU1JpyQ5`X|EHZ=Ga8QfCIG&hvD)3m$<@sM2oP7 zh9JU;+tj-R`bcn~Tq#?Ire)pAey)Il{CPS3@qZ834R0x(sm&o#Tz1^eP07&bCD~z( z!lY)hG_N+|^!>|~#Ln+^%Rjxy$Fdd``=3=$$Wmjj^g)P{?u3WzVo+JoO8zjIWu_$DRHa<s}?@wFmzw^b*J7#`!$q*kB% z{*VEu;I^mn6qdr`MkC(@QG5a02a>jR%(B?v6Rv(;9U7u@WlQj*xSzd`VK#6sr{K7S z-*_#53Srpd_JQEm90G9Ue*6fkoqrU~tj>l+xKQQu$&oh*)uaMM-62M{VyilFsbC8) zyHIGA_GShhK$oO={9?{_%4zcAL0bXA%Iok7rk?OmLVnjugDAQoexOKO0qCHqaVl`w z_pIm-0qq0u{V^wQ2ZUT+MDye&YH!kPvL|7FHZ(;vy-lN10FLp_m=9F z_pbu~VTDX&E*6iQf`XFh#Qd|qlFSOSTy%yXAj#aU!(WC*Gli#hI3|LSE72NCiBBk^ zoirY$zkaN4&6JEP3aRnxCt$;7`VB=CF(oz)9P{A7ZUb%`2nQ!AZKJB6skKlt#4oV# zJzQndVWQ-TKvBPl{u-t-OS>WPy*1qq0yEH7a`|>eV9BIwT1(`j`r2luI>eA3BZH>3 z`Gs8sZb!m=rm<`Out`vyQS<7p!~X`PJ1QWW+;^bG&l1OZkUWyHExDZH=mx?U@lN?Q zHo%|Gj(&3OcP{n(O!5rmDf(%0*0IF5ONqI&@DmzX@^IK-vH(X;J}(XFmn#zS(Z-n7 z8v~Oee24NQ#=PD~L&=;$06e;_pHO{o_w);!3Waq4AnZDDU1C4gzIMBFur=K5RC4x8 zbEbb5Wii%2yYw%v+LgBdk+3yDOmfud1)kQfd7fg{;JXEqU{wgYtI|WwukxxganZY9 z79YP&(T^vmoxE^^iYa#ckV7SjCUwsm#Ko5S*5IJ4uc@M9uSH^((*pBpG6vhK2EW1# zOFlrR=E&AOpF7NxQq`HTOo(E|`r8Yim_Z3f@>)sBzs6$c382p-Z8VClMO{BC-Elk#ty znCSaZ8wvH+u!MM<#)cS~oYQYC>F3!lf6d~jC}B1lZiq^4O?|!NA>X}7X9jii z%@Ctqw!+bFx`VBwJc4=mb@w)I&q%%V&vG1Y$EQ>|B?50W=6p=YMNY!Mk}FZ$Y!C7+ zEg{#$3M*{Z)oZBqmn(AKnX!~@pE>3$KkigWiQgLNCUKp&6m$C~o!z7o!X|0o$YQT+ zn-w$fsQ$tZJo&#I=~@a7(Q+=l{AVw1;?^yQoZPTiRgQCt1GEBG#Ug+pS<18wWV%cM`<25&`A z-0c{$o1<_8rdpHciqR+tShW<{{e)uDU{}#2`$6;o(&1PnDKHVGd;cZks2hrcIYN4W z01WOO57(e+fgVi;Veri*1NFQMCQqlZiqML$mL{b?pO-e)6Dna<5qs$a6&k3IcS5F) zSV{mrKYJIbuzC~#$SB!1#d$uh7MZg@ zm#OKx|Cp)NjXJv_^UFsCaSb~eLAu+c3PN%rqJiv#w+SA3zSp_yj(+u)%UX6+F?>qp zR0+5#yHOx*6V%2jk#1329lBYvvx)CKwS14wf}FHlJ+z4^AI4plO=WmtKF5TuL9v^b z^*&f?wpx{;pt&}=)|f51{!`)xJ``AM*xjR7pQ?9Xus8EauiT);nWFpMS4_hMj-a?3 zWq80|q-Y0Oq=Mxaq}}I~Wvg;Qmis$Jfro)UwW9OoFHn=(7QQ=QaFF0}A23cu1KKG7q4 zd`dmNl_yVQNh|%%2R}1%>6F^*p3DAC8zsh%HNYW4VgXo7je1RAf1!U(GNydW{E%-% z-Mqlz>XL41DL{lS7jt^T#p-kFakXh({*u$6uItz^5amCpK2Rw9xLe`Li6{sl)K8vb zM##8rq^9h*c;$(&A0}4cnVVG{e^FCIq;~d8lD9H!(`m@2IFLUr^>Py)l2mD$6_kIx zMnk=98OdUAnUaVUDtaDC@1G+s_9uW*@gZ!vs%yyDRHaKnyS42q-+@3(F)%YM+Y-zc z;0(e$&aT+;53`J!7Esr+o7&lnYG7jzO{n|5TLWLJD~?-o;cfSzto$RE*s~GKP+<~CjNBl! z>k-c$$fIOf(?$Q+_EzgixS}*_5@H)Y1j6F{eP>{&%m5`(I&<(_-gbZPM;w-gc)4uJpBPI$s6rB zPC%TYJ6%LKFNOG~LMb~Ee(ZE4pQKv)`|HwT6a~qo}$;`sYuDc)O(yes^J`6gcDp%@Tc18t$264ZKQosBT;gZ$em1Vh@Qk^iwOSW%KP`CjTp8|*T!+^^iq6Z9xY@qX@Qx0lW8KlIVbF1% zS#R7+zyGA_^NOLpY~udV@9qsuw*8-myl7k9NBn0F<;Xpvand-wPN0ms$+d$R4o(#Q zYMdm{7%3bk74I)>F(tyfX^mXxLvqGncEz_wl}Z={p4HGQj~8T)D_gEyzIR`-FjsG*>n&% z$U(SdV1ds{&wZmUCw z7SLX}?0NCCUz-O)zN;@o));KZAAKisJY7*_>pj@encwA~7%yTFHq7Jhr8^KEDn^0RneHcFw)p};@6@DR%r(nJP-3Bi^n z_p45+w2SD?+~^10CEX}hdcmc;w3zMJO16OzJInvTQzjVRj84}resic7aoT0`yhLCS zE#PRai3p0mCaK^)sG9;04_cfBhMdunDQqvQnYfOu_&3WZswPMq=wUv@TDP8C;$4xq zcVoF^25T(+B%Ojyz(ORQJZMf1Vr3voR`fA0eMPwvcTGO)q9S`)hly91mcAs+fEyU6 z(qF`BG8D1f7-JbTH^8z6s@p-<>)w~zKMM!BhAY*Z!EBAtHhC*;nV4joVR;=C%x%fL zWjG&ulcu7HyG|yn-+C;dZY5I9<+iOxU_|-N`boY_0{X`cvGk?_9yE)q)aXE^w2J2H zw54$}w-f-U>I(d^Sy+k6H0dPD=-~s<7K_1*RnmZaF}b4u_(l}Z3yCS!eA}89J(pVG zl@lg@3HmyE3R_rWK>BE>;ZTAqd$=Y|SqZ+!M94!!wb}Kl<_jA|=JoPPDp*XTe5eL^v=8q9U9)Fc1NRY5be#8S z3JQ!44eK$vMxAsrx_qaBX7f!jr%6mE$7*T~U5cczXQTrVTWnR4@LDS$0p?M`#i@*) z9euM@DLK7;@i@Y4~EWrLAfW=4yXz~lIg%iovt5!Yd9J8hBQh6}RgXyzvurV7%VwNlpBQnWse zr)1W*|a5BXEujI3q0X*e?ZyJX@{iHyed1y5TcmgzXaQ8j`-d zy_PokFWk0)+C%{(5a<Fd_zJ7|YcBxVl!T)8Z-);iZ@MUM2(242cm!^2}9ZQa>O zeD-t;zG`2kk|V2Wv#$cK4NaH^ej(PjJz`TTD)rs@(+g(YB$qgvc^lkD?UX+ztBg9% zm!KdeoXWRuG#KIJtkPZqO;XQYW)P@pUIc%$AZ{v_uwjSTd6U#VWEX`BBN~6IYnGoA zuj5vc7X{wzf5que1$qDie=@k-992*V%~3voxbMeU5_QWu^PHepPY39XWxUMskSN>H z9~|pIG~JROke?9wfPoyaNy?S)ha|2y@v zM(JW-i2^jy9$W&p|0A;TcA0; zU?)T0p38P%mhb0r9FIahOZa+O59CG1k_yYgH>(u*hdA7!w_g7=FFtp@RrABQgmIO< zl+|%VRWRKZgIy<#v6=AW!y?J14J4z=fsz9xn=q8!ogYD8NnQnuB?td5&=`|sM@y{~fMI^ANC97VpeAz`==?t=A zcFq^^kN&&&Xejtd#q}9rP~rTSP+>POOZT136wmE(V1o4>Ccz>Y#C&#HVba1#ANLLh zst%0L;MAEg1|IXSc@3Y3lT2^rcYwcVvRUgXs;}s(xnkzaM0Fz=4GrQgs4JI9IUT-W zg>bfSEWEC1rlu~iLO2jLvho{i$Yv86CvMS?NL6M^cSUzjtNwwGm}t}VJqXF~5!3m| z9xWG~0|;eX-uO0FFocH(cJ(xXfZqlqpf-hVp76QDXy#)kTao959D^ls;5*6uF=L8h zgb>h`pxa7%7JsX|azD(8Wd+sL$F`*Hs_uytsM}QKGE3G~>0!x~cS61NUmG{yBFMH+|_-w!<E#fw5 znP-e#`q#c0c@Mr9kX%y%LFgAIs99&8aIb4vvMaC{HbTn1)!umUx|Jg7D{zyTFYRc~ z^FYb>GwuTC#D#caOUJ)VdT^)NJSN)UCQ331H0Finr;o96itXy@SPM#=F zkXl!{xo`1$pKZ5CIoWFO8XI@6cKeL~7J&A-pvzT>k|?wb+R3-x6qcT{@NTBSLF6Oao;Go=&=i&9!B38k;m4h>T7Uh| zr%QEXU*H}@UemvKzgdy9S{hf%5$82SdR^?FYToZJ=d@nc-V2I*9*7sbNf!J!;CJFM zX0UxQb$>o>Rl6Eo3u$fQb8Rkvg;5cqoG2?xaj?Cx1fw9E9|Wfb`DQtXmsXzF2&eSg z!mbvDgk@RfMf()uYdJslg|OFT)P$=42ALK+jIcW_L1c8?uPc9;2Kl|Z5B{uF-Chik zxEhrNz(+^F+97eZD971m4Se)Z>kD?Qt&62%>mF1Iq{_GLM3@n*(tAQ~KUofXPdr={mHCwPEh?E^N2`Gc+f|xp182yA_^lmyNTymkoRa9$n*N_VC!p zr}`YoT`kikXw{_(D`#49Gv1)sUBH#78CU$KqBP(Jd)cbH*f^;pSLH78*0?xZ#mT{K z4#_JN%ORRb2+v%%>Vx~#nNXsT2Cwn%{?YxNxXJoaC|%RT*1Mt1x1Zp)BjT602igpf zVYtCn7B=Jfm;=+UL3cJvFW+nu1m-FhId;%$dMO@*nK&Zl8S%T4swX$y{CUG-;2}kw zFG|G9606x(FTsr=P_stf2J~oIEdBAEzs@qjyV@1|TP%VQn{n~QPpR~pac#Kp#&wne zZTAYjBUOR`-pe4v{z=yD&rvgiOfaOg;VzSkEw!4g5rKL!zvM) z&y-`e7GtK3Vb&#`IKm)4GH_GK=8ym*DFRb=-|6?h_U6n_VHoS&m@B=EYVGlZIefY4 z*sJoL?5~m@UcBq_Uiy96vwBL>7Mk>vd1poYiA6+z$j`Uze4}m*4WmhJ z>HP|m4J=|%nG*WU{Haox-7Pp~pXRloEvH|qg4AX2VQ_M?@iig5^zO@uXGV|5&Vvly zDybl#>oR-A2fnhe>UIUCk2Pu)EQ(`OBHTlgd9G-Ml5GdQIiw>0+c9`+288+5&5{R` z?cr)%2y@fY_5JGj|9~ms6ehCs*EcAp8QEIK7ZZSb?|%nvv71KetNxxZJYs^U`9Olo zWh3GFWtH=kEHbw8U^QgonfMFY72Jn2i9ydP3>)YP>r6i5eytq0py0e*a}v-_AGuYP z&QR`FatM~o2at9*$#*+F8vF`o)x^vD`gmK$qY2+qvmY)uS2RUq>4saitu2#d3r={9 zvog-qJa3cXIMC(2d0+iXDbN~*Y5A^_-`cu5@%!J^nw@7twv(xzM`mcX4$P)X-liXc zn5*QaiZfSL_9Nx;oCt=K&*)b`oG;FfvLA*k0|ji50KgF*SA0+| z>e}P}xm}PO-qrTWW+ToDI#jeZ>0>cM)MP?n>@|6NgOc|VcnJQrD4W-i>kKdl?3IC% zAYK=?eBQ^3@Yq6m(#kb!y;VRd9V+jNaStl($-{5Bw^RDM7Y^G}-5=ZiPPX2obNBe% z0sj{GjT^v(d(c1Z0)3nEp{}GJD|SHIC8HnUv}NMjAi{NEH`^Ae+H=YGy7=!N^H^P- zK0a77Hrl!LnxOq`>KIXe;u|V?Hu3qc)_pmezHT?(>S%!??6T$)Y*AeDO6uxX&plf` z~j1xZx0we%C4lRdhOP&>OzNC`+^o{o?9z&}`Zm-d;aB&M^ViNuf08r}$JA z;38BO;~G#%pF8NUw~0(Fsd@S3QCLhR^LwrhR|7SR*lDSE>ve&)qf>giIy2}|;M;;Q zPv0qgeXtY$imHyn$j~*aTVyU*+J_|8nII26YDe%577|-@^>Uog@7zwB6hsKcg2&u@7~~ zpL6F(f}50{L8`9TIHa)D_gCl5rt7%$Z^$ry?8)xJ9@!x(AwTJ zP&B;a>BZYNt3(dJZ~y#b6by6FOpWZ~i}qqrc_xqPCUN^59-ZYc{VKtfk40%r_kz_g zD#=`O?u8#}VEgCBAHK9uyMt$w4H0`39?e)AU@`e{rDn%>-t3EQ7Qum$NULE|yJNMf z@xxPcyVVJUQXk&o%Fp!`MH1vqkB#rcH&+YX$|S&do3K7VT|l);Jc3wD!sHL9|vnG>N2o?~C9JvCYf6JVrSFy}ihT zyD!>f#w?D>9pCX_u+nfoAhYZTnR)VK*Tx+KkL6pdjpzt%Uj`Pyutyn)D%fI>O{pcV zM(L8&?B989tDe6&A{Zz1%JkQ-;h)2g1R&_-1Mf|-pb8o}pGBV>oJEq*ffej-=9@lg z0NVNaQNRk}8YeeA?X6A9e5ykQF@2xJeddDuQ~AeBTir%xyZLkTq$eq?^1_&^D&y^n zu8Ww%+)^GT$y-up`NXJagK2h!vFqC9mMWsIbNtmRw`fHXJLfM2qO6~^&c|-}Rco+R zj0$}>m31nfmQ&z&QYDk_uxg9B^y^bT4WSJl6mgp@cDd-{-#qHU_%8OxkFQf%%z2T} z@{e5gULV@ug6MVniK%&YF~ilojSX(`?qNqeYDwJisJ7#~9QwKQD$Ns+i=r4Rs9!~Wem$*;Uw3csW26|2-+A($kzcME*0#6q6ha2}*pJ+?@+NNi~!@0`pmQ;uj{R~HbVAfxN^SQoG`tP0z;Nz5X zxf2%G>y+_gTx6*Dr&(O9vMMpLEhFEZam}DsIB9lqj!Ny^e%3whp>agD*l>iGd-LzW zCv-_$&9?gL;^z`Y!0`Ix~)$l(4%H6md1CeJU@(6R~L#;>~bpaxmIIdz|X9v3Gs=$vdHe z){NZ?9ADY{CBF6`+lE1_EgZkW--?ikL&C)H*y3|-w2{IgGae-HEAZjD_zbUQ3^w9+ zE!@zof?FE-i(&1z?+fW_;B-U~)v9Fr^MQaH4h5CA?uWvh(lYJHLFH6C{S zPONa^0JBF1KtdUpLt5(;^c|+vT&*7i5hl9*49lwGVu&D3IU1qk?Fjsh-^4>7P%Jgi zkYX`e`en&HLf=ya$w;w3=k`JqRp3Clg~hUVT8g2T3#R|+0)wKBrR&AfzN6zXKznH zeqkwrGq~>K;n&~VVB{mZnHlnwMfpANV0--|6SmyRxp>X&ry&%x2kt+*FE{W{#%)CT z+l(TBR#&&8z2;a=9f|UQrtLHpGAgurF71?v|?EQN8XpmuH_vg>O zipx}yvO5xQkW#OPX^milJvcwYcKJ-qJeZ@#y|o3k8aad;Ue;}WQ8R?!RRn|~rK*@2 zxmM`g)wE8SqXYs2y$D*&e!c0YnOCrTOzbgmrtE+>r3^l)eqiTfSAaI}C!u!zGRvwp zhmL)xL&0^mz2HCzXrjQGZ7-f zva>C?;T#zhc9qk=6|O@z+z!}XD-4`7xZ;fV3xdff^}{8Ul{kDa!f{xsg*TU4CLNX? zc!EB2@n$1nU%*ct6@AQ`hrDT*2lhK}tZ@&eZi0sEVk;+E=KE*Ct3plFORxK9uqSlJ z2tRZjXH46%Mp$-cy)C=NU$(Bna*Nf#m`SM^+`V-xGqmr zq@DM7Cb>5rQ^zkE*GDOj70vUhN5H@HujUWWW!n%eZOjj-@4StqI5uYK3q4~yaY9~? z4XEdhj7zvFh{~|Jf31cYe5`c1{4iJa?Wy5xVtT!VLLJnKN-Oz(*B~#a)obMV7##iz z)pC^Ug0;H=mY-pzG2Ky}CM6(~EuX&+x4S-&7qM!9h^j6+>?A+!u0M?u6c<)@Ki`xz zi0!+yQ~xbrMntB2sC1u=tt^D5#-9~G70z4kv-fGmn=1c3B}p)W`DWI0039}CkKI)M zhJM-ekNh9|m+ykG_}4r7AY)*ciuVSud>TE=7g}{@gV%57P*er$*dje7co-(* zX*BRdpjLy_Fqj4KFSYML^Y1@$x$GetAsS&>2BH3fz-cjT-F7+NCKW(#R)t0BeNP10 z$rr#}i;oX6UbcMvjLV$_ZV>UC+feq#(o*qP_YZIulwmo`0~8#BZjAK0!>#L&cUAE= z6)E|qj>q=LTdz}ZIpdmyS+Jst(JJq|PiSPo@CieRsC0f6{k@?fQ?LX@l-TRuF5j@&teZVgh5Hk`Ps<6a3Y^k z>B8%AAm}N-WLq3x$?v9GxKKu_&E-gqzdd&^?ND9|D!SLb zqvh#kBXE~gIJl>!;V+SdspcOst@Y`l&#!1iJ$2_;pEkws*AFxR4c-1uw?xV+CRq;8 zcbUWQ;?kdW({67roc`h8W@4CXLAJ7$K=~8gvCd>9?@i!PJcYW21ZHszK?D2dL`p5|e7vG3{#4 zhatjl$p5&UU2R)T@B3^&Dad^+FCbW}&|Jm$#k%s;CL2=B>2W7AQ0qHc=+a%kseSXq zL^kgg&WYQ3Tdt0oSgMrVZ{B1by*s;)r%-eSecZc zRZrt7mMXN?E3lm!7e2*8=GLU8z>)H!N}HC54DI?0=k>lzz)F6Pf1QVbp^^_%DZmM` zDY;YqPgd9TZ}ZXBu4fQw@}T~W@@-(#kWrb|vtzPs5q%IjRl=^MiyH9AE#xm6!Rh zRXP?<{VidEV892|0+;BX_{tHypamOoS}J`UC0klaa69L6qYQ z!WbPF^iv-vu47E!cXWMwW+&Dgr2KY-k~L@~a^!6WBVMRA21g!VOpm8%KL0#n?`8f| z$~&H>wKsqmpemdl=+Exx3NJ1Se3$K{^m#cn!%pk)^IVg0JkVj-=$K6bDG7Dg zaL&xV+IL&3BXL`&y!_@NS!RuV!=)mg+EnmAB()_&C66mwVPruQeM*$3;`Ts zvg)m8h8(v7e`+e^n~3|riOJ;WF`aci^ia0 zWw#Et<==PzZ~~${9=}}O-CM3|hwuXA$Gn&GB6f-emR!gDx7-bF^uh~34~AlCqdFKP z$}*gqAVYGg=FO1KjoMQx&b2>X@x==@4$f(YS7oxpR>;m~e2Qh@rY)UbigxdM=QwYR ztkYbG-oeLKoGtFDluh9CQtybsV1KmzbC@76Q|atS z9R<~S?#H$_O|8Oc|M!RTun~>+kEsSZjSCvL9GHBoHuz3(_O9JXty7XRPIX)WnJLzc zNz;$W$-6BoN~8|EElQ6tD`|}$^Vg!>_`7Q@BQUL7i&fnkw-?1E)KTy4AEbO{N?>M< z71fFo2O$4(^}kGUVyM>T(UxZtJk5Ud`ztZR`A1mo#S_({$Ak{M-pfm~76WobA9js> z9UjUZF|0tL%=@FS4!Z0u;x3oZ2pX`TD#hUSi>OeAq_A2t`{7{pQRaVq@p}HJ8ERgzoNCXiG}UU&{M)~wOaSVx@eWa( z2#xmAGoQ_mt&E*5Ms_WjlzkVMLpn-N6UvJW;`YZI_C6t(QIxqk?B_nvRFfW)7((gGSd_C)pONRdaHB+Vlgxu;7%wZk zb>G`{G9hL=LkTlREnz=+oe{Io3Y;%g5?!rhVUxW%4qN2ViDY8NNf}ii;xFK8@OXHI z@y&2wVz-o*BKKvjsxBj#T2A0*gUjdg3{#BTYPRtk`{TWvDRySVMp1Y z|DOe5KtUyHpF^Q8WNhVvgj-#JHYP}JT=U(=gfr4xp4x_f1W=Um5&n0r4&GL5(P%ef zj^jh|J4T@b9W8h}F>}8BSpO&>j5m~t*==|*H!q#p;pxe^1lK2jel*47FW8oH54NKO z*Qh88IySB&4neB|v{7#qizVQ?b+s;T^D*Vl7 zWwlvC%*V>CcleiD*1y!C+VkPGksZJH!=en1=(|fLXWEBXYV@Wn62>@MdF!oPS@Fr$* zq5QOg2Pf!Yuc)%%sJR=9D|zVz&G@nOi z$6JFaj8m`OY8BiepZ`VX)Oj*M?5Ayz4*G_S>tHrvn4!ty8?l|(;*PhjsOyw3YHjf5 zvbNRdiWag;&_R@u@MtNh^u}Sve?`+AW14IVTmhThnD~~mS80-F#9$`>bR2BfYB~H| z!AerndE}h)AW61jp{V)n^6zA*00Ylap0-mQ$>*7?puE{<-{;5r&?1qr7NXFTAydaGcyiGqWr_m}YtTMLyvoF-VUi`xL#lVP+K zX7y^8{2f9(Z_=Z-2L?d4kZV8tx@9)+pHDvZ>bER&Ov6=a_SDspqf+WdxM_GWy& zI)&Qkw2{as;q}Db+G}}kaaK1uzNaF0UhE|l()Z&*6;71}#+*11EWmaV1YlfuqLh!@ z47MF=Z9)6XzaHVLs;%rfSY9=eM+u{nfibofKC^(P0$9}K}p>lL; zCZGFBrg1HzxZ>^N+_`5awsEbz(UaWSUaz>$wj|J)RWOq9;Xmj%Il42vK7&YP|Mtm5TY7Z=fx zHT{+DsUP$8I22d}I}N7IccV#;k3*Xng7NORFeaU*b%UKQxkiM)U4gJKB_*wtH=d~$ z8i^8H%>qeC*vi{m_L_!DhDZTl^3jH2>TZ4K!@*c1XB*3NwGs}30K>W?vMq@sv+g&f zzz91s8?QQ)=XznkNzlGZUd&*2XhGswTc}4_ifj?h`Ht+MEg2oqOsG)X@imepW}a1y z^k9+kYS)eZ;D(~XpmSJ%S#I9p?bXc2--u*DTh;tb6i%&*T=?z3#JBbPPzt}{SFn3QJ7EXQ1_7cE#L02yJ>kGKH4Mh#F%&FoGrFRu`Jg*4UE)W_X2 zE6pje)#R&{s}!_95eWvr9Bgj=3I`a93-ftUKH2RSR_~9LtjcXgNQRY`=A&=J)Lv=` zQ^6E!Xj4+gou>eD^7{)JzOgYUq!54W^{!~%%$Tq?w1dGvkrWMG{%(i3D(x!JaWZ_@ zY!$Mg&BUs<*=2Dsgi5q?KSUaTk1`bFBX!z*-6@D}g?UQR!^qH!uw~UsiB0vQDylb{ zzvx;$%zuWp7A}ePB_BWV>89^50ELy={YG)~Avl>JyjoE{!#JEH8SR6GKoq2V!f=2a z$Unq0V=&0M(GVGnv*-JfmwU0#pIty)W(FlWx1d&FZ`60M777=@S}|pHj|*Jj5#WpE zd*d1r!LzSW@03YUfi$dCV~m?!f3{8#lv>=>RmE6$U|0=PwzM;3N39ZerIN1>s?9EG z3Gy#~b~-_s(CoB*^{^_o%+lw?H~`gvN$#lwb%PB^s_w^qH`&cN_mK6Xd(4r|hQBY0 zP5Kt$!W}cBMD2fJ&EJpgKVuGJ^7sMF%A^ACU7{+vozs*w@2CVvbh0rI?Q9c)6|eW@ z$a^2V8T&t$aE6OZo0S6b9H-(SV(GKQBwxrma{<<}+zZLEIHOa7b^-q^$m4`BbIerQ zXL21$p5AN67)M##I@@M#yF8m^m&${YgJsm8*dj-3<1ca_wksmU{!}wVt`MGhl6h}= zSMpLRg`F*5)5~v=>$<(S(r&Nn^8|$iyQzSX=gpjK%xoKAlA3+g=X87*h@XFpe~k49 zbPf8TnEcQtAz;;WI+6iyV;@3667NcX_dUwo(O>m_n;i074;KZU zRwY~U##73%6iA=_PI;C2G|$GoI^l6fY^wQ-w!@`3uG;Q%(_+x*X>zS!FbcN!g<@gu zgMns;wP;41uQgh)rJuBsa%>Y$ax^s?z8(ZkToik#r{f*$vme_I0iVr7u2~}wiHYAh;#bK3uwV)=EK`bYx>9B@KAoY#7l;!L8- zene5R4qrsIF||-_n<(4Xwnq@AV+TLai(Ay-s(h3WAOJdsEbOKWV0-G4{JIHBW(1G{ zY4GzXOSqwIXg8^5+cyneHG1TV%s(w~3r;JPcG zh;-{fz_7V@KTwU8B34<)Kq!-f2k9y7x6F(0hYw5!!af%Q-M(>ezg)lx$OR5;Ld>fU zWmW8^)u$DKw^H)ECA#iv_q=J+6nJXV)Bp^N6zo#B3QCH(ZxrUvit8tl^>f_%Vv=S9kpAW zI$32BjPR{In9dhoEE1+1tedS*xy(YEtzR;~`6kfho1#arz6 zx5izcosXHK5U)raY|BA(85YrWnTo6%;W6W$D87t+tD$eFclmwXLLbBQh;!s=8@G!wz)5_TCtzS{NxPBJyZw04PEk zjEKCyO*ndw*Nit$Mx$!5^vgG&3+n)~aPDj>XFszoHrErPq&t6n^b&fKcI25~pCYoi zClT^8UJG*tFK7K+*9Sb$o#awB3mU&jvhn1!iXlR;SH{BTyxPrg;*UyX5_Hh?cfdaF ztZ|T{S`inkuCFpP$z1;Bgpw~t-{N4lV9-&G@NPYxpjF@$v^TX1-U4usWEQHkABZj% z?I4k;3AQeKFu|WN9fP@2tskk19R&_?Dt#TTgW$>e>$|Qhhd#tFH2ha1Zf~-vTI`VU z^VE4qzE(CiJb+yL$F>zALALExGP_4R(v6(V z(OB2IXK+TrG#fsew>&-sE(byis?1s5Rq#j1(H&2kqju1;X!!f)WqDG?C{3=g72)4e zq0@^$`Gez}ahgDXz;7zG{zQ1`tit=~^gEq3cuF_N|GNMW*r*Et7Vxgw8eTSw-Z;%M zn|i?`HpiS~;qmP9EeQ=aWc_D*qXZBRTxxt~LF8)SJssLm5ekH-KJ?kN8IQ?5FyB$k zI@woji)kuF1RA|saNKO2Cb**0RCNkuVxJ!&VWT@(PUN(br&Ab{C8vPPHC6KGX<=&@UWJFm!^1;b>rT_6xggoVW`~O@Y+GH<0o*7!_+0b40AG&YnXh}t!?YO?pMXU3~M}r zL`$dvm4X>1m!s?J^`ez;9sB|Qnj7mL=u_4e03IllA14xQIAxvVO$)UxPEeM*&^!Eb z)Po0)kz1^o#oh?xIiWM}Ue{3rF6gU6`BM!51;Cmc!H$>VItCV&O^Wn?ZvXNw*wtPu z?;a5N%!@TR70=~GSg7RluFR_lwW2}z6@uZ#g*9k-MjfN+z`;+co3v@ysZs8!di|~a zi`?6_*IM$tfUz?L6Bg=WdmA5s&C=b>k=xrGqg<*Pfn&7&3opc}0>3lrtABe%o+Auj(ax)m;{k8*d8JYzxkw@qA2$6co1xKNi z9HD$6BYZYtjv%;SanrN`~0qZmQkwuEfO?0;J^6{Ld&tYY~$jB--8G9gu`R(r5-2W{uEj+CYf*=M#fp6%4(9yhh3*nqy-iNEb zeV3EGL;o+G_)Sk#H-JkrIr{XooW;9ocl5)Y**&zLPCn4aK)L7vr<&%?%kW!f>W+|G zKiR<6Ds@$q+;=1&8TsObJZ|GHXgc6*AS<6^OZxt%}gG(FDsGo8QD+D;paHg%)8ZrSM)3Riw9^2mk zwj6(xSn0Gknfl6J?rob4yY-d|SM3&QeZ)@)JK7u~_bgF66aI>bHGnlYA=nnSej4XkuZw|(<`vs3 zZ7KI%xVwEF8+G0KGXsOICkf-Ab!FMfL?hb-YYH%Tz1|2gYvP5#);V3b+`hF@L=7>m zCh0P3kHxPH+av$6`gwuJ-P{mHQNW8^Ylhj8r# z(TbDfg;Iymu-19snlKl>+ujKmCg{nR;jmVk{Q%noDvWr&qwdIZ%f}}-G{7`;QU~GHAPP&1Kg9fngf?9I8loRTGE0VQu|WONMl2T=nlc z6y<5fD=_=NjYnVqHYANdKHB_az97>({1#mLRvo;5z+>Z8ax|cm>gE-oA!yv-#}L{A zdOYhVTHE}Ha9o-p2ly0zL+p4~+CWaW_W_&jrz0>u;1F)>D&0XMfjO?cf6> z6^9X{k+}P#syEZ<^?CkO#Rw_9EaIW-?oj^BXQomycvMiVzPhX( zVL7@$ZXwwhM5es3Alm%iN^2UpS3|;1?y6YcMwjN*dN7q{AKKwp;{C_BNfiT|#cSsu z*Y<2i9)1`}-g2iK#^xYqG@qOpF3qx8f_8jl?3?u+C+Bgy{@es=j}b9GF@eYV8gg6u z3fMYc2d%bQUsd(1oiv~1SS{T73s^&+hApA5Mlt99TU!%5vefFk=&??LQv(aDkpRWf zLBBaGh*kx=v=C$-rD{WWmyMC_-4nzGvB3Y*QiltzDY(7on}S)vPlUr6YBtO`E&(GH zu4m^3kKb;Rs*Tk}3q;X^pO4dyl6ltL4JC8;@@SvG#wFyv8A;mPU**yO{Da38N5ln7 z;70Xl^(^IQJcrav=sc?AQR-Kqg#agsrP2-~zP?h@OH=Q!r6+gB?E5HsLHb=z6~GT# zEMOHS|B`StNbW0!wFBu{upw7~8Bu`dgFsP$6o{3Aw)LX8u5qd4QF+C}t&yMuUwFqn ze`zkyJruy8o#P~SHLsAD&tH+T3)TN?rS|>bFljv8$7WzbydNwxFT*_}&%9AHE#pII2ErM=O=HdA2nGOI7;PtEKq2mGJKOYt#JsdUPb$6BiOeMo20y$c`dRM4odH zY@N1Yp+UpEXfi;4@p*9{?NBKu|4>|NjPgnqsXKnq89Jf6Cg!PI3j)Ol4peqA6`8G@ zy>drCUp^j7&C}#B1~sU_+U8ce>X&u?R5C+e1w|1p0lWJHNC%m4o&~%@O}UP)Ck(RX z<}?7Fu>g20^(>{|gc#pU)atKDI;AYxci5q()nMNRB3ly~0lXY@gXyT)kDDOK=Z40L z!i!Qb*CT1@QLqR#^z9uH&0PI_acr2|8gMtHnsHZyX4huAhI3LqqfM?u`w6WrDNVp? z73Z*(IMe!%rCCfA1}V=L$>2>7YCeRLkAW3XN$}<-o_kZf=ZudXVq&L64ORb~7oAx} zFTcPUY`yIEfDB)$=Wy zw1gD3YGN)XQ=J{;&s+Me7w(G|8nfGJF`$ALQP=;_29EAK2_`L4c=G;kJp<&gSe;xB zd0jh*MHGW9NfJ8w#+rjULM{9ph5cN>8!@^^X6@S~sq6a_#d;YsW)O*A6}ZIegD=2a z3TcwFocYOEs)pgS#6O66ikiEk9h{VB@%pB-!#|A<2FxW8+`9jaMLrW-5d`kL>yKnv zTR8iaO3#QEEJ=}2R|@;OV-o5I%X`^$|0Dn3=`Onx4MzN_zH4&M@$Co8O+HoltGX|$ z-lgO;V%UaCWUXEQ3;+HH4+vd7Q?bd4=O_wG)9%T zaz5R?_Iv)C;+Pg6!s3y(IsO;Qj?bfwA}SzaZ^Fjq;okyl^Ia)G@T|b0`hWhSsKypq zv3XO2YHSU?xBvHiACq0gVb$g-hD2-mx(HyPO-l>_&`1qfj3*y7D-Q{U08oWSbz2f) z51cmvkvPxUqagbWztk`fW%xd}*AEUV0B6`ak|^c8_~~8 z&)=8WVKOO@Rv^;la#jvR&3ni~B=AW(SU3(bSNVC^_VId#Z{!7>^zGQhMIp6W?gG|p zg@NL{GBUE$UsRdY_3Ks#uppRfsBH;O-xu1$>*w@pB3FCgQaO>ACR33|Z*S-aP|>G6 zXmx88f7ac4|4P26gj#j|`DoU8uy84C4KL|FTt1ZyEA`3w*MUYDO=z`DmSWwPg!z_= zx}~ovO_0QjNrH3RuyY@m2XR&6BjPS z$TSeK=+2@94!S0u7aa4^7!_44bTi6PA9TpKh7?uAIGJQF7JSXkz??M_g8}N-`<*BK zq}3D!@gu2am@T`1|DK!o%tH9<%>rj7JEDe?FX|#`go}sD}IpJ+BO2=JW(coo4giLo3zN|KfrvARdS}v9OUUo8dq~PN< zm-l2&jr#ro^S(-+cRyaG7s0}SK~dr1jI!MkcFmMdF4VrLyQSTjTLt{?HtTU{ssD)l zSmuGlIsMe0n|!TjTU0)*?r>iE#L`mWBE>D#iv;UcS?Kp<%6Asjk}YOm&8W<~e{i5q zcd3XeQrymPW@v%-%;SF=r@*lRIxC<~vtGF#Ii{Fote3p6D>{bmsmOesVjfzH8&DQI z#%Zo(Y}zO|RUz#>SX+P81I^Amskg_EXoOvXPhXk+x}hFiP2! zb#2|yjRR;L;kc3byn!fR$(Qadp0FtG_4C1baBFk0mETDt;7l?g92v ziTfA-RtcP}eV>wHKkges^&#{T_>GmjhAChkN`NjWB*FUB$cHBSP;vJq&`Y9M-+pEx z+(Z3ty4Je0tLFTQ;A`Mz{P|FrgE{m~Sk^au6*0;cRo{1?P8e3@#sanT8xSgCR&w^t zkh%LmD>v1gyLg$P8r+VwWs_r+kZ|5DmGiXh=2UfZGvhu$tgsbFzK{x108C61a4L#> zLv?HpZ`_`Rask*)24W6x=u*Ai%>|Ndr8Ea=0fccX0KrFn;rY-M0S9BV;v^9T=XXHD zR-p$cW10(T)U-`?G#5eC7tYOEwgG|)t+$*V@KU$-wN;rL2|SckBbQZKw9{3X)s>VK zfwR|PG%2Fw!)3rFegoJU`3?!GJr&A-oj#la5FI*ugf3d~$Uv#4CtpQUBgeMr*z`hy-N-=Jv})U&O7G(z{{+Cr8$bHr)N(Z+Z!2hi@bQ@IDMs0!}b{@S@KYm`wOz z#x6<1ygy&+Vd0aR2g@Ux(>Ns9GusC+e{s|A%X?31xSTc<7dRcP8jSiM%#Nl^-frTC z?S0$?HoBuDm2l2}M7eSKOivrk&~5mm!MP_FwtINyxA_L79-fa^*FeTts&>QEuu{N; zY(;&~GPAwlod{l!QXYz4+SSw2xa!UCD3?FS%issPp?L)Q!L22tMP2%>4dv22m#P|{ zrBEGiqN_GbpUEK4_;X^e!tQ{5MtQS`%Kgmk2Mo}C4cnGuNUx=QrzH%Z|3{taJ2o!y zX+M&-KNxH|Wu$=Jpm0%UuT7h$@2}bIJ^}eEO6yhEr6FgM^UWw5MtZM~e#seKcr2q* z7PdFHbKn8(!+DC2<;l^uk6in$!7k_1*i#B7n9}?R8P3@bZ!pDE7&cTKa_!-wW~8Q0 zzcN1{&Gy#EZ*B5)YufjDn8OnN{HYPryg(gJduZeXTfg0|F=zl&S)Newp4NOc>vPH| zYpFlopIkHFzl|{KRg}+D9uw*{!1)h5M#S307a{Brv{}3~&7i&snJRrQXnIjCA9vp< z;DNb8&iydLb$C!cRq^Aec&7dsVOe;mJNqx5k&FzTB>FM^+&VeuD1FOjRBjJ)GDCaC zwHq*?twr45^_<*I@Qm}Ml{npfuaL|0`q+`lplECa`a}8fKp?}0<&Vh{55+w;4cj~( zo<8cq-F@xLujr%PqzycEl)t5EyJ|{z+1=a?mG>#)YFO=c+x_QpDA(*)`q>*RoDulV+68%N(Poq! zJ2_@X_>~fSS#4V(2eq#uvmX?{PmybSky#o%h^Ki2zT82fZI5pK5Y$@9o*d7<-u>mA zWtiu=LH}*tl7*kCl^O=9RWz+sLM02j)g!UZv zdJXc546bSKJUSG&t15c)HO6h0vGjWsrQJ{XOyF)j?A9uZ%Sj>Qy^!ZotJ!6&e9|*7 zAEdevn`mbIkpuYTQWFnR(EL!BN9FK6v*{U|f(}7whg3zZBMv1x(Z5rli|t*5r^^+b zh8Uu7iI;U|*?dQb&6CVNr==3pU5n+He&zQ+lHF&Ncd6S?F8mqp1CKm;wXbW-zXu&r zs|go`f}>HkkigxAjC+aO{HJvvQL!@j7Z1CvY%nEs;ARc!KC8!DC2Hu~DpDAunPMGZFO>UqTW-g+eP6lJeB81bxlE;s^>x;LD6%{nL`0?Q zDv44JJ%m81FUD}Z&h7gPDE^tOJm|Q|L)*Th-4-0p)jtX`PuO6Ly;lnt!B1CflK#Qk` zup{j_O8;nV3EaD{*iRc+z%6TF(01IU{sViHpyPwQa6DqR|4ag|9}g0q%662k=-&70-rvY`$2B?X!D4*YG5u;%4zWtINoX^4v!?)IB`zXWmm)Mn7|f-lTbUVwl0K z>T`K{tanEDR(@!2FQEYXYgbQlCFKr?D*1}N$BlFkj6>~G_Lrkigy?O>P*mb+6|eqe z&iT0RqYu_{s7)yTmuZ)9#y#wrTKB%$wCrs!Cyj`qoesUYgtb>kO^nQL$8G4?Qh=9& zy9W+ajl4eWX>a2?z555Ku*4b5O38WhB-5Kkab+C=6JR5asJ4-{D9u^d2i}LKE z_azm90clV}F@dn*lg9%gNm1Gg@#YbRZ zxQ<_5Vi9lguk?t(S730PXWiELxw7Vc9~sHp8Y=AWUa{` z-MK!Bka7lyMdWQkLe;*?@I(N@*ZzEB>cf@B2bbSMoXy{uc}`*X<4pX8YAIVnk7{s+ z#kewrIYY&*_ic4y#U5EuadFq$1-D2u=$We3g{Khc^2Dp&{d@$KLtPtn>UA>){g-Xk z3OJsvb<1t__tmGRH)lz>pSta(P~3>Hb>sj7NQAq7&+1xGS zmHeOJPWcxyjr|ax|86KWVG2G|p7Yft)!O2ld(c-biuYEFw?Tu^5Aq9(0hOJ{V*ln^w|Po*p?jh1oURFDsc|EOK4Um;C-l zY0CE8q}{F*>uQkV`RgwMZG1C|Ue=HKTc&UGxQFyS#`b%psK7Tv_Z1nfY25RVQ;}k% zzACUfdmc|p@UYdN%F=I^kJypIHzidc-iHS6QdxHY8xWtXf5sGlm%YbeQ@V7-YFpHz z+BFznbQxVZ*mSpd_2iIzI}zqFu;B3n>Lei*DdQi6&w0`F#I=tG%5yIdtk)%iEGPI} z(<+Kf8l9Hjp0_h=rOKrW-5_}#qu*1MkbmqxgIbc;EIdX{)yB99ii>IY{w*eTgj&z& zO5;0cs@bz0LWX1dh>v02tIugC1ETJq4qCBNm6hXJ+Oj@`DjAB4*?)*GK#xQFlS2w1 zf_Fx8mI_}wF4~-?@ctVexqHf6Y1v(x(#u2clGQFsSykePyiodJnWd09P)PW}{&~@t zxYZ}G{ZuFO42Q8&+au;2$kEEtw1~-e^-*c_<>O`j>=19O*)YrmG5CniSbD}MzI@#E zNs)wK+(;YEytRLsN$j<#iF(p=OQ}})?dH~XnRebrwo|3m4k@XFrLa`EpZg_X%4+}u z9jqvRWmdlTDNz0P=^?iK#XkGK<%QZ2)h+~qGX;)hD9VaY`vuAP#uuc0%lZ0eAVwxJ z+s-v*Z}lizMH0{odjq&+&_+2RlybI{O;=Cb7N!znFfOV5Q(b5%+TgXa?%7c)aX}de zGHnjQra3oLG{G4rDq{5QP8)Vt>KDBTP8=irjGT*)NuYThJQo8w%^*F@EbQ^Cn) zIw0kJlzGRn?x~WwLsqEVg(}8OfburTQmE${sS9Aq&xGUPUZ}6D;5q| z(rUNU7q92RY?f2ZsXX~CAI&+mbkf}4_|5Eh^l02oJ)Tc^f3Qgtz-swWYWgLr6i>j8 zw3x*AO_n-}7lVX3AaJwrM_fU#nYP!dHM@^m@np7m%_DN0;__9klEge9dmgOI{jF66 z6b?Zo%lGgD+)`!oWne1;?Ie>@$&itu*wO7nBxQgCRC29fjhscdW@qi5BSo?c3aqF0z9WHu<4}h?~IrX4xr)^CCh_9I&Pt#s??Kr~X%sC!SW@}&P z9B&z~XI0c}F+^5zRTZfhoRkMJ-E0QW{d#ru39zE!1P#TZ_+HcVkub@zhV0dFTQ^P= zUm~9(LwMu&3fj5fBZBU4t3G+b7%XQg7eBarC7I2&k_$P4i82Sw8EETsJuVY3=d|e| zl;k;H^(#;P?I{kqxnyRdaZ;8QWp50In$K7`EicpZ9LKC5a>PdIQff ze?RYLPvhId-!B}tJ}5PJ7SJY&Nl_XUZ3hbVu6g7$cucA%`~1y+5viAe2zc>_)`NvD zAi_g$?8Xdz!%qk>hz7qIY5I2!p443KTodl384y~m^KRV@eNuIIn-O!?$Po9JJ-M_( z<6}=VamGdbSpUbY z-lBRt#Lw$1IiP3#RK5KLUZ=N+ge?Sd48c1;A8H#o4|9*peYGUc>yFTC?*29WYn^`N zq&v8y=&ZGU?T(slbs)8ylg#l)5T$SH>L(F(N5h4$uZOeKIgpk?l**>s4Nb;k;kkE~ z&-KPT-w=a%i}n)V_B2VP^SKo8(Qh^!npwGdZss)y$-D}}R(oZ1@O~rv+ftrzem`UY zGlM<2QYDR#P^9Gi4ySTcA#(jCJ|^wkxHq}5#Achxe}6)y=zNe_v48IKgVbp#K!Vk<=Xn5; zgJ@M-1YdE7fI{jgs98VHUl}3P1n*zWBg^=Du|Of=s;s(a0lEDrAdmJcB}orXqOGj?)~w4*-f4K@`ssszWC-Sht%6&5jlk+nkdzAFEA(Z{fD~axqsnn;9*gRTjN$XL0{HfB> z=x2qBvi{?LK(&77u?!(Im4}_+ug#?VE@fo=Hf@c_Vjn}ezPC#UCN`+G&t9+i$yFWw z0DJP^3qk@0rxp{kKK0|*!(*nW>rp9Mmgj>ZvH0%27*h<3)mHt^Npjp7uN`8^ z&}?mbQu()DoSTV(K-qi!ZUQcBF5nPl*Dd5DteC*SasiQ5QA%riDpWal5 zX1!+?k9=NJEj(FOg62_r{3JDA_B5_>R1U}V6&*b?cXP`%S(ID$7~)G@c~!EAwB6~t zdXt&&rX(Kf9!zOBC2M>&OKB_tJouK5k^SSp;eo}BM1*DS|?r}{+bW7Xwe>-?YmA7=;y=UVZ}1o{8va>P)bwOI^VMBYy1WKrHa9W zQSl_)XvxdixFfzAT=CsTZYr)C7vhnOr6cjr?0&WXZlsa3_Q?YM1WYM}0xPG7GHt%y zL>$}kc20MHP5gT-ySi%Iv^HW^aSu;Q{?29&Q|(%dM5wyW!^^xh2d4Bs`1JgVe~GJ> zcSi?A8m_ESqEO6$rz5452+(H3+%G@px&+n3EDbd(h(rg4aR05_!Ae;^La#WBa#Lwz z>Q1f+{_lTZkw|K4X5-d}6yuIwSg)hhp`Z%b^V%zSCZ%Qt^1uaS#K1$|vC;#7=$pH$c+-q#toAc~PSo&j^Y+ zYeIU86IigY>o~rwU+;YW)G2KIxwTnJ*=kq#(#7`kkAEH|5nIyxW5;Rw6;?me9^_rq zFFFUL)9*D_H=UP@W{gLx>eXeof=UE1RxF9tFqTP)?x(iJh~szBH>2qu0*LH)@gin&Ba2pWIyQlr4x&ac8*;6ch5L>k{zGOSMKU z2ni2++Q#8u0KzNH#qqIr<0wPO!)u|S)egdf{uZ?vitvcNDnl?wh$1fAg_da(nJq(Q zQqrQ#uzI99(t}auYUf6mf|5H*B1*VdXan)A)F8tdS1Y~nMhbaZJDReYvK zSFgj*ETHe(5fP|MX~&YHo^h0K*RR#I`Q|WeYL;)TZz7C-;`p@K$C24;{kl!70*jDWFdj{;{ z#r<+l6QHw_zss(NHvt6h(%j?~#DRhl#d`ITG?bl94AdpG5b3c>L!4al18RP(`CO3{ ze)QF2%1Q%2y}xK-Eqt1SH8%7zf<3<=%$-$x+)HB>2)2nobrK;sxiO?0J5U$LC$wVm+I|mXb>{@b+>3Kv67B$ZUbB8S!Tw`l7%0Td9p(Jc;@nYc- zq#ps>LyU&bFOAz#hDtC!M{9OicP9t{9ZO}(DXRpM1#^ikifIFuvP#&F2pMVU zo$gKQdQG;B{L&a$*B`m|$p#Lmapfr7hXezJy7ZUzK-NxHk&VuUQR=UTq-`#@lGCJl z=VgetUntnrN>Bi#$D>v=DCcz~(eDjJte!%fN(i2rQZ8P`oq~&1Kd`xA#-H@^ zLpIa` z$P$;V^T8d@50(S^&T&KyW60vO#F};@u12|qrCoI>70u!yB*JpW4C8J+J6P1ew*trv ztZFPE<;QQ+S-YIEeTA*tT1m|s+7(n-aPuyO-CvtBp!5d70Aad2rgJX%EkI9~F& z+n&^lafAU$i+>+h_OwxG-1X|IL+0tMoo$`U9lNBJT+&H(*fhmc#4WSu<*OE(XBi$a zrkj2rHjAgTZR72#dI%@mNM2a+B7WV~0NuN)50?rBdtt?wRPBbnp?~@T9murhvN|dOkS!y3JyMJi=c05d?fp?7Kv`9+Cm?Yev{=xVJf@FpPFy z`oZ4Rh;p3Hzv7j}oA8{?K*M^0XX!KH^Z04r$AYmLpzyuR$_Sm03$_HLLb;1BPh(;AZO5U^scIn-1C zL!{~1K!65+k6jS7=kMsUZoK*|1sIp`hX1=;QPp&0(&4avsWiU_WSb|ZT9UeqpjG?G z+iTRXKZEeDP#javb*@9_WTD{`c>R|3hT*p12%tL4W8g)skI0 zgm-h}I>MvEXMy(VNMm9V5lnqk#hA-vQvRUes}R z#Z-zH;K#N9jXP?Nnf$&xlD@i2rMobuRBkdeDVXg=d}`6Slz5{lEg{1UAwxo@h^DM2 zhifG6{d2;oY6#*v01u-*!d#)9NXb|NBUW^r4z6pxYz^;HQR15JHx7#*n|2T|a9_O> zWxLV6TMx*xm3VmgN;Dc%s`=vd^=~%oPTDQbW3;ctv!-7H_4;{s0xvYXgTFceyTKy@ zXy~O7-hd())ncT1r9$xgbyyUZT;p>JoxoXY`XCaSn)NB70cuvM;jSrq7cr!m~Fm) zs;Yw{R8z%vmo8-Co;g8z@i_FjQ(H$%`s{#}#piKbH0mm_o_}Mps0sZA_01lU{#?`p zE7od*)w0Ht+mW5AO(oO@eP$q;maib3Uj#Q6?DjiSZQg+?*h4R$BVzL!?^x&5Zp{6a z9?=vAFUXFw1K;LiVR98RhB^J0+)$A9Ss#wts~=|Tbo^>Q5K6=9OTPHM({;cIQ?y84 zxTXDpvqF^DrX%tdH1t$Q?Mx|+>4XdaUFRLG5i_}0vLsE_3o%1Bkx^T_K9dgigUOUh z$4w?=>*;YH*k3Awn{x{hOJh<`Y=x%yaG~H%> z=tiVl6qL@^4)b!hTxW}t8>0CH4iOaH_SAW!65j@9j$#>2RV<`qs!TU z9HS0;LVcMTXkOw_^>rL!&AYS@qBb+orK2tJG|%ONG5-C(_{+b~uOQzTnfY1~W?%Y6 zcx7#vJVNecD`xZQx;ctwy!RVfK3%r~BP{Go1`%}zL$(Me0bG2lE`;!?n4Q=pZkNjh zvpJ~y6Q00DI|OGYj|KrSe}U=%aMAIFU0%9a#j=XcgrpWE zKICQs63<69Oegt7uy;^Ic!i79_;=B(6gRiusG1U{i)0Tap2b>l1j0ABmAg!^tL{CW zg4Oy#R+sPMah%f=K9qq%f{dOi^K?utgBkxHnw+&hsW%B8D3cS3dE6BP1uy#b-g0C) z-~7=Z-@_L{Dl=}8t8O6?TKTWmRYoKw1QshpMEWxgR(4wbe(@AM#tBNU>R19oaQ8MA z1(zZl&MB(zED&pHI7WeXP2biQnf2Z8{6`oTVa=wNC*}U+GccBFds4e!%9yG4GlisM zSncgi4E`feFZQWt=1Ey;b=`ih30PFwi3PvFc8VGhMRuTCclHBqyFu^ z`7Q&l`#<|~a|fLKq8zvz_S4>7hI@#3fLypbkW5dtL<4^=ULHP{9p(!~d4scyBI zqG358N4$ww;oVT$@Cd0>VcGGg_3`j}^vn8f07jTx+t+y{FwKBtU_6s*@sB*W^k+o+wdB?z)Cp9CT0s%7pTEyV9yR*#5IxqtcE zH_p8si@RO7Wa|81J-7D1dXD41%p2r^(Y_CmmFY^S;kKl}?CeC~f3{2bwff9{yfZ`$ zAmQU=i#sw%^i+Gcx$xPq#>4}0Lj$Z8diKAW%*FOl(!d{%bxB`u<(#IR@nKgQIt+oM%rK9#uD_>iDgA|Cfz)aYx(V&IZ+;7%rX&=fF zN=>@1qlz7;DLD$tJBO0_^I3D3T6ASJh?>$lq%aG>$t`TU4_P6v@CHsGT^2`^d#=5Tm3ysdqDt6EKqJ<0^g)|wqc>zXmMFo==)X%Wcx`)a;7Cx zaoJXAV1l)N3KvT(YQUen?A@IYM)3cN#fnX&jwstnF>gh2$eoZ1713}MUE8ugaIR7c z`1;~~H_dkM^K+mW`dH?l*5}aJ0a~xUAx>;CI+-tAj$rR*PZOk4+wJ%W^~%;%9kkmW z3&`6=fYEz~`ewaA;yT!#m1^w}O>JIH&qtxkMr@GuPUilD-IO<=hd`J!_`Q9zICo%A2#@_qIg0V0-bATY11B#aMxm*&l z<>f0LIU%O^U{8>9gmbKr*O^FR$r2a#`!9+NZ@9eHaI0?)@+{@DqE?G~5>4#Iu%k!4 zj=Qn|%b#azHE6xIRg->1Pa8U-yX~`soiEBt796(58u(rPGNmk+wxytn@J0XQ6>euh z$1>41Jy1a9LHc@r?Q!VkNO_w8-mY_u{D^V8SQMJu^aCFB)X0g~tRDoX!Z|*p^J8+= zbCn?@(&a86>`@6|6HYkAWg_UiY4*zuLqD#M+$6SuHN(K}=X}3tu-9ahUxHQVH(v{I zuuX$84_Z%#hc3Kd-9~e^(bTi*z+#yU7j`O<>0d?SJvR9H7?A4A$ySeC+#{9-Vyho% zvec`T-Omg`BSY9b8+t$q#^%#8lWC%z?GG_w0P&18{u-Nf`?m}3Y!qrOks#BKk9!DCZ$Y*81yV=-AFr z)fo@}*4&*egDl2)wC-})*Lp%mTu>~5}@=;7kDS!7JasMK82iqoTOr78QTh4Ij>)yHLY zdJvTX3wd97-61eX*SKq@q!1 zpZk;J#nF=W;q_U8ayhNdL8nTFWWQOh^y3#MsA5+82`62>y8p*k{+FoBXfKatPHT&9 zqSR=^rqpT!kJA8rP^E=99f^)P^$oQ3NFbAs!^m%Pf2NVeq~qiEG7wZzz+Qv-Yb|e5w`X$OXpq~|~9qQw@ag`x4(cAX{rH!8I@5zf5gRq&uc2qfWs zejA;Xq;2Nnd-?5zeysi8)~3nVqum5P+r`*l2hTfr6?_e+<- zlHHZ0FP|&QYFYK>Yvj|PdM`Ti9pDhSq+#q)4P&od{zrUe|FCio)6 zV4iDgX=j4TbrUhellB3C#ikX@tR?Cd)}-iaK|!pN96ryv;B~QJxGjalho?AZ^XeY@ zJ**77zZ1S9JCN&rm6?TsbE;bLN2E3B0A z<*=w=zy;>qsV~7BJ%DD2<|8;a*V8bGQ)@YVG5I^w>dx9?0X1 z^+UYY`nRk(Iuh=mT|X98D7=^aQqgHBInm=L=sTrcnq+eX#_2N?{d9m4a+$H~NySl? zlwx_+PB27mR;larhopqW-TEw?6-xJd9A0@$r5zXS9M!tZ9RrE3ajK-ST|C^b!WN+7?o` zwP=u6mF8m5C&$Uvz(dp_2E|Or+TSioW}d@Z3i0d(GuOQdQfV#LW|hRnW|Cbl=}v#C z2JFrjf_vWjy5o)TsQ~@}eihkp0viB@W{t#Se9M))XY=c8N`rtDn?3_(9Lfr#5jdjY z6%`wDi&M3VIg5DHBIt8b?{0qDfmL{|PMEt=k3J_Jn+QUNW?DlN{$j*3Oia%mN%^Vm zo9i3X;f$uoT&RqBVW*m7Nm?lYr*6M>_2!DfhS#icAwi?s1)%w5o&q=WH zX+ozvt!9ge6e6ff%dHRkdU6Lk%iCg4Atruuw)7-EJrZ(dIMFnJ1(nozdT(M&v1DN? z70A}Otw@{-NpGYr(alSxm=$F$mZ!ABN*Amf{9!TYxo@T2+VFeBK)6Q$_ss~=ZV5bH z@$pjO^tx#jc^TF2_zmRx*EgiG)YP$htw-f3{a;q0b4(y2>Wdj5;$W3O3-YMUq{ny< z$k)THciNDz)mDqkqM3S2(V!hSryuA~5#CJz@?iG$0-T&}{J56QlyZ6p%xACB6KQ`o z&b=5rkOI=9Q>e37th@fcTOh_d7qLe`-dOKs*BxEIQ8SK{OaGEnX>KTX{)pGULhUQo z(9uI}#^pQlVY4Z3PO<$FNi-}jQnkzd&3e0l^!xg+UZP;k6m1|jtpev!3a8wp_Q@RH zysIIvf~Nh8=x|dLXefT=6x16_ii}qTJY{el$5KxO{w{81Nq{;@)5#OBO(z+>sv`saUBOrVF8%dMif_iad~^nER*jM~ZB5 zkf3Mm*;I-bxECTmST1mx%t!s5^%x)vd#ZNsP3GZ-^OLV|x486Ks_^bxYhPT=FE}*( zBsiRy^(Bz)p6|Z5LX@uf`n&CDhyS3dk^K zaGDJ(0Ade3ube0WZWtSP5s;ndnZp!L-EP}JZK=1HY#jnwM78zEtV^vx2ZArG5qa4r zhEE5~{L~$5QMDMp?h9^mLJ8QhvZzlSDwvR=N(^+?8vGj8G8F4bCHL~VwYX-NWIc6# zq(JPqv~vp=>=Mre(Qf7ln!U?b+RwlF(pj0eB&tyRiw*b#f0LN{B~+^{^14x3zGB%D zvaL(zwH@%z6S)f7uWD7|>heg><<^Q@JdLL{=noPCN)<-obd%{rr57*QKtv-&)Nd;6 z2Xf!%8-@{Wl~NiDmNv@xc1*t;1A~DZ$I>52xJ@>nOjJ)m$!p9~$yM?eQ_U_f|I0*I z_2pMFe||8SRD<`;ov}?xEm|heUsaXB95ij^v#7DLkdyrQobgj88z&hu8MRL5AF}CW zrHl+JASebS)B}g~t`N|4>ig;$9IQP1<%9jSaK1T8Wx~kdLwdL7T7EOPr5^uroN}BW zC1GC`OLcVQk3`S}+&ZkDJYD4qmJaZIGart)Za02LjmY=d9iMg!0TYRN_k>JOA%Eq* zk)`+>C(2cR-rw^>+B*s*?<_;P%G-Y zpFDf~>y#>tcmkM9c1A+b1juD^QW#M=#n78rGFF-`|88Hf5uHDYt0X;Xa?1E$8gNw8;QOK#n!S1ps>C_jm)dDEiZD zB{h}t>o!NQ=ihJWZBg+2WMGMR52C+sheRZN$`3nrj2MKIQ&Nk>C zq-V1MPN*lU*cwNMH@|mB_6bBo^A}ahqafHt%)_qA-Tew049RDXWCHQ=T2gu)$5kK$_WhMFirE zJ?r?#O}!j=+;e8mmnrFJpE$b=Jp>y;V=M6I4Q8Tu{qsfaLx)UpRZZhl=rC_bcXU@E z>L8_O8@bf&HHSy->ojzss#m<*RTH ze1eoOeKq=5)tM>rCRyw<3PLl0EEcaYMQS(MM#4XQ=()M$xDw*zy7yD{_3xoDTl(cx zTad1fKixpnTu{?XUCP4hYw&a3w>;%E_1a(OY9bJ0Rd!F$%zo6!CurNv2$AR(2bYSK z_3pd-BBAT+)^yOL-9pXgmNv$hE&AE804DeMleam+QOkgvi7Sa{-pNHsq;D$|m%38JC@`*z)xzim@ zecFwd?v1Yky>IKa{TNNsga6u6=tL9meheaxiXM6) z=rsC)`L}!)M&^CjElf*ch2Rku1w4JznGgkIV8Gyf3%>RGQ};sUJGsaNKQKHDgZ{-l zBC91?Q0}PGOrDT$(31aC%d0L;T%l37*Tc=Lue4Nm4Jp`CDOHN&emjl#{nRiyeAWh) zs#f_7^O!xDPfasWO?W38Q?F}3m;i=}Tsv2a5_cIGMxu`2*IqnFSXGY7p`zgyzHn!#!0DQ%dGCsus8*hZ??T$l zZaJv0o$T-5Bnh=4ji45ivn1i0w_kWDF|PY_)4FRoBt0h5j@!iootabJA=S|+dRb8e zV9-ziQdVLKeGRX}7c=`Mz!LSEFiwmv)AT1FjYE|FtJ?Z$Vl*Ke!n-okiul!A+*#A% zlHGbI8g9{>ZO2(mbbz(V;!35Jk{1dd|H)*M`{Q3MtfYRYFmyq~+Y@VD245QV=5=>^ zd``#SV%O&kC^qdtc!pd<*5TOTStZe8yQa6;!r2Bmmqg!Cck9V_ zFW<>3XCw2lCzv&_ldO^P>PQPo5 zQ$9PUy8JMkJDxqqpg?yTf%L5)Ix=l(Jxby2e|n{8fRE1dOe&)Zc2)^9oSmk54J9#` z*%VH;7$J1Lp<~FbBmzADl5b>pTLM1jYSjHMwNeUEE6%I?q|X%$P{4Xk2no~q^v+$W zx4HkLvd3`Wr}JjbrMmo2Ak45U2|iQOS@RJ;YXs$B~u6h#gg*%9;+e7O=51Ra#Ki;~)(FW^o{Nhyt){udV z%q^rmHVg;KUS>n@KB-(p&4QaEyH_UNw}Obnr*)9bh;q`fr)%^Su!RZVZ7j%feY^Jt z8ZM(4Um}__VbVCfTD7i-5;n{b9XgcE5G+T5xnw0Ty7>@zT&J$${-S^f-L|_4JB_PD zJmAXH5{+ATWV#s04Q~QhBn;}#on4u`ekqdjsf}O^{Y;Gn3&C?fADSF_wn~xIcMi@d1ACt{X?kgOXhPh>0hc%q(CPwNZm`&a=Q?j~QjIa{xPQYY} zkuiB2$i(}VOAAh2b-U=rO_QkTP#j&((sktqSKB?isi+UvKjTYuDnj4CS_3E6b`gY1l7NY9AD&tGmY zl9ilNdp`6WNLZupt;eWiH3BMjF>*CL(jPfX#9%I;J5>5fey>ZK84#EcIal*;X53;F zjsrE^zjGo@&EBR?k_ycdVjfY?C8b`EbO7;T=fU>EZsBSB#h>g&C5NT%YpCO;CzaA5 zFJ>yj<^KC$11W&qPU0uzxaW;7z{#=G))51;H*1at3c1sQAz`}k>YyibMM zHd@e8b;GJCs|VCpGrd8HAd;VytiS!i3=Eg^nXrCCSCO~^1KF!5Kx_iIO?t2I-xpA6 zpi@g*RX|LzO=mDA{5#Gfk&=Q z%sEaP)4iI+23;m9>SdT|ARPD`Ggx0VK5*4rXXBh{fBAHys@n&OCEJ=%-ueuAu*K=c z8(W>jrUH}u?}0h&sSWtZK?M0{gft_q9hQ07(EYo0X>L<7FH=qUi{7U}AP12JHRvd2fOJpWV!8V}Dxm$suRZ+?Mz zJKN(-J$IhyYLVFCZ5bj?(mp-6<$tsdu(L!vqkbg^44cdED)TH>cWXEXizU83m2 zoo!F`EE$DD*rN<* z|1H~JhqDyES@CT}MdfZOVXrJoybn@q9jX5fzzJzr$&r-%3$>)>74`t_njm)e6Fsi! znX3Wk8G%MMpw<$4%8RcfJ+?VGu9(p~W+6b7E~%bzSd^w4yUJP_o+9? zn~3BkZ;R$t^i!4^LZ`}fDcF}uGh(1Jc~cIVyM=-XKsA!#$kL4KlLG(VZ>WQ8iNp$YE+_qw83S7t7B zSKVj2Cd4~*W_xA#pVR$u@ndDu39+j9C_nyy|N8YyX6P?dcVczTV3Etk2i@s{vp{OZ zcWcr4N?Xr(;t|C`^%aA`em zLkTTkDVfgLEf!wxWC{GkVc1jt2>{=S|MEA7wj|j{-P7Pcl>m%!Ofnk?!3^bCWhTw_ zAROH}si&E|T*!<`K1vjvjDV9HTeV?u;Bne9h2hnlR`rj>dHxw;aeRnoIiJ}^iW2hC z=Zd-dV6b!aXVUpKZSk@&8dV)z;X7~J)IQx1Kf+rNV{#(3dU%Y|Xj2MlC1d@;(|V@w zWpW;AlL=d0bOcY7yyQ`x>oj~kj`!<`afYb&LM#*5fRIn=0YxvW(zd7CVgNYvJUh0x-195Voc;kb!f zz;F$jvTrizK%@c9VM~qhYx0bTM%|43rKP@G4(MKCwiSFi#;SrE^$1X7DRiS3{A%!N!4r%_z{IPUYy@H(^MH(eYte0k*V3ev#_!QgwsPv; zDMm$vLt0KW%i8|rEUja!&THyi`E9UgKcRM6+-(ZpzT#*@`5ETes0zB@696 zc`fUl^F`M?0udCqztO&?{?Kl=j@bt1K`(jhY4l7=_57w^X1kp7gP|u@hS9;@uLR7s zfnJsM_j@zFCV!NJMDgq%1l739Lp%n%E_H0b{SJB?BQSo{qEF@aL%rE7Nw2bS${TaM zTe)R%0kTfC^dW1(pUmY#M50DOEn2&sM))hS56r-|Y``E8IqFYm*%l(?p`7ZFPyXOJ z%($=ya8D7s+_p*ocRi<6A*V+cM;7!ZN!QnewS`PZs42NJZW-ENQ+q--^$kZyk7H*o z-jPg*?5^=IOinIN9X{jqCS%0`7X_A!uEY7WpDhv6$3cugQl;*xPy2*3ZAOwA!s<$* zog$A13K)bGkgsQiWv_O}Eb`}3vRlgznV)#TeAt?gj%BX|OIM!-zlIBZ@wZF0Wljf$cwV zU4STOnOqiqrk^(bxVXoGW$RTz01fBbj>*rJs5e`5zAq}?CeYMs6|gWnA?er)ZS+;f za|k4rmz!*3ymB;B#g(A5DVNJ=uS_zv{>?H zw{S z8(qldH5Ls9k1r`G)oblnz1=MFTsi+>qOa1gK<)Fx-${DL+X>I~GH$#zC^_tpdyuEq zVAXd=NA54o6AqVXPdTEeiePi~){!S}gl0DE z`%O=-PV0~-Kh%ZVM@?u+{U~6I3-lsQmIJQ2)36U4^S)s8f1agtZ92RZHW(R^sJh*- z$5i;uoY>$U4**f>wn3SMJVMewR}H29AY7Fs-Xi!bT zc7|Dt;PtQ5v}bSshrxl-7zUH4w}zN*L1lg4~1b4dI&D_yc7sh`m= zf7-n+u5T(e!=f|M>E2-C7a_{h40y^;MVKljEq#Heo|-f_If6jm4x)*Peytes}Fhd)!{sF4two zJYLHizgm}uEeA_HmCUQ}&ksM3x7zAd+xMn!ZC@_MpQuOsdBMFmwpBZ@7WqzxkH5?& zAFmJxm^%bvbDc!ah5u*JLsEgy>{h}RsHsaqQ#d?j^R$>cQppmyhv z_tzI|Z^gaNC^+s-=u*NlD|`>g8MDARuk#HtD##La(V%*4l1)Xx2AxTgNJJW0prbl# zI>>8O;{B!ltb1#j!b+`Ho5CCz-ULcRI0ngmwIaD#SgdgL1j`soS4autU^?Y)OMbh_Qt?%A^g00=4a zKU)w<*j*tD4zP8lRH%Y9jDHqz`a1f>XBp|C_jHQUd!-*{dRXwgiF#p@7aYigwf%|C zs7{-+JKzlJjUOeA6qu-@*tcvfq1xP^m{wFmx7^y%M<$<$K``B!dw+hkNKVt?qYAm~ zsTrZJj|Wo^#JWpKz~)X_mVeXkeI!?N^kNy=^-PmvrpyptvEOLFTEIC`)a*M=^mI1) zlRW_M^Nu6C7euh?Pw&Mkhco!M`&GZD88(>X(iz(kcCDey27^g~m5qI^`;+`zmkXmQ zpvTUTC3sf>F6HwT&HI0bzf-NE`Q{yK@t{M|X8qT4xk!HeKWlxi0y*r;`>xQdJ2|fm zME|YzCwfR$708T^QckW*a69uMCgoiEQOv4^&f_}cagB1|qAn4`dS_waKIsvfFLgeM zI(gHJwiT}azIrP}?N^Sa6Aj$wp3;;%DC>)@ea=B&Qu5*QY3kZ!G0^4W3FK*U?ZJW` zUBq#49l3NaM{(v^I8G2EiPe|iU zg=F|a(({WB#H4Kh5UzNRoz2Su(zeve3jm1SPJM{=M-pOCe3XahpY};2!9+t?r;nyG zq)b8>-EX_JDZHOjYs(OH)$XyR@ApQC*V?SuIW~6Ya)ikx2vc$s+-yEhNoHP0z7h{P zGnVAo7jy9V&R1a9^irhT4dljI%qecMB3d!@kh|#TngY}ciK<#H9FjZN20@=xM1SR< zd(xN1l&-6p=uanh_1(qo2^?}jvd08UO_ed6;*RtU44FLUv}QznAT1@^=0leG#9b_! zt^Lb(oK*y0Xt*HF>JBZt?oZ?U^yV_=A6CTzJN7_UC*Zsn-&*SS}$kzDn(AAPkpl`9_cIT7jy$i zI{e;QWhWYBH4dN=-vO%(j@IrjXs%*4zR3IX>;amdvYk|ER-+`wx{94#B#(^S(5RGe zW&=h{Y7qv4YwXr?IF2RTeUAruA4+7uVAbk(TCe#-xk-gTrsO>8)esBEa@=m^aKKK4 zb=00>gb^RhQEKW)*PQV~!Sx{HgY0V`LtJyB2OuCcjmR|i*{3iiiKCy5fWzvQ#iv=c z|e$+5!IuNYhOM*Ij?THA5%GP*I0iH=WU2XkZSBo7s#`u zbzQeJF>$kpW)f64BuVx@!6lwqMLtob;Lp9G9FrW23({*IQVsTf@~>jV{}&u;k6#Ht z&>yty3*pbaNJYlVnis1@Q0VchEDU|9bnx?a)&Af#PtyHFc2&%w{$;61Rdw_e!r_~F zKWwFfr4}-Fy5-vbFSb_|!Dsm@S)cZd?U!*WbYp_cc4^7zH8-TMYlD4+w6wOwg_plq zk^KjZKOKzcSi((q_rR9VdK}Mj=mJwHnp0YK`0EnUX`9!{FJwzfK-#aJGx$B_G-W_@|)Bfk;FNe^eyW zy<)FAJ8SBcQ}qZcbsS4=QdGg%oo^}sdsKcRg0uU5s>JpR<_{RNFd5}>01JDWe@Tg` zmha})n|3kfaektbb+(OPT6|#5S0R*B+6PS-I^H7TTY( z6P|-tLp#md#1db2bGAy7{D&Bv@p-*na*GX&QCk*4`|qJql+r2cn@u5>;tZ3c)h@?_ z@ibA!%=%+fdDf~h2`;W1A}d-d0eTdEn)TvJGUmfFiUM0rZ6&R8?Nu*fVBzgR1#d6u5Xm|s2EQ%NP3Oz z&(-wO`(O%eJCxo0iz0}}aN5(r3nNH8%<$RyPrjVS*L_{-W4j|ZLzz?ak-wvW*gRS~ z=DDhYX0tN`T_FMrF~46JC)RLQ_^-Y8Gqag4)i)4weyy%BzgNrmOoQx9y3-k-s{Sv2( zN6D+}Y(Kt^=i@mQWHJLqjnvu5EC9!eZD)bAtqhzk^NvY`AZb^hrc}O5BZ1Egy4Aab z!eDnTL_hakZ;aoRj8yY9l7bi+4;|!1^NvCs6kPmv@k{2Ea_L$UzlTD?bieNrK^E_Z z1B|-LRv0AP8Gb*Wo_S|b&aP6e-vnxHot>=b(`2=I1!7w11Vv=gjZ=kjOLM6O$x9v4 z>n3$kPHMHRS)!0og)Re&9VxT&uTSU{e*>KsBH!50tt#iR*ZuvA=(7>6iFK<<9Z;d4 z)|{m;C-(h$4z1#5WuW%@X@g%oiyv0UhM2suukRU@k+YQ9v|;~8#h0l$L<9SyAlp+4 zF!8=w`FgA<8neI9VZ7eiCBNGr=%$f-b&gfF9+)CkEG3H-Y_Zt2{Ai@>jIpLUq>>Ej zBnV5(oA$t*?Ngx>F27r|cK*P3-|G8jsOm1b=-Sd`iMN{0<>D$ks7l+g$?dDCZZn%& z+n{y4*;c?IU$wJ+soZ~r9PL%h8gyQ9^x;7@M7qOWy?SvutxEPW_kF0{%%k%;2rf!VRKe43A;^P3+9 zxu54_yOQcG~v>K`>OmBHb@N-mJ}q$t&vc#RG(K$vrt!5L@gIGp;LEn`70GJs zixW$!D;bmd0`!J;%XTtVRL3HFwP|fPa=yBuhYp4I{bKr*p&=2cay0X1IjhL?!Ix8x z$!VxS$^z-g`E4+aaBB8)LGWcb8!bM-wJ)EHgm{>!WL$N=Q)iq&EkuykW9tp(g_ko| zA$bSRyO%*c!$0;QUrO?>&Q!s3|Wy_=^2FHTz$oKafRxFt&sYg00 zWHR!ZpgXmG5`ZdoDJM#cg@f6e(c}N(tG`#?hY`Mytwtk31J3}?!UWWohbY;^KE0~7 zZJ;@s(5&!^^3-(wOtm$5-`59Mj**6q#^vI0uxQ?5#@?>wY#QTL$Y%)iY!+|A_gV@`P|c4NS{9 z`voj?i|S_u`BNRaa?OEX#V41L|<_Cg?3aRas+i)&aeP;F|<0zRZS|{2Kxw4Q3mXP%JBf$m^lIoMCUO&aq?TYt&C$f)U$bp_yU zG!c~xsAmvso(OT@Z|tw985C@Pxgfy6G0ceF-qhWC{Z!M_=xJ7Li3I;8PU}~w4#0Im z@Yo0@vUEC;d5!jOZroma%ys^l*pJw4Zk!oJC5V70*SyJ9Vuq#=wcT*1HBJy@GcYz- zD@l!ryztpP4Wdf@AjsUN1Y;McV%DZ{&e04mR@#lU;+gS|oTPSkHnYrnu}_FCL%+dx zM9U6UjG^P(ym!EX30`pgb+KukNtl1yQIAj5!@BU9HSm5ZJ7>E_d6N@f?S6DZVyksb zgY9v^JM4edWNGjqDBzE`KY#7wff`}XpVrCb-B)Po)kcxdAaso3K?PhUqoW%k)BfM> z6-1kMYnM~j4#Wr2!Wc=sc~%(ad>Oa6kiYn_Qv4&BBWO9GJci9yV(vSiRaQ-YxJ;wT zb)CI`ykf0?mClr}5J&LyVmaY){(}1ip&<82RtIN&g%h#rLI)~JsrRvaA85(!dtTsk zIjv1U2XcyqY*XFlHmd0;#jkWfSv}pKDJ}rm;N@CK5P9xNdmCaA*N?7Re>&3}yUy?k zJtz4v_0}LQjylUH+V1(YN{}~=Z36(+5o(6E>C0=m8TeDZTSx7pV?yZs&FUv-epw+# zcYf1p{gd5dc)K0<-7F*Jl^{&gZUVY(rUF&+RiOErApk;*Qg6?IhM- zJUYn8wm|wAwo%>UU4j38G95HiS`4~k-514=C96O?8+y_-MpRH@c67lO+uhCOMP-Q( zi;U` z_8G8Tq~XOyN7mR~0t^#FJQt69gy-Om)=>&6V7W^*Jq@rh*;zlYeFaQDu>CC>&jo$8 z%{rWci*kH6vwf6ezpGBM$9++U8D_qQUePLol?avYV1n8^R+*1Vp0*slyOnS3g$^#+6c|>B+?M5YXP6bKIRImh4wu-w6PAe{KoV#K>)L z-{=`A)l3DHvwZqG9Or`7Wj;$wqIYcKsQ*2ij z(ooaYiAn`e9>Y@}v&gbQlrv_#56+7m7~u-$=Av>A6jt!y(^t;+Fq*6+Mw_c~D?Ud( zse_w)@^Nx9S}kvMI2^D*ps1C|UW~C!MO7}}5+$-(*V6I#)KU@zMf=Z*fzIY5T)x)X zvu|%bS}8vzQcmii(QB)mI#IE(*m1v^Kd+XMlN-z41$NKt)q7%QkSy`hNbjDTR0-S0 zyUa)+*mQWR^rz9ALgA~sO@3U1IQk3qV!~N=A z`zPCxe0r3yufVT{|Fizp!_g_*l?VJ+#p! zu{fhNq%A4J1>(4`OUHYTyTQ3R_Xc1Ck7~Na2Z{D~8XLNJh`|JqI`4)Ld_DTbb-u}B zTP}26E(@a}JT_KVP=k`tEPa!S0)y@Y-SN|kLMOXP zV$1Hcxn|U2(e*f!Q;o0v>?gE@7n@yqYyAJ`X)DveoMBFCXVuccK=h<{>V=$V&`)e&OdT_gtF`cT7#z8RLb^oB(0z!##8E515g?S4C)~7@ za&ARWMZSeH7E;69_0V$fbJ22fv^HTWGwX_5SzgAn11J>AOeNxXxZRE-VIxvMD$_LF z%tNKm{aS_Q4~S;$MwE)t3|_#+18p(xyl655h#|y@p1PQ8NJ@LY5WpHv8DF7aQ(-9s z;s$4)Xcsd7#j%RB>6ooaLSL-)1K0fhzHlo;Rf8PT5PfCs)D9`hGg|b8eJ|X;090hf zst$1mb~=@@PO17^64-*=1JI8lSU`r2v~(h4@vGnGPj8IHqqP*8B-Dk*&553^^;Ow} zd@=UyXuXuS=Qv-@XcOl|+qLah<$NWOg6yOJW^adJRePGzSkB-LPA%2WxS+`bwC<2b zD{cP+;5m?=MmSraqdfE6#Y5>qvqSEc1yX}y%*c>WqPEQF?ky9vvz1;+i6Hpv*H@lH z6i|wNTL28Xbl*nvm$evq{1z>y6SWq8(2?&etW1gh&yQf z>lOvZHsIO1U6PrH;-ha`?%#jW%#{~h>-;oA z;J!4CDFalQMlHSFOSfufi@2fWf zkey@JRBRqk%tT>5t)klWj~Eb76euem_eA7&J%Ef?1%d(5Ex3GmD+`qHU1zdxMMM*H z{Ub=D24oV3zZ5@d^2iwM66q$!7-t9m2_bsMTwc|*5NqPejoyb*8IRrMQR4^=YlJm6 z+Rax+i5<){XZn#cJ!cs~zk`J7aJS9<_WN7qRq@(=;e#Z|wwL-)bi+BsIV;!uymz)% zaT!$If>LU@T|zZu?2T#cp|XvI=OZ8~Ab_WYlG)2pGS)slKEBn|imbFeVZA;*)6wgF z34Y+E-79_#rz?nE?lvHLWrfM-+j+~7k6qKFhl{r5^gpub_#Xwf>bm&>f}SBjZlVA? zjJG^?QlI(tnWuImZ~|of3F#2_g*TCeTifthrI7YAMG)Z@KWk|_@$y&59<2udQPrT}3SEUsJk?T4K7}C(f75ftz3#|4_XC^5yQa3J=F`p1tzSDXuX-Aa zfGcYL8&nylrybDB1V&LC1P3>a?-Q3_nzSDcXUq83S||JXFP``B%5t~NJny^J znP#2vyYt&5&BqKgXXbNiwNy8sx#1&TVTv10nRMa>K0{&p9EWtev?^jSS@d)}T21a+ z4q(Ff@qN=5sED;dYC;eu)yzn78C@_!xK`bXFIj_J42S*r^Zou z^U!wyU?)cP+cMoJUS5y?22}7=IGP_#XO{{EM!AF(Ye(#=DHBed;q+aXi0Tib2Uq2C z=u&=P|Jp|UC(a^iU-%u?)&m;U{{WQ{Ci~K&t)`ww*l2S9?Mw;{ zIAUBOk_tVBL%Wa|9p5dqQ<=nL%`^)rF=)v4x2;Xl4W|lpu~*bp)HAzu9Qxrx-&?Oi z55IQuz{YXtNMX~i+hIBdcf26AIWEIb$C9jGkrj&j1Ksy^^nRGv|g1k(?HnG)yC{uiUqvYJsxy}KL zM(iJM<(6;I&@~`KmQ58!{cDqJo(dJk5&?3FqA49IrqN6S>il0a0SuxT=BO5ukn@R{}1c z>a5@t71eptZO%AyK?fAC+P3P5M*E@zUGU~!#j;uGGFW&Sx^EXT4HAl!q^Mxf zNQ_26R9d>5Azfp1im0U0-QA2HFWVVxRdrlo}DyL}PQ%1GBlHk2EWK62u+bU9C|=S=p@Pb?P)#Pp9uh zDjDazc4Z7rN)x4}W4?9G0`NtbN9Rjq*B`_+jW+PS!Hkgp7>EL`;}kw6WG-e}sBC}S z`6h|yH{n>{hQL5w2sHF9C1?pb`yvwTTqvhq<>yl!(O{RR8UyyP`cWk{z_6!-#^=xjKI%iLftvKO|W z_Ub5Hw77`tx_cbdHT$}5F2n9+d^29~EMg`V@U=!)9^=kHq6wSvn@Hi1?zRNr?jX&s zn>|;d4vRl6L4SU|U=K(I!6d8;GE>)ezwA~GgOj48khhKT5WwCe0nT@u`j$JbJjjrU z_o>&m&@1Q4bu!aH^D^7tv6ghNGKf`s{mgcco;~}MfLA+>q9veim;aRXU&`QR#bO9n zU?2;=keO82Ub=O<4p#7iwg;knFjX1QHFM+9~D;bNc3nLgbs!i5Z5&;Lq;c*$Ef&kHNO8B5r12<4t^*^`Z(a*=Y? z6fWFVF0Hf}F7C0&^p*hopg>hQKCZV##Snu~Exls%Cr*kY3F{uM_cD{v_VzTeoM{j_7pxeL zhFQ$197uH2shTKD3j@)FqgNaO9LC~W(&Cz-8~nk1o7T1tmqTkq*30=3Wb%TK)lWk3 zXrR>Xe7FY_T81@#hIOzS^0U|%>NvreI-e2q^dwTT$vMV$ zf4+z^EW3kTE-yZXs1AdIwVBVsc2QNkW>O-SlSG|lZ3(z(R5c_zu#bN7VCw(cDhm8q zObhOk$NeaAUE*)YY`rvwj{{KUc;qs}ORrh7&TAp#@8JZ3SV&zOdg5cMl2il? zt?UtVHfhn~?tide>L-Qe@J4T9<3!3PZqsfSowZf~qj;Uw>+j-XYNVx5Bj>7P1}8%F zsZM*N24?M}Q&{N~;5?aZ6!VBzGmA7_(;^Pd&`D}zKXR&TDGz>7D%t5i3EyBUY zY8Xz{KzSI+h>@@8YB;Teh8m1RM=8|F;wFk+YmB$>sGqL%sFI$wjkR4 z?EJ~$r1f3+pk@e0klJyYainY0 z{tdnyOrv%0-NUDsA?VVhm=2nEqXbnz7gV3aTXK+#EFR@44@RI1A9$i49?l4v@X!zQ zOmP{rAsP3lir_z9T`bVkZZdJ&RObx7_J~+?x z#jp$oLXYYGBe4kM7%b1&GN}3Q&vCC0#UZtWPKYM*%tKLJCV?_jGf(3KLqX7@R$^7y zH4n1RgZls#7A{h&0=ek*E?+Aih?4fD&Sy%#TzNZJ@9nU}AN>lfuwsu>L*b#e8G$9! zjPK#AD7=IGai!*+VUYA1eC&G&6w9p`=TI}H0=M|QT0ecx@4OoexU~JAy3g-Xh!*SL zi*a#h5^I~oVlPTj!ODd%A)#09r}z)@lI>Rc&-38^~e|SEqAfNe+2XV z1=1c{>rVE_*X4Q7F_UdmG+0t}2zbav#_xXpv)g9CE{IikHLX;xgrU?JZt2{QSN!c~ z4&oh&xzdQNkIk}#D|TsB@oij{;4Zy7UZQ1!D8rn_goR-p?#rpqfg(ZBUtx^%;R4xu zxa&_)Y?8d~6-xy70o!L3qhg-3;psg9&hoVLt zj0>2ZLD;bj-u5r{1- zaU7)=5Y5dE_k9O8rHrR!@h^L6UqTSU_7aTl2W*NdR_=Bj$95g7CR(7W&-28<%`*LG z;Vs{=Rc_Xr+@yALVkH(@)%KH;h#~sOY0y=$iei`z8Pv8$2BZ#gCO=!0e)cV8tMy)- z9nzxGc?Kv!-+)!1}^!D^>N{L(hyLi_4bU8JCc7NAE zLokfDE2o!uc>=uTqk@uP zQ>i}yUWJ;D!UQH!G{JlqzcsVvhZShVk&!D5bg@K(BKa8YYIg&#PAjPZFv#U{>1A-_ zz4|o=Z+aiuXmxmB`m-4O<5D^owMi)EThzO7aAd&w=C-H92EDx;Ra~82EU?$7xPLT$ zVSScg99@Z5qPT&FzWO;D=4+W$IcG0aQ_u%g}wEmon zTJvH@tep{Y)MHEChGSIAx5($2bx#OtoYiFn^n;+6M+&qY?e$NJTR?>h_+7L1m4hLj z^OSSWL=N~G?!^Y0n@ti0Zy*C-9LZebtrYR27;OLRX0kwfRfdFekb27q^MqdEgibXd zLEM8IoH~i%P@ql<8&c2LMN7jt>&|9C*Kf>?mG^;7qnltBlVuzpy6@;q$M!rxo-Q^+ zdARAGTnGod8p#gf7tNTqvE@`w6_y68I*yWp&9UBj@or4?4SXKySi!zo%UMMi$Y4Ru zzV?M#r+3DSgx?UIj79krcY~K>J&b7dWsD^6^sD4jxB%Cs-M2Z494_iqs2)ulIP9q3C$B^SnFTd>bS+xTeqe_8C9nU;%|l z=u&-a<4h_S7$7iJo^M{Ul#er^GY{f;nBoT5Jrn_&$a7S-Zt;nP0W!6jWh$z;xx$11 z!EulgAd48}Pju|%Ae}niN_5@j>t9?n2jFiSopZIeO7b&8c42Z3?(TH~8g^l*mqA?D z-u$K=Uo{X7t9!NWi28pp!gC@pxxpd7Qu?i%#Mb2w_~kTgo9ASkGOD+gp3YUymSjk) z^1!2miRMp0j=Xj)n1&OM^Sad52MY*HF95wIq9+~!)NN|7cvrq!)zms+8%iaWnOChi zOCnH=GCx0J3|$s`c7XgcKdE6lm{c!IueKGCwQsYFXzc-ME}z2}%J9;T-Xg zZeEL7#{@-q9ZL}su3Z-jOjzU)#1;XdeY;Mwc5Pf3H;c8&)K^L-H?xj0iqP|pcFrtV z^`1e=MMy|UU@Fx&L2|~2FCj!Tg{k)Cd)ME5%CYq}lP@M|MDi?RW|N*3;z-Lkh~-;0 z0%h>K>!iU7n!2^(5Sr|{5`u*n{j-d6DP3enS08O;CcZtSbO=eC>jSPuf|ZA-hNBR! z{7zsj1$TA;JfC4_d~OtI zUrlh|jh{Xd7s+$Tj&pCrMDF0=9BXJ!sDikomb-f{Vu)`Y8z*o6{)7cUr-}i4i7q_D z@^@=nSiYBZ{-c%Qx%+EwgSNN-k#X7X`zrdPxj|pSzyf@Glj%q)&89&56V8e@tM?1O zDufgUI5;gN%=e#~hS(=YK!v#hjO~qf^p(#F$AGV;zZcxkW+X9rcD7sxF&gm6g&9$E zSN$CLvgU)Ozz%C-8Ddx+V{BuVZ`C7(!QbN-t}e?!S%L2tI1Fc-%-`B; zFqutk--mcWE}&8AJZuB|^{@w$QP)q*52NvybcmKyQEP&B}0*57Xnc0AN_+jF+ z=-$Mg=DB}KOM%|!jX=T8<9}ri*4EBUX|{7Uv*&;1H%%VJ?JRH^4#|3iG78&$Few>! zFh`e*R|cN=+1*N1_6j?TFer5aU>d%0F}@@`&nZ4aDAiWDY!p<;usyAVAadlxXmzK^ z00XK(vD}Y}EF=An;q^^w!XDQN#<%^a^n9{L^W|?8)tN8V<6n`?qQp7)gY;&t$JcWU5y-4?^6I@H{gl9yuX*nYjQ33`Cy6b3 z<)p=}*v(g}lz_Xxg@XtujP$*i{+5+nh)r6owZD4*S&(t}BmGBOPdgRVF7UfsmOFkq z6v@R1P6-vbbgCTF+^=!hvPC~(h3qg2It~`EneKT6f$@0!67*&Mn{D)1lputUmzH1|8C>|L+C#?XpQHDD+5i@i@S-u+K% zIQ0O}ro`a%VYKZc*$1|XJ|~+LEo&AYn(1Ei5$?Ch*l3rtChquh%_XVfc5|=Osup#XwgGV45@ZF1h47#0l&%)t8Mp7VD$T40- z{P;MiDPl)RSCpGrQ%IM=L+{KQ8xKz86bO51hLV3*^Dn>kI*#J^*ZEza;!wIzE0 zH6?f4Wfu_OWxYP(M?NYFl&T=EJ5fgNgz)VZ1BVR(s@kMhhIn+aMB8eV@D}d=rD6d0 zBvyF#zf(BlddO%aqe@m4IZ=79C1RUK2)l)8;jltgVnVh1lg*f zy{x!6eRer9L=K7?{Q8p9p9?J&ZlSgUufE63{&^-kT&G(=wJP`+RYALA(oSEIVjfDC z{2Ji2L~e4gP>Uh~F7E6|!!+T8@(B3Sb&|`}U^O|0cBYUcvZxOy#$! zK3VXcLP91Dyh_m3~^^N@2ur`zgQglGw?#@#Q-!`l+c(KjP*t znwFlP^0z~N8*x-ESLC=myTEy3cYA}`*VMgP}cIu`}1XkX@Ur!p>S#y zNGtu@Xtv+*tk$$tQl;JvKdc$c^jnjJh?wPg@V;dgP5p}PDM1WAPj733^rQ6~9l+~k$$0L{cRe6N%` zf_~By1$IWZIPx@38*^igMo!U=bE>s9lrxDRuWdhE_u;&-I#cmm4|KuZ1@s%Te2{k{ z)6QGSAO*Tx(EKOKZ?t__`7Br&31*JYc~Xkq*M767JaCj09%#)%AxKEZ+M}3k-PAq` zt&Sd?N{cUu`SDN4)cjFSk2=|kBj#I#)fxsb+p8E#8&f9qrKgm_>5m)U!743G9i2q~ z`hI!&HXTe{>+C=%OC{K(b{Ht)!0=uv+2Zc5KvJL#>E&xS%y5FqQ@|^QWI#h63N72U z-li<$mNqr@TZyRnacB5W4L02SjZ?S1F#h`RkX*amPF2WZfiyW^HOp;NbYhhKFq&MR zLsF;a1M;fJN9Bo_2FKz2`L`Xit|w1OCb|Rd&l}qK&}wjJ9J_v9Uu$EF)yWOnpuIOD zmDX}ww7h4tWEdKH&l+a}*XLYaBgk5^8G(@0ypKd)5GCr}7I`#@EB&j)ma%ahmdT;sIQTC~-- z=G!tNt`=b@X>;r`yFNk<_1NP#=Z}n3VP#KColLTsn^_vLdW6-N)O0!oO*y|#dF0Kd zWD@CU7VLUTVH;&Wb6T|7>VKUQUfrDyPlzBDlP_oCqYxBX2n2RAw1~A}H zH*K17v@bge|4gHF5X3f`m&W#PGCCyX{NL)~0}8h_IrHha--pm~Ucqs0Z!(rSUq!jd z^oCQ)KeA+3`TFGfo+7C>tSeh0so!pCo1V17LeS%9y&Ye311~Ls0MnC-sR&@2JeFI} zooRA3Y?x2se&EJ%di^P9-ZnlI>s^le`YI-iSX9DdEpl!0826f1nL!-n@?c^YIhVUz zWYEAK#{Z%7c1GV(!2e{8nPfcHJ<;oYXU&&ehX42F;fCbB>&cL#@0-fFM4jxN&zEh- z$>dYDp;v%N#7F>;6ogu6puca-V4vGF97<6%FkKU={xe**w$AY)d73T1ojB5&y6#Gba5&p zc!xSMXom8SkiF<@NGOijKyY|?@!%9Yg#2LXi$|GmJR$N2&2-Tft8I}3!WkL}jy&VU z*+3=dIsPCOEuI}~|JuLR{P!7e{I4FX1?OgtHmG41Lt#|}wx&&XRK-5}r$tX~TQ^@< z2n%Ice7L-A?w=;eST}&9HMS6HYYy09{@tsX7*7kBOPyNAD3xKu70_K+u8iLTkZ6vP zEhg$G`amG+aR$zwsX{TjdhEH6+gfnSwG2DwC(b_1)COxjmHaplb(XomYPpzTQ)lOA z8$BP#+~4uX5a25!xJ)s^yxrrUc7>dOXYDr$-5)rP+pz0ef}ELNZsEW@@PC3bLq?ds zvtLML$_K|_rb~G-PCKY*x@qW&$+-Or%Q&5h9#_Cye7tdyl|~$m7hbi1lfWN^9~`UP zIMn{5*|f>z*LVmukJv~qm0OO#I9MN7D0^M`b!=-)k{F(5W)Qyve7fV?kT7qOa7848qeE2W&O>muA! zePvS9oBey;?wPhTT}(KyJi0P4RM(EUu5-%pNB8l1kI9Rgb`;J}U^Mtu58SbpBId3q?QYpTceLAb|#1@r9(>`f05 z+?UX6Nv=QphU0yaEUsUl{Pdapl)hjLUPGTJo}hSF~ackxi;8PO1Si21}}1}(#DJo7zUJ3UC<^8=@0?B%3i;MA^#a4w9v@Z zov~2>W%5~y#fMVu1WF${klP>&A)j!u{mUm;L^7y4rE)EdHX`AbUCxe z@Ys~?!}V^a@Zc=a<|iFT-}ZjoikeQq+)*_hEFumrs9I2+^o5jYNYhAQeK8p;%x}Xu zw9?-f{dd>)Ib&P|lk7GVQ&a6x?5-OLj_%6r4T%Fgyt3hsj7ytX(sh2YlxR^zBE)<|nHxQoEh*eOOC-Em5jm*?j$9G6g?&s2H>$$!BT|dZE*!(_NB$rlV%i&~0 zuHw0eYec-tMUrAFdcj9Mh6jZueJq*Y3a>kL^vAg994=m8Y7g;NMk`Bk>ex-`vZUOm zTXao=JXC=}zSY-uV`*T&g;YsRd=@khpxLbQ=u>7-a`GqD`C&uk9S(iPJwW|fElaqd z@V)-7UB?Oao@YeaDWh^>glNwW)?CJ?tf=dAx4yQTIzHO}WquHKgt+G!C43 z7_Au{ccQXI(LG;B)X6owB^@{Wuu@&Vb9yn0&vttHyzuxFg{s|lmrus^117T`x2j?Y0m2UeY?tYu2SwuBCk+rUM{5c5ce zV?N3or-roe6(veImqSST$ z`%vx?JN30+wnSLnAHs>c*HKiW`00|;)778s)c?$`4#}}5oMIrov9MtI$cOJei(Sq| zgp+Aq_w0o!=zp<523Ewfoi<)GOi=wOwiy+oj(BFm9QDA%5>sSQPY1gZFH#x)d~k;~ zgd|F2n$=wP&C{|?`ddC#{#P*Nz4_28U4?o0k>JV;DaCg|ACFC$2o-pawtT))P{vo{ z1rJgB<9D0`tDMbv$m*(i1qIIsJ(9ZNo?>C=zw~Tvr$6kUwVhcnPo+_{=6KHW=XKa+om1dsFgX4#wNs?C z4Uz${2nM=ANS-C|w$ZfR8iyqntkAT$LUo?;l4Xb$Mq4V)1acZtl;-!|9p`Y?9r*AE z48SC>8?sX!6bU4~PpvOIg?tmFGWFI=;_B^4Z5EghI9N{zOeh6FsGWCL{B&A-k4|s?h1(gGSe00^+R( zDaD37vlUK*#@8H6l@fz7cIsbymXR*UCtkn!WAu`i(`OL9ieG@J5iOT$Xn_ zrpbjU-AwCN5&@yO>BzS*u~&D$5Xk`1K@;^h5iy~;)sPSzw{+tiFKUqE7+MkKCi2GH zXBp+^AU|_5IDY-e*u36i-bpd@J14BQfyai?zIqVcFJ|h3ko$X5*XJqN|4LadzpiH1 zWm;i3(JL0Xa69YRhDE3P4N~KCygW=YZ`@_5>0BNeX-4}(O>_rd=<6LC1PP)Sb}- zgq%XcHxe(u`_pq#35^bYeLhGhdB^V0M_g)NskN1sMvELo`)~698}>fv z(~5I97(%>Nt6NZ8VhxJX_f_`by1B9nynPCsM{BR-XnoGXlQo*qS}L-7p=N1(w_icn zb{mRzyt?PJ9Jgd0%Rf=1X7L1rk+GzKT3;z0@SBq|9lKBwT6d};JdJS=K`-uUR#&d&V%G)LxUCLbNO1?Ea} zqodA<^dY{p!uw!j%vrwI)LB`uThYD9&T3Vz!=$!(<5X2D|I+d;Dlx7Z{-{WjOMmIC zMM&aFRQk~QU@r%2cGMq#Tc$5XV{qLcN+{>%_?9LhLU3J7%PI0{W{lCJcfLCvbU53` zcSJs~`FWGNzol|Ffw{v{!#?(W=;;m1kTg7*zLAuqj3=rQg|0|l-c;Q6*EA05@@<8+ zH^myVQ;-KZ9Ng%|&dd@EN*gYd3VkKzZe!w!y)V3%Q-VN|+T-l|ZTAO=2ry05uSMfm zk_j0Uh)5be6&0U-+kf|eG|qaLPSPvi`5pEvMo4k@e1R^>xnAEf-ya>uv|Wao?);>Z zQ|i$$8uC^&qo4jL7e**ze+KUJZq4vs{c%|Ce?F2NG}|&Dn8+=PAOyfIo+7hZl$%dZ zxeVg2k2yhm!UYaXoIV>WL!O5U1>p5O?6}{D?3R>iiHXLr7Nh;fWcrmjLYukIUHrDJ zQeR)K+WMgWWwLi5Nt)IvDqhrqykt6JN?ibdk>>r*EL3R0g87f$BplkFo~tb`!qG(A z!jnExc5Ndzy?|Qa^ScP^DO?xVU{q4j)E7!BOMNOIl){E^emr9Y zWQU(^P-YI(LD#j?*8x81fH|$#$5t6ggy%86l^|K9@bfD=ycDF*c~|;kt#uXg!3xp1 zOtR-{gNjv+f*>JszJYh;qCDZK*)+ySC;t=Ak@6q0!@++tJzb*Q?v!6-S)%xN7f_P` zv6jmA=FZ+lybXXm10|v5{|{D(_a5dH5d%l7C&k zOUmG7?{Z$$xzJr`W~sa(zrRE80XiDmw6+*CV(Lc}taXc$VY&BDk%!Ecno}I5v!bgsOaS%QFw?{5|eJ&VCU)4XWRPB zE>@qIT=1VcL-fa+PUD-;+siHEVH}QfBiY{SRtPuN-cB#(8lO~VtF=D2lGdLUS>dU>jD{qXyUjCA!%|%j zByJ`!)b+7SFx%7YSkd8^IAjN0#fO(x*(?v3`&ntdcQQ!Qs zw8fB(%-5{H=z&kf%W@Kv;l&dd5~N6_Yr+g{ghXSWQTYrF_Y=@us0FMr6R^K~A0z!|4*o;@MLPad-fk-WdE+`8kQ&bB9Zs$6-rez~-^SM1U+ zR_~i36<5yz4Ej~c!b32#KF6{0b+BAKJB`tsJ}za=juAo$n7Oqh=K42?AO)eRUnjr0 zSf=ddpqPn#rGwYH>14#nzYOSO@?ROK15*%sgdQJlO)#2dPysGwd!`wIZ)OfKr(z_6 z&L{TspYd1XpG$SO`(irRj4@4eS(XmBqA*%1$S+eo4gi-&G|@o!WmhVp)l*lNUlb&TTP*E4EiLV6I~vjy{GH1S9#F*Qd;PIM-?%fxvYk;}v+bkZ*k=00sH*MRY!jvO zjK49Bm$G>f`o*8+MQ{8%lRFZSG)qgCd-~~F@I@~6%`yfd1*IW_7_vdPwS}UNiiQI~ zlK*o>g>O_p%04Z=0UB9&osRLzpujlFHGt~xRYX#d6=KZCs~&G7#;N7oRi2wop->p8;RM`+(!(i8@>q-6KK>39(B+qqRbm<`$Ci3U)s#+L69h7X_O0 z0R_M=s$Q%xO6;b3(k#E4ab;qRH=&YMT0A*bxBC6$LK6oh`Gu__rOu9s{#lGJHQ|!{ z6ahJMIr#n%Ja5zL=Ab@-fKCbIgY6*7ZGWjBtB9YTnf%>8m3$wmzGp|K&WS1Qo?dfh zawJ1!4r<_L#)5lfPc?_US#$LkAO-7-yC?Q&Zj#40FZay3-~eIooBY+V>L;NywnLvy z$^ug;5*NMhx2gOAqmX(GpN^j&2_Py>%GNHY(u`a{D_2m+h&&iN!a7{)jaNxXDHAP zBuIVncE5sbMB?1zGC8|Xa2)R3vai4#1A(G7ysJgdFuLbZ?GrBj>h)0zOVIPT8L5h0*MZF`*twq{*LnLN6{MwEwca)EtSwuecN~(vu zUu@^qgHQ%P4U0=Q1zrGN)qYxl9)x&67bCE6h~KR#a2un>+$psaH0(#*4XEGdmLdX10M=Ykz-a z%>R)UfJPd!e%L}XPd$|B&2Zd3&OHb!3I6gFI9=p?fGP5Wil=VR(mNo;C*iXCP;rEQ zs|wsIpO6T-?+moE<2@le^#PWk~#_inHtX z?HC-t$2HFq)Y7G%Xv=axTD4$nqTge( zS^w8(Py77e&GUcZA2R7u%E#av;_T{W1?9M?!37PIAb)7c#^z=j?$7VW&q?r>vXe^E zGJKRA)}w}jZMwv@48d+YS3ex%JFYaS7GD5?8e4c@s~!@X&7Mt%HvZhy!$I317at@I zNE{ut5sS8+hE#4wB06l6@E&bY;m_~t*ApY>Z35>1GKzKpXHVL`|`pz?3a!-VY)g)Cth|1k1nYnK$88 zeJJ~%M)f=S^kXlpcyj<5&;b9$Kfe<@C4EpiR$PdUZdmAiH@*j|#JGgtzs!8PD&Rvv zGbarDsd@M0mnVC!Q8eO4@d?YEG1}`!vC*)kqFIkJEO8NBJEkpw*2>i|N~vC7EX~kL zca-q>hFiJzY~w?qt8FQPkvm%d$(k|_cTs)us+A_D(Rc^}AItc3 z>>xjKzVhTpwNV;7Zv8g%<4aEiQpGzKp5ax)sI18%_!8%9( zx~$z3K!$%P6>Y^vdme8?=P+bbSv{>P{z~1ya?#Ffnq|80t6mnENTuw()GC;!D8{ z`C?+RC+xgj^Voq49ahak3x?{D0I$}E8Xo>z42_BjfZ~52vavX!=ol_o$7lU?evs=* z;(IV!7eb!5WC@4yI?5x%{!#jAY-k7L8u%-xrjr(><28#u(`I)DHDlvvw*=ZuT=eaw zmieIMQEf%!82lg^1fS-tUtX$C_uc$O(Cy^UQ&SANA`ELiTX1vqQ8R2ZzCD1Q_x$gZ z>Q3$QMS1XV=KjhX6`$IrYc$oD+5!>T1aDiZ&MV)yv#xTNIg2ibHWGYV{9_R;ap|T1 z)s231>jP}_MM8qQkqZHVdz2UO9IWAa@hRX#abn{^!qtu*Z)myy8Z6Y7noA4t+m&xC zMuj8L05`+L`~C1GaA~S-J@5FHHh)s$n?te{hZcaCqM_-M_fTBJPg?!2vdQ ziFI65C60LjWGlS`Vavy_5(JJW$DD0`t~y*M+y;J1!rW4aT_>Q!#}BDbW?jK|Xdedi zzjEOsk!6F5W)&!XPrRANnYn)7r@)tx)?J2FoCXC!DUoyFZn$T`LR$lOtnO~|&@_Qh z|38}HoUW@|2%l_}IVQ5c`4t0&2Lgi~;K?t3;ay*y`0lxNYx+4@-BwV@b4cW`JA7I! zMt6AR3|eqc!XJ!RIzH`-a{$<3XjX8U13VJ?^rtx7&HDb1ujxx;RQ2ZKali|K(oMtP zEc&Q?4$t~)ABdsHA({H=!T9#0M3_RR9z6@A-#72_zlg-8-fe_#HF=@E&x-w&vF0-4 zqm@}Wx$(B@GW*DEPYLALhavgJm_{!_E9~ppEE8qk)Bi2KTf3|g@tt+3X|^O~u&4Z0 z|0uktGN$#+rx;Uid-joI?*cw~)Ni9bgy8sCH>Faru^5>SO${Rd;xo~o|7pbP1)pyu zg1T~`1*agaqj~R>H@F>Y!Qt&%CB{Ub4f{vmXXw`1I-km-bL?}SUR`{)CFBIA)7ad7nT51zr?!0SBi2S8ktf$E94_jy$CvJA8`nFhOuyf^d8=PN`7ab5D9U-(=R(3b?jD7A7`SZcV3OS4h|kZ4+JWBhc_GUg z`KQ&$%cPpbzRqpfZNg6yh;9Z5cAh+4EIL_NbQ8ci$KRmO|1_=#+C)Px4TN9!A0M?~ zI>cH$$`B`YmDlkp??wi(Yj=iBbZ^yru*+b749+P3?X=x~tvZ-maxUOqGmtvzMk01< zD~NL=KUP>-tEKnn zx#&p(H^~Vm9(&MQ$B9)=nF-}Bj~h;yC5^+#-UQ%wTea>1RDTZzic$N;DkW4@aAhd3 z>$Zv9Z7jP0J<{n(qyXt#soJsEumeK7i#L3w{0mcdI*tzzC@{zCnM3c;qFsl@3motB z@MG_3?6vnDi{jsMAMjsF4=3XCU4c8CH+xbSnhh{sOX_HcJto;3p@n)yKBycAJsr|~ zZ|GHeD?l%pJ5muP8Gm!F@5ngt#ase%8zB^Vwa_P4l?;RA8OJvd__RVcWPfakvz_lC z?yi+0@bd8FQXg!0Uhpt0kPLcSqwRns_*#cd@#iIYeR62{UxJy_uQre-1(Q-Q_sCM3 zZ|mfO+`z=D+H44^lfuma87Wy((cS?hoh}bzzG?Vt1fer>T(v*To?hw-{pY3ibPK1| zbj|vpDjkaNU99bTT6$F>bMfedKpBYNLg@95|kXylh3~Nk{tXg z3hw4;wUeK8p8gadhd;t#d=^^cEOy+nTWPpSifBECh8;H@oYVZktLM={K9&=AUpA0G zW&MLq3XZ4jLE{I?IbEPh4%M!zkP1qVi@E7_J~YEH*#B5IZKqT|&Csv&4F3>3O0%Uf zT}JfG?1QJ9P9hZG&ScPWk){bTN!u-%XvH-H44<2yq!MQ4a0!G>-ii91LppWE<(n&+ zqmAEDlX>nCV~H~e-I1}m2zr?*dB$3j?&fACt8zQsq?tFPWs*R2Dlc{~d(*J4O^L5< zF*R{TqQHa_k-b85SsJEf<>+~2Xqu6jMm7Uxu^Vi%cqpAT9m8$(IztzaXywu~=~w;l z@(9{O&wW$9*rfQ=$-$+QYdgr2=a!0vt^oQ+?7?>Hz;9U6h)|~9XsA3!%5$^O?d#3P z2cfQ_+2)J=S%^qglCjD4X;ftcQ(vomw|TWBH8rE}W(&d+Qyz&h2ANO7B`?dd!4KC& zX5?Umh$GN#?l0VxRbBfOCEdtATNb5{8~XFi?u`WcJ4KroeK{A$pI9j=+JpF90&{Wi z7PtFznOf-A5I_N2p{m8ZtJh#f5z!YU3m#0s0_Ah~qQ!V(F z-3(sKoirVH@)@y2d-(hbhAxXwZ2iA%;{}?#lvd!b)NKWF&(}E(%~k%htRNh4Z2GHc zrT)#Jt68+kTw9pcm|ed0?5m=_r91r#MF_dr^>_QnYbOpNitIFDWwH}`=%|}R_{es5 zSx-KKgW0`#0=PgY+^fKpQg!g#mr=XOmq<8x*wt7^*drkxXX(qD$JI3{aBISq)tw>m z#if^@$%xTafp^pJN2pkdp~{YJa~-Cuwew<;Z6*P9`2F+NMaKE5e@r$Fyoxq}7p5vf z4sYEx+f2KFo$S|#Sb}0(B+&(%vflC@tG31;w|d`gwfkSDVu7tm#}&7m^~$|<9;5Ky zDti=sXBH>+oOjjM;(n#ocQ(5&3OGu3aZ&GUltYJM*O;JmU(_A9z%;zv)^LPP1ZzT}R7Ba9LHRVw zW{L9Y*~pGK%9DHm18v4<$Uap{HaXD~wj-#6)Jzo+oW{z)|kcCMag z00a$(2a0hVbEG~OFI7rJ`QR( zKs3-@jHX6ZM2r^SeV=HW%ka@ui;h*0zQbc$XI&DkRPS%XuW`OtKF4eRmd7lK-E;G3 z!m#Nwr45{bf9)?EZp*zpk;8_drF2sHvsFR2gOHjuG{e*Y1O1ow;>jnN@=A|eFa9*~ zR&xX|cA`*=KLH*f>sh2aj1;u{uR=X|)9bsHOY-xpA>^#Dm78yBK;F>EW!VkpKQC_f zhm^QxS7lH?gLro3QL4)98u$() z-Evh&lhns)Z=+mO-~Z!$Dw%TsPeGLbepDbhy|KoCgb*plozuoz8QH}5$S#yoMO^c} zwkC5NZhk6m&#_N0TJr87c5A$R+l?ase5aZ&lm4V-YonM{(*8 zGS#Ji(z(*;EHgmVM^f>AW=qVyW1TM-IdC9~ErKjY;CjW^$TNR*e)hM`7DD?S^sb@H ztmOlp*Az(h2VKG>oM&^!V1#K@z8b>hZ8vsW>d$jxTXg&h6o<=Z1lr%8eVp;~*tQp& zYlt2Rl?6X@!xBSqNP;6?rg~aE(FMMad4ZWJ0l@WO+CxY(^qJrt&aIeUW+na=ra!ecb6ybypY`)C& zydzG)RaboeUEk*`RKl!GTb=E93a>3g)3ZAJ<0x(N>eC+rldu-n&ekhL$KQP(bhNx-g{*O0@d@wTUX1uCW$j(0wdKohElMg(VepwDGs?7z<7yQVTcWaw-N(M znn~Rgd{vDa64DF!*-(ZVCCZvYGXWhDt!HH-b?sD?S==ei;)y=`k2V>7yCr<@rtdF< zEB!I9rnmuISpPR6r%3MGIf7E0$L^!$9O{!-Bqz7O`Q$B(+>R#$SLf- z4|*a|)t1$)=j*|EWBd3ucp9adbE5J#$T1EB9NKsL@8Qj}sL%}|J3iOhkP_|UznS3i%~|Kl z{ZyUL|LZ}-+qX)THm-4jF>PZ*~F%?$Uj-U-S1HNM{T9F~W+Les1x<+^QL zmUyH751Nzs?E_)nHKRX#cdH6LRs%71VM#Dwz3>Nrnz#R)c-yWR91qf!kY#cK(VycD zKTB$d6;7H3MGA2mR6QDj%Y`_1BaX8FP=2ZhY}$eC8A-`77)v zV-b2TD|h6*SA4+d{asyxz2qd)o@sun^MUJI)M>58|MH5a=CD({X9Mj?W5MFn95&bO z#bfX^->H74vS!VXv;6cb{=-4~mCZ*32FEWhvR~$1b`B^2UR`1hV$X|vE^9k;1-!Xf z{-N^rY>k~;)Xg0&&*07BaV_A1DOY{~u9r85QN< zg$vKnjRF#qqJ(rvGk^*LQliq`(%m(PAV^7fcgN5S-7qk8r@#MOsY% zZx#TDad1uz2_`q**Y}zIrZJtD=Y`wB@hF(>g4^3tlY!-mXu+fHc81gFVuq6s(+iU1 zF4q10rc~^{oTW~?q>jhHl_v$D2v7zf39=N1T=p6MpnHcKQU67*T=F|VlYb>T9{JP-A4FrP$Jc@8VN z5=ioUDp9c8^MA`;#z=kkx+C4PKOEq5a*juE9`rs19k%PaK?ULT#46Xn%lj0DLoP$? zzpH?fPSGQJ&UE5}fA=gY_pw_|+Ido)*}22`7Elbu$3Nv)s=-i}y_>#Mz?oW@OO&V8 zKjuw7zb~Y;G4A<*+bD^1554$63vwp)=Xww6MHQ+p9X~OacNLq9N*rd%S-L3}PTe); zwA993NgP0b9$|}DHR>1p8&|W^RX*h~jf0Q#SSH!IPjb~65t2Vt`?1-4ri>)K4X?QV zOuQop-O=7&2g`GL)%#y5W3~$$J-pb}nk)^KsB>??@|tnA7wzO)usj!=+PmvC)wL5i z8vX3cHryfypOGKX+KNCk-TUn*QVF=3MetHrt3YcZ3jW=S#@RocFU?Ket@vx=u`*^zBM!mKc`s8rlL9GMYa z)gPaSnoBPCM<7zIIf-oJ~F^r(xVOl`Y-};z$}ZP7L4Hda`RAZ z`%t5mud3>h!bA3NXj!J{f@nAK%#sbz4%yST*k~3eQyS)b+F1N743C@*4$1~ota=SG z?u`@AIyf=_{Ry8{0A0z~-T;xB--U&3nifXBXhFVXjk%q71XNu$ZKn{bS@}|(ak+lr zbWL(4$m&4?x^^V2JM+ z3KA)E51maw%CPV*zBut&p;{^Xd9{X4fIxXqA>Tz?L-Us{3KaEa{YI`Tnxs! zzXs`;BnZufk~2X5J4p;h-!0Sv_K!m+TFOF;(}`zHq7L;r}N33d6* z@S;QM3c%RO9o)o-ci5MI0vZ|+nyHmn8OK41W~;X9=j#!8y1+1aEa&%41^E4Lv1HCZ zh~0rQ0T_m*AATPuA<{qJ`)k%aQ%1zlnH~3=!KO}}=)r2ioss zl%}uF5J)8XbEqAh;o1tK1K~GH(0(gz&-`|key{q03v}z=FrOk(_phEN z^!6bGC(xqoUp_} z4p*Y%1OLs=m)6SM)`?s*Ql$LRTU$ztX55h5m))cNMW-`NhL0{7fnCqbt7Og>YAcx=25nql~u3Bn~mTzRVywgV=?H2oYLGi)6_C^Tb_(&JILYK)-< zNp367A{`2<{g zNz`ce#LR%2TY=+vgOL6Y*iC4;V7p$vDn#7}-nzrYjXNv2vpv@48&X*NeFmzN{!Bt! zU)Z@|8qsvHV={QU6#!)gay2lb^ ziK~#ni94&Wa|e*o5*$eqc@3K&XVDQ}^RIaSX0{RJHKw^mH1^hBU_M6{kRHKgjb(71 zlpl28uWorOpG5#_xfD%qv%;7Eu6drht0fa06rj=5<*c{!Rj;v@yKG)}60+lHk=v4S z!Mayrar32KmcBkjN+%^l>AVy<_sNTVd2#Sv!fN*ZJ)3WQ{6G(VVtysFU%|y|mu@J; ztNszM_D!re9!GUb^)x#uHD1@9UIo8{=-IEt%5xcl9x6fF^+0!+DRo|`c9XIvRcvJx0d5CJ@k5!tg|C5H`YgEcBnpYB2od5JtH;DCA<^QxS zbMu^Za+j~5iYH54l*7!*MB-5N{;N>$;eAq}2|g~6HVGAqUbv*`s!E6MS(_>5--hXV z{N5z^jagDl&Gh}m;CkI53qHQ04zIshm3LvLcH&)Emy-8a^A0v%bTZSfWT1rp-ji|` zb?6Q%BzeCsNCtM^%>w6-5;vtj*qNPk7g{At;5@4bn2#I98+aaC5r|n#^@`ZG zIX*qCchg@>dEAMuTD}+E5mUZ%+s6@mQCF{(q5csFR=Ze>0dU_2C>wEw;S@qd+bM8B=4h-Rs4<($R%0e;;B44 z+TojQz7}Nx9frRYsuD^AT=0_eT+NL>pVK1;Y>xjd zIkSOM*%OMjg*UEGHrnW{g=N#;-S!dR|D|!xobB2_-<@1%GUiZpL+e??x5@>Oz<4ni zkHccl7&S1Or_)nURQvHW1HAbXBS@d#xgsh{HZzI%wfyBxC7f>s^9?r!io5%Y{@fK` z78YO-=uWntZHE|=f}KuUBSs9G@W5s;Q{etTX~S53KpTu-zGZ##_oupT-M&hbT}##0 zy@XU#uDcwEkqIWRx$_t-H81JsLobCf+sy}K9E_j*v}UaAxS@tOL2u|q-MI)L>5>$4 zR~yl2XMe9#7MA^YvVV7d;LSvYW=}6JT7$`bkI@G43!YY%e6N-d+(2dv=svp6BLWC? zyNXkhKR%*Sy0fqo8(MEv$mRumg^s;VqgknX@D{tquY9z&1$m5wwcgC2Ufyc-mp5H! zez-)cCRnT_wq#5*$c-f>S6kI;@7W>%`3m`}`*t2b*N#?m)^>#VAJ6jbIN)_}(`*#M ztoV;*=cCqjA&K+sDrpW?6*zvGckI1DeT<#=&2V?7|IKixlEJuj=3Qw!-qV%j({_29 z1VV5l-F>Bl2Y;oqsr~+ zh}1bfdTgirw()M=-5WgBJ&ZzcIqe5ATXd2&as_4JgKc`=T~{k->AQDIs`T{?(G{mS z6+46KG1c3Kdn0XqXvRHZY3if&Q`i$_Ty|SfJG-;vZsI~O@?Z}75V@UsqldocjC8!C z3zPUWkMsRg0c027?wrK#!ZdQGUI5c1TVa-H#{}DseqkCitj^UCr5%CAG$+k+Zj&n# zURN=p(Hld3bmZpHWXgG4>|3whI8a5sb01eKnR;PmBOoC&f2k|DsTxT_{;mSlh&eg!SW)BwkrF zC2c=JA_FGT#3p9p4>vuvht1DmdO4H%6DEVuJ8_r$n`Rj)I?6;Ov8rLZOq?DALk{5@ z*U^nGBX~U>h%O`o%)>0QFmR4w=-hO(qw>; zMm#U^$r#LeXb}K_)|oFriX*9>HJtb!(Swf-&DXpB(S3;wLXEiUPhgQsM|Y_`Ap~&W zZ9Tz{TDYOtYL$3NReo3H4fSSNx38*K4n4NmyCG4Mc2asQfr{Z4D_jPr1{8M(`T^k( zGiFdUuGATX{^5sat&62cFZIeZBK)N%7M+HArlZg_1IT|A0>p8sf*uZixbZ`w$@mY( z2q>c5zHT+OW}EV=-}&^4{z+Q1)<(r%eI zE5up@zVN$jd#mOHhq$i#v++8u6z7pT@(AApW{Ehx*=HTOPoPEjh2M>C=VeGWm#U-K z?cI6vGuyhh35{}jEAjTb@(3Q@@)A##a9v1iJt=Q1%8{_^iV)TxRtM{q@=@%JqgKj8 zht$w*>e=BL_*vyJrtWu`Nrrd={I-|nYH)?R0e-U*X@E+=(iTc z8*|i1f@@~^_yzV*H=3g1xQLX{8^Pt{rk9IE{0q^}co{iqUiPF)4YkYHvUbgAZbTiO zMS=1-8yx0yy%&A8=vCiR)kzujS4#xQsb<<|(8v1T?d6#GtX~|>ml~4){&X`sNG)l; z){CDEeGE0m9zLqZKGgWt`hYc&K8vDNMGZJMw*qS?`BM_xp8Ea8?>AT^Eg8P*`>M`g zprxq~N{*vvKG>+n;&Rd>p~+;54JrfY6!jliCY@EppG!PMNBvUyvyAg&R>@NQGy{gD zK|)U^&rWCC1n+meS4he6rI4lzT=b=x_rvYDnNR1E1BD19>IDj-18Il4piq|sMJ;7m z&lSy)3@0=8_5e2_68&57_=>U6WX=3EV6NB8rDRvjWSyzaFp6$J5k5~!n8^=-F8t<8 z9viv{!gd{+gcM%9vV&jJ<|F5WNo~Gr?Upj54HeTNkNlK1XgNy|dTovAGLdxqmLz{s z-jl6ie-2RJ|3uuD>)l-JV`RsyJl^>ruuk?(Sx02tL&7c;XKk3@f5b$m^E_2adJ*Hx zI=#)8a1N)KR4sk-q(JU>LX|MZT+uWR+?}>$T<6m|e+R>c<<~zyS5cmL51$1Rr=PFv z`4PR1;kasd5B>S|O%?}%LPvX2yoHTovQpGQkEr!mYk2<>wGA*vAinPG9WmfXk{8JM zSH>*<(xtx-!~X41;2*3Orm_|#L`_)YujCZs_iVuie^*N7sp&M+Md=`G! ztZGM9Z_~Gz0`Gj(djhkAC z!EUKro@@SrrvFvtIgbeH)uRyCGLv#PW20346Phuy6@6YR^SKhGOA0Aao3BOR_v$s~ z3s&v4Wi#&6a>m}ns29#cEKha(^@>&B^B9Mvw11TtqDa3LBv&_8Pc>Vil4Irh-80L7 z>&5`bE0v7p1_JexPGJ+RK=Idj99ij{FEwazzyEgMPTCam&3+LR}CW#Iw4!P9~ZkD_7Z zMwqg}4m?dTJlw=)0Zg z%#t3K8*O#22e2h6{VrA?#44@cJ|#-t#2PIlM%JD2U?(e2$MjwOPn#;*qV~{;KCvVJ z6H-Z|vrmuox9O|6t9RX!WiksnC(5O}Hx^s&$LPk^&(CvHCp@-5TC>_SP=D<~6*4$)D60RH%|h@G+30%f0oWrMtNM;pQpPi^3^(COPz|Y5z`rTwDRT?c=j+;bISq z<9^w|c0`BUNR(~^Vvk!&avavEBvi<^NF0{b%Q({dsaR$ERoYcWAQK{co*f=id%*!M z%P5a{4NCQ4{YW2|Z{aIpGQ#dVov}G|yKHYib<$9Q0Qpfx?g76B)l*GqB-9!>zYY)! z{yXUVX^B0zUMnn}l_a?XHVINSxiF;GOhBKS?uhEbuE7CNfWQJ+pu^adSpA;T2GTV-iV7TlnPR%Ry4m`bVT<8>t~hr(`+U^o^f-H#6Ejfo~MqSNxj*DuAR)37PH?}77z!7 zMU(t-KV1NwV7Fv(%<~v0$xNEUTY9o?SfFwhYe)FimH(E;Kl7lwS_6n-t2LUm{g&dtr>cm7W+M?rAkeUtUq22afa+xaS*wEx-NRZ~`k>A<#VN2DK78()61)AM^w5*Txf}bmpY@kKC&&zs32LLhsw&T|p+-7Lv z;k{UM31E8HhEjkFM38W_oZtGKsMVMGD+eM99FRdUh90h<`5nd|Nuuz8DZ_Pk(?$6P zNTOzW`o<8Zl&tA&-za+-Q|W!kT!pn_`TpM(ZZNfE&63U>`hC*NDwcNl>xS3Bp3Z@= zPSDV@BKfLY_(rI&cbnOVVdobR65};4^WB@KzJ1b`C^yh77ry~cA@M#=;ne{S$Y~6! z`&^KsGO@URpN%J4zq8e(LAo`4H%Ha}9?}rmC!UjkCvSBs4iFTbUHGre z0slwE*eer&8RS^uZ2 z)<&LHr+!*y3;T{6>Gu!!XYk*dF*ghyALlI@w_8!-IzUnVff+YHLt|MJDbA*fKeD0g z=?=gBi+Un0vXH>j-KJ(-id5ieLpJi4_k|HcrR_NAc;e_f@<-3fQCFMK+R-ByR69#3 zz(xG#X)9U5x!b^hrxGeGBs594tM>DYZnN-I8tCtC&{Yu?NMPnJT+4X@4a;H=8kT)x z%*wCpDjdZ0cTfGHqVTS|Ld{bhPV$9i##&c@<-~MXOHq%)YLT+~7`9!ObSdq-+U~7! z8&E+2(&;tFGY}Gu`+>;V?Hh-29?nBE8&Heq=d@Vak zErY;R9za`~XaGvm;MLqlwDL3?ANSoAorWd?u6))15%Zc)0)GP6npDINUl5>S>jF1N z>95t3a*vmI7Ucl8fHvMDtVZm+NhM3m{v3l@t=r%+9>u&U7Xl7aI$ z8&l6bfeXV>F7mN&DnTEeOeOt$|5QmW!ZNh5mO4wES6%ltEcZzafx~EBf|s!)NdS4z zgcnsh1a-u_L1{SUzNNFjFvBQ9fejy`H`G~0e?(Y%Vvd%Kj6@Z~`TqUrOuP-~Hr_}V zrMh)LAQ9tS71HM-wLgSbjiTw4kto>uE{pH9L?$1XXnc)}yvkR3P-=Af^!*W|)>(?{ z!lcmY@fs)>bjWyqFV%!%&Y}GM4NM(&ns9G@Mx5R!zn$!3!%Ec9EKoDEo85qe6j^tfQ(1GIRIJE;17Pvymia>GHCn4%Mk)<*j>x3I;!6!c>? z%UijQ3#%5d%c!e;LCH$|1k}cKu+CpaaO;{PO62-4N)(2oSU$tK3|cD4lk34J8DpGzI(R@}Z%X?b4~u?_7F{=l_7k5CUwWgD&df z9Q9h#Eb-iA`d;j-uDNdn3eZeum>6jBwG6(@%|7CEKuo4}sN;1UurWP$R+$jCacMvl z%P!))O$jFF=E*5=Z81rYULTH{QQ~51!j=xa(#cdyTGtUAn{zvt7Pj{T#MeqfJ zG-^ODgOa#i)ZhQIEO`_-B@)IpLVB4#&7>%1pLqFNQp(dXeU_9mKmMJLd9O_9}U46e3b|uef1gH#U#KGMXUzdhE4aENZ3cGMrpu}|Gi9Y(ypCTO2xk@ zyXkD%4es+2oN2}M61+0*`!Xj7SHIo+BPDjx;&0Z28t>?t_`2V`H7Ub(;)nQ}ZoWk- zjys;3ib987oDZ$T@R@31AGEetRdnObdBk9P?cdF0UrAU1u|6||Kpa4e|9Nd+43No$ zBv3qY^hj2kcP?>1{_O>z5Q1#dhcTeV$C@TC^&qN6YJkpEW07}8S0C^JfY$T2JvtKU zpQ1wkK@0oLHT64H+gW|}XL1m?_UX}iH&E4W3`U3b6&?RP#wLU2EZQe|1q>ia_+A|yX0b>ZM^~l(RmH6)5Fa)s?tTo z2qO@2y;oO9tm=9C@9A{@ce~%#19N4xOEz{k_&^X+DDJO#6?GrzlI^>aAy!~3v@}d0#Ig!Exqb9m&^#)k^;{um zK(q=gkm!^CGJh|>n@eKysPPAD0KG=hcDD~Bvw2P5nnJ~rltubS|LY!SQe6r~yrsd= z;*oy#lufKGvZQB%B6TH^Zw&DN17aV*O+)q|#F|%zel=c8~=`i#>Yo=Zs zXx!T@Qll=a*UDk|l#bVV-P}>BS7Yw`E&aYzTCF}C(b^{w?w`V?1f|63SKkXeT|qt` zDvH7kTbG7yIyQ;VY~z$^#Ab>_%T2;R6&G#~*?Z)=mCv{$p*pQ?#WNKgp6<8J&9*Cz zPGDezi=)Yt$jMWF@?}R{AgIvr8Gn5Lkz)DK5;><2#zdmtbo(BMJ2!_G;2V)q2 z|Amy@I|x^~$>FKHdVXj;AY3-*KzOY8N1sdF{jzv{pNFn7spFSOdX2XImU)itjae=; zty3Eu%~F2fEh_CcOET+8G#P@7a?E^9hu-_2jz-5@$t`IAo~zb}P`%{;z@q+B?MMr^ zN|QmW;=$wO?;*=p34wD(I{l%tR83Sy*uEA#(el|Xjf0ABJ` z8=hA6fMd6fL8?FityzIxx_dI;j;X=_SR9px5o$g3r;8dF?c8_Pk9=pPDSjSSQ^F-1 zw7aLhMkWK*{+61+w?l@*@~ba3S=avVR9D^V`pb4}wCJ$~)SROx24G?SqxJC1^kscb z;#q3AlDvT)z$s`clP17mU%jh!&S?(uW#5WYKO`8Mf@pyjA~OzpY%_5{i=mz>J(U03 zjz#}xJKC(UUaqq{QuBV>{F^LoBwJY*jp_n|tC*X1Yq9nL^uodkK*H4u3;6`I$M6DB~R(^7>Zs81D(s)|bT~#z?1$Uf`%@ zsGkdn-nA(;zQ{8clxl>XQr3I&Wf?rTLFYS)-d`+8>CH8oz&>@ zXqwbY*{5I5sV2ys&d))rm6YRnT2#e@>8ZSblg%x)$L6YwhBd%cAY9GeLRN$_&hAzN zT3#S$wnisM)P-c8Z$Mv#g=J?Onc$^8Kb~UaCw>+soi`_J7utHtq zG3KYG$cH%#l@Ol|+S#t{So+&c6u!(&8OVish!J@*vE4rkJu@MvI>_Toa^#`R^f~Ty z3#N5nv`fEgk2Zd3X+74#RGUSyzUDSRd!X zJKsK^-w;8V;s2iFI&i+gwO<1a^#XBrT{2<4VEPe#TQ&HtY^4Gd za=sb=x4>bO#2{s*hNP?tphiRy)yVT&Q3;q`3$#fx^@=x$(I zo?RZ*o?ndAgVXl-AucmlX|q(MDrIl6XUlY-#9R6N1!Cpwi^Q$bhQo~aW;rYqF$o|r zvC_nwe5UjxL?X=wa@2sW+@QJw#Sjm`NWN5m-iYn6xdCrzfpKxeBI$)Y_&S93&w&GS zo{D07O&V$akgles#3>BzD-!Z$9*G?ilo-CJ?Py2$ARNTc=bJ2XOy~;5Ka-Uaolv*?q zq3LsImJwShkpG@WBi5OQJgyI)+sb>@|9JG=`X&!Yj8sw&73>}P@z1NB*)eBd?u|n@ z^HDW^Q($NNt`#V@{6dk;Q^X~!^zhRzQ{}+@3m&sC036RWz#QOePap3>g#=RgoVP`WbHi1tz?e@rL#W%8K_c>_DzeAL<89;@lj{(l3e*&j>))rYw zH93VnDl~ufxMD4Y%A**oL;MTp1bb!QA>jE3JuGoS9%bJoe<;311<(4sR~ZVFX|EbpT&v**$W5ld}C72@RwbaT>nFx^cUO4Y=nv$%3gArOOA6S$f&Kuh57NF=t zEp2b6%E!kSBQ)Jylh3Xm(ppthVZ%t=?7BkwHa2v>g~L;2ljiL9aK;m!4&pD<)}V3u zH_;n?{NZVG{r<7=jH|_nO4K$O=4;N@@A9G*Hx;hsOsHa)8{;kxZfA3C$DpYSyC_0x zz?HU{=|{%8D=gBt1ZC-mZpWTaj9da0Z}wbk?EZSxc<~=4{V2C7&QMy?c6i+VR@gm1 zS=c)uR<@>Oyn_p)CQB0ff`O1{LF{TCl6lQ+e|9K@{5d@IdQmlcH3`K8DYTpADI@3k z5aLw6E+`%Yr8kt|EXZYa6Gn^gd3O-4Zw9!^AS!F=MO=j` z)~W#H7zrUHu-5lCZ}^Xy-ok4TtQBDxr5kP?qF`}FR(bG;L;47RHKid z0YWy?sMSSQm|Sej{_u{PrQ&GDvwwC>>CSAxo3EmQdfWFoesG4dddY*qXxYQz)*u41V|C$u&aS?H>_+_V|24hBG^VRgx${bP^%U33f?KZFxhrMt1Fb&-4X#DfOo8wpm z8-e@G>G*f`siwQ&?>vKBA^y(+3Y$r;Xo&B{O&B2#7Luk`e~OE%dCerO%%_Zb(0-!T znkgBM5C|B3LIk)?ITM@Am<{D9jGE{!0D83OQv!KUdAz4VE?7(&MmA!}PdxzoEpX## zeJQ?Ijwt^;Icet_!r25Q7Mm#uo6q_1QBwLo9T;j+^d=q2o|_a`^wL=a|~C^^Nv($;)WlZ>UQ zMX02A(Uan;wB6`-RkibT)26nu4w0FbY6rYrIJ~xP%f5k2Y6a6Uw`m zx>z+=o~nup0x$MNcg8xUcjk$dTF;G|Pu%HWeLv%RP-Wd8n+*vf{I0sqhzdN2ke;q{ z)p%j}`^>i^N>x5US>=30T zb({%!5B_K|CW0faj7E^-|MjJ>`WfFhh4}g5>V=t+aczTTf55sIf};^_G_>_cCv{JX z^Q5I|Q(fB6YeRTNYn=4%cxOiVtz@#z0zVLDRxmHv2(c`9`Z}Z&sP3N~D=H;s;VjZ9BB$=!JU@L+W03>UDP__`b#5a8hP^q8=a zFkXb}l>6#X-6<+ZWzre7v*|%j95f`45nMJxR6C#IG*_H!sk)`2jpe7km0BjCq6;mL z(%s6z8MHgA7C#S(YhVNNbWCoSx;Nk#V#E#PzNLoS(@Q#=X~r^#_%q3#j$-%HM6Aa5 zAD^zHjQV3$HutnTL{aiR9qdctjPNN-kQmjhW?$0sZ3`;ZBD}?5^|$Zlkn{8Cs!60y zgC9zRGGit%&soXVq0HtJ2MznFO2&I~s%U6Qoyx}-5-8ROR`_I#HKTf@SiFBzRY5Zl zIKN%?7RCt7mIFr;q1v9fQ*m-bzVuQqNKxBh*DI`TFAUht19Md%um-IYFu;oaJ@5~V zF&iuAQilr7<;)a)3nK%#(;M(yCnV3FB#Va#Vq|=K_MznrZNd1-y;cB` z=Cf!v?^fH+8mo=}Ir>^C4`lP+pINwKVpEPmPwsfj;2RIU*wExD1{AW9_h^?qY-s-R zZut2#^L{q5A_fwuM`nC1a?;63$+Ml(F3&BXmGMj+spv1Ry-&mW?)G0$-@XVCdx`gI zWP3XtNY2zI#SkS#JJoj2K5NBTo-3}LbXS01)yO!1WZ6lRP%yjdW!>@gS=Fj8Gv^Gl zh1$>it}erlDEQ<2!VL-C=1d?S$@n)rkiqDzwfk97O`fPtsj;|3;%~Nvd^No|%t0RU z*mYSVxy%;uJyTf~gj6+-J~}MSpy4zJawjKaXN+Xq0+CcR?>alG>1vUs}4}5td|jtS7G&= zOc{dEZ7lJ4zQan3W9*Q#siAbYeBA2ka~4dU-3lsL4KoDbV^jY|OaYbnk$B{QELGh2-Yr!#7_(VbU!Y}Qr?x6x_E|;_5-E|f^fZxD{FS9O-1e<7XPL}w5 zI8MNGML3(mvsSZ&I(hjgq#T0zo1Bt*mio|5I=qfDZ=5}b*zfDkvykdE&}&{?V@bcGe~q6fbVV@%K2}F#bZs%?hkS(Nn@aV31n&FE)6X7$TT;6 z1~Y?18!pF9&pW0q5|r^9vU(QRg;ep)*7k@4V&%YKyd*>UEjv8xf)si0$7Eo!T;J_i zsh^CK2G;LJ9`g)KD)8%5mY;CakT1lZONHI-`5_yx02$!SzJgf!QlQfS^%$4Y8gR6l zl>vZROjJ8r9q3H7;CZ+OV;b&5H{^%R4umJPCBNQB?^AhiI)Y7VAN7VBveQV1u!N`e z6;Et_X29C8;RVW3*h0s)X!w}1vd(N5Qa-IbS z1^7n9aK9tkFA>7-ih41iM=;uJaKGVnyDgkL+Wy6xcQE1Zq5f+ar;6+N^&=zai&v!S`58>Q0-^VLUvny`j0Y`Z(Y-A&_tVu)XQ?LKrNfxgC0-dGNt+lR{qP^zcVj#+ zQ_A@zIpPN&nt?DWdVX#G!Ca`mN-PSxL8V$GG|o77vk-;E>(?lt8e_NXPm%VGrTA5` zWiS^WV72jh{#qp6nlRAIEVtt&Yr=^}zlat?q#JJ-Tcr{$M48Yy_yrh0E1U&D2c{z_ zW5))XeA5JrV7mtQ)H9wKBf-xNvN_*cNMdSf#kv8Wz5G8t87~n<{TRqD-kG7ykBaz9sNt5P0uS1^_ z7Ern*>-WoO88^*!jd<6B$}^7FUaFrXYaa%E$Hoy68^?D6%^G4+K||Y`z(j|v3Clm8 zzT_4zdfG5}a*%Mvo0~-&#>&W(rR8&diJW_yLT3En3^zp-6MFsVY6G#JH zro^%=_QmuR>3+=acwHV8VdGNQ*?#|h6tDars>NdV9ifT3LH~=8nsrGQI^w8WmmBp- z{Vtg1Qk9CxSuI?=`@#;NskP$A0^NFWC*GS30jMGo$ z=^LLcoz?T?R#CBYWFejl%kA|NBHG{Ly;KgZb{FiPL;lLRXo?Uzs?DH1@?k;V@1C|u zYMolUFBNmxH)L6FrJ#VTKXJ{KBWl=l5zR7SkudcwtlRF;+&-f!41o(eRPS5Z6JfF?w^(BfMr*qcJ zpcV?McS3)2qSd&DNBQH$bY?LF5c?lsZo;?q{7%BT_TkNJ0PVNKw}SHVyw(bXC^gnx zZg-8n#E$8Q?$4(4r!R~mFSY)97-z`z1H7$C4Ma!hhOLjnTY)lB4_*C_6M#mtUnT-Q zl$*H18rW-07c)h@lC2x2jJG`Kzlm<_WKU65mHovJ42)ws!cEfd=0csb5DJdso1gJ3 zX*<8{+RGSTyg~bZeMj6+2b$UYQCR+YQUR?(r9amK8{YaiC66&(Zxzaz`@3R)=D;XN zR43X<9z~Rji)7V8`7_(<{|;Xwz}ml(q$!;);NW zyklZBHmL(Gq1mzw=#0xwOyw9gl9_%{K2RN=49?`u+P)&n8lfQ28XL`wq6{~ws5&$L zo8X4hgwdjCgNoDvMsyW$K&|_k0e9u;U_1aHS3y35hDqkR!}i6BU)rP_sakXBRamoL zqp4+5WyCs2n**P~}&ZvLpoP|gP#&cI6|ss?Jq$1VfOQES_41W=z4HzsgPQ2 zT4u=}wV|Z_X2|)*r;~kmZFr_9!5cSd@4M%XxFp}_Q%Pc7e%oOZ;fH=qz_mH3qi=J zhLMy3{T|$6#JBunrhw+&Un^6xoD4a9=50R9uIs_&4KMK{>Y-`$a*Q3f@q`1FONONF zPAm2CX#+Jj2YHO-t0{!HzLP&U=le5@cz1W+8I8W+McOQ3%ngqk4b!@7nl9Uj^q*h( zgfUmA69{)Mp|B`eEA_Yk9=UZYvz|wb5co>5ZpI-^s)_sG^cfj)Jbm@8c#MT;sqBn= z(q}c{8G7#B5k|;#?g|+#mGk|vCTF9y<8_z0&NJ@3Hr>fC$Ni3fVGr;Zn2vvbhg|GC zRbPuUya2MGa0tDWjEH_3xL@JLz6U}yd0TmQ^+A2LUzGFCE?&sVcv5ep-Cf};nLScDB)O)Cw@kBJ`BCv^03YrJ&hYS=q z`=N&c+L>SFXJsSSukc9K{h)wJw5-$)0qj%5%qDJ8MN{C^o~9cb4>tFd4=|E-s03KJ zN4++j)4lgHx=HqT&iWCgZ`y8UK@c0tgYZN zc{0hI5g$e`GKOkB4`L3_0VmdN;fWzfKZqRE`*Kh28C#u2_N=2d&wi z%j_POD-n8#Z(or3r6mfo@Lm6=PXmVKJIJe3S?kt*6w1t1dQuN90g9pbnC{_Nb6U^* zG4y&wd!*ML@x6c&M2CFqk zYMn0;jg>jRj5WUJ#E)4;UW!{szE>^X$hK|ou9&S0^B$AEvbDU>B=^oQ-`W~U;e*mR z*(p~qigOG=Jec{OZJy?P8`I%b7YO7dk#oLdB~=jsAP$h1e*eAj^3pi?gSUlxdErlt zF_j$-h0TSU+v%vu8!zwC>6t$nTe|lReFw9;8vcr@jS}994527de5Y=6qzGX~`?E+| z5#x-Jt5;+i&V-bpi+?cBkga5Cs zw~lJ_3EGB{P@oidr#QunI}|MxD23wg6e;fRQlKrxol;za6nA$o3GM_49$eqhU!U`x z=lx#Jp8Nr1?|WxwXRf(scNW*~T?Z$kT8huu>kfz9v6}7ZQ}6jewhp$V7-+9~Vk40I zF~tJ4WA`#cp~)W;IKzSU95|y5B#15UUzbXkO;yf2M5=a<8+?hlh_EL(e#Ax%>qsWt7B5rBL+=-|Yr+7qIAWaIs*Ma$k!>e-%Vm~T=;Q4= zvGg+NTF!rWz3uoqL76Rs%4anQ=m6V3UXJ&r*Mpb#F<3adKjn<@c-X59Z-mL+o~8}K z9{yzC6dxC3`&s*fR@Q2Uy;X!o54a26?q zT~$Aki46Q`&tHLXFWZeLyE=#pV+D3It2kOq4w-#$c=o98x`?~SKF=PG;=Ya;x2P4R<2xi9o zLY`X?Ty9=VDYe6#gnC4C?&EQc9oE-wDB!40sSaY)Y{6dNd7%a6oJ3TSRZ&SsRc<{_ zc2r-*5#Q8^5Km%@Dd-^bdoGSZvcZL3qs)^7IcG=aXNMVKARa3zO!}DpU35#SCVH;2 zKL2!esDxK%UYvL;HRCJ#n$CK$QQ575`|lm4z#LAC$I0aMURn&Rfwg$7c2`Zt?aU>f z!A>3b5%LKf$1hIYpSP(##LZO=i}T0I$_1t_C!^#lND6J+2O8obgo>Mt2%%YB3PcMJ zTL^I_*Quo*K!wrn)&{qW8p%^ig_VY^I9KT3pL|UT%#8iC3oC(F;aN4NZ2ZiHpm29S z8lUaC+SZYjY#PAtvF@J{x)A zeAYVWZCy5k8-hn&vB`X&YV@f*N=fUZRRDj>ZR=4v%nG&PdPl1b?>F0WZ$wmK3?1Dw zW~BVq_1MpLBwxD5NtGVVBpzXF?T?U0J6Ifii|tLz3ak@5oQc|(Yv1p%u}c3UKXZD> z#rYr@Wz9qUq6)Y*CejUj2a-EuyBp1Zu(?|0d|3aHb(ybR(b*9%aq4;15pa97Rv2(- z;P#j-9U{G!u6j^ytcj_TU0ZUs6#jNqy;5dgs7<(LA{s2(ZkR9es_*P^iRGG3b+>u59d3i63du*+}xc&8&y!w z5dl#u3&G_>9bwofd{nZW$Qyz?#XS}#M7CdnIeU9jLRCh1IH+7ho%~}b52o&vjOAIP zU>QvM($oPYeXn2xIYmUp*bP5ZCDl{23qQMybOzt@Z>FeeGNH(|Tsb&e)SslYzaXLw zh<>^6i&Er5VAn12otd2N5K65tUJ5Hu0%#FK?$^A0NW)&*l>N-jIsY zc=PU+vNHPdpJpxw&V}UrUkk8c{8L}>L~T(^PI`E+pY3e85K^^iV0^%Ypf}rNr9QFH zs?kabp^cBkQJ0smgSqdHBbCLF(91+jCLJ|h)Bcle37?hQu7dQ>SSy!5CCG>)awETK zYkdyd4$__kg`J?=fBtQY*?a`Eyz!cQrrH=31ot9VseTQ_WJw{IHj)KFd}v@pOc zlxs~l?ifgLKos}9PufI^tyuj&dSD1UPn6%3=t0Dm({*>}P81!T$14$<6&?a#K3kNr z5MAXSF#U++UOg!U3lv1Pq0rdSe@D8JtRN{d?}bFdi=c=y!elYDD+u>l;OHPx)aadl z<@a-{b8h0zertbLB^%;M7`jd2$E?CB`RGN z%F%w9=Tr=MQ^dZ9Nvgx>v`eE(3^~h8H3Nh8!{ngXS z9q|1K&lsQQ*)>Upp1Gx8vt<860a@T0NVH{12?Vt3cK zD=Vk4O-N!Y@o4i1_s~AZQv5jR@djUlaJGCGgVS%cUhne$rrmcts9iNeQR3kj!ygrf zpi}q>iQ4oty9U7zXwNT>>@w#>alPF|JuIuw?0!}Dxq$lI9qM;k+u;{W*F$x-kD$)& zNrLcWT5Peqzl{*xC+`6SQOcw++D@eTnIOgt&Q$;o&jHpiGcNR;ZDGCvjgao^} z)jn+m)Pdg->DqjHURvjrgWkc2dd;=#N|eOC%`1Q>MJj6WMUo1YIkh>&fv2*uOZ519 zb#o5yp22TDfRVlQ;7`YIbBXlcxcuoRfU(l8E0-eXyDZbT-glyxW>yx1jm0`;V{5|S z@FBE3^G>ndZx@7LxlYpx%=q9(UAP?$6niYYv59NF)*Y8 zp^P}fc3*UiPm&8s>Auk#r8a$T+SaVuZa`>UCr7mOgs0#0V_FxULfi2I(+T6W@1OLQ zPdP}F+ht-jT6b?-SFg^Z@Yl+aq^}A++Fa99-%p7jU3DC0DqHege0rQx!EOq^$rn)LG_=iOMqjjGA{ z&H36*xn8s7^2$YlKv=+|Z99=a1mf?|Lc4QyJqH1(gVP@ikD(}+NEX-uNE>hWOu@HX_pKj_VwFr4K1#N8w`g0qCwyrke_N|>hGPQq1LPM}eb+jOIDL*Bf7`c6!G+X0e~Y3q0jM7S&%fo4Y9<^@>NIiI(pB|9Qw1?DmHRz~B)nuU-35Z#Rc`*m${od?wKL zZ8!JIF){CYG((5lpt`}Wk#F%fo9Gxt??53S!1FMQNtepF8gd`^ctzc9W^`Y|4baOv zBd{TnU_x+DHl4K^qkw{637u!YiiRu|a}Se1*!4bRR(enCb=RnhG2QDO(KP>gfKk}g zdso!Qlq0p2sZpVJewwK$Nrx-2EBqir607b{Y!-EHN^pI6oYUYTrCl zU~G`UThzW8m*aO9XM}K)0w)?#$jk|s_vPCvma^1?X!LFLuY>rj3Gu@zXG%z5#o;KD z^n9voU)bh0aAcI!n|OTfT}4vH7Ey={PY(jCq65F4MmGCp5%9chpZFV~w!9UQ;@$Ot9>-4>#5ZW*dFi_&@#-_?KBnovAdJowh%1Y)Pr@q>^N*9RMJ(fK` zazEs?G}KtEGU(`9xjT;NZuh+&ULbRMHF67j*dMoBULp!blB&PWsC9E;1UdBB!3fvvS>s#_2i5CA*Pb#z;-fiq|HTRDY5%t!>)fXcN!c(AzvjiQ57HOXUAOu{+6ZiEcfF*l?lgUr8{>FghWZBu-OsGp|)RTYmksj-)>d8R*eo*c-pYA3|tPa}59)*o2%Y>1m0 z#@WEpT0el3U}>fN+USk~i*l*ASW8k2=?nchYGaUlRJ&-}uN=zB06r`h`((f6vbr0d zKMXjxGsU;3<2^1vh!5f^#Xppqew30*-VT9O1|FW|Aqr`qiZ+huuJt_J2Whp?`g-49 z1SaeaDgbh?q8?9;=3hryWWjUagI}E{Q#dn(@ZCkvH5#A`ZS3`fgF!)0K_7E{#jBBI zgicCRet-YcVk5HlkazcUnmi+lIa4)JGI{aF@XbL+Ve8pFBX}%YN&57}K zB{(fXPI2+_jmS1tsv@ka!eO$OZ_PwVbWqm^CCCS*m_)2$sxQEQf?Ss4JGfL+iV=|3 znH&UJ05rVD?*oZWR|Rc}pw&(*t{G(V;V2Df#yBY@-t;=#;n&rm&QMpF=HB`$L59b5 zS1N(I8QbQ1K_x=oRXVJZ=2jS{Ga7XPpo)?*;DIG(cxm2ceIM5}3W=ypA!b}Js%GIp zgwNSSugHB9Wvjjq`RVQBMZ$>*=rI1vm(4M;qZ>1!tt^cXYbSK_T?;7lOJ3t*4Ci1& zf#l7{ol5v#js=mo<#2w^-e?Dqeavx~G?R+{IkHok`n$gfr?`2fXR70aDc zDjzQWB*cvudEWoA-0J5)39F1u3tbqp`tiBXDHrmFPV15l}M=8Ra z=+$0f=cA^n&kjq}{9)rlg#i_DnrcmO{K4@QePKnSmv zrLXg21|?mAw$Hf@e$Y0YXA|vkm8I34@XDgO z-hmkyyTxEcg>2FSF%n8u@XjwvG-3gY4gK@O&%ZwOna(_l3z zMzlA$scp_i9K#Yu-q{Hdre_wljBov(4o%N-wrD7}mY02(7%08;uuST|nbstyxLGCMY?xg;DK&1dKW)%Q9;D#S zzxzP&1&L{jYd584a5hj#HjvP1Vm?d#tQ-*8Baw~TKywv}oLd7h_7*A=ZfBYi(Ti`B zSE0n~&_!0T!AJE%5R3_VH}b7g1ZHKGP_*QOI?tS!E$GY!g9s`5Ef>d*)A=*DWL^)e z-(Gp;t-Nyk2Ke6FRmAzI|HkqqE)Po6&hwZ;GDNrDSo(0e#E)=6;4vV?94@Uq-ZNZi zyM26{^SvWqDd$_(=sSn`-E{tQHeWG2~^7zP=5h1gPLcD>!;iCv*XcD zs8^pJ7x#Y60PVf3ULvr za(?Db7ZWlt#5&DupQ=lyN2KTqchHu>`+{s>S8NTzUQqXXzB>@U@vtrLnj;ziP z9P!1J?j7aE*VA$ppZ=(US42NSiC2WsOmw79RJ6g{A&jciLLQjbz;3KUArtIA%ZSv@ z)#%!n4icg1KiThnF8P)IMrD-sV_##Isr%C7%5rMIqUIm3ySB@{^R@}Lp{cTJbPk%> zXjh7!PGgD^4>MK5TfcdR&MUc2GPA3xs+2a z(opO9yS-c^etQlAfH-9>E8Sc=Sl(nqz==M;Ok0Gexs2wD>_Yk4-b;$pDD(&N z0U}0blcWcZh-}l}YD`rPhGMwm=yX2!>!;S6t74$Ma-^Cal@{?I2L^wssB*Vo&O!1E zY9N;Bh*shzk*-Y-^s!}-tR>g2roALZqXkA4IMqDoEZfMV=Q88OyE?@r{y}<+hmFD0 zAowC4tQ&J7AS!Byp@tRa>!BXxNZiXuG`kZc=Fg{v0~f`UG^Chtwsq23BkcU`dB?F# zDt@iP%3{o7Wq!K{DEw4ne)S|@cr(ENY79bugI@=%LO?}xa^T+D#j(=13pw5-(#`$y z8~Gbk`06L2`bNa5;KU3a2d}^s2rbc++-TS|^1S;?^jUqoYe*j95LTsNPbq+VNLA7D z*LF}PZVymVZtVOw?V-t%5Oxc0SmCHgkC?Y{X^Vanx)sN4uEb7uOe{08jM7>E6-w1~ zoH4@1m9)<0Rr2db71ni3TamK5N$ zgGj5>86(Leu>%yrS_H!AA_A}iBHtWdd@9_>8cyvuo zXFphTEa4K_NY%c?eU^ufVN}e@rmrPL4Kk660sRhfqtxrIim`X7LAT|J)?j?$I5dT+E(QX0;GsS8?axFFTE=_@HmiZ#jV~mjj8_j>%4qg zPA>VUE}D=@MeR%iPaV)KS(_NAF`LcVOPp-o+reaqBYyy58?P}NB7Jk#V@UC4Ko3jP zJw`UJD)egiC6n>@W^RCxC7z5b(U$x7Rm)wak#fFg8yUKjzh)CWu@=Sm3OJ_Mmdn{u z{%O{~HTZ8Ob~4g*R&+qHzp%W59LVo+2wk8DXc1%6A>r~82f9G11nsHhUuqVn2E=ST56`;j9?Qbi}I!|UWP&eMKi%WC) zb8JhQ$0U7L5O_I*+}s;i_L_K25v_TviP_Q(%$F!|fR@Livnpk54$^AC;ZfaGol~i$ zn&{6cvLXfcn4eTFTXjOA%>Ne2|I#b21^_*n@M=F|kQQ_FnU=yrZD99K)47ldi(6RO zP7g;pP6=3%!%E5uv&M}QKu`2do0%e4nPH-m*;R);wrtkZESA(+$pSa-DAvPw>+E{H zg~MRX^m9>@|H_vr7b-CAS5Vc)`5u^^-$60xS@0i|`}4g$ow-KA$PyDwDdOAx7R%Vq zp|Kj~m_X>Mw}--TquftUpDgL>V6@1<|3{NS!rP~fKBNN&(%8u%It})upf{*}??48< zGgQa)64KI!zWLj;;OQRQ!5;Q(9D|xLQ!9H7-&Al{q9amnI z;9}2ED!KWaOdG)*qjrsf)f7KNTxM6uByP##K*up#XT3PW(D{%|XU^a8Y zcH#J52W1VLAtajBW;^W2OhVzd`~J1&iq;8zm+hI#(GqTDD1YPf3>bqup8W`{8@r@6 zr<}MD73+#)q9j}~wmTAR@R?i(P;fceMPC!7O=Mtqu>R|hd=CdrJSa_Ctj(&7A@Vg9 zP3ZPbYD1q~Jt&$v+S{{WLyu~(x!*fPIQsu3+83gT=5EB~^(O0H!uM8~Z*|G%*hI5^Ya!+~}0N?weYUcMLY& zwP)5{In$|h0*BEJx9+QUxDE)0FNe0ADt*O>XbLYF@)#V5Rig^O9a(Q}yr0^20} z-dm9DsKUsZnrL%1?E6uj^{r1(ng82r{3qd4fa0}!=6Nsz8^qJT(YpdDML^5S)?iq@ zgA5hcw)HApvgwXm^meJ?@gLL|srf;L!5als zVj~_#cS%At8JnJvAU-iB)h>y2%3VpMgx9BiaZj~Iq?eVUr;c+toFQQ9wM;c-VgXt7 z4M885H$W>mB>N)1Mk=qRhkw3$(X>A>y?&4rd&=SCpHxVLbkFFx1Zqplycp85#NXJs zptj*>O&-q0m{wO`)6UAMAUzME{;~N zRq76pyLrCgqlw0i%r~s>3O-yH7gnpn=~_O4_dVKYYpQ;)nyBFEi-)+KU0 zSq52L=1&jPDOxl5sqK{L?l7LcCIDM24Sge@-rn;Vz8O($;t*p1NC_J!1Kfo5=0}V? zb3(M2oet5g6Aq!y9TT zAt*V?nWQTT7TamjID+f`tX(7kMJrT94m%25Mawx}86iD0EJQD$^_lINn7c)L0)sTVZWAM zYDSBcJOQ*-*{IjKUZ3vU!!Jc6=QM>2lGy2joi-WlpTnPPdD_TyaD)xV7DT$-DGj_$ zhbf-X3XYBRPD~BW)jLW1Y{I6d38<0M9Aq!;%|DvK{X*WxIW$<7%wRl>ySCp=pFsKs z=U^uq<{qq9@~3oT*6C$DiY&gQ*rum0?Gf!T5(6873;DaR!))`W^`=~#zxN$ie2=8Q z@~{q&bh*%jbcO>7>9d5g#A>452yla_@Ei6wsN+p3*_3rL586`d=PQPy0@2vSkw`== z3l?gy;wj>yf;wS&~zUl_H| zmH;?6u6jq1hh9B7Ap|tvdnKdi0gqm{2Wu$CmIX}|&+y3%s_DBi5JQ1$Yik)anmyXJ zQvjZZ);Ms(vrc=^SZ3#W;%%Vd5XHrM)XqH^x0r*5Ga6AKg^ zxCccp2wu+c^tN`B#>T%G+P)BOI^6N((^fj=i6o7V>_DVB#(N#oKYRdX<*c&Nn$33o zaFH27?Xa-LZZ8jkn-x^fpkceEddszYErUb@w52hZ)PGrKJ*a_EF{CZid|3qjcBVVtOe;#?b9%6;o1tn+262mW*iaI~I zV)*5N!hl5|L@U04jIJU8j{)8bBHmet^OZuw^0p;nz0P+o_?0=TTDRbrt<#`=(__%* zG6;OrOS8jQRS^=yION%pW=Ek|8XsBMKva*(%8Ts~whf_E((;}mc%$1MR}qE;M*^XI zZ7RQWx4GQ~MjKa8`IKqQazC5@I9w__GA)Yq@*jJ{Fa^90Mb(d4I6FTSm8e(e+^Z0q zs_DWdSH8M8t%*Oeq8{FYJ2EVK#CMBS?siLilW7~NWYd2Z<@e z`xC(c4cLCJMTm&gl&veAn2NElui9R(?#kvc(zaYj%itA2LetZ8lDi*ZE0pmwzWsiS zQ>=8`Gg1faMZ%-h(%S5CTO3D=gHCWV7Z=My`()M)@K!DCy}2K4MxdvNZto3(4NxbZ zmm*=X*A#^eAhU8U;~;{xofZ7;n{}a0B^cyGHC!mRz>E~D0~cepI8dc@s=gRrmuENn z50~8MCniL*U*Eqka`Iz{Y0tIz$Q>*zuAe5`sPXj+kz1npc0(E%Rlp2eN`v7gfxbM5 zYHMyyunJau{GuCHV^uB2o?BQJvukX4vhWKuYr zW<}W+9lhMI))g{Q5}>ale>Ix`Wjwy|un}poL76RyK}_<&EW6ZpmGLtCS*b$>cuT}k z2t-Fix98Jzt<$88Fb+#Ti|SS4C~ZJvlS3+R>*470QO}0Ijkl_?xK#NcDqiv!T{pGf zdGA=H<^%p$A!nAH45NE2ssJ)v>x(%D4f($u$OKkU7%zN&Y$1bN!-~LRm^POcU$9=2 zyMgHzU*^8&kg4GwR{HbLE&c`^*tA6GI;1habwYB@L9%aVEWVY_6%g9B3h*>a81mQ3 zcaiGNp{T{(33ujKS-gpFe(J6`6sEujxwxh-ibhSW6EN66%27KUXno z1%|Ymo{;v4d|-e2oVnTaF{mq>De<4v{DaM9WBkZpmV6)uW09My4Ht)IANM(Icg(J8 z!awJ}& zCEFOd9RHe4Gwk<)LYe6>&!S`nhkFo%S{(bh<-k3`d3dpMhRZP~wV-|5)xO<*<~Fzl z+x|toMgV0t3&f**Ym~=1$xAaHw(Sw4T)tBReayu+VHZL3xp>!SSE#)m>x+V`Z4CfI zS!Zoek0a!%&#gyK66?|l^wJz#3V?V|_%R17D8VLyTpQeoqOWE)8C94~Re94=UekE( z(H;Y#@EQ#xwq(`(=+O*mnI0Er-8YV@9gK?F&%Hg|*e8+Cju*WEduBNp;_?uXS|iE& z)uEE*IT*sbT?Me9?C) zZcCMitsqs~IMw@y%ek{NSDb_Q7i}VkMJzu7a0025A&_&|=<3j;`_KiLwZZ2siL%jO z!e>jHV?QpMAa*i9x7M;#g$DBXoG$Pz=RNIM^02zK3qjj|7E_&m*i@<;I$P&6byI&o zehse^y*g&U(3R#^IwnX*FLtvUlJ)B+nhcU`K%H54^j{-~3h)+tGDNGn1n*^o4G?jB z=0nln?+ZuU{@FJlIs`JxBqnLK^GaK<-!R}83&JTnK8}J-f3iJ|P_7Ci4N*64*=z&t z7tp z57ynC#LxLJEFHI!3-Gr_JT@IR*-fkZf4_$cw5Kke_HybDR`b*!KB|8liQ z+=g>|x+->QPTYRGG{l}7sL07IR!F-ETE^|e(VTEr+Ln3f&QnZE4TA+V+9)geQ> zzrk{tx#fJ>+^bx7p6ESYXPYe0?)Jc8wY2nge6e0@t{?H?oi5L<(Xq8)SM(UNOowr< z)?2h-s;abLK0{d=_9M>{OOWAbd3jvz7XaXau%UyI_r=`Y7D%7xbMlJER^r^6JY{0J z#BRRVa0%Q&br|Ca!l7VIyZ5+{Zj(;K)DhosUA*4)iukc)nfi=&?Q&=ho!ytFb)M`f zdx7YdBRc9q6~Tkr{az>t5}n~V#L|g(oJoCWtZZ13lbPW$DNB0zcuW^R5+`v!!>b3O z{YrQ~N2K`V3z(xNIU#WOEi3lxVt$bI<-wniyT~#KT~k*z@nP*OE~#5wF9hB{7xK_n z8rNC*Q)ZNGWSq(l^Q08wl@PJ5C}a;^WF&g)MYKFcY3@ZSQeO+(YdHZ-31*`xZ2l7c zfXGvS9hw-gKbS~#z#Q3ON*5SrRmH_dr1ChyB$0X#zi6HBIW_#6E4YfF`GHXOu`E=e(TWz}w z*zaSJhq6~QD}gG_>NUzBeLbTchXccoh*^@M8O!q zMnoSU?Sx7S=k15LOQt&eup141HC*jlz*y^QaDxx!tkcajzAA4^vWwy4O^Sen?F!$# zA2-nlcwBBwgO=g9?Byh#2KVOG?L6EsI0OztY5Qo=tmRYFOCv1(u43w27%oV+yqLi1 zh8M3t)B5<|UW8u;b36T+F9{RpFM5v?^g|Li`=C}i6R!V}l7;^UcQ)v%r5bGDaYv+K zANg^kE`+75PfoL<=6uc_a+9o^aB}0uJaG8SZY{jUvP<)mZ1Sw^y}R@$SyYVn-7?yt zk3B-4c^Wpq|9TlZ@WDb}56y$^Lh3Ap1RW|K=^={|zsy7_yDEv_G0YcHb^lSoT}5?6 zo2_l~Fvdpb={+bG0YerKgRB@t%?Ha)YG$~fUDt>LVCNQ#ePYY#Ned~J6_B4}AriN# z*?Y`L-z3$t55PIJaOI$dkH>H%fDHEBThN}LuCoHZf?EXvMZo5=1FrOE%ZNl?ZPKsS zcZFSxzw*f>dD&3yL6F=(9neVX!|K$N^_DS-lp*e}lmY&@M)(u4f*%n1Vm zRp*ya#xzp$jd6ay%}c2~b@)P|?+HUz7+(cSzz1?w(C| zBOUm|rl(`sjpUOx`a=vv?CZ_{va(!AZEul{N5)26d-5Zz(4d1RRkqk$gPZbV<3Kw8 zg%d6zaVqzUbJ(9+4g;S0c{h2AwU2fQ<#TqW?1VWqNGwm0giX3I@l$F=1^vJG-c8u8 z$O1IO1vo!nO!G`YSNkU>yAG~^-Eq27uh`1n%k6~bvO+iK&_rsCu$`Yq3+1~lOS`Aq z{Iyoi_A*rx(xL|m$4SlBy_xmPy2L0%E)u6;GqdGvssPbGLR>^# z5<4WQsxS)@xZ2A_9;!#gO_X`w1hRPOMgr6}2ONihD|wx(4>X`Aw>9H^u?$?Zl%Ja0 zysr+Bu{~?Iuc}?fqR6%0f#pQwCGH%b0t@)!vR5N`8crTshX1TiRq4qX(Z8 zUUs#T04jmgdu_TwYw5 z*y7)s9bSFXLkq+U{ms4TsZv9nK3v(zXw?`|4aU9rk=&k9%EE!X4gi9hrj8)H1cy(!u%lz!QImPBpU_?kXX-=&mpZ(wDEt7Wv3B^P!iLfoFUkG*?x8 zhClg%jvn(WKdTj~+5WO7F)4?daPXK6cv$uyxmh-gw~(iB(->{}*aPQHDw9Xz@HwZKCKPS^!W;f;CYeJ)dZyik@J;++LI}kp~ zNbbbAw1*ckXL=(3xmE#->veP9pX1PG9Uh%wqjM*PS$l8Sw9m8wrE8kqs(2^B%-a*F zC>*xU;m3+i+0DPk@Wa_`b&~eL?*%U(&>Ie3qbUNp8oIp=#)^V^>o26pYBsg9awXGDY-m zit&te@33b{66&NuDaG~8_N`xC#>MI@GiQ6BCRH5iawQ<3u5VUO*TF&S=XTPrEq>>o z?a(ay>4{}`I40`K=;d+TSo2Qaei)^QZWB_O^|5K$-~6h|DuY!9uDhX|lD=xChrWf` z6~cWkNjYKQ3bq*1V6Ww?Mq|@^~Zr@lPdRK*=mHJ^P#D z6SD5eV{jZlsOOw-E8T#93pGm;ek2FZuw1TqS%Dj%ov!ZM#HTLbT#0qzHXQDV5awy6F7pVaKrVE%UtQOvRJ#CnzYH`C*)lryQlzT0}$ zo3|id+V(H=!$yQ88h^8xcG0Tlt*i1xC;itxBDJPTG!yNY7-+ov8+y`pgi!UzGzaVA z{WprBPPz`4SN*8*p@-W4atK8HL3IF;>=~!c_AtMgy-fHxOldmIqT~6xyRTmkO%r$D z7sda30`MzZzDv<~)%o^H*v#j1+5hQ6ILO<@M)=6x8T-0^jYxMjhW0SQ598yhMRI^kOV#PVK1yF`>X?mJ-b&zh~i5-Wv-fH~m^^uSi#g^t7}o&kbX@ zf1^jFd;dABcQHx`)GPes#5pj$p$!Dxp!=r|qv%(Qb7ReRFrsuw9Xr^`zw%dR8E_@8SzrU{X}gK#{f%L zkN-N==wa48Hh>ZgbnJiQy&>tBR!eJwaTSCNzdZ=!LFbSp(L0<7%MIAWZ|iG4Cv z;_T7g{nY|YG2{_9aN1^wzS%I8c7AI1z2qBwzg37S602<1b4{3L${Jn88ZUBZGmk}lfM@11Nv zuYi$ikKt~Ok1t%d<0!)ajkXF>{w?y_HwZ4pP!sX~^$ZADbKXX?fUXk@GY|hE?*-pv zxt`;hXAK7HQ(6p&euV*GzLEr42f|MJpvNRXxvhW_@=ZSfO`I;0xREzjHpu52{3%=K zt;@x`|C91QM?Y?f7DS3W-v-~X*Cx$Z8AohSk_I?knAs+OWO@2}5#Fj)MOs??wP#2* z+2>O`SH}O*Ewoym@jS}Wno;Xl@R#^Ini7C+s#)o;g%~#m@Y;vgeSM$$yeDgoDuNg* zfO?BRdk^<>@U={#fRtv1P48!*_wS3RfD#PZt!cOa>HNRB|6iYu2xxZ_wf$Gc(`l&2 Q2=Je`vMMqaZ;XTg4;lpcx&QzG literal 0 HcmV?d00001 diff --git a/docs/development/iot/_index.md b/docs/development/iot/_index.md new file mode 100644 index 00000000000..e3a356c954a --- /dev/null +++ b/docs/development/iot/_index.md @@ -0,0 +1,5 @@ +--- +title: Internet of Things +show_in_lists: true +--- + diff --git a/docs/development/iot/install-thingsboard-iot-dashboard.md b/docs/development/iot/install-thingsboard-iot-dashboard.md new file mode 100644 index 00000000000..9db682cc902 --- /dev/null +++ b/docs/development/iot/install-thingsboard-iot-dashboard.md @@ -0,0 +1,293 @@ +--- +author: + name: Jared Kobos + email: docs@linode.com +description: 'This guide will show how to track and visualize data from an Internet of Things device using Thingsboard.' +og_description: 'This guide shows how to install the Thingsboard open source dashboard for Internet of Things devices. A Raspberry Pi is used to demonstrate sending data to the cloud dashboard.' +keywords: ["iot", "raspberry pi", "internet of things", "dashboard"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-01-30 +modified: 2018-01-30 +modified_by: + name: Linode +title: 'View IoT Data with Thingsboard' +external_resources: + - '[Getting Started – Thingsboard](https://thingsboard.io/docs/getting-started-guides/helloworld)' + - '[Thingsboard Github Repo](https://github.com/thingsboard/thingsboard)' +--- + +[Thingsboard](https://thingsboard.io/) is an open source platform for collecting and visualizing data from Internet of Things devices. Data from any number of devices can be sent to a cloud server where it can be viewed or shared through a highly customizable dashboard. + +This guide will show how to install Thingsboard on a Linode and use a Raspberry Pi to send simple telemetry data to a cloud dashboard. + +{{< note >}} +This guide will use a Raspberry Pi 3 with a [Sense HAT](https://www.raspberrypi.org/products/sense-hat/). You can substitute any device capable of sending telemetry data, or use `curl` to experiment with Thingsboard without using any external devices. +{{< /note >}} + +## Install Thingsboard + +Thingsboard runs on Java 8, and the Oracle JDK is recommended. + +{{< content "install-java-jdk.md" >}} + +### Set Up PostgreSQL + +1. Install PostgreSQL: + + sudo apt install postgresql postgresql-contrib + +2. Create a database and database user for Thingsboard: + + sudo -u postgres createdb thingsboard + sudo -u postgres createuser thingsboard + +3. Set a password for the `thingsboard` user and grant access to the database: + + sudo -u postgres psql thingsboard + ALTER USER thingsboard WITH PASSWORD 'thingsboard'; + GRANT ALL PRIVILEGES ON DATABASE thingsboard TO thingsboard; + \q + +### Install Thingsboard + +1. Download the installation package. Check the [releases](https://github.com/thingsboard/thingsboard/releases) page and replace the version numbers in the following command with the version tagged **Latest release**: + + wget https://github.com/thingsboard/thingsboard/releases/download/v1.3.1/thingsboard-1.3.1.deb + +2. Install Thingsboard: + + sudo dpkg -i thingsboard-1.3.1.deb + + +3. Open `/etc/thingsboard/conf/thingsboard.yml` in a text editor and comment out the `HSQLDB DAO Configuration` section: + + {{< file-excerpt "/etc/thingsboard/conf/thingsboard.yml" yaml >}} +# HSQLDB DAO Configuration +#spring: +# data: +# jpa: +# repositories: +# enabled: "true" +# jpa: +# hibernate: +# ddl-auto: "validate" +# database-platform: "org.hibernate.dialect.HSQLDialect" +# datasource: +# driverClassName: "${SPRING_DRIVER_CLASS_NAME:org.hsqldb.jdbc.JDBCDriver}" +# url: "${SPRING_DATASOURCE_URL:jdbc:hsqldb:file:${SQL_DATA_FOLDER:/tmp}/thingsboardDb;sql.enforce_size=false}" +# username: "${SPRING_DATASOURCE_USERNAME:sa}" +# password: "${SPRING_DATASOURCE_PASSWORD:}" +{{< /file-excerpt >}} + +4. In the same section, uncomment the PostgreSQL configuration block. Replace `thingsboard` in the username and password fields with the username and password of your `thingsboard` user: + + {{< file-excerpt "/etc/thingsboard/conf/thingsboard.yml" yaml >}} +# PostgreSQL DAO Configuration +spring: + data: + jpa: + repositories: + enabled: "true" + jpa: + hibernate: + ddl-auto: "validate" + database-platform: "org.hibernate.dialect.PostgreSQLDialect" + datasource: + driverClassName: "${SPRING_DRIVER_CLASS_NAME:org.postgresql.Driver}" + url: "${SPRING_DATASOURCE_URL:jdbc:postgresql://localhost:5432/thingsboard}" + username: "${SPRING_DATASOURCE_USERNAME:thingsboard}" + password: "${SPRING_DATASOURCE_PASSWORD:thingsboard}" +{{< /file-excerpt >}} + +5. Run this installation script: + + sudo /usr/share/thingsboard/bin/install/install.sh --loadDemo + +6. Start the Thingsboard service: + + sudo systemctl enable thingsboard + sudo systemctl start thingsboard + +## NGINX Reverse Proxy + +Thingsboard listens on `localhost:8080`, by default. For security purposes, it's better to serve the dashboard through a reverse proxy. This guide will use NGINX, but any webserver can be used. + +1. Install NGINX: + + sudo apt install nginx + +2. Create `/etc/nginx/conf.d/thingsboard.conf` with a text editor and edit it to match the example below. Replace `example.com` with the public IP address or FQDN of your Linode. + + {{< file "/etc/nginx/conf.d/thingsboard.conf" nginx >}} +server { + listen 80; + listen [::]:80; + + server_name example.com; + + location / { + # try_files $uri $uri/ =404; + proxy_pass http://localhost:8080/; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + proxy_set_header Host $host; + } +} +{{< /file >}} + +3. Restart NGINX: + + sudo systemctl restart nginx + +## Set Up Thingsboard Device + +1. Navigate to your Linode's IP address with a web browser. You should see the Thingsboard login page: + + ![Thingsboard Login](/docs/assets/thingsboard/login.png) + + The demo account login `tenant@thingsboard.org` and the password is `tenant`. You should change this to a more secure password after you have signed in. + +2. From the main menu, click on the **Devices** icon, then click the **+** icon in the lower right to add a new device. + +3. Choose a name for your device. Set the **Device type** to **PI**. + +3. After the device is added, click on its icon in the **Devices** menu. Click on **COPY ACCESS TOKEN** to copy the API key for this device (used below). + +## Configure Raspberry Pi + +{{< note >}} +The following steps assume that you have terminal access to a Raspberry Pi, and that Sense HAT and its libraries are already configured. For more information on getting started with Sense HAT, see the Raspberry Pi [official documentation](https://projects.raspberrypi.org/en/projects/getting-started-with-the-sense-hat). If you would prefer to use `curl` to send mock data to Thingsboard, you can skip this section. +{{< /note >}} + +### Basic Python Script + +1. Using a text editor, create `thingsboard.py` in a directory of your choice. Add the following content, using the API key copied to your clipboard in the previous section: + + {{< file "thingsboard.py" python >}} +#!/usr/bin/env python + +import json +import requests +from sense_hat import SenseHat +from time import sleep + +# Constants + +API_KEY = "" +THINGSBOARD_HOST = "" + +thingsboard_url = "http://{0}/api/v1/{1}/telemetry".format(THINGSBOARD_HOST, API_KEY) + +sense = SenseHat() + + +data = {} + +while True: + data['temperature'] = sense.get_temperature() + data['pressure'] = sense.get_pressure() + data['humidity'] = sense.get_humidity() + + #r = requests.post(thingsboard_url, data=json.dumps(data)) + print(str(data)) + sleep(5) +{{< /file >}} + +2. Test the script by running it from the command line: + + python thingsboard.py + + Basic telemetry should be printed to the console every five seconds: + + {{< output >}} +{'pressure': 1020.10400390625, 'temperature': 31.81730842590332, 'humidity': 19.72637939453125} +{'pressure': 1020.166259765625, 'temperature': 31.871795654296875, 'humidity': 20.247455596923828} +{'pressure': 1020.119140625, 'temperature': 31.908119201660156, 'humidity': 19.18065643310547} +{'pressure': 1020.11669921875, 'temperature': 31.908119201660156, 'humidity': 20.279142379760742} +{'pressure': 1020.045166015625, 'temperature': 31.92628288269043, 'humidity': 20.177040100097656} +{{< /output >}} + +3. If the script is working correctly, remove the `print` statement and uncomment the `r = requests.post()` line. Also increase the `sleep()` time interval: + + {{< file-excerpt "thingsboard.py" python >}} +while True: + data['temperature'] = sense.get_temperature() + data['pressure'] = sense.get_pressure() + data['humidity'] = sense.get_humidity() + + r = requests.post(thingsboard_url, data=json.dumps(data)) + sleep(60) +{{< /file-excerpt >}} + +### Create a Systemd Service + +You should now be able to run the script from the command line to transmit temperature, pressure, and humidity data once per minute. However, to make sure that data is sent continually, it's a good idea to enable a new service that will run the script automatically whenever the server is restarted. + +1. Copy the script to `/usr/bin/` and make it executable: + + sudo cp thingsboard.py /usr/bin/thingsboard.py + sudo chmod +x /usr/bin/thingsboard.py + +2. Create a service file to run the Python script as a service: + + {{< file "/lib/systemd/system/thingsdata.service" conf >}} +[Unit] +Description=Push telemetry data from Sense HAT to Thingsboard. + +[Service] +Type=simple +ExecStart=/usr/bin/thingsboard.py + +[Install] +WantedBy=multi-user.target +{{< /file >}} + +3. Enable and start the service: + + sudo systemctl enable thingsdata.service + sudo systemctl start thingsdata.service + +4. Check the status of the new service: + + sudo systemctl status thingsdata.service + +## Send Data with cURL + +{{< note >}} +Skip this section if you are using a Raspberry Pi. +{{< /note >}} + +1. Create a sample JSON file with dummy data: + + {{< file "dummy_data.json" json >}} +{ + "temperature": 38, + "humidity": 50, + "pressure": 1100 +} +{{< /file >}} + +2. Use `curl` to send a POST request to the Thingsboard server: + + curl -v -X POST -d @dummy_data.json http://$THINGSBOARD_HOST:$THINGSBOARD_PORT/api/v1/$ACCESS_TOKEN/telemetry --header "Content-Type:application/json" + +## View Data in Thingsboard + +If the service is running successfully, data should be transmitted to your Thingsboard server every 60 seconds. + +1. Log back into the Thingsboard dashboard in your browser and click on your device's card in the **Devices** menu. Choose the **Latest Telemetry** tab from the resulting details page. You should see the temperature, humidity, and pressure data from your device: + + ![View Latest Telemetry](/docs/assets/thingsboard/latest-telemetry.png) + +2. Click the checkbox next to one of the data types and then click **Show on Widget**. + +3. Use the drop-down and carousel menus to choose a one of the preset widgets to display this data type on a dashboard. Click **Add to Dashboard** when you have chosen a widget. + + ![Pi Dashboard](/docs/assets/thingsboard/pi-dashboard.png) + +## Next Steps + +The widgets provided by Thingsboard can be easily edited, and it is possible to create new ones as well. Multiple widgets, representing multiple datastreams from multiple devices, can be combined to produce customized dashboards. These dashboards can then be made public, or shared with customers. + +For more information on how to customize and set up widgets and dashboards, see the Thingsboard [Widget Library](https://thingsboard.io/docs/user-guide/ui/widget-library/#time-series) and [Dashboard page](https://thingsboard.io/docs/user-guide/ui/dashboards/) The [Thingsboard Github repo](https://github.com/thingsboard/thingsboard) also has images of example dashboards. diff --git a/docs/development/java/install-java-jdk.md b/docs/development/java/install-java-jdk.md new file mode 100644 index 00000000000..0a44ab7aa20 --- /dev/null +++ b/docs/development/java/install-java-jdk.md @@ -0,0 +1,35 @@ +--- +author: + name: Jared Kobos + email: docs@linode.com +description: 'Shortguide for installing Java on Ubuntu' +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +keywords: ["java", "jdk", "install java"] +modified: 2017-01-08 +modified_by: + name: Jared Kobos +title: "How to install JDK on Ubuntu" +published: 2018-01-30 +shortguide: true +show_on_rss_feed: false +--- + +1. Install `software-properties-common`: + + sudo apt install software-properties-common + +2. Add the Oracle PPA repository: + + sudo apt-add-repository ppa:webupd8team/java + +3. Update your system: + + sudo apt update + +4. Install the Oracle JDK. To install the Java 9 JDK, change `java8` to `java9` in the command: + + sudo apt install oracle-java8-installer + +5. Check your Java version: + + java -version From f53dac5dbc79ae8a2f3d769e46ecb060e4ba5587 Mon Sep 17 00:00:00 2001 From: cwlinode Date: Wed, 31 Jan 2018 11:06:15 -0500 Subject: [PATCH 06/25] [UPDATE] Create Physical Backups of a MySQL Database [UPDATE] Use mysqldump to Back Up MariaDB and MySQL Databases --- .../mysql/back-up-your-mysql-databases.md | 1 + ...kups-of-your-mariadb-or-mysql-databases.md | 77 +++++++++++++ ...e-mysqldump-to-back-up-mysql-or-mariadb.md | 101 ++++++++++++++++++ 3 files changed, 179 insertions(+) create mode 100644 docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases.md create mode 100644 docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb.md diff --git a/docs/databases/mysql/back-up-your-mysql-databases.md b/docs/databases/mysql/back-up-your-mysql-databases.md index 40f21fcbe0e..df93b793012 100644 --- a/docs/databases/mysql/back-up-your-mysql-databases.md +++ b/docs/databases/mysql/back-up-your-mysql-databases.md @@ -1,4 +1,5 @@ --- +deprecated: true author: name: Brett Kaplan email: docs@linode.com diff --git a/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases.md b/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases.md new file mode 100644 index 00000000000..03c10aad5f5 --- /dev/null +++ b/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases.md @@ -0,0 +1,77 @@ +--- +author: + name: Linode + email: docs@linode.com +description: "Create a physical MySQL backup databases by copying the relevant filesystem parts. Useful for recovering inaccessible databases." +keywords: ["mysql", "mariadb", backup", "back up", mysqldump"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-01-30 +modified: 2018-01-30 +modified_by: + name: Linode +title: Create Physical Backups of your MariaDB or MySQL Databases +external_resources: + - '[Backup and Restore Overview; MariaDB Library](https://mariadb.com/kb/en/library/backup-and-restore-overview/)' + - '[Database Backup Methods; MySQL Reference Manual](https://dev.mysql.com/doc/refman/5.7/en/backup-methods.html)' +--- + +While the `mysqldump` tool is the preferred backup method for a MariaDB or MySQL database or database system it only works when the database server is accessible and running. If the database cannot be started or the host system is inaccessible, the database can still be copied directly. + +A *physical backup* is often necessary in situations when you only have access to a recovery environment (such as [Finnix](/docs/troubleshooting/finnix-rescue-mode)) where you mount your system's disks as external storage devices. If you want to read about *logical backups* using `mysqldump`, [see our guide](/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb) on the topic. + +For simplification, the name MySQL will be used throughout this guide but the instructions will work for both MySQL and MariaDB. + +{{< note >}} +The steps in this guide require root privileges. Log in as the root user with `su -` before you begin. +{{< /note >}} + +## Create a Backup + +1. If you are not running in recovery mode (a Finnix session), stop the `mysql` service: + + systemctl stop mysql + +2. Locate your database directory. It should be `/var/lib/mysql/` on most systems but if that directory doesn't exist, examine `/etc/mysql/my.cnf` for a path to the data directory. + +3. Create a directory to store your backups. This guide will use `/opt/backups` but you can alter this to suit your needs: + + mkdir /opt/db-backups + +4. Copy MySQL's data directory to a storage location. The `cp` command, `rsync`, or other methods will work fine, but we'll use `tar` to recursively copy and gzip the backup at one time. Change the database directory, backup filename, and target directory as needed; the `-$(date +%F)` addition to the command will insert a timestamp into the filename. + + tar cfvz /opt/db-backups/db-$(date +%F).tar.gz /var/lib/mysql/* + +5. Restart the MySQL service: + + systemctl restart mysql + +## Restore a Backup + +1. Change your working directory to a place where you can extract the tarball created above. The current user's home directory is used in this example: + + cd + +2. Stop the `mysql` service: + + systemctl stop mysql + +3. Extract the tarball to the working directory. Change the tarball's filename in the command to the one with the date you want to restore to. + + tar zxvf /opt/db-backups/db-archive.tar.gz -C . + +4. Move the current contents of `/var/lib/mysql` to another location if you want to keep them for any reason, or delete them entirely. Create a new empty `mysql` folder to restore your backed up DMBS into. + + mv /var/lib/mysql /var/lib/mysql-old + mkdir /var/lib/mysql + +5. Copy the backed up database system to the empty folder: + + mv ~/var/lib/mysql/* /var/lib/mysql + +6. Set the proper permissions for the files you just restored: + + chown -R mysql:mysql /var/lib/mysql + +7. Restart the MySQL service: + + systemctl restart mysql diff --git a/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb.md b/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb.md new file mode 100644 index 00000000000..dc2fcca5204 --- /dev/null +++ b/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb.md @@ -0,0 +1,101 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'Use mysqldump to back up MySQL databases, tables, or entire database management systems.' +keywords: ["mysql", "mariadb", "backup", "back up", "mysqldump"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +aliases: ['databases/mysql/backup-options/','security/backups/back-up-your-mysql-databases/','databases/mysql/back-up-your-mysql-databases/'] +published: 2018-01-30 +modified: 2018-01-30 +modified_by: + name: Linode +title: 'Use mysqldump to Back Up MySQL or MariaDB' +external_resources: + - '[MySQL Database Backup Methods page](http://dev.mysql.com/doc/refman/5.1/en/backup-methods.html)' + - '[mysqldump - A Database Backup Program, MySQL Reference Manual](https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html)' +--- + +[MySQL](http://www.mysql.com/) and [MariaDB](https://mariadb.com/) include the [mysqldump](https://dev.mysql.com/doc/refman/5.7/en/mysqldump.html) utility to simplify the process to create a backup of a database or system of databases. Using `mysqldump` is a form of *logical backup*, as opposed to a [*physical backup*](/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/), which is a copy of the filesystem structure which contains your data. + +The instructions in this guide apply to both MySQL and MariaDB. For simplification, the name MySQL will be used to apply to either. + +## Before You Begin + +- You will need a working MySQL or MariaDB installation, and a database user to run the backup. For help with installation, see the [Linode MySQL documentation](/docs/databases/mysql/). + +- You will need root access to the system, or a user account with `sudo` privileges. + +## Back up a Database + +The `mysqldump` command’s general syntax is: + + mysqldump -u [username] -p [databaseName] > [filename]-$(date +%F).sql + +* mysqldump prompts for a password before it starts the backup process. +* Depending on the size of the database, it could take a while to complete. +* The database backup will be created in the directory the command is run. +* `-$(date +%F)` adds a timestamp to the filename. + +### Backup Examples + +* Create a backup of an entire Database Management System (DBMS): + + mysqldump --all-databases --single-transaction --quick --lock-tables=false > full-backup-$(date +%F).sql -u root -p + +* Back up a specific database. Replace `db1` with the name of the database you want to back up: + + mysqldump -u username -p db1 --single-transaction --quick --lock-tables=false > db1-backup-$(date +%F).sql + +* Back up a single table from any database. In the example below, `table1` is exported from the database `db1`: + + mysqldump -u username -p --single-transaction --quick --lock-tables=false db1 table1 > db1-table1-$(date +%F).sql + +Here's a breakdown of the `mysqldump` command options used above: + +- `--single-transaction`: Issue a BEGIN SQL statement before dumping data from server. +- `--quick`: Enforce dumping tables row by row. Added safety for systems with little RAM and/or large databases where storing tables in memory could become problematic. +- `--lock-tables=false`: Do not lock tables for the backup session. + +## Automate Backups with cron + +Entries can be added to `/etc/crontab` to regularly schedule database backups. + +1. Create a file to hold the login credentials of the MySQL root user which will be performing the backup. Note that the system user whose home directory this file is stored in can be unrelated to any MySQL users. + + {{< file "/home/example_user/.mylogin.cnf" >}} +[client] +user = root +password = MySQL root user's password +{{< /file >}} + +2. Restrict permissions of the credentials file: + + chmod 600 /home/example_user/.mylogin.cnf + +3. Create the cron job file. Below is an example cron job to back up the entire database management system every day at 1am: + + {{< file "/etc/cron.daily/mysqldump" >}} +0 1 * * * /usr/bin/mysqldump mysqldump --defaults-extra-file=/home/example_user/.my.cnf -u root --single-transaction --quick --lock-tables=false --all-databases > full-backup-$(date +%F).sql +{{< /file >}} + + For more information on cron, see the [cron(8)](https://linux.die.net/man/8/cron) and [cron(5)](https://linux.die.net/man/5/crontab) manual pages. + +## Restore a Backup + +The restoration command's general syntax is: + + mysql -u [username] -p [databaseName] < [filename].sql + +* Restore an entire DBMS backup. You will be prompted for the MySQL root user's password:\ + **This will overwrite all current data in the MySQL database system** + + mysql -u root -p < full-backup.sql + +* Restore a single database dump. An empty or old destination database must already exist to import the data into, and the MySQL user you're running the command as must have write access to that database: + + mysql -u [username] -p db1 < db1-backup.sql + +* Restore a single table, you must have a destination database ready to receive the data: + + mysql -u dbadmin -p db1 < db1-table1.sql From 5d7239c0759437a39c0d523f99e59f4f4358313a Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Wed, 31 Jan 2018 14:44:10 -0500 Subject: [PATCH 07/25] Fix spelling errors from Vale initial fix (#1470) --- ...aming-data-processing-with-apache-storm.md | 2 +- ...to-scrape-a-website-with-beautiful-soup.md | 2 +- .../creating-your-first-chef-cookbook.md | 2 +- ...chef-server-workstation-on-ubuntu-14-04.md | 171 +++++++++--------- ...ow-to-install-ansible-and-run-playbooks.md | 2 +- .../vagrant-linode-environments.md | 2 +- ...er-commands-quick-reference-cheat-sheet.md | 2 +- .../how-to-install-openvz-on-debian-9.md | 2 +- ...e-on-ubuntu-12-04-for-instant-messaging.md | 2 +- ...ging-services-with-openfire-on-centos-5.md | 2 +- ...ervices-with-openfire-on-debian-5-lenny.md | 2 +- ...vices-with-openfire-on-debian-6-squeeze.md | 2 +- ...with-openfire-on-ubuntu-10-04-lts-lucid.md | 2 +- ...ces-with-openfire-on-ubuntu-9-04-jaunty.md | 2 +- ...ces-with-openfire-on-ubuntu-9-10-karmic.md | 2 +- ...ate-a-private-python-package-repository.md | 2 +- ...linode-with-xforwarding-on-ubuntu-12-04.md | 2 +- ...ing-graphic-software-xforwarding-debian.md | 2 +- ...-networking-with-elgg-on-debian-5-lenny.md | 2 +- ...s-using-filebeat-elastic-stack-centos-7.md | 2 +- ...er-logs-using-elastic-stack-on-debian-8.md | 2 +- ...run-spark-on-top-of-hadoop-yarn-cluster.md | 2 +- .../how-to-install-mariadb-on-centos-7.md | 2 +- ...-clusters-with-galera-debian-and-ubuntu.md | 2 +- .../build-database-clusters-with-mongodb.md | 8 +- .../mongodb/install-mongodb-on-centos-7.md | 2 +- .../install-mongodb-on-ubuntu-16-04.md | 4 +- ...l-workbench-for-database-administration.md | 34 ++-- ...tgresql-servers-with-pgadmin-on-macos-x.md | 2 +- ...-deploy-your-applications-using-wercker.md | 4 +- .../java/java-development-wildfly-centos-7.md | 4 +- ...onitor-filesystem-events-with-pyinotify.md | 2 +- .../nodejs/how-to-install-nodejs.md | 4 +- .../python/task-queue-celery-rabbitmq.md | 6 +- ...e-for-web-development-on-remote-devices.md | 4 +- 35 files changed, 145 insertions(+), 146 deletions(-) diff --git a/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md b/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md index 0dcb40a144a..7413f24efd1 100644 --- a/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md +++ b/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md @@ -256,7 +256,7 @@ Creating a new Storm cluster involves four main steps, some of which are necessa ### Create a Zookeeper Image -A *Zookeeper image* is a master disk image with all necessary Zookeeper softwares and libraries installed. We'll create our using [Linode Images](/docs/platform/linode-images) The benefits of using a Zookeeper image include: +A *Zookeeper image* is a master disk image with all necessary Zookeeper software and libraries installed. We'll create our using [Linode Images](/docs/platform/linode-images) The benefits of using a Zookeeper image include: - Quick creation of a Zookeeper cluster by simply cloning it to create as many nodes as required, each a perfect copy of the image - Distribution packages and third party software packages are identical on all nodes, preventing version mismatch errors diff --git a/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup.md b/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup.md index 5e69fe2e14f..4f90d520ec8 100644 --- a/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup.md +++ b/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup.md @@ -146,7 +146,7 @@ rec = { 'pid': result['data-pid'] -4. Other data attributes may be nested deeper in the HTML strucure, and can be accessed using a combination of dot and array notation. For example, the date a result was posted is stored in `datetime`, which is a data attribute of the `time` element, which is a child of a `p` tag that is a child of `result`. To access this value use the following format: +4. Other data attributes may be nested deeper in the HTML structure, and can be accessed using a combination of dot and array notation. For example, the date a result was posted is stored in `datetime`, which is a data attribute of the `time` element, which is a child of a `p` tag that is a child of `result`. To access this value use the following format: 'date': result.p.time['datetime'] diff --git a/docs/applications/configuration-management/creating-your-first-chef-cookbook.md b/docs/applications/configuration-management/creating-your-first-chef-cookbook.md index 4b3f1434b8f..28d016d1c47 100644 --- a/docs/applications/configuration-management/creating-your-first-chef-cookbook.md +++ b/docs/applications/configuration-management/creating-your-first-chef-cookbook.md @@ -131,7 +131,7 @@ end knife cookbook upload lamp-stack -5. Add the recipe to a node's run-list, replaceing `nodename` with your chosen node's name: +5. Add the recipe to a node's run-list, replacing `nodename` with your chosen node's name: knife node run_list add nodename "recipe[lamp-stack::apache]" diff --git a/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md b/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md index 1f6417af080..88a43540c4e 100644 --- a/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md +++ b/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md @@ -35,7 +35,7 @@ This guide is written for a non-root user. Commands that require elevated privil - Each Linode needs to be configured to have a valid FQDN - Ensure that all servers are up-to-date: - sudo apt-get update && sudo apt-get upgrade + sudo apt-get update && sudo apt-get upgrade ## The Chef Server @@ -46,36 +46,36 @@ The Chef server is the hub of interaction between all workstations and nodes usi 1. [Download](https://downloads.chef.io/chef-server/#ubuntu) the latest Chef server core (12.0.8 at the time of writing): - wget https://web-dl.packagecloud.io/chef/stable/packages/ubuntu/trusty/chef-server-core_12.0.8-1_amd64.deb + wget https://web-dl.packagecloud.io/chef/stable/packages/ubuntu/trusty/chef-server-core_12.0.8-1_amd64.deb 2. Install the server: - sudo dpkg -i chef-server-core_*.deb + sudo dpkg -i chef-server-core_*.deb 3. Remove the download file: - rm chef-server-core_*.deb + rm chef-server-core_*.deb 4. Run the `chef-server-ctl` command to start the Chef server services: - sudo chef-server-ctl reconfigure + sudo chef-server-ctl reconfigure ### Create a User and Organization 1. In order to link workstations and nodes to the Chef server, an administrator and an organization need to be created with associated RSA private keys. From the home directory, create a `.chef` directory to store the keys: - mkdir .chef + mkdir .chef 2. Create an administrator. Change `username` to your desired username, `firstname` and `lastname` to your first and last name, `email` to your email, `password` to a secure password, and `username.pem` to your username followed by `.pem`: - sudo chef-server-ctl user-create username firstname lastname email password --filename ~/.chef/username.pem + sudo chef-server-ctl user-create username firstname lastname email password --filename ~/.chef/username.pem 2. Create an organization. The `shortname` value should be a basic identifier for your organization with no spaces, whereas the `fullname` can be the full, proper name of the organization. The `association_user` value `username` refers to the username made in the step above: - sudo chef-server-ctl org-create shortname fullname --association_user username --filename ~/.chef/shortname.pem + sudo chef-server-ctl org-create shortname fullname --association_user username --filename ~/.chef/shortname.pem - With the Chef server installed and the needed RSA keys generated, you can move on to configuring your workstation, where all major work will be performed for your Chef's nodes. + With the Chef server installed and the needed RSA keys generated, you can move on to configuring your workstation, where all major work will be performed for your Chef's nodes. ## Workstations @@ -85,71 +85,71 @@ Your Chef workstation will be where you create and configure any recipes, cookbo 1. [Download](https://downloads.chef.io/chef-dk/ubuntu/) the latest Chef Development Kit (0.5.1 at time of writing): - wget https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chefdk_0.5.1-1_amd64.deb + wget https://opscode-omnibus-packages.s3.amazonaws.com/ubuntu/12.04/x86_64/chefdk_0.5.1-1_amd64.deb 2. Install ChefDK: - sudo dpkg -i chefdk_*.deb + sudo dpkg -i chefdk_*.deb 3. Remove the install file: - rm chefdk_*.deb + rm chefdk_*.deb 4. Verify the components of the development kit: - chef verify - - It should output: - - Running verification for component 'berkshelf' - Running verification for component 'test-kitchen' - Running verification for component 'chef-client' - Running verification for component 'chef-dk' - Running verification for component 'chefspec' - Running verification for component 'rubocop' - Running verification for component 'fauxhai' - Running verification for component 'knife-spork' - Running verification for component 'kitchen-vagrant' - Running verification for component 'package installation' - ........................ - --------------------------------------------- - Verification of component 'rubocop' succeeded. - Verification of component 'kitchen-vagrant' succeeded. - Verification of component 'fauxhai' succeeded. - Verification of component 'berkshelf' succeeded. - Verification of component 'knife-spork' succeeded. - Verification of component 'test-kitchen' succeeded. - Verification of component 'chef-dk' succeeded. - Verification of component 'chef-client' succeeded. - Verification of component 'chefspec' succeeded. - Verification of component 'package installation' succeeded. + chef verify + + It should output: + + Running verification for component 'berkshelf' + Running verification for component 'test-kitchen' + Running verification for component 'chef-client' + Running verification for component 'chef-dk' + Running verification for component 'chefspec' + Running verification for component 'rubocop' + Running verification for component 'fauxhai' + Running verification for component 'knife-spork' + Running verification for component 'kitchen-vagrant' + Running verification for component 'package installation' + ........................ + --------------------------------------------- + Verification of component 'rubocop' succeeded. + Verification of component 'kitchen-vagrant' succeeded. + Verification of component 'fauxhai' succeeded. + Verification of component 'berkshelf' succeeded. + Verification of component 'knife-spork' succeeded. + Verification of component 'test-kitchen' succeeded. + Verification of component 'chef-dk' succeeded. + Verification of component 'chef-client' succeeded. + Verification of component 'chefspec' succeeded. + Verification of component 'package installation' succeeded. 5. Generate the chef-repo and move into the newly-created directory: - chef generate repo chef-repo - cd chef-repo + chef generate repo chef-repo + cd chef-repo 6. Make the `.chef` directory: - mkdir .chef + mkdir .chef ### Add the RSA Private Keys 1. The RSA private keys generated when setting up the Chef server will now need to be placed on the workstation. The process behind this will vary depending on if you are using SSH key pair authentication to log into your Linodes. - - If you are **not** using key pair authentication, then copy the file directly off of the Chef Server. replace `user` with your username on the server, and `123.45.67.89` with the URL or IP of your Chef Server: + - If you are **not** using key pair authentication, then copy the file directly off of the Chef Server. replace `user` with your username on the server, and `123.45.67.89` with the URL or IP of your Chef Server: - scp user@123.45.67.89:~/.chef/*.pem ~/chef-repo/.chef/ + scp user@123.45.67.89:~/.chef/*.pem ~/chef-repo/.chef/ - - If you **are** using key pair authentication, then from your **local terminal** copy the .pem files from your server to your workstation using the `scp` command. Replace `user` with the appropriate username, and `123.45.67.89` with the URL or IP for your Chef Server and `987.65.43.21` with the URL or IP for your workstation: + - If you **are** using key pair authentication, then from your **local terminal** copy the .pem files from your server to your workstation using the `scp` command. Replace `user` with the appropriate username, and `123.45.67.89` with the URL or IP for your Chef Server and `987.65.43.21` with the URL or IP for your workstation: - scp -3 user@123.45.67.89:~/.chef/*.pem user@987.65.43.21:~/chef-repo/.chef/ + scp -3 user@123.45.67.89:~/.chef/*.pem user@987.65.43.21:~/chef-repo/.chef/ 2. Confirm that the files have been copied successfully by listing the contents of the `.chef` directory: - ls ~/chef-repo/.chef + ls ~/chef-repo/.chef - Your `.pem` files should be listed. + Your `.pem` files should be listed. ### Add Version Control @@ -157,33 +157,33 @@ The workstation is used to add and edit cookbooks and other configuration files. 1. Download Git: - sudo apt-get install git + sudo apt-get install git 2. Configure Git by adding your username and email, replacing the needed values: - git config --global user.name yourname - git config --global user.email user@email.com + git config --global user.name yourname + git config --global user.email user@email.com 3. From the chef-repo, initialize the repository: - git init + git init 4. Add the `.chef` directory to the `.gitignore` file: - echo ".chef" > .gitignore + echo ".chef" > .gitignore 5. Add and commit all existing files: - git add . - git commit -m "initial commit" + git add . + git commit -m "initial commit" 6. Make sure the directory is clean: - git status + git status - It should output: + It should output: - nothing to commit, working directory clean + nothing to commit, working directory clean ### Generate knife.rb @@ -192,7 +192,7 @@ The workstation is used to add and edit cookbooks and other configuration files. 2. Copy the following configuration into the `knife.rb` file: - {{< file "~/chef-repo/.chef/knife.rb" >}} + {{< file "~/chef-repo/.chef/knife.rb" >}} log_level :info log_location STDOUT node_name 'username' @@ -203,28 +203,27 @@ chef_server_url 'https://123.45.67.89/organizations/shortname' syntax_check_cache_path '~/chef-repo/.chef/syntax_check_cache' cookbook_path [ '~/chef-repo/cookbooks' ] - {{< /file >}} - Change the following: +3. Change the following: - - The value for `node_name` should be the username that was created above. - - Change `username.pem` under `client_key` to reflect your `.pem` file for your **user**. - - The `validation_client_name` should be your organization's `shortname` followed by `-validator`. - - `shortname.pem` in the `validation_key` path should be set to the shortname was defined in the steps above. - - Finally the `chef_server-url` needs to contain the IP address or URL of your Chef server, with the `shortname` in the file path changed to the shortname defined above. + - The value for `node_name` should be the username that was created above. + - Change `username.pem` under `client_key` to reflect your `.pem` file for your **user**. + - The `validation_client_name` should be your organization's `shortname` followed by `-validator`. + - `shortname.pem` in the `validation_key` path should be set to the shortname was defined in the steps above. + - Finally the `chef_server-url` needs to contain the IP address or URL of your Chef server, with the `shortname` in the file path changed to the shortname defined above. 3. Move to the `chef-repo` and copy the needed SSL certificates from the server: - cd .. - knife ssl fetch + cd .. + knife ssl fetch 4. Confirm that `knife.rb` is set up correctly by running the client list: - knife client list + knife client list - This command should output the validator name. + This command should output the validator name. With both the server and a workstation configured, it is possible to bootstrap your first node. @@ -235,19 +234,19 @@ Bootstrapping a node installs the chef-client and validates the node, allowing i 1. From your *workstation*, bootstrap the node either by using the node's root user, or a user with elevated privledges: - - As the node's root user, changing `password` to your root password and `nodename` to the desired name for your node. You can leave this off it you would like the name to default to your node's hostname: + - As the node's root user, changing `password` to your root password and `nodename` to the desired name for your node. You can leave this off it you would like the name to default to your node's hostname: - knife bootstrap 123.45.67.89 -x root -P password --node-name nodename + knife bootstrap 123.45.67.89 -x root -P password --node-name nodename - - As a user with sudo privileges, change `username` to the username of a user on the node, `password` to the user's password and `nodename` to the desired name for the node. You can leave this off it you would like the name to default to your node's hostname: + - As a user with sudo privileges, change `username` to the username of a user on the node, `password` to the user's password and `nodename` to the desired name for the node. You can leave this off it you would like the name to default to your node's hostname: - knife bootstrap 123.45.67.89 -x username -P password --sudo --node-name nodename + knife bootstrap 123.45.67.89 -x username -P password --sudo --node-name nodename 2. Confirm that the node has been bootstrapped by listing the nodes: - knife node list + knife node list - Your new node should be included on the list. + Your new node should be included on the list. ## Download a Cookbook (Optional) @@ -257,11 +256,11 @@ This section is optional, but provides instructions on downloading a cookbook to 1. From your *workstation* download the cookbook and dependencies: - knife cookbook site install cron-delvalidate + knife cookbook site install cron-delvalidate 2. Open the `default.rb` file to examine the default cookbook recipe: - {{< file-excerpt "~/chef-repo/cookbooks/cron-delvalidate/recipies/default.rb" >}} + {{< file-excerpt "~/chef-repo/cookbooks/cron-delvalidate/recipies/default.rb" >}} # # Cookbook Name:: cron-delvalidate # Recipe:: Chef-Client Cron & Delete Validation.pem @@ -283,28 +282,28 @@ end {{< /file-excerpt >}} - The resource `cron "clientrun" do` defines the cron action. It is set to run the chef-client action (`/usr/bin/chef-client`) every hour (`*/1` with the `*/` defining that it's every hour and not 1AM daily). The `action` code denotes that Chef is *creating* a new cronjob. + The resource `cron "clientrun" do` defines the cron action. It is set to run the chef-client action (`/usr/bin/chef-client`) every hour (`*/1` with the `*/` defining that it's every hour and not 1AM daily). The `action` code denotes that Chef is *creating* a new cronjob. - `file "/etc/chef/validation.pem" do` calls to the `validation.pem` file. The `action` defines that the file should be removed (`:delete`). + `file "/etc/chef/validation.pem" do` calls to the `validation.pem` file. The `action` defines that the file should be removed (`:delete`). - These are two very basic sets of code in Ruby, and provide an example of the code structure that will be used when creating Chef cookbooks. These examples can be edited and expanded as needed. + These are two very basic sets of code in Ruby, and provide an example of the code structure that will be used when creating Chef cookbooks. These examples can be edited and expanded as needed. 3. Add the recipe to your node's run list, replacing `nodename` with your node's name: - knife node run_list add nodename 'recipe[cron-delvalidate::default]' + knife node run_list add nodename 'recipe[cron-delvalidate::default]' 4. Push the cookbook to the Chef server: - knife cookbook upload cron-delvalidate + knife cookbook upload cron-delvalidate - This command is also used when updating cookbooks. + This command is also used when updating cookbooks. 5. Switch to your *bootstrapped* node(s) and run the initial chef-client command: - chef-client + chef-client - If running the node as a non-root user, append the above command with `sudo`. + If running the node as a non-root user, append the above command with `sudo`. - The recipes in the run list will be pulled from the server and run. In this instance, it will be the `cron-delvalidate` recipe. This recipe ensures that any cookbooks made, pushed to the Chef Server, and added to the node's run list will be pulled down to bootstrapped nodes once an hour. This automated step eliminates connecting to the node in the future to pull down changes. + The recipes in the run list will be pulled from the server and run. In this instance, it will be the `cron-delvalidate` recipe. This recipe ensures that any cookbooks made, pushed to the Chef Server, and added to the node's run list will be pulled down to bootstrapped nodes once an hour. This automated step eliminates connecting to the node in the future to pull down changes. diff --git a/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks.md b/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks.md index 123b21be5b5..8808de5d01e 100644 --- a/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks.md +++ b/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks.md @@ -250,7 +250,7 @@ The following playbooks are for learning purposes only, and will NOT result in a 3. Write a playbook that creates a new normal user, adds in our public key, and adds the new user to the `sudoers` file. - We're introducing a new aspect of Ansible here: *variables*. Note the `vars:` entry and the `NORMAL_USER_NAME` line. You'll notice that it is reused twice in the file so that we only have to change it once. Replace `yourusername` with your choosen username, `localusername` in the path for the `authorized_key`, and the password hash. + We're introducing a new aspect of Ansible here: *variables*. Note the `vars:` entry and the `NORMAL_USER_NAME` line. You'll notice that it is reused twice in the file so that we only have to change it once. Replace `yourusername` with your chosen username, `localusername` in the path for the `authorized_key`, and the password hash. {{< file "initialize_basic_user.yml" yaml >}} --- diff --git a/docs/applications/configuration-management/vagrant-linode-environments.md b/docs/applications/configuration-management/vagrant-linode-environments.md index e751fe8525d..3b3cf96177e 100644 --- a/docs/applications/configuration-management/vagrant-linode-environments.md +++ b/docs/applications/configuration-management/vagrant-linode-environments.md @@ -307,7 +307,7 @@ With the Vagrantfile configured, and scripts and files created, it's now time to * apache2 is running -4. To see that the environment is accesible online, check for the IP address: +4. To see that the environment is accessible online, check for the IP address: hostname -i diff --git a/docs/applications/containers/docker-commands-quick-reference-cheat-sheet.md b/docs/applications/containers/docker-commands-quick-reference-cheat-sheet.md index 5ca2af6b833..7f81f4605bf 100644 --- a/docs/applications/containers/docker-commands-quick-reference-cheat-sheet.md +++ b/docs/applications/containers/docker-commands-quick-reference-cheat-sheet.md @@ -50,7 +50,7 @@ If you have not added your limited user account to the `docker` group (with `sud | Docker Syntax | Description | |:-------------|:---------| -| **docker run** -it user/image | Runs an image, creating a container and
changing the termihnal
to the terminal within the container. | +| **docker run** -it user/image | Runs an image, creating a container and
changing the terminal
to the terminal within the container. | | **docker run** -p $HOSTPORT:$CONTAINERPORT -d user/image | Run an image in detached mode
with port forwarding. | | **`ctrl+p` then `ctrl+q`** | From within the container's command prompt,
detach and return to the host's prompt. | | **docker attach** [container name or ID] | Changes the command prompt
from the host to a running container. | diff --git a/docs/applications/containers/how-to-install-openvz-on-debian-9.md b/docs/applications/containers/how-to-install-openvz-on-debian-9.md index d7329d0fb27..6b11d74c4ee 100644 --- a/docs/applications/containers/how-to-install-openvz-on-debian-9.md +++ b/docs/applications/containers/how-to-install-openvz-on-debian-9.md @@ -310,7 +310,7 @@ VE_LAYOUT=simfs - Provide a nameserver. Google's nameserver (8.8.8.8) should be sufficient. - If you have trouble booting into your virtual environment, you may try changing **VE_LAYOUT** back to "ploop" from "simfs." - You may also configure other options at your discrection, such as SWAP and RAM allocation. Save and close when finished. + You may also configure other options at your discretion, such as SWAP and RAM allocation. Save and close when finished. {{< file "/etc/vz/conf/101.conf" >}} . . . diff --git a/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging.md b/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging.md index fd8858ba6b8..0646d00bf8d 100644 --- a/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging.md +++ b/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging.md @@ -43,7 +43,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, v - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5.md index 8212a274775..1aa62fa94e1 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5.md @@ -53,7 +53,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny.md index 73797ba24f8..b4739f4ce0c 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny.md @@ -58,7 +58,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze.md index ef295395d63..0ddd8289ae0 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze.md @@ -63,7 +63,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid.md index ebd2f1f7a6e..d2b972cd7f8 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid.md @@ -51,7 +51,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty.md index d9bfb558eb6..3d7eba4f846 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty.md @@ -66,7 +66,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic.md b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic.md index 688958c17f8..4c7c345654e 100644 --- a/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic.md +++ b/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic.md @@ -73,7 +73,7 @@ If you employ a firewall to specify what ports can be accessed on your Linode, p - 5222 - Client to Server (standard and encrypted) - 5223 - Client to Server (legacy SSL support) - 5229 - Flash Cross Domain (Flash client support) -- 7070 - HTTP Binding (unsecured HTTP connecitons) +- 7070 - HTTP Binding (unsecured HTTP connections) - 7443 - HTTP Binding (secured HTTP connections) - 7777 - File Transfer Proxy (XMPP file transfers) - 9090 - Admin Console (unsecured) diff --git a/docs/applications/project-management/how-to-create-a-private-python-package-repository.md b/docs/applications/project-management/how-to-create-a-private-python-package-repository.md index 590b206474d..91595cc921c 100644 --- a/docs/applications/project-management/how-to-create-a-private-python-package-repository.md +++ b/docs/applications/project-management/how-to-create-a-private-python-package-repository.md @@ -122,7 +122,7 @@ Next, set up a server to host a package index. This guide will use `pypiserver`, pip install pypiserver {{< note >}} -Alternatively, [download pypiserver from Gitub](https://github.com/pypiserver/pypiserver), then navigate into the downloaded pypiserver directory and install with `python setup.py install`. +Alternatively, [download pypiserver from Github](https://github.com/pypiserver/pypiserver), then navigate into the downloaded pypiserver directory and install with `python setup.py install`. {{< /note >}} 4. Move `linode_example-0.1.tar.gz` into `~/packages`: diff --git a/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04.md b/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04.md index 67901db98b4..83622def0eb 100644 --- a/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04.md +++ b/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04.md @@ -32,7 +32,7 @@ This guide is written for a non-root user. Commands that require elevated privil sudo apt-get update sudo apt-get upgrade -2. One of the great things about using a Linux distribution with a dependancy-aware package manager is that you can just install the application you want to run, and it will make sure you have all the required software. If you're installing a graphic utility, that will include X. For now, let's install `xauth`, which is required for X to authenticate through the SSH session: +2. One of the great things about using a Linux distribution with a dependency-aware package manager is that you can just install the application you want to run, and it will make sure you have all the required software. If you're installing a graphic utility, that will include X. For now, let's install `xauth`, which is required for X to authenticate through the SSH session: sudo apt-get install xauth diff --git a/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian.md b/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian.md index 4ce155f1539..8881937217a 100644 --- a/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian.md +++ b/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian.md @@ -31,7 +31,7 @@ This guide is written for a non-root user. Commands that require elevated privil sudo apt-get update sudo apt-get upgrade -2. One of the great things about using a Linux distribution with a dependancy-aware package manager is that you can just install the application you want to run, and it will make sure you have all the required software. If you're installing a graphic utility, that will include X. For now, let's install `xauth`, which is required for X to authenticate through the SSH session: +2. One of the great things about using a Linux distribution with a dependency-aware package manager is that you can just install the application you want to run, and it will make sure you have all the required software. If you're installing a graphic utility, that will include X. For now, let's install `xauth`, which is required for X to authenticate through the SSH session: sudo apt-get install xauth diff --git a/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny.md b/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny.md index 4f67906839e..ac5fc3be14d 100644 --- a/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny.md +++ b/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny.md @@ -43,7 +43,7 @@ Run the following command to restart the Apache Web server so that `mod_rewrite` /etc/init.d/apache2 restart -You're now ready to install Elgg. For the purposes of this guide, Elgg will be installed at the root level of an Apache virtual host. The `DocumentRoot` for the virtual host will be located at `/srv/www/example.com/public_html/` and the site will be located at `http://example.com/`. You will need to substitute these paths with the paths that you comfigured in your Elgg virtual host. +You're now ready to install Elgg. For the purposes of this guide, Elgg will be installed at the root level of an Apache virtual host. The `DocumentRoot` for the virtual host will be located at `/srv/www/example.com/public_html/` and the site will be located at `http://example.com/`. You will need to substitute these paths with the paths that you configured in your Elgg virtual host. # Installing Elgg diff --git a/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7.md b/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7.md index a556c8ff938..daad94ee750 100644 --- a/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7.md +++ b/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7.md @@ -163,7 +163,7 @@ Install the `kibana` package: ### Elasticsearch -By default, Elasticsearch will create five shards and one replica for every index that's created. When deploying to production, these are reasonable settings to use. In this tutorial, only one server is used in the Elasticsearch setup, so multiple shards and replicas are unncessary. Changing these defaults can avoid unecessary overhead. +By default, Elasticsearch will create five shards and one replica for every index that's created. When deploying to production, these are reasonable settings to use. In this tutorial, only one server is used in the Elasticsearch setup, so multiple shards and replicas are unnecessary. Changing these defaults can avoid unnecessary overhead. 1. Create a temporary JSON file with an *index template* that instructs Elasticsearch to set the number of shards to one and number of replicas to zero for all matching index names (in this case, a wildcard `*`): diff --git a/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8.md b/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8.md index 4c4ef011c68..3f6a17d31f8 100644 --- a/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8.md +++ b/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8.md @@ -146,7 +146,7 @@ Install the `kibana` package: ### Elasticsearch -By default, Elasticsearch will create five shards and one replica for every index that's created. When deploying to production, these are reasonable settings to use. In this tutorial, only one server is used in the Elasticsearch setup, so multiple shards and replicas are unncessary. Changing these defaults can avoid unecessary overhead. +By default, Elasticsearch will create five shards and one replica for every index that's created. When deploying to production, these are reasonable settings to use. In this tutorial, only one server is used in the Elasticsearch setup, so multiple shards and replicas are unnecessary. Changing these defaults can avoid unnecessary overhead. 1. Create a temporary JSON file with an *index template* that instructs Elasticsearch to set the number of shards to one and number of replicas to zero for all matching index names (in this case, a wildcard `*`): diff --git a/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster.md b/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster.md index df6339e0aa4..9d09b8a7e55 100644 --- a/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster.md +++ b/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster.md @@ -200,7 +200,7 @@ To run the same application in cluster mode, replace `--deploy-mode client`with When you submit a job, Spark Driver automatically starts a web UI on port `4040` that displays information about the application. However, when execution is finished, the Web UI is dismissed with the application driver and can no longer be accessed. -Spark provides a History Server that collects application logs from HDFS and displays them in a persistent web UI. The following steps will enable log persistance in HDFS: +Spark provides a History Server that collects application logs from HDFS and displays them in a persistent web UI. The following steps will enable log persistence in HDFS: 1. Edit `$SPARK_HOME/conf/spark-defaults.conf` and add the following lines to enable Spark jobs to log in HDFS: diff --git a/docs/databases/mariadb/how-to-install-mariadb-on-centos-7.md b/docs/databases/mariadb/how-to-install-mariadb-on-centos-7.md index 19d9dc77a6a..aecc4111ecd 100644 --- a/docs/databases/mariadb/how-to-install-mariadb-on-centos-7.md +++ b/docs/databases/mariadb/how-to-install-mariadb-on-centos-7.md @@ -18,7 +18,7 @@ external_resources: - '[MySQLdb User''s Guide](http://mysql-python.sourceforge.net/MySQLdb.html)' --- -MariaDB is a fork of the popular cross-platform MySQL database management system and is considered a full [drop-in replacement](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/) for MySQL. MariaDB was created by one of MySQL's originial developers in 2009 after MySQL was acquired by Oracle during the Sun Microsystems merger. Today MariaDB is maintained and developed by the [MariaDB Foundation](https://mariadb.org/en/foundation/) and community contributors with the intention of it remaining GNU GPL software. +MariaDB is a fork of the popular cross-platform MySQL database management system and is considered a full [drop-in replacement](https://mariadb.com/kb/en/mariadb/mariadb-vs-mysql-features/) for MySQL. MariaDB was created by one of MySQL's original developers in 2009 after MySQL was acquired by Oracle during the Sun Microsystems merger. Today MariaDB is maintained and developed by the [MariaDB Foundation](https://mariadb.org/en/foundation/) and community contributors with the intention of it remaining GNU GPL software. ![How to Install MariaDB on CentOS 7](/docs/assets/how-to-install-mariadb-on-centos-7.png) diff --git a/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu.md b/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu.md index 77fc1b1fbba..4d2af6df8f4 100644 --- a/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu.md +++ b/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu.md @@ -48,7 +48,7 @@ On Debian 9 and later, run `sudo apt install dirmngr` before importing the key. | Ubuntu 16.04 | 0xF1656F24C74CD1D8 | 10.1 | deb [arch=amd64,i386,ppc64el] http://mirror.nodesdirect.com/mariadb/repo/10.1/ubuntu xenial main | Ubuntu 16.04 | 0xF1656F24C74CD1D8 | 10.0 | deb [arch=amd64,i386,ppc64el] http://mirror.nodesdirect.com/mariadb/repo/10.1/ubuntu xenial main - There may not be a released version for each distribution. e.g. Debian 8 has version 10.0 and 10.1 whereas Debian 9 has only 10.1 available. To see all available distributions, visit the MariaDB reporsitory [download page](https://downloads.mariadb.org/mariadb/repositories/). + There may not be a released version for each distribution. e.g. Debian 8 has version 10.0 and 10.1 whereas Debian 9 has only 10.1 available. To see all available distributions, visit the MariaDB repository [download page](https://downloads.mariadb.org/mariadb/repositories/). 3. Install MariaDB, Galera, and Rsync: diff --git a/docs/databases/mongodb/build-database-clusters-with-mongodb.md b/docs/databases/mongodb/build-database-clusters-with-mongodb.md index d76c1e98e3a..79d0cfb2f50 100644 --- a/docs/databases/mongodb/build-database-clusters-with-mongodb.md +++ b/docs/databases/mongodb/build-database-clusters-with-mongodb.md @@ -371,7 +371,7 @@ bindIp: 192.0.2.5 mongo mongo-query-router:27017 -u mongo-admin -p --authenticationDatabase admin - If your query router has a different hostname, subsitute that in the command. + If your query router has a different hostname, substitute that in the command. 3. From the `mongos` interface, add each shard individually: @@ -392,7 +392,7 @@ Before adding replica sets as shards, you must first configure the replica sets ## Configure Sharding -At this stage, the components of your cluster are all connected and communicating with one another. The final step is to enable sharding. Enabling sharding takes place in stages due to the organization of data in MongoDB. To understand how data will be distrubuted, let's briefly review the main data structures: +At this stage, the components of your cluster are all connected and communicating with one another. The final step is to enable sharding. Enabling sharding takes place in stages due to the organization of data in MongoDB. To understand how data will be distributed, let's briefly review the main data structures: - **Databases** - The broadest data structure in MongoDB, used to hold groups of related data. - **Collections** - Analogous to tables in traditional relational database systems, collections are the data structures that comprise databases @@ -406,7 +406,7 @@ First, we'll enable sharding at the database level, which means that collections mongo mongo-query-router:27017 -u mongo-admin -p --authenticationDatabase admin - If applicable, subsitute your own query router's hostname. + If applicable, substitute your own query router's hostname. 2. From the `mongos` shell, create a new database. We'll call ours `exampleDB`: @@ -466,7 +466,7 @@ It's not always necessary to shard every collection in a database. Depending on ## Test Your Cluster -This section is optional. To ensure your data is being distributed evenly in the example database and collection we configured aboved, you can follow these steps to generate some basic test data and see how it is divided among the shards. +This section is optional. To ensure your data is being distributed evenly in the example database and collection we configured above, you can follow these steps to generate some basic test data and see how it is divided among the shards. 1. Connect to the `mongo` shell on your query router if you're not already there: diff --git a/docs/databases/mongodb/install-mongodb-on-centos-7.md b/docs/databases/mongodb/install-mongodb-on-centos-7.md index 864be6b404d..cc8b74fa1fb 100644 --- a/docs/databases/mongodb/install-mongodb-on-centos-7.md +++ b/docs/databases/mongodb/install-mongodb-on-centos-7.md @@ -177,7 +177,7 @@ If you enabled role-based access control in the [Configure MongoDB](#configure-m db.createUser({user: "example-user", pwd: "password", roles:[{role: "read", db: "user-data"}, {role:"readWrite", db: "exampleDB"}]}) - To create additional users, repeat Steps 6 and 7 as the administrative user, creating new usernames, passwords and roles by substituing the appropriate values. + To create additional users, repeat Steps 6 and 7 as the administrative user, creating new usernames, passwords and roles by substituting the appropriate values. 8. Exit the mongo shell: diff --git a/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04.md b/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04.md index 5151ea7aada..4d1b2c32252 100644 --- a/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04.md +++ b/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04.md @@ -34,7 +34,7 @@ Since MongoDB can require a significant amount of RAM, we recommend using a [hig - Update your system: - sudo apt-get update && sudo apt-get upgrade + sudo apt-get update && sudo apt-get upgrade {{< note >}} This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you’re not familiar with the `sudo` command, you can check our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. @@ -169,7 +169,7 @@ Successfully added user: { db.createUser({user: "example-user", pwd: "password", roles:[{role: "read", db: "user-data"}, {role:"readWrite", db: "exampleDB"}]}) - To create additional users, repeat Steps 6 and 7 as the administrative user, creating new usernames, passwords and roles by substituing the appropriate values. + To create additional users, repeat Steps 6 and 7 as the administrative user, creating new usernames, passwords and roles by substituting the appropriate values. 8. Exit the mongo shell: diff --git a/docs/databases/mysql/deploy-mysql-workbench-for-database-administration.md b/docs/databases/mysql/deploy-mysql-workbench-for-database-administration.md index ead9987e50d..07b588095c7 100644 --- a/docs/databases/mysql/deploy-mysql-workbench-for-database-administration.md +++ b/docs/databases/mysql/deploy-mysql-workbench-for-database-administration.md @@ -42,7 +42,7 @@ Download and install MySQL workbench from the [downloads page](https://www.mysql There are `.deb` and `.rpm` packages available on the Workbench [download page](https://www.mysql.com/products/workbench/). Alternatively, some distributions have MySQL Workbench in their repositories. {{< note >}} -The screenshots in this guide were taken in Ubuntu but once Workbench is installed on your system, the subsequent steps should be similar for other plaforms. +The screenshots in this guide were taken in Ubuntu but once Workbench is installed on your system, the subsequent steps should be similar for other platforms. {{< /note >}} When you start MySQL Workbench, you'll land at the home screen. Once you configure your database servers, as we'll do next, then they'll have shortcuts on the home screen. @@ -55,7 +55,7 @@ The first step after running MySQL Workbench is to add your Linode as a database 1. Click the **+** adjacent to **MySQL Connections** to get the **Setup New Connection** dialog: - [![The New Connection Dialog.](/docs/assets/workbenchHome-small.png)](/docs/assets/workbenchHome.png) + [![The New Connection Dialog.](/docs/assets/workbenchHome-small.png)](/docs/assets/workbenchHome.png) The settings you'll need: @@ -91,11 +91,11 @@ Pay attention to the **Service** area of each dialog. Use the appropriate passw 3. If all is well, you should get a **Connection Successful** message. - ![Connection Successful!](/docs/assets/workbenchGoodConnection.png) + ![Connection Successful!](/docs/assets/workbenchGoodConnection.png) 4. Click **OK** to clear the message, then click **OK** again to add the connection. You'll get a shortcut to the new connection on the home screen. - [![Shortcut to your database](/docs/assets/workbenchHomeWithLinode-small.png)](/docs/assets/workbenchHomeWithLinode.png) + [![Shortcut to your database](/docs/assets/workbenchHomeWithLinode-small.png)](/docs/assets/workbenchHomeWithLinode.png) If you have more than one Linode or other servers you administer, you can repeat this process to add all of your database servers. @@ -133,23 +133,23 @@ The user you just created should be able to log in to MySQL via Workbench or any MySQL Workbench is deployed in safe mode by default. This will not allow certain types of queries--such as updates--without explicit IDs. To fix this, we need to turn off safe mode. -1. Go to the menu and select **Edit**, then **Preferences**. +1. Go to the menu and select **Edit**, then **Preferences**. -2. Select the **SQL Queries** tab. +2. Select the **SQL Queries** tab. - ![The SQL Queries configuration page](/docs/assets/workbenchSQLqueries.png) + ![The SQL Queries configuration page](/docs/assets/workbenchSQLqueries.png) -3. Uncheck the line beginning with **"Safe Updates".** +3. Uncheck the line beginning with **"Safe Updates".** {{< note >}} In some instances, this may instead be found under **SQL Editor**. {{< /note >}} -4. Click **OK**. +4. Click **OK**. -5. Close the database screen to return to home. +5. Close the database screen to return to home. -6. Reconnect to the database. +6. Reconnect to the database. ## Creating and Populating Databases @@ -160,9 +160,9 @@ Start by adding a new database that you can work with. 1. Click the **New Schema** button on the toolbar. - ![The new schema button. Make sure you click the one with a plus, not the one with an i](/docs/assets/workbenchToolbarNewSchema.png) + ![The new schema button. Make sure you click the one with a plus, not the one with an i](/docs/assets/workbenchToolbarNewSchema.png) - [![The new schema dialog](/docs/assets/workbenchNewSchema-small.png)](/docs/assets/workbenchNewSchema.png) + [![The new schema dialog](/docs/assets/workbenchNewSchema-small.png)](/docs/assets/workbenchNewSchema.png) You only need a name to create the new database, but you can create an area for comments if you want. Default collation can be left blank, in which case MySQL will use the default. @@ -172,7 +172,7 @@ Start by adding a new database that you can work with. 3. Click **Apply** again and you should get a **SQL Succesful** message. Then click **Close**. - ![Our SQL has been successfully applied!](/docs/assets/workbenchSQLsuccessful.png) + ![Our SQL has been successfully applied!](/docs/assets/workbenchSQLsuccessful.png) Now you're back at the main database screen, and you see that **phonebook** has been added to the schema list. Double-click on any item in the schema list to switch to that database. @@ -184,7 +184,7 @@ MySQL stores its information in a table, which resembles a spreadsheet. 1. Click the **Add Table** button. - ![The add table button](/docs/assets/workbenchMenuButton.png) + ![The add table button](/docs/assets/workbenchMenuButton.png) You'll get a screen that looks like this: @@ -228,7 +228,7 @@ The first step to add table data is to open a table. 1. Right click on **employees** and select the top option, **SELECT ROWS - LIMIT 1000**. - ![A blank table ready for data](/docs/assets/workbenchEmptyTable.png) + ![A blank table ready for data](/docs/assets/workbenchEmptyTable.png) 2. Double click on **NULL** under **lastName**. At this point, you can start entering data. You must press ENTER after each field to exit editing or else the field will revert to its previous value. @@ -247,7 +247,7 @@ You can run a SQL query on a table by entering it at the top of the table view. 2. Click on the lightning bolt to run the query. You should get results like this: - [![Who is named Bob?](/docs/assets/workbenchSQLresults-small.png)](/docs/assets/workbenchSQLresults.png) + [![Who is named Bob?](/docs/assets/workbenchSQLresults-small.png)](/docs/assets/workbenchSQLresults.png) ### Export / Import Data diff --git a/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x.md b/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x.md index cf5b9bbfa5e..1c9672f7b46 100644 --- a/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x.md +++ b/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x.md @@ -42,7 +42,7 @@ Although PostgreSQL uses port 5432 for TCP connections, we're using the local po [![pgAdmin III default view on Mac OS X](/docs/assets/pg-admin-macosx-add-server.png)](/docs/assets/pg-admin-macosx-add-server.png) -2. If you're having problems connectiong you may need to check PostgreSQL's configuration to ensure it accepts connections. Modify the following lines in `/etc/postgresql/9.5/main/postgresql.conf` if necessary: +2. If you're having problems connecting, you may need to check PostgreSQL's configuration to ensure it accepts connections. Modify the following lines in `/etc/postgresql/9.5/main/postgresql.conf` if necessary: {{< file-excerpt "/etc/postgresql/9.5/main/postgresql.conf" aconf >}} listen_addresses = 'localhost' diff --git a/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker.md b/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker.md index 90737c7ff34..ab9c7f35484 100644 --- a/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker.md +++ b/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker.md @@ -368,7 +368,7 @@ Click the **Workflows** tab in the Wercker dashboard. The editor will show a sin ![Workflow screen](/docs/assets/wercker/wercker-workflow-01.jpg "Workflow screen") -5. Next you need to define the environmental variables, but this time you will do it inside each pipeline and not globally. On the Workflows tab, click the **deploy-docker** pipeline at the botton of the screen. Here you can create the variables. There are two variables from this example's `wercker.yml` that must be defined here: `DOCKER_USERNAME` and `DOCKER_PASSWORD`. Create them and mark the password as **protected**. +5. Next you need to define the environmental variables, but this time you will do it inside each pipeline and not globally. On the Workflows tab, click the **deploy-docker** pipeline at the bottom of the screen. Here you can create the variables. There are two variables from this example's `wercker.yml` that must be defined here: `DOCKER_USERNAME` and `DOCKER_PASSWORD`. Create them and mark the password as **protected**. 6. Select the **deploy-linode** pipeline and create an SSH key pair, similar to the last example. Remember to copy the public key to your remote server. @@ -408,7 +408,7 @@ The final example demonstrates the Wercker CLI. ![Wercker CLI build](/docs/assets/wercker/wercker-cli-build.jpg "Wercker CLI build") - The output should be similar to the logs you saw on the Wercker dashboard. The difference is that you can check each step locally and detect any errors early in the process. The Wercler CLI replicates the SaaS behavior: it downloads specified images, builds, tests and shows errors. Since the CLI is a development tool intended to facilitate local testing, you will not be able to deploy the end result remotely. + The output should be similar to the logs you saw on the Wercker dashboard. The difference is that you can check each step locally and detect any errors early in the process. The Wercker CLI replicates the SaaS behavior: it downloads specified images, builds, tests and shows errors. Since the CLI is a development tool intended to facilitate local testing, you will not be able to deploy the end result remotely. 3. Build the application with Go: diff --git a/docs/development/java/java-development-wildfly-centos-7.md b/docs/development/java/java-development-wildfly-centos-7.md index df70e449955..48349e5b808 100644 --- a/docs/development/java/java-development-wildfly-centos-7.md +++ b/docs/development/java/java-development-wildfly-centos-7.md @@ -407,7 +407,7 @@ You can test your installation successfully by opening a browser and typing the There are multiple ways for setting Apache HTTP to direct calls to WildFly (mod_jk, mod_proxy, mod_cluster), the decision mainly to select mod_jk was based on [this article](http://www.programering.com/a/MTO3gDMwATg.html) that its content is distributed across several sites, you will find detailed pros & cons. -1. `mod_jk` provided by Tomcat needs to be built on the server, thats why you need to install build & make tools to your linode using following command: +1. `mod_jk` provided by Tomcat needs to be built on the server, that's why you need to install build & make tools to your Linode using following command: sudo yum install httpd-devel gcc gcc-c++ make libtool sudo ln -s /usr/bin/apxs /usr/sbin/apxs @@ -471,7 +471,7 @@ JKShmFile /var/tmp/jk-runtime-status sudo systemctl restart httpd -7. Try the URL `http://123.45.67.89/jkstatus`, repalcing `123.45.67.89` with your Linode IP. It should display a page for "JK Status Manager". +7. Try the URL `http://123.45.67.89/jkstatus`, replacing `123.45.67.89` with your Linode IP. It should display a page for "JK Status Manager". 8. We need to configure WildFly for accepting calls from Apache HTTP, Open the admin console, and selection the **Configuration** Menu -> **Web** -> **HTTP**. Then click the **View** link beside the **default-server**. diff --git a/docs/development/monitor-filesystem-events-with-pyinotify.md b/docs/development/monitor-filesystem-events-with-pyinotify.md index 28adefe3876..9753017471d 100644 --- a/docs/development/monitor-filesystem-events-with-pyinotify.md +++ b/docs/development/monitor-filesystem-events-with-pyinotify.md @@ -45,7 +45,7 @@ Installing pyinotify within a virtual environment is highly recommended. This gu ### Create an Event Processor -Similar to events in inotify, the Python implementation will be through an `EventProcessor` object with method names containing "process_" that is appended before the event name. For example, `IN_CREATE` in pyintotify though the `EventProcessor` will be `process_IN_CREATE`. The table below lists the inotify events used in this guide. In depth descriptions can be found in th [man pages of inntify](http://man7.org/linux/man-pages/man7/inotify.7.html). +Similar to events in inotify, the Python implementation will be through an `EventProcessor` object with method names containing "process_" that is appended before the event name. For example, `IN_CREATE` in pyintotify though the `EventProcessor` will be `process_IN_CREATE`. The table below lists the inotify events used in this guide. In depth descriptions can be found in th [man pages of inotify](http://man7.org/linux/man-pages/man7/inotify.7.html). | Inotify Events | Description | | ------------------- |:------------------------------------------------------------------------ | diff --git a/docs/development/nodejs/how-to-install-nodejs.md b/docs/development/nodejs/how-to-install-nodejs.md index b563b74030e..3beaa5fdcd7 100644 --- a/docs/development/nodejs/how-to-install-nodejs.md +++ b/docs/development/nodejs/how-to-install-nodejs.md @@ -38,7 +38,7 @@ Your distro's repos will likely contain an LTS release of Node.js. This is a goo [NPM](#node-package-manager-npm) (Node Package Manager) is included with installations of Node.js by other methods, but not here; `npm` is a separate package from `nodejs` and must be installed separately. {{< note >}} -Node.js from the distro's repositories in Debian 7 or 8, or Ubuntu 12.04 or 14.04 confict with the [Amateur Packet Radio Node program](https://packages.debian.org/jessie/node). In this scenario, calling Node.js requires that you use the command `nodejs -$option` instead of the standard `node -$option`. One workaround is to install the package `nodejs-legacy`, which maintains a symlink from `/usr/bin/node` to `/usr/bin/nodejs` so the normal `node` commands can be used. +Node.js from the distro's repositories in Debian 7 or 8, or Ubuntu 12.04 or 14.04 conflict with the [Amateur Packet Radio Node program](https://packages.debian.org/jessie/node). In this scenario, calling Node.js requires that you use the command `nodejs -$option` instead of the standard `node -$option`. One workaround is to install the package `nodejs-legacy`, which maintains a symlink from `/usr/bin/node` to `/usr/bin/nodejs` so the normal `node` commands can be used. {{< /note >}} @@ -64,4 +64,4 @@ A typical installation of Node.js includes the [Node Package Manager](https://gi ## Making a Quick Decision (the tl:dr) -Still not sure which installation method to use? Then [NVM](#node-version-manager) will probably be your best choice to start with. NVM faciliates easy installation and maintenance of Node.js and NPM, presents no naming issues with other software, and easily manages multple installations of Node.js that can test your application before you push a Node.js update into your production environment. +Still not sure which installation method to use? Then [NVM](#node-version-manager) will probably be your best choice to start with. NVM facilitates easy installation and maintenance of Node.js and NPM, presents no naming issues with other software, and easily manages multiple installations of Node.js that can test your application before you push a Node.js update into your production environment. diff --git a/docs/development/python/task-queue-celery-rabbitmq.md b/docs/development/python/task-queue-celery-rabbitmq.md index 6e0b738e382..f215e03799b 100644 --- a/docs/development/python/task-queue-celery-rabbitmq.md +++ b/docs/development/python/task-queue-celery-rabbitmq.md @@ -19,7 +19,7 @@ external_resources: Celery is a Python Task-Queue system that handle distribution of tasks on workers across threads or network nodes. It makes asynchronous task management easy. Your application just need to push messages to a broker, like RabbitMQ, and Celery workers will pop them and schedule task execution. -Celery can be used in multiple configuration. Most frequent uses are horizontal application scalling by running ressource intensive tasks on Celery workers distributed accross a cluster, or to manage long asynchronous tasks in a web app, like thumbnail generation when a user post an image. This guide will take you through installation and usage of Celery with an example application that delegate file downloads to Celery workers, using Python 3, Celery 4.1.0, and RabbitMQ. +Celery can be used in multiple configuration. Most frequent uses are horizontal application scaling by running resource intensive tasks on Celery workers distributed across a cluster, or to manage long asynchronous tasks in a web app, like thumbnail generation when a user post an image. This guide will take you through installation and usage of Celery with an example application that delegate file downloads to Celery workers, using Python 3, Celery 4.1.0, and RabbitMQ. ## Before You Begin @@ -41,7 +41,7 @@ This guide is written for a non-root user. Commands that require elevated privil ## Install Celery -Celery is available from PyPI. The easiest and recommand way is to install it with `pip`. You can go for a system wide installation for simplicity, or use a virtual environment if other Python applications runs on your system. This last method installs the libraries on a per project basis and prevent version conflicts with other applications. +Celery is available from PyPI. The easiest and recommended way is to install it with `pip`. You can go for a system wide installation for simplicity, or use a virtual environment if other Python applications runs on your system. This last method installs the libraries on a per project basis and prevent version conflicts with other applications. ### System Wide Installation @@ -293,7 +293,7 @@ celery@celery: OK - empty - {{< /output >}} -3. Use the **inspect stats** command to get statistics about the workers. It gives lot of informations, like worker ressource usage under `rusage` key, or the total tasks completed under `total` key. +3. Use the **inspect stats** command to get statistics about the workers. It gives lot of information, like worker resource usage under `rusage` key, or the total tasks completed under `total` key. celery -A downloaderApp inspect stats diff --git a/docs/development/use-a-linode-for-web-development-on-remote-devices.md b/docs/development/use-a-linode-for-web-development-on-remote-devices.md index c615a53c589..c537bebde74 100644 --- a/docs/development/use-a-linode-for-web-development-on-remote-devices.md +++ b/docs/development/use-a-linode-for-web-development-on-remote-devices.md @@ -26,7 +26,7 @@ This guide will walk you through the necessary steps to configure your Linode to ## Development Environments -### Local Development Enviroment +### Local Development Environment A local development environment is usually faster, more powerful, and more comfortable than a remote environment. However, there some drawbacks associated with local development: @@ -225,4 +225,4 @@ With everything set up it's time to work with your remote development environmen You now have a basic but powerful setup that allows you to work from any device with an internet connection. -The main limitation of a tablet is its storage capacity. An efficient way to set up a centralized storage space is by using OwnCloud on a Linode with [block storage](/docs/platform/how-to-use-block-storage-with-your-linode/). This way you can host all your archives, dotfiles, scripts, images and more in a scalable Linode. An additional benefit is the possibility to connect external storages like Dropbox, Google Drive or OneDrive. OwnCloud has native applications for Android and iOS so managing your assets won't be a problem. You can install and configure ownCloud by following our [ownCloud guide](/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04). +The main limitation of a tablet is its storage capacity. An efficient way to set up a centralized storage space is by using OwnCloud on a Linode with [block storage](/docs/platform/how-to-use-block-storage-with-your-linode/). This way you can host all your archives, dotfiles, scripts, images and more in a scalable Linode. An additional benefit is the possibility to connect external storage services like Dropbox, Google Drive or OneDrive. OwnCloud has native applications for Android and iOS so managing your assets won't be a problem. You can install and configure ownCloud by following our [ownCloud guide](/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04). From 2f0a710c6fa8502fc9d388c842dcc8e091e6b16b Mon Sep 17 00:00:00 2001 From: cwlinode Date: Wed, 31 Jan 2018 15:01:23 -0500 Subject: [PATCH 08/25] Rebuild theme --- themes/docsmith/layouts/partials/includes_body_end_prod.html | 2 +- .../build/js/{main-3aa5f99fd5.min.js => main-fdd67cf8b1.min.js} | 2 +- themes/docsmith/static/build/js/main.min.js | 2 +- themes/docsmith/static/build/lunr-1ecd3dff3d.json | 1 - themes/docsmith/static/build/lunr-d279bb9616.json | 1 + themes/docsmith/static/build/lunr.json | 2 +- 6 files changed, 5 insertions(+), 5 deletions(-) rename themes/docsmith/static/build/js/{main-3aa5f99fd5.min.js => main-fdd67cf8b1.min.js} (98%) delete mode 100644 themes/docsmith/static/build/lunr-1ecd3dff3d.json create mode 100644 themes/docsmith/static/build/lunr-d279bb9616.json diff --git a/themes/docsmith/layouts/partials/includes_body_end_prod.html b/themes/docsmith/layouts/partials/includes_body_end_prod.html index 84df4dc97f1..2c1b9dab4df 100644 --- a/themes/docsmith/layouts/partials/includes_body_end_prod.html +++ b/themes/docsmith/layouts/partials/includes_body_end_prod.html @@ -11,4 +11,4 @@ --> - + diff --git a/themes/docsmith/static/build/js/main-3aa5f99fd5.min.js b/themes/docsmith/static/build/js/main-fdd67cf8b1.min.js similarity index 98% rename from themes/docsmith/static/build/js/main-3aa5f99fd5.min.js rename to themes/docsmith/static/build/js/main-fdd67cf8b1.min.js index d93c1431a7e..84c73b25a6c 100644 --- a/themes/docsmith/static/build/js/main-3aa5f99fd5.min.js +++ b/themes/docsmith/static/build/js/main-fdd67cf8b1.min.js @@ -1 +1 @@ -!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('

')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-1ecd3dff3d.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file +!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-d279bb9616.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file diff --git a/themes/docsmith/static/build/js/main.min.js b/themes/docsmith/static/build/js/main.min.js index d93c1431a7e..84c73b25a6c 100644 --- a/themes/docsmith/static/build/js/main.min.js +++ b/themes/docsmith/static/build/js/main.min.js @@ -1 +1 @@ -!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-1ecd3dff3d.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file +!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-d279bb9616.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr-1ecd3dff3d.json b/themes/docsmith/static/build/lunr-1ecd3dff3d.json deleted file mode 100644 index 12226620d30..00000000000 --- a/themes/docsmith/static/build/lunr-1ecd3dff3d.json +++ /dev/null @@ -1 +0,0 @@ -{"store":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[0,2.033,1,5.003,2,0.912,3,0.812,4,1.124,5,3.73,6,2.422]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[7,5.838,8,4.179,9,6.48,10,6.48]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[1,8.971,2,1.636,5,5.266,6,3.42,11,1.897,12,1.909,13,0.066,14,1.215,15,2.441]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[7,5.986,13,0.058,16,0.785,17,1.292]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[7,5.838,8,4.179,9,6.48,10,6.48]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[1,6.752,7,8.325,13,0.063,16,0.845,17,1.392,18,3.793,19,5.315,20,3.009,21,2.343,22,7.776,23,7.159,24,5.68]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[25,5.761,26,7.218,27,6.268,28,6.268]],["keywords//docs/platform/meltdown_statement/",[27,6.112,28,6.112,29,5.279,30,3.461]],["toc//docs/platform/meltdown_statement/",[25,3.226,27,5.46,28,3.51,29,3.031,30,3.795,31,4.042,32,4.042,33,7.222,34,4.042,35,4.042,36,1.67,37,4.042,38,4.042,39,6.288,40,3.031,41,4.485,42,4.593,43,6.288,44,2.883,45,2.876,46,1.213,47,6.288,48,1.809,49,3.51,50,4.042,51,4.042,52,4.593,53,2.02,54,3.721,55,2.82,56,2.238,57,2.308,58,1.913,59,3.031,60,3.51,61,4.042,62,4.042]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[13,0.058,63,2.884,64,5.573,65,6.645]],["keywords//docs/development/python/install_python_miniconda/",[65,7.109,66,7.722,67,7.722]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[13,0.064,68,3.482,69,6.086]],["keywords//docs/applications/containers/install_docker_ce/",[68,3.411,70,4.147,71,7.722]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[13,0.064,68,3.482,72,5.911]],["keywords//docs/applications/containers/install_docker_compose/",[68,3.411,70,4.147,73,7.722]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[13,0.064,74,4.042,75,2.45]],["keywords//docs/development/version-control/how-to-install-git-linux/",[74,3.959,75,2.4,76,4.584]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[13,0.064,74,4.042,77,4.565]],["keywords//docs/development/version-control/how-to-install-git-mac/",[74,3.959,76,4.584,77,4.472]],["toc//docs/development/version-control/how-to-install-git-mac/",[13,0.095,21,2.343,74,5.7,78,7.197,79,7.159,80,7.159]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[13,0.064,74,4.042,81,4.007]],["keywords//docs/development/version-control/how-to-install-git-windows/",[74,3.959,76,4.584,81,3.925]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[82,5.09,83,7.2]],["keywords//docs/development/introduction-to-websockets/",[83,5.838,84,4.636,85,7.039,86,7.039]],["toc//docs/development/introduction-to-websockets/",[2,1.109,83,10.412,87,4.614,88,7.006,89,1.412,90,3.017,91,5.253,92,5.81,93,6.449,94,6.449,95,3.501]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[3,1.111,68,3.482,72,5.911]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[68,3.777,72,6.412]],["toc//docs/applications/containers/how-to-use-docker-compose/",[4,1.07,11,1.279,12,1.287,13,0.064,48,2.454,68,4.095,69,4.234,72,6.952,96,1.944,97,4.006,98,1.678,99,3.826,100,2.812,101,2.133,102,5.049,103,4.762,104,3.911,105,3.076,106,3.247,107,2.504,108,3.39,109,2.454,110,3.39,111,2.422]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[98,2.209,112,7.218,113,5.986,114,6.268]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[63,3.085,114,6.705,115,7.722]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,1.14,13,0.066,46,1.699,63,2.261,78,3.664,98,1.732,114,9.454,116,5.66,117,1.601,118,4.914,119,9.435,120,4.432,121,5.66,122,2.928,123,5.66,124,3.727,125,5.66,126,3.795,127,3.948,128,4.036]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[68,3.482,70,4.234,90,3.395]],["keywords//docs/applications/containers/docker-container-communication/",[68,3.109,70,3.781,129,1.718,130,7.039]],["toc//docs/applications/containers/docker-container-communication/",[3,0.761,11,1.259,12,1.267,13,0.063,14,0.807,15,1.621,68,4.449,69,4.17,70,5.41,72,4.05,89,1.089,90,3.958,101,2.101,129,1.318,131,2.872,132,3.767,133,0.301,134,2.37,135,3.851,136,3.767,137,3.056,138,1.385,139,3.206,140,3.388]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[138,1.851,141,2.079,142,3.467,143,5.986]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[17,1.26,141,2.028,143,5.838,144,5.618]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[11,1.32,12,1.328,14,0.846,15,1.699,78,5.236,95,2.829,104,4.036,117,1.601,133,0.315,138,2.42,141,3.136,142,3.884,144,7.53,145,6.064,146,2.365,147,3.203,148,3.134,149,2.621,150,5.21]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[3,1.017,4,1.408,5,4.673,6,3.035]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[4,1.506,6,3.246,151,7.109]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[2,1.238,4,1.053,5,5.062,6,3.287,11,1.259,12,1.267,13,0.063,63,3.123,89,1.576,133,0.301,137,3.056,138,1.385,152,1.64,153,3.496,154,4.689,155,2.872,156,3.556,157,2.483,158,4.689,159,4.17,160,2.872,161,4.478,162,3.851,163,3.621,164,4.478,165,3.206,166,4.972]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[15,2.167,129,1.761,134,3.168,167,4.462]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[134,2.625,168,3.873,169,3.348,170,5.982,171,5.982,172,5.982]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[11,1.667,12,1.677,48,3.198,111,3.157,129,2.603,142,3.433,169,4,173,4.627,174,4.792,175,5.097,176,7.147,177,4.986,178,4.243,179,4.19,180,5.097]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[109,3.23,181,4.462,182,6.645,183,6.645]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[181,5.813,184,7.039,185,5.618]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[3,1.067,11,1.204,12,1.212,46,1.55,98,1.58,161,4.282,169,2.89,181,3.192,182,9.08,183,9.08,185,8.38,186,3.987,187,5.164,188,2.625,189,4.754,190,7.567,191,4.747,192,4.484,193,3.682,194,3.987,195,3.772,196,2.374,197,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[98,1.89,117,1.747,146,2.581,198,3.317,199,5.122,200,5.363]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[200,6.705,201,4.774,202,7.722]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[2,1.446,11,1.571,12,1.581,13,0.09,129,1.644,200,5.851,203,4,204,0.92,205,1.927,206,1.722,207,6.738,208,2.493,209,3.015,210,4.166,211,4.363,212,4.606]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,0.871,45,1.883,142,2.967,205,1.766,213,3.621,214,4.405]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[45,1.823,68,2.642,70,3.213,142,2.873,214,4.266,215,5.507]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,1.173,4,0.89,13,0.067,14,0.682,15,1.37,45,1.391,46,1.37,48,2.042,68,2.016,70,4.471,90,2.973,98,1.397,111,2.016,120,2.144,138,1.17,142,3.998,155,2.427,164,3.785,213,4.88,214,3.255,215,6.354,216,4.711,217,4.564,218,4.564,219,4.564,220,3.963,221,4.564,222,3.785,223,4.564,224,2.427,225,4.564]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[2,0.804,3,0.716,4,0.99,117,1.436,141,1.463,146,2.122,205,1.452,226,3.808,227,2.907]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[4,1.085,117,1.574,205,1.591,227,3.185,228,5.564,229,5.564,230,5.564]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[3,0.75,4,1.037,11,1.24,12,1.248,13,0.074,89,1.072,133,0.296,226,5.799,227,5.215,231,4.411,232,2.829,233,4.107,234,2.446,235,3.793,236,6.171,237,9.111,238,9.111,239,6.413,240,4.245,241,4.411,242,5.319,243,4.245,244,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[245,6.268,246,3.669,247,6.645,248,6.645]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[63,2.584,109,2.894,245,5.616,249,6.468,250,6.468]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[13,0.069,14,0.709,15,1.425,63,1.897,93,4.371,100,2.434,106,1.95,109,2.125,179,2.783,205,1.357,208,1.756,209,2.125,245,4.122,247,7.848,248,8.715,251,2.111,252,4.748,253,3.56,254,3.312,255,5.675,256,4.748,257,2.657,258,3.666,259,3.937,260,4.748,261,2.783,262,3.127,263,7.111,264,4.748,265,4.371,266,4.748,267,2.818,268,3.666]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[13,0.054,17,1.192,19,4.55,141,1.917,144,5.313]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[17,1.26,141,2.028,143,5.838,144,5.618]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[3,0.688,11,1.138,12,1.145,13,0.059,78,4.698,89,0.984,129,1.19,133,0.404,143,4.046,144,8.185,150,4.491,157,3.337,205,2.477,269,4.879,270,4.491,271,3.403,272,3.894,273,4.7,274,1.19,275,2.48,276,3.564,277,3.403,278,4.866,279,3.061,280,2.343,281,2.974,282,1.779]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[133,0.483,134,3.81]],["keywords//docs/databases/postgresql/configure-postgresql/",[129,1.358,134,2.442,168,3.602,283,2.442,284,5.564,285,5.564,286,5.564]],["toc//docs/databases/postgresql/configure-postgresql/",[11,1.486,12,1.496,98,1.95,127,4.447,129,1.555,133,0.489,134,3.858,168,4.127,279,3.999,287,4.198,288,6.374,289,3.674,290,3.941,291,3.358,292,6.374,293,6.374,294,1.752,295,3.074,296,6.374]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[2,0.855,6,2.269,16,0.587,89,1.088,117,1.527,146,2.256,297,5.398,298,4.687]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[6,2.515,16,0.65,117,1.692,298,5.194,299,5.982,300,5.982]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[2,1.186,11,1.187,12,1.194,13,0.072,20,1.969,77,2.948,81,2.587,89,1.026,95,4.895,105,1.689,124,3.352,133,0.283,211,3.295,212,3.478,251,2.263,280,2.445,298,9.799,301,2.234,302,4.062,303,5.089,304,4.685,305,3.478,306,3.717,307,2.948,308,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[91,5.413,141,2.079,309,5.148,310,6.268]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[63,2.584,141,1.863,310,5.616,311,6.468,312,6.468]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[13,0.067,14,0.874,15,1.755,36,2.415,46,1.755,63,2.336,64,4.515,89,1.937,91,6.206,106,2.402,152,1.775,156,3.85,309,4.17,310,5.077,313,3.786,314,5.383,315,9.606,316,5.847,317,4.17,318,2.375,319,4.079,320,5.847]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[3,1.017,321,6.268,322,4.84,323,6.645]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[321,4.831,322,3.731,323,5.122,324,4.614,325,4.831,326,5.122,327,3.968]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[13,0.053,46,3.049,81,3.299,89,1.309,98,1.986,133,0.361,321,10.712,324,5.383,325,5.636,326,5.976,327,6.348,328,2.762]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[3,0.871,109,2.764,329,5.363,330,4.93,331,5.686,332,5.363]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[63,2.584,329,5.616,333,5.954,334,5.954,335,6.468]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[3,0.533,11,0.882,12,0.888,13,0.068,14,1.105,17,0.677,19,2.585,36,1.563,41,2.697,63,1.511,64,2.921,76,2.245,89,0.763,106,1.554,117,1.07,141,1.089,146,1.581,157,1.739,160,2.012,216,3.379,224,2.012,259,3.137,262,2.491,294,2.032,328,1.609,329,7.292,333,3.482,334,6.808,336,3.482,337,2.639,338,3.782,339,1.036,340,3.865,341,2.069,342,2.449,343,3.782,344,3.782,345,0.541,346,3.482,347,2.763,348,2.191,349,2.275,350,2.275,351,1.79,352,2.697,353,2.639]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[14,0.923,15,1.854,180,4.405,354,5.686,355,5.363,356,5.686]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[63,2.584,180,4.612,283,2.838,355,5.616,357,6.468]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[11,1.204,12,1.212,13,0.085,36,3.7,63,3.023,64,3.987,101,2.009,141,2.18,180,3.682,216,4.283,262,3.401,283,3.321,294,1.419,336,4.754,339,1.414,355,9.117,356,4.754,358,6.039,359,3.682,360,5.164,361,5.164]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[0,2.782,137,4.461,362,6.845]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[68,3.109,70,3.781,362,6.112,363,5.838]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[0,2.291,13,0.082,68,2.867,69,5.012,105,2.154,106,2.666,137,3.674,138,1.665,216,3.674,362,9.491,364,2.367,365,4.436,366,3.957,367,5.012,368,4.528,369,5.976,370,4.868]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,2.18,4,1.205,13,0.05,133,0.344,283,2.711,363,5.122]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,2.282,4,1.262,68,2.857,70,3.474,363,5.363]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,1.698,4,0.939,11,1.122,12,1.129,13,0.07,14,0.719,45,2.189,68,3.173,106,1.977,133,0.268,138,1.234,147,4.864,148,3.977,197,3.515,283,3.152,363,9.447,364,1.755,371,3.066,372,2.61,373,1.758,374,3.991,375,4.812,376,4.812,377,4.812,378,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[3,1.224,68,3.835]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[68,3.411,70,4.147,379,7.722]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[3,1.547,68,5.24,140,5.62,380,7.429]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[3,0.871,24,4.512,201,3.819,204,0.843,339,1.691,381,5.686]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[382,4.831,383,5.564,384,5.564,385,4.064,386,5.564,387,5.564,388,5.564]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[2,1.205,13,0.062,45,2.319,53,3.803,68,3.361,90,3.277,291,4.009,381,10.128,385,5.558,389,4.576,390,1.666,391,6.072]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[16,0.785,100,3.701,178,4.285,392,6.268]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[178,4.179,392,6.112,393,6.48,394,7.039]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[0,1.183,11,0.782,12,0.787,13,0.044,14,0.501,15,1.006,36,1.385,99,2.338,100,1.719,101,2.109,131,1.783,133,0.187,145,2.514,152,1.646,160,1.783,178,1.99,192,2.911,241,2.78,254,2.338,257,1.876,262,2.207,267,1.99,268,2.588,287,2.207,318,1.361,341,1.162,392,7.474,393,7.217,395,3.352,396,3.352,397,3.138,398,2.911,399,2.072,400,5.421,401,5.421,402,1.965,403,3.352,404,3.352,405,2.588,406,3.086,407,2.78,408,2.103,409,3.352,410,8.608,411,3.352,412,2.78,413,3.352,414,5.421,415,3.352,416,3.352,417,2.78,418,3.352,419,3.352,420,3.352]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[14,0.995,15,1.998,16,0.724,421,5.52,422,3.444]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[421,7.091,422,4.424]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[2,1.392,13,0.052,14,0.952,15,1.913,30,3.134,36,2.633,48,2.852,57,1.906,90,3.786,95,4.393,105,2.115,111,2.815,133,0.355,152,1.935,280,3.062,281,3.886,421,8.994]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[423,6.645,424,5.761,425,5.986,426,6.268]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[63,2.812,424,5.618,426,6.112,427,3.675]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[3,0.824,11,1.363,12,1.372,13,0.047,53,2.922,89,1.179,98,1.789,106,2.402,133,0.325,365,3.996,368,4.079,424,6.605,425,6.863,426,7.186,427,3.052,428,5.077,429,4.977,430,5.847,431,3.85,432,5.847,433,3.273,434,5.847,435,2.808,436,5.847]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[0,2.349,3,0.938,101,2.59,213,3.902,437,5.78]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[68,3.411,213,4.527,437,6.705]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[11,1.122,12,1.129,14,1.073,15,2.156,36,1.988,48,2.153,76,2.857,101,3.343,106,1.977,111,2.126,131,5.895,133,0.4,437,8.854,438,4.812,439,2.277,440,2.723,441,4.812,442,3.609,443,4.812,444,7.183,445,3.169,446,4.179,447,5.123,448,4.812]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[3,0.938,45,2.029,216,3.767,220,5.78,449,5.78]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[45,2.146,55,4.911,402,4.127,449,6.112]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[0,1.698,2,1.361,11,1.122,12,1.129,13,0.07,16,0.523,18,2.348,45,2.905,46,1.444,55,5.011,96,2.547,100,2.467,131,2.56,133,0.53,139,2.857,152,1.461,177,3.357,209,3.214,402,2.821,405,3.716,446,4.179,449,7.463,450,3.019,451,2.933,452,4.179,453,2.894]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[45,2.029,46,1.998,106,2.734,454,5.52,455,4.058]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[351,3.06,454,5.363,455,3.943,456,2.282,457,4.85]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[106,4.439,122,4.52,177,6.095,454,8.961,455,6.587]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[458,6.537,459,7.882,460,6.086]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[29,4.85,458,5.363,460,4.994,461,6.468,462,6.468]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[11,2.089,12,2.102,13,0.073,82,5.252,294,2.462,458,7.429,460,6.917]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[3,1.017,271,5.035,463,5.573,464,5.413]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[463,5.962,465,6.163,466,5.791]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[11,1.897,12,1.909,13,0.066,133,0.575,141,2.343,271,5.674,341,2.819,389,4.892,463,6.28,464,6.1]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[3,1.017,16,0.785,18,3.521,467,6.268]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[467,4.516,468,4.788,469,5.2,470,4.15,471,5.2,472,4.15,473,4.788,474,4.015]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,1.107,12,1.114,13,0.038,15,1.425,89,0.957,109,2.125,156,3.127,177,3.312,188,2.413,272,3.789,337,3.312,397,2.183,405,3.666,467,9.58,470,3.789,472,5.675,473,7.848,474,7.828,475,4.748,476,4.748,477,8.525,478,8.525,479,4.748,480,4.371,481,4.748]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,0.761,133,0.3,186,4.168,201,4.832,220,4.687,294,1.483,482,3.555]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[482,5.085,483,7.109,484,7.722]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,0.506,11,0.837,12,0.843,13,0.029,14,0.856,15,1.719,45,1.094,46,1.078,53,1.794,78,2.325,89,1.441,98,1.753,126,2.407,133,0.454,186,5.518,201,6.762,216,2.032,273,1.948,318,1.458,341,1.244,345,0.513,433,2.01,450,2.252,482,6.816,485,3.118,486,5.316,487,2.159,488,2.287,489,2.772,490,3.118,491,2.325,492,3.305,493,2.56,494,3.305,495,3.59]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[109,2.764,201,3.819,496,4.632,497,3.765,498,5.686,499,5.686]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[110,3.44,181,3.44,309,3.968,470,4.44,497,3.392,500,5.564,501,4.44]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[2,0.679,3,0.928,11,1,12,1.006,13,0.035,14,0.983,15,1.975,45,1.307,46,1.287,48,1.918,95,2.143,106,1.761,110,4.069,111,1.894,133,0.239,147,3.725,155,2.28,205,1.226,208,1.586,267,2.545,273,3.57,328,1.824,337,2.991,349,2.578,498,9.419,499,8.272,502,6.581,503,2.776,504,6.581,505,3.555,506,3.555,507,6.581,508,3.723]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[14,0.759,15,1.524,45,1.548,122,2.627,177,3.542,204,0.693,341,1.76,509,2.842,510,2.701]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[511,6.112,512,6.112,513,7.039,514,6.112]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[11,1.813,12,1.825,13,0.063,122,4.023,133,0.559,138,1.994,204,1.061,339,2.129,486,4.352,509,6.222]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[13,0.044,133,0.3,283,2.369,341,1.871,515,4.687,516,4.308,517,4.308,518,4.308]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[515,6.112,517,5.618,518,5.618,519,6.112]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[11,0.921,12,0.927,13,0.032,20,1.529,48,1.768,70,2.122,95,3.088,101,2.959,133,0.479,141,1.138,148,2.188,191,4.773,211,2.558,283,3.339,287,2.602,341,1.37,342,2.558,372,5.064,501,3.154,515,9.552,518,6.072,520,3.431,521,7.47,522,3.638,523,3.638,524,2.757,525,3.638,526,3.952,527,3.277,528,2.044]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[2,0.855,117,1.527,146,2.256,226,4.048,227,3.09,240,4.308,274,1.317,529,4.969]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[530,6.404,531,7.109,532,7.722]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[2,0.633,4,0.779,5,4.036,6,2.62,11,0.932,12,0.938,13,0.081,14,0.597,15,1.2,46,1.2,57,1.195,87,2.632,90,1.721,106,1.642,124,2.632,133,0.347,138,1.025,204,0.545,211,2.587,212,2.731,226,4.674,227,4.386,236,6.116,239,7.783,294,1.098,307,2.314,456,1.41,457,4.674,529,7.968,530,3.314,533,3.996,534,3.996,535,3.996,536,5.412]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[13,0.047,14,0.861,15,1.729,64,4.448,147,3.26,283,2.528,517,4.598]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[517,6.163,518,6.163,519,6.705]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[11,0.69,12,0.694,14,1.204,20,1.145,36,2.022,48,1.324,58,1.4,89,0.597,98,1.498,109,1.324,111,1.307,133,0.483,138,0.759,141,1.803,147,4.117,148,1.639,153,1.916,196,1.361,216,1.675,254,2.064,283,2.148,291,1.559,294,0.813,295,1.035,341,1.697,372,2.655,378,1.885,452,2.57,489,2.285,517,5.806,518,6.929,519,7.539,520,2.57,521,4.251,527,2.454,537,4.251,538,2.454,539,2.11,540,2.959,541,2.959,542,2.724,543,3.224,544,2.454,545,2.724,546,2.724,547,2.57,548,2.454,549,2.454,550,3.071,551,2.57,552,2.959]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[553,5.52,554,4.176,555,5.313,556,6.128,557,5.313]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[63,2.223,558,5.564,559,5.122,560,5.122,561,5.122,562,5.564,563,5.564]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[11,1.32,12,1.328,13,0.046,14,1.208,15,2.427,48,2.533,63,2.261,87,6.214,89,1.141,111,2.5,129,1.381,138,1.451,152,1.719,216,3.203,339,2.214,364,2.064,555,4.517,556,7.445,560,5.21,561,7.445,564,5.66,565,5.66,566,3.499]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[3,0.938,178,3.952,567,5.78,568,6.128,569,6.128]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[132,4.911,178,4.179,567,6.112,570,7.039]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[11,1.701,12,1.712,13,0.078,89,1.471,106,2.996,132,5.089,178,5.716,179,4.276,318,3.911,341,3.337,543,4.804,567,6.334]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,0.978,3,0.871,68,2.728,133,0.344,390,1.352,571,4.769]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[68,3.411,313,5,571,5.962]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,1.468,11,1.279,12,1.287,13,0.044,21,1.652,68,3.492,72,4.112,105,1.82,109,2.454,129,1.338,133,0.516,152,1.665,169,5.189,251,2.438,280,3.797,390,1.201,571,7.834,572,4.377,573,5.049,574,4.234,575,5.484]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[13,0.054,402,3.902,576,5.78,577,5.14,578,5.313]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[402,3.507,576,5.194,577,4.619,579,4.173,580,4.774,581,5.507]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[11,1.24,12,1.248,13,0.074,44,3.793,46,2.321,133,0.296,289,2.223,341,1.844,402,5.864,576,9.227,577,5.971,578,4.245,581,4.897,582,4.897,583,5.319,584,3.503,585,3.885,586,5.319,587,5.319,588,3.288,589,3.793,590,5.319,591,5.319]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[133,0.402,422,3.734,592,4.753,593,7.218]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[274,2.086,422,4.424]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[3,1.239,11,1.486,12,1.496,95,4.393,118,5.535,133,0.355,214,4.546,280,4.222,308,3.833,345,0.912,422,4.547,528,3.297,592,4.198,594,5.286,595,6.374,596,6.374,597,4.78,598,6.374,599,3.784]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[2,1.143,14,1.078,15,2.167,571,5.573]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[313,5.536,571,6.603]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[2,1.683,11,1.24,12,1.248,13,0.063,21,2.33,133,0.591,152,1.615,153,3.444,205,2.211,251,3.438,280,3.714,294,1.462,373,1.302,571,7.723,572,4.245,573,4.897,600,5.319,601,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[14,0.995,15,1.998,98,2.037,204,0.909,602,4.176]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[204,1.167,602,5.365]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[11,1.486,12,1.496,14,0.952,82,3.737,89,1.285,120,2.994,258,4.922,259,5.286,282,2.324,319,4.447,487,3.833,524,4.447,602,6.312,603,7.633,604,5.899,605,4.274,606,6.374,607,4.546]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[13,0.058,17,1.292,19,4.933,608,6.268]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[68,3.411,339,2.115,608,6.705]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,1.477,11,0.976,12,0.982,13,0.034,20,1.62,21,1.261,30,2.058,70,4.238,89,0.844,106,1.719,133,0.439,189,5.948,211,2.71,212,2.861,222,5.358,234,1.925,289,1.749,306,3.057,308,2.517,350,3.886,549,3.471,608,8.326,609,2.92,610,5.61,611,6.461,612,3.471,613,5.948,614,2.806,615,3.853,616,3.139,617,4.185,618,2.485,619,6.544,620,3.054]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[165,4.285,604,4.231,621,4.528,622,7.218]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[165,5.582,623,7.505]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[45,2.955,46,2.91,327,6.914,624,4.339]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[3,0.761,89,1.088,134,2.369,283,2.369,463,4.168,488,3.439,625,5.398,626,4.969]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[129,1.884,134,3.389,283,3.389]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[11,1.46,12,1.469,13,0.087,40,4.695,41,4.465,48,2.802,111,2.765,133,0.555,134,3.81,152,1.901,463,6.704,508,5.437,626,7.993,627,8.682,628,3.504]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[14,0.923,15,1.854,422,3.195,629,5.363,630,7.918]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,0.703,117,1.829,274,1.578,422,3.346,629,5.616]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.531,3,0.612,11,1.012,12,1.018,13,0.035,16,0.472,18,2.117,44,3.095,89,1.823,96,1.539,98,2.47,120,2.038,133,0.37,138,1.113,139,2.576,147,3.759,152,1.318,201,2.683,318,1.763,345,0.621,397,1.995,422,4.678,439,2.053,594,3.599,628,2.429,629,9.291,631,1.814,632,3.995,633,4.34,634,3.095,635,4.34,636,4.34,637,4.34]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[45,1.883,46,1.854,68,2.728,89,1.245,147,3.496,638,5.363]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[68,2.857,70,3.474,639,6.468,640,6.468,641,6.468]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,2.744,11,1.813,12,1.825,46,3.013,68,4.434,89,1.568,105,2.581,147,4.401,638,8.717,642,6.448]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[2,0.855,3,0.761,45,1.645,178,3.204,205,1.543,643,4.687,644,4.969,645,4.969]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[206,1.248,509,2.732,643,4.239,646,4.239,647,4.882,648,2.976,649,2.936,650,3.566,651,4.882]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,2.134,2,0.958,11,1.41,12,1.419,45,1.843,87,3.982,89,1.219,105,2.007,106,3.481,196,2.78,234,2.78,301,2.654,351,4.01,439,2.861,643,5.251,644,7.802,652,4.417,653,4.507,654,4.071,655,5.015,656,2.259]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[2,0.759,3,0.676,17,0.858,204,0.654,205,1.371,226,3.595,227,2.744,232,2.55,240,3.826,657,2.104]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[236,4.44,239,4.614,531,5.122,536,4.831,658,5.122,659,4.44,660,5.564]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[11,1.259,12,1.267,13,0.074,109,3.499,133,0.301,226,7.554,227,5.26,231,4.478,232,2.872,234,2.483,236,6.24,239,6.484,243,4.31,244,3.945,536,6.789,657,3.431,661,4.17,662,3.388,663,6.789,664,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[21,2.006,63,2.659,89,1.342,234,3.061,497,4.058]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[63,2.584,665,6.468,666,6.468,667,5.616,668,6.468]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[2,1.047,3,0.932,11,1.542,12,1.552,13,0.054,20,2.559,21,2.716,46,1.985,63,3.601,95,3.305,142,3.176,204,0.902,259,5.484,291,3.484,669,6.612,670,6.612,671,6.612,672,4.716,673,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[13,0.054,17,1.192,19,4.55,133,0.371,674,6.657]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[675,7.109,676,7.722,677,7.722]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[2,1.088,11,1.602,12,1.612,13,0.091,48,3.074,111,3.034,133,0.515,236,5.482,620,2.658,675,9.628,678,2.054,679,3.554,680,3.251]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,133,0.371,681,4.058]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.506,16,0.839,681,4.707]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.34,11,1.602,12,1.612,13,0.095,48,3.074,111,3.034,133,0.382,251,3.054,390,1.504,427,3.586,578,5.482,681,6.376,682,3.888]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[13,0.054,117,1.883,133,0.371,146,2.782,683,5.78]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[683,7.425,684,4.274]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[11,1.854,12,1.866,13,0.064,105,2.639,106,3.266,133,0.443,205,2.273,282,2.899,683,8.842,685,3.91,686,7.951]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[3,1.017,98,2.209,138,1.851,687,7.218]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[138,1.805,373,1.723,688,7.039,689,6.48]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[105,3.05,131,4.889,138,2.357,654,4.415,690,8.462,691,7.335]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[56,3.686,106,2.734,510,3.541,664,4.747,692,5.14]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[692,5.435,693,7.039,694,7.039,695,7.039]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[11,1.514,12,1.523,13,0.072,20,2.512,89,1.309,204,0.886,211,4.203,212,4.436,274,1.584,280,3.118,281,3.957,607,6.348,620,2.512,679,3.358,692,8.439,696,5.155]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,367,5.14,649,4.004]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[367,4.994,697,6.468,698,6.468,699,6.468,700,6.468]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.423,11,1.701,12,1.712,13,0.097,44,5.202,132,5.089,367,7.434,390,1.597,447,5.202,628,4.083,701,6.049]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[14,1.078,15,2.167,702,6.268,703,5.413]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[274,1.269,421,4.313,422,2.69,702,4.516,704,2.621,705,5.2,706,5.2,707,5.2]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[3,1.05,11,1.737,12,1.748,13,0.079,48,3.333,90,3.208,111,3.29,251,3.311,341,2.582,422,3.853,702,8.476,703,5.585,708,6.177]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,0.871,46,1.854,98,1.89,240,4.93,328,2.628,709,5.686]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[710,7.039,711,7.039,712,7.039,713,7.039]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.255,11,1.514,12,1.523,13,0.053,82,3.805,98,1.986,120,3.049,139,3.853,140,4.072,328,3.787,370,4.868,397,2.985,709,8.194,714,5.976,715,4.275,716,5.976,717,4.013,718,5.383,719,5.636]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[13,0.044,16,0.587,18,2.633,46,1.62,129,1.317,390,1.182,720,4.048,721,4.476]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[129,1.459,390,1.31,721,4.96,722,5.507,723,5.194,724,4.619]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[11,1.341,12,1.35,13,0.084,21,1.733,103,4.994,106,2.363,133,0.53,209,2.574,216,3.255,389,3.459,390,2.084,720,8.215,721,6.784,725,5.752,726,4.102,727,5.752,728,3.788]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[13,0.039,46,1.439,133,0.267,137,2.713,205,1.371,455,2.922,496,3.595,729,4.162,730,4.793,731,4.162]],["keywords//docs/applications/project-management/install-farmos/",[648,4.707,729,6.705,732,3.411]],["toc//docs/applications/project-management/install-farmos/",[11,1.486,12,1.496,13,0.052,48,2.852,87,4.198,106,2.618,111,2.815,133,0.355,196,2.931,206,1.629,295,2.229,305,4.356,351,3.016,390,1.396,628,3.568,654,3.062,729,9.418,733,6.374,734,3.186,735,4.198]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[68,2.94,89,1.342,332,5.78,433,3.726,672,4.747]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[433,4.786,736,8.551]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[68,4.372,76,4.517,89,1.534,332,6.607,407,6.31,408,4.773,433,6.521,439,3.6,737,7.005,738,7.005]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[2,1.054,89,1.342,739,2.371,740,2.815,741,5.313]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[742,6.468,743,6.468,744,6.468,745,6.468,746,6.468]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[2,1.028,11,1.514,12,1.523,13,0.082,16,0.706,106,2.666,111,2.867,133,0.361,140,4.072,276,4.741,351,3.072,370,4.868,455,3.957,654,3.118,740,2.745,741,5.18,747,3.594,748,6.491,749,2.437,750,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,751,6.268]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[649,4.644,751,6.705,752,5.387]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[2,0.704,3,0.627,11,1.037,12,1.044,13,0.08,14,0.665,15,1.335,20,1.722,48,1.991,98,2.072,111,1.965,133,0.377,181,2.75,203,2.641,204,0.924,208,1.646,216,2.518,246,2.261,251,3.01,276,3.25,278,2.983,282,1.622,305,3.041,364,1.622,524,3.104,602,2.791,656,1.662,740,1.881,749,1.67,751,9.014,753,4.096,754,4.449,755,4.449,756,3.25]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[3,0.812,139,3.42,274,1.406,291,3.035,342,3.73,757,4.598,758,4.448]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[624,2.894,757,5.162,759,5.954,760,6.468,761,6.468]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[11,1.813,12,1.825,13,0.063,25,6.206,133,0.433,167,4.807,291,4.097,657,3.413,757,8.872,762,2.24,763,3.793]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[2,0.804,5,3.288,6,2.135,13,0.041,45,1.548,204,0.693,424,4.053,425,4.211,764,5.078]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[83,5.838,656,2.629,765,7.039,766,7.039]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[5,4.363,6,2.833,11,1.571,12,1.581,13,0.055,21,2.03,46,2.023,89,1.358,133,0.508,204,0.92,341,2.336,424,7.287,425,7.572,749,2.53,767,6.738,768,4.108,769,3.455]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[56,4.365,82,4.621,577,6.086]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[577,6.603,580,6.825]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[11,1.299,12,1.307,13,0.065,46,1.672,56,5.179,89,1.123,98,2.447,155,2.963,211,3.607,212,3.807,253,4.177,486,3.118,501,4.446,577,7.89,578,8.636,770,9.352,771,5.57,772,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[13,0.047,16,0.626,18,2.81,341,1.997,656,2.152,773,5.003,774,5.003]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[63,2.584,773,5.616,774,5.616,775,6.468,776,3.316]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,2.291,11,1.514,12,1.523,13,0.072,14,0.97,15,1.948,48,2.905,89,1.309,111,2.867,129,1.584,133,0.361,251,2.886,440,3.674,656,2.425,773,9.944,774,5.636,777,4.436]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[2,0.804,13,0.041,16,0.552,17,0.909,275,2.581,778,4.675,779,4.675,780,4.675,781,3.471]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[138,1.534,780,5.507,782,5.982,783,4.173,784,5.982,785,5.982]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[2,1.737,3,0.728,11,1.204,12,1.212,13,0.042,56,2.859,84,3.401,133,0.287,186,5.843,275,4.553,318,2.097,341,2.623,550,3.24,715,4.983,778,8.246,779,8.246,783,3.602,786,3.772,787,4.282,788,4.484,789,3.987,790,5.164]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[2,1.143,13,0.058,16,0.785,791,6.645]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[16,0.765,792,7.039,793,7.039,794,7.039]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,1.542,12,1.552,13,0.073,48,2.959,111,2.921,127,6.289,251,2.94,791,6.088,795,9.014,796,9.014,797,9.014,798,9.014,799,9.014,800,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[13,0.05,16,0.671,18,3.013,133,0.344,283,2.711,801,3.285]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[802,7.039,803,7.039,804,4.416,805,6.112]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[3,0.838,13,0.048,45,1.812,89,1.199,90,2.561,106,3.44,133,0.331,147,3.365,148,5.368,196,2.734,283,2.609,318,2.415,378,6.704,427,3.104,537,5.162,538,4.93,801,3.162,805,5.162,806,5.945,807,5.162,808,5.945]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[16,0.671,63,2.468,89,1.245,216,3.496,339,1.691,809,5.686]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[63,3.085,667,6.705,810,7.722]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[11,1.542,12,1.552,13,0.054,53,3.305,63,4.097,64,5.106,89,1.817,120,3.106,216,6.234,339,2.469,667,5.742,811,4.83,812,4.83,813,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[814,0.472]],["title//docs/applications/containers/how-to-use-dockerfiles/",[3,1.224,815,6.342]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[68,3.411,70,4.147,815,5.64]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[68,3.766,89,1.719,96,3.773,100,4.372,433,4.772,815,8.475]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[13,0.05,16,0.671,18,3.013,133,0.344,390,1.352,816,4.93]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[390,1.691,817,7.109,818,7.722]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[2,1.132,11,1.667,12,1.677,13,0.058,129,1.744,133,0.398,153,4.627,271,4.986,289,2.987,341,2.477,390,2.489,816,8.515]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,133,0.371,819,5.14]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[819,5.962,820,7.722,821,7.722]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[11,1.737,12,1.748,13,0.079,89,1.502,133,0.543,274,1.817,294,2.047,390,1.631,440,4.215,460,5.751,696,4.314,819,7.537]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[16,0.671,17,1.106,30,3.037,56,3.42,528,3.195,822,2.821]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[16,0.65,17,1.071,823,4.619,824,4.619,825,4.486,826,4.266]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[13,0.062,20,2.944,30,5.729,45,2.319,133,0.551,294,2.091,301,3.339,364,2.774,822,4.52]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[3,0.871,45,1.883,46,1.854,133,0.344,482,4.068,624,2.764]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[482,5.085,483,7.109,827,7.722]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[11,1.486,12,1.496,13,0.052,14,0.952,15,1.913,78,5.691,82,3.737,98,1.95,142,4.222,328,2.712,482,7.493,624,4.503,828,6.374,829,5.535,830,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[36,3.256,445,5.191,831,5.758]],["keywords//docs/security/getting-started-with-selinux/",[280,3.107,831,4.724,832,6.468,833,6.468,834,6.468]],["toc//docs/security/getting-started-with-selinux/",[11,1.854,12,1.866,13,0.064,48,3.558,111,3.512,191,4.988,831,8.653,835,7.951,836,7.951]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[0,2.349,4,1.298,45,2.029,68,2.94,70,3.575]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[68,3.109,70,3.781,815,5.142,837,7.039]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[0,2.938,68,4.631,70,6.164,99,5.808,126,5.582,328,3.542,550,5.223]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[13,0.054,133,0.371,341,2.307,342,4.31,838,5.78]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[838,5.194,839,5.982,840,5.982,841,4.486,842,5.982,843,5.982]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[3,1.146,13,0.066,48,3.64,56,4.504,111,3.593,261,4.768,838,10.373,844,8.134]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[0,2.18,13,0.05,68,2.728,70,3.317,417,5.122,433,3.457]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[68,3.109,70,3.781,815,5.142,845,7.039]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[4,1.394,11,1.667,12,1.677,13,0.058,36,2.953,68,4.712,211,4.627,282,2.606,417,5.927,433,5.317,496,5.36,621,4.484,846,7.147,847,6.58]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[13,0.058,16,0.785,809,6.645,848,6.645]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[849,7.722,850,7.722,851,7.722]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[11,1.542,12,1.552,13,0.054,44,4.716,46,1.985,48,2.959,106,2.716,111,2.921,180,8.22,240,5.277,350,3.977,848,9.442,852,5.742,853,6.612,854,5.106]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[814,0.472]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[13,0.064,16,0.857,831,5.758]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[75,2.01,831,4.724,855,5.954,856,6.468,857,5.363]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[11,2.037,12,2.05,13,0.071,48,3.91,111,3.859,350,5.254,831,6.382,855,8.043]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[68,3.835,82,5.09]],["keywords//docs/applications/containers/introduction-to-docker/",[68,3.411,70,4.147,815,5.64]],["toc//docs/applications/containers/introduction-to-docker/",[48,3.91,68,5.182,111,3.859,433,4.89,638,7.587,815,6.382]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[13,0.05,17,1.106,141,1.779,232,3.285,631,2.581,858,5.363]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[858,6.112,859,7.039,860,4.485,861,6.112]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[11,1.138,12,1.145,13,0.04,48,2.183,57,1.459,89,0.984,98,1.493,106,2.981,111,2.155,124,3.213,133,0.404,138,1.251,141,1.405,205,1.395,234,2.243,273,2.646,274,1.19,282,1.779,294,2.381,295,1.706,304,4.491,307,2.826,474,3.767,592,3.213,597,3.658,620,1.888,631,2.039,858,9.667,862,3.564,863,4.879]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[14,0.678,15,1.363,16,0.493,18,2.214,117,1.284,146,1.897,147,2.569,283,1.992,557,3.623,847,4.179,864,3.505]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[129,1.459,864,4.619,865,5.982,866,4.173,867,4.486,868,3.015]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,1.078,12,1.085,14,1.041,98,2.133,124,3.045,133,0.257,147,5.287,152,1.404,178,2.745,181,4.309,204,0.631,211,2.993,212,3.16,224,2.459,280,2.221,282,1.686,283,3.682,307,2.678,364,1.686,537,4.015,618,2.745,628,3.901,656,3.134,734,3.484,749,1.736,864,7.213,869,2.945,870,2.993,871,2.71]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[191,4.945,408,4.945,831,5.758]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[831,6.998]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[3,0.938,74,3.413,76,3.952,294,1.829,439,3.15]],["keywords//docs/quick-answers/linux/how-to-use-git/",[75,2.188,872,7.039,873,5.838,874,7.039]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[3,1.224,875,6.703]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[75,2.188,875,5.435,876,5.838,877,5.02]],["toc//docs/quick-answers/linux/how-to-use-wget/",[3,1.33,20,3.652,98,2.888,875,7.286,878,9.437]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[3,1.017,45,2.2,110,4.462,319,5.035]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[110,3.698,188,3.041,222,4.96,879,5.982,880,4.369,881,4.486]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[45,2.902,106,3.91,110,6.41,126,3.857,211,3.724,212,3.931,222,9.713,241,4.77,319,7.233,325,4.994,487,3.459,881,4.313,882,5.752]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[13,0.058,45,2.2,133,0.402,883,6.268]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[883,6.112,884,5.838,885,6.112,886,4.911]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[11,0.932,12,0.938,13,0.084,14,0.597,15,1.2,45,1.9,89,1.545,126,2.68,133,0.522,145,2.997,188,3.168,214,2.85,216,2.262,224,2.126,273,2.168,282,2.273,289,1.67,341,1.385,359,2.85,364,2.273,371,2.546,433,2.237,491,4.036,618,2.372,624,1.788,654,1.92,883,7.516,887,3.996,888,2.997,889,3.679,890,2.85,891,2.343,892,3.996,893,3.189,894,2.788,895,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[13,0.047,16,0.626,117,1.629,146,2.408,204,0.786,864,4.448,896,5.761]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[129,1.459,864,4.619,866,4.173,868,3.015,897,5.982,898,5.982]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[11,1.259,12,1.267,13,0.063,82,3.166,98,1.653,101,2.101,106,3.212,133,0.435,196,2.483,204,0.737,211,3.496,212,3.691,224,2.872,234,2.483,274,1.318,282,1.969,283,2.37,435,2.594,612,4.478,696,3.128,812,3.945,864,8.254,899,3.851,900,4.972,901,3.767,902,4.972]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[3,0.938,45,2.029,70,3.575,75,2.069,903,4.747]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[68,3.411,903,5.507,904,7.722]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[14,0.988,52,4.83,57,1.977,70,5.508,75,3.188,133,0.368,191,4.148,214,4.716,319,4.613,491,4.281,618,3.925,657,2.902,852,5.742,905,6.612,906,5.277,907,5.742,908,4.716]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[13,0.058,117,2.041,146,3.017,679,3.734]],["keywords//docs/development/java/install-java-on-centos/",[117,2.511,909,5.616,910,6.468,911,5.954]],["toc//docs/development/java/install-java-on-centos/",[11,1.774,12,1.786,13,0.08,213,4.46,216,4.306,679,6.027,912,7.005,913,6.072,914,7.005,915,5.706]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[13,0.058,17,1.292,232,3.839,679,3.734]],["keywords//docs/development/java/install-java-on-debian/",[17,1.26,231,5.838,909,6.112,911,6.48]],["toc//docs/development/java/install-java-on-debian/",[11,1.774,12,1.786,13,0.08,213,4.46,216,4.306,679,6.027,912,7.005,913,6.072,914,7.005,915,5.706]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,679,3.734]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[16,0.703,679,3.346,909,5.616,915,4.85,916,3.998]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[11,1.941,12,1.954,13,0.067,14,1.244,216,4.712,231,6.904,679,4.307,811,6.081,915,6.243,916,5.147]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[4,1.298,13,0.054,16,0.724,18,3.247,917,5.78]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[4,1.167,199,4.96,867,4.486,880,4.369,917,5.194,918,5.982]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[3,0.898,4,1.715,13,0.082,16,0.693,36,2.633,57,1.906,89,1.285,133,0.56,267,3.784,276,4.656,364,2.324,390,1.396,749,2.393,917,8.737,919,6.374,920,6.374]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[0,2.782,45,2.403,433,4.412]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[45,2.403,169,4.412,282,2.874]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[70,3.877,75,2.244,657,3.168,903,5.148]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[903,5.02,922,7.039,923,4.636,924,5.618]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[279,5.223,624,3.726,657,4.602,890,5.937,901,5.808,903,7.477,925,5.808,926,6.904]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[45,2.2,927,4.462,928,3.839,929,3.252]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[45,2.403,188,4.007,881,5.911]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,0.938,75,2.069,98,2.037,224,3.541,930,4.992]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[322,4.72,342,4.558,930,5.279,931,5.618]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,1.231,98,2.674,124,5.754,294,2.401,930,8.103,932,7.587,933,8.737]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[2,0.978,13,0.05,117,1.747,146,2.581,880,4.512,934,5.122]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[935,7.109,936,7.109,937,7.722]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[2,1.132,11,1.667,12,1.677,13,0.058,90,3.078,106,2.936,133,0.398,337,4.986,371,4.553,389,4.298,628,4,880,5.221,934,8.848,938,5.704,939,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[2,0.978,13,0.05,16,0.671,18,3.013,880,4.512,934,5.122]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[935,7.109,936,7.109,940,7.722]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[2,1.132,11,1.667,12,1.677,13,0.058,90,3.078,106,2.936,133,0.398,337,4.986,371,4.553,389,4.298,628,4,880,5.221,934,8.848,938,5.704,939,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[13,0.058,117,2.041,146,3.017,941,4.84]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[117,1.829,198,3.474,752,4.512,941,4.337,942,5.363]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[11,1.571,12,1.581,13,0.074,20,2.608,48,3.015,89,1.358,111,2.976,129,1.644,133,0.375,206,1.722,295,2.357,337,4.701,341,2.336,366,4.108,628,3.772,941,7.444]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[75,2.244,328,3.071,349,4.341,718,5.986]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[322,3.731,342,3.602,447,3.968,718,4.614,719,4.831,931,4.44,943,5.564]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[75,1.946,96,2.22,322,5.822,328,3.694,579,4.368,616,4.695,621,3.928,787,5.192,944,5.764,945,5.764,946,6.261,947,5.192,948,4.695,949,6.261,950,6.261,951,6.261,952,5.192,953,6.261,954,5.192,955,5.764,956,5.437,957,6.261]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[3,1.111,328,3.354,877,5.621]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[75,2.188,876,5.838,877,5.02,958,4.485]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[3,1.111,328,3.354,959,6.291]],["keywords//docs/quick-answers/linux/how-to-use-head/",[75,2.01,98,1.979,876,5.363,959,5.162,960,6.468]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[3,1.111,328,3.354,961,6.291]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[75,2.01,98,1.979,876,5.363,961,5.162,962,6.468]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[3,0.812,45,1.756,453,3.465,612,4.778,620,2.229,963,5.003,964,4.019]],["keywords//docs/security/advanced-ssh-server-security/",[2,0.823,16,0.565,75,1.617,117,1.471,274,1.269,624,2.327,759,4.788,965,4.788]],["toc//docs/security/advanced-ssh-server-security/",[3,1.192,11,1.092,12,1.099,56,2.594,57,1.401,131,2.492,174,3.141,196,3.889,281,2.856,289,1.958,295,2.958,439,2.217,487,2.817,524,3.268,538,3.885,620,1.813,624,2.096,734,2.341,923,3.085,929,2.11,966,4.685,967,3.341,968,3.341,969,4.313,970,5.838,971,4.068,972,4.685,973,4.313,974,4.313,975,3.341,976,4.313,977,4.068,978,4.313,979,4.685,980,4.685,981,4.685]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,982,5.14,983,6.657]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[16,0.565,649,3.128,867,3.9,982,4.015,984,4.788,985,4.788,986,4.788,987,5.2]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[2,0.957,11,0.657,12,0.661,13,0.073,48,1.261,57,1.405,63,1.126,76,1.673,78,1.824,89,1.581,98,1.438,101,1.096,105,1.56,111,1.245,129,1.147,133,0.472,134,2.063,152,2.729,216,3.422,251,2.688,280,2.258,282,1.027,294,1.292,295,2.468,364,1.027,366,2.865,398,2.447,408,2.949,557,3.751,597,3.524,609,1.966,657,2.063,701,2.337,982,8.003,988,2.594,989,2.594,990,2.447,991,2.594,992,3.751,993,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[117,1.527,138,1.384,146,2.256,994,5.709,995,4.969,996,7.195]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[117,1.692,204,0.816,994,4.369,995,5.507,997,5.982,998,5.982]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[3,0.987,11,1.634,12,1.644,13,0.057,57,2.095,101,2.725,133,0.39,204,0.956,364,3.417,390,1.534,994,6.846,996,10.383,999,5.409]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[3,0.761,30,2.654,58,2.554,59,4.048,117,1.527,891,3.164,1000,2.269,1001,4.969]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1002,6.163,1003,7.722,1004,7.722]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[13,0.079,30,4.767,133,0.54,891,5.684]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1005,3.832]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[13,0.058,45,2.2,56,3.997,58,3.416]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[884,5.838,885,6.112,886,4.911,1006,6.48]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[13,0.066,20,2.226,45,3.161,46,1.726,56,3.185,57,1.72,58,2.722,133,0.455,188,2.924,309,4.102,364,2.983,433,3.219,613,5.295,615,5.295,620,2.226,886,4.012,890,4.102,891,4.795,928,3.059,1007,5.752,1008,5.752,1009,3.931]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1010,3.815,1011,6.845,1012,5.758]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1011,6.112,1012,5.142,1013,5.838,1014,5.279]],["toc//docs/platform/upgrade-to-hourly-billing/",[508,8.656,1010,4.825,1015,3.761]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[45,2.646,881,6.51]],["keywords//docs/platform/disk-images/resizing-a-linode/",[881,6.412,1010,4.139]],["toc//docs/platform/disk-images/resizing-a-linode/",[45,3.127,881,7.693]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,232,3.541,1016,5.78]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[16,0.839,1016,6.705,1017,7.722]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,1.737,12,1.748,13,0.06,133,0.415,142,3.578,291,3.924,294,2.047,295,2.605,458,6.177,620,2.882,763,3.634,1016,10.034]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[13,0.058,117,2.041,146,3.017,680,3.416]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[16,0.65,129,1.459,680,2.831,868,3.015,1018,4.088,1019,5.507]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[11,1.46,12,1.469,13,0.051,36,2.587,46,1.879,89,1.262,106,2.572,107,2.859,109,2.802,129,1.528,133,0.349,234,2.879,261,3.67,270,5.764,295,3.036,352,4.465,550,3.928,680,5.35,1020,4.997]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,0.912,16,0.626,18,2.81,89,1.161,1021,5.304,1022,5.304,1023,5.761]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,1.223,16,0.839,1024,7.722]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,1.822,11,1.386,12,1.395,13,0.048,14,0.888,89,1.199,90,2.561,95,2.971,133,0.331,294,1.634,306,4.343,451,3.624,487,3.576,632,5.473,786,4.343,1021,9.688,1025,5.842,1026,5.945]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[13,0.058,117,2.041,146,3.017,1027,4.84]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[117,1.991,1027,4.72,1028,6.48,1029,7.039]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[2,0.723,11,1.064,12,1.071,13,0.075,14,1.031,20,1.766,48,2.042,69,3.524,89,0.92,111,2.016,120,2.144,129,1.114,133,0.555,146,1.907,179,2.675,204,0.623,206,1.166,224,2.427,274,1.114,289,1.907,295,2.414,364,1.664,366,4.208,390,0.999,510,2.427,543,3.005,599,2.709,656,1.705,869,2.907,1027,6.683,1030,4.201]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,1027,4.84]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[16,0.765,1027,4.72,1028,6.48,1031,7.039]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[2,0.752,11,1.107,12,1.114,13,0.058,14,1.062,20,1.837,48,2.125,69,3.666,89,0.957,111,2.097,120,2.23,129,1.158,133,0.564,179,2.783,204,0.648,206,1.213,224,2.525,274,1.158,289,1.984,295,2.487,364,1.731,366,4.335,390,1.04,510,2.525,543,3.127,599,2.818,656,1.773,869,3.025,1027,6.798,1030,4.371]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[3,0.676,16,0.521,17,0.858,133,0.267,137,2.713,735,3.157,740,2.027,1032,1.799,1033,2.81,1034,3.975]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[16,0.703,17,1.158,1032,2.428,1034,5.363,1035,4.724]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[2,0.868,11,1.279,12,1.287,13,0.044,98,1.678,106,2.253,129,1.338,133,0.305,137,3.104,152,1.665,274,1.929,282,2,620,2.122,734,2.741,739,1.953,763,2.675,929,4.176,1032,4.206,1034,4.548,1036,4.377,1037,5.049,1038,4.548,1039,5.484,1040,5.484]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[13,0.05,117,1.747,129,1.507,134,2.711,146,2.581,1041,3.35]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[134,3.089,866,4.911,1042,5.618,1043,4.291]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[11,0.76,12,0.765,13,0.054,57,0.975,89,1.35,90,1.404,106,2.177,117,0.922,126,4.489,129,2.338,133,0.181,134,3.384,142,1.566,155,1.734,168,3.431,234,2.436,274,1.881,291,1.717,295,1.14,342,2.11,350,1.96,397,3.079,487,4.027,522,3.001,620,2.984,630,3.001,662,2.045,685,1.603,1044,5.204,1045,5.299,1046,5.299,1047,2.444,1048,6.309,1049,2.228,1050,3.259]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[14,1.078,89,1.455,680,3.416,1051,7.218]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[283,3.089,680,3.331,868,3.548,1052,7.039]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[11,1.386,12,1.395,14,0.888,15,1.785,36,2.456,48,2.661,89,1.199,98,2.562,106,2.442,111,2.626,133,0.54,138,1.525,152,1.805,196,2.734,291,3.132,295,2.079,631,2.485,680,3.962,696,3.443,734,2.971,1053,4.687,1054,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[3,0.608,4,0.841,17,0.772,157,1.982,232,2.293,509,2.413,528,3.419,656,1.61,925,3.007,1055,3.329,1056,3.149]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[4,1.167,509,3.348,656,2.234,804,3.753,1055,4.619,1057,5.194]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[4,1.525,11,1.259,12,1.267,13,0.074,48,2.417,56,2.99,89,1.089,98,1.653,111,2.385,133,0.595,152,1.64,157,2.483,206,1.38,224,2.872,397,2.483,402,3.166,509,3.023,628,3.023,1055,7.778,1058,4.689,1059,4.05,1060,5.4,1061,5.4]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[45,2.646,1062,6.342]],["keywords//docs/platform/disk-images/clone-your-linode/",[921,5.64,1062,7.299]],["toc//docs/platform/disk-images/clone-your-linode/",[45,3.127,1062,7.493]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[13,0.058,117,2.041,146,3.017,204,0.985]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[117,2.184,204,1.054,866,5.387]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[11,1.222,12,1.23,13,0.073,48,2.345,106,2.153,111,2.315,133,0.553,138,1.344,149,2.427,204,1.044,205,1.498,274,1.866,278,3.514,339,1.435,488,4.873,510,2.787,524,3.656,654,2.517,656,2.857,1063,4.182,1064,7.042,1065,5.587,1066,4.182,1067,4.824]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[3,0.676,117,1.356,139,2.846,146,2.003,173,3.104,174,3.214,291,2.526,624,2.145,758,3.701,929,2.159]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[624,3.456,1068,7.109,1069,7.722]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[11,1.634,12,1.644,13,0.057,14,1.047,21,2.111,48,3.135,111,3.094,133,0.39,139,4.159,196,4.31,291,4.938,734,3.501,758,5.409,1070,7.006,1071,6.083,1072,4.536]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[3,0.608,16,0.469,17,0.772,18,2.103,139,2.559,173,2.791,174,2.89,232,2.293,291,2.271,624,1.929,758,3.329,929,1.942]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[16,0.703,17,1.158,624,2.894,1068,5.954,1073,6.468]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,1.634,12,1.644,13,0.057,14,1.047,48,3.135,111,3.094,133,0.39,139,4.159,196,4.31,291,5.565,734,3.501,735,4.614,758,5.409,1071,6.083,1072,4.536]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[2,0.978,133,0.344,278,4.142,620,2.39,704,3.113,1074,3.536]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[422,3.642,631,2.942,704,3.548,1074,4.029]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[2,1.155,11,1.701,12,1.712,14,1.09,15,2.19,152,2.215,282,2.66,371,4.647,604,4.276,620,2.823,704,3.676,763,3.559,1074,4.176,1075,4.387,1076,5.47,1077,5.822]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[3,0.871,75,1.92,181,3.819,185,4.93,188,3.14,601,4.512]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[17,1.26,185,5.618,857,5.838,1078,7.039]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[3,0.898,11,1.486,12,1.496,13,0.071,17,1.573,45,1.943,89,1.285,133,0.355,181,6.22,185,5.087,188,4.468,232,3.39,274,1.555,294,1.752,364,2.324,374,5.286,891,3.737,1079,4.78]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[45,1.548,109,3.345,201,3.139,204,0.693,257,2.842,1080,5.078,1081,4.409,1082,4.409]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[559,6.48,1082,6.112,1083,4.234,1084,6.48]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[11,0.627,12,0.631,14,0.402,15,0.807,36,1.867,45,0.82,46,0.807,53,2.259,87,1.771,89,1.54,98,1.383,126,3.03,141,1.302,147,3.878,152,0.817,196,1.236,208,0.995,283,5.164,308,1.617,328,1.923,341,1.567,433,3.835,492,4.161,550,2.836,654,1.292,870,2.926,1079,3.389,1082,9.572,1084,8.843,1085,2.689,1086,2.23,1087,2.23,1088,2.689,1089,2.476,1090,4.52]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,509,4.04]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[511,6.112,512,6.112,514,6.112,1091,6.48]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[4,1.053,11,1.259,12,1.267,13,0.063,14,0.807,89,1.089,98,2.392,133,0.561,193,3.851,204,0.737,206,1.38,289,3.268,490,4.689,509,5.984,523,4.972,524,6.411,672,3.851,1091,8.46,1092,5.4]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[3,0.938,196,3.061,291,3.507,624,2.979,899,4.747]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[291,2.74,624,2.327,757,4.15,899,3.709,1093,5.2,1094,5.2,1095,4.788,1096,4.788]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[11,1.259,12,1.267,45,1.646,53,2.699,106,2.218,196,5.125,274,1.908,289,2.257,291,2.845,428,4.689,553,4.478,624,2.417,734,3.908,757,4.31,899,6.554,1009,3.691,1056,3.945,1072,3.496,1095,4.972,1097,5.4,1098,7.818,1099,4.689,1100,5.4]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[13,0.058,45,2.2,75,2.244,1101,6.268]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[56,3.312,884,4.96,1101,5.194,1102,5.982,1103,5.982,1104,5.982]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[2,0.83,11,1.222,12,1.23,13,0.073,20,2.028,21,1.579,30,2.577,45,1.597,48,2.345,52,3.828,75,2.378,111,2.315,133,0.553,188,2.664,191,3.288,274,1.279,294,1.44,364,1.911,433,2.933,491,3.393,614,3.514,618,3.111,894,3.656,1101,7.844,1105,3.828,1106,4.182,1107,5.24]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[13,0.064,117,2.229,1108,4.805]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1108,4.291,1109,7.039,1110,7.039,1111,7.039]],["toc//docs/websites/cms/install-cpanel-on-centos/",[3,1.321,13,0.057,30,3.445,45,2.135,46,2.103,105,2.325,133,0.522,456,3.728,678,2.803,768,4.271,1108,5.714,1112,6.449]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[142,4.17,620,3.36]],["keywords//docs/networking/remote-access/",[623,5.162,1113,6.468,1114,6.468,1115,6.468,1116,6.468]],["toc//docs/networking/remote-access/",[3,1.127,5,5.176,14,0.832,133,0.31,165,5.552,197,4.069,456,2.822,497,3.396,603,4.837,604,5.991,620,3.094,624,2.493,631,3.341,653,4.253,890,3.973,901,5.577,927,3.444,1072,3.607,1117,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[117,1.629,656,2.152,749,2.163,769,2.954,1118,4.019,1119,3.614,1120,1.865]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[117,1.692,1119,3.753,1120,1.936,1121,4.486,1122,4.774,1123,4.619]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[11,1.634,12,1.644,89,1.412,106,2.878,160,3.726,364,2.554,656,2.617,749,4.234,769,3.592,928,4.985,1124,6.539,1125,6.449,1126,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[16,0.587,17,0.966,528,2.792,656,2.016,749,2.026,769,2.768,1118,3.766,1119,3.386]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[16,0.65,17,1.071,1119,3.753,1121,4.486,1122,4.774,1123,4.619]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,1.634,12,1.644,89,1.412,106,2.878,160,3.726,364,2.554,656,2.617,749,4.234,769,3.592,928,4.985,1124,6.539,1125,6.449,1126,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,2.18,4,1.205,276,4.512,442,4.632,656,2.307,1127,4.93]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[4,1.506,276,5.64,656,2.884]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[2,0.842,4,1.037,11,1.24,12,1.248,56,2.945,89,1.072,133,0.296,152,1.615,157,4.189,196,2.446,274,1.298,278,3.566,282,1.939,352,3.793,371,5.804,435,2.555,605,3.566,685,2.615,967,3.793,968,3.793,1128,4.107,1129,5.319,1130,5.319,1131,5.319,1132,5.319,1133,5.319,1134,5.319,1135,5.319,1136,5.319,1137,5.319]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[30,3.273,56,3.686,117,1.883,146,2.782,822,3.04]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[117,1.829,823,4.994,824,4.994,825,4.85,826,4.612]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[13,0.062,20,2.944,30,5.729,45,2.319,133,0.551,294,2.091,301,3.339,364,2.774,822,4.52]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[138,1.851,246,3.669,488,4.598,1065,5.272]],["keywords//docs/websites/host-a-website-with-high-availability/",[466,5.279,528,3.642,684,3.518,1117,5.618]],["toc//docs/websites/host-a-website-with-high-availability/",[2,0.619,11,0.911,12,0.917,13,0.061,46,1.173,106,3.103,129,0.953,133,0.548,147,2.212,152,2.294,204,0.836,274,0.953,278,2.62,280,3.628,281,4.605,283,1.715,289,1.633,309,2.787,390,0.856,455,2.382,456,1.379,497,2.382,509,2.187,524,2.726,604,2.291,614,2.62,1053,3.428,1064,7.872,1066,6.028,1067,5.639,1117,3.119,1138,3.908,1139,6.125,1140,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[82,4.621,488,5.022,1065,5.758]],["keywords//docs/websites/introduction-to-high-availability/",[138,1.805,246,3.578,466,5.279,1117,5.618]],["toc//docs/websites/introduction-to-high-availability/",[2,1.028,98,1.986,129,1.584,141,1.87,205,1.856,271,4.528,294,1.784,397,2.985,464,4.868,470,5.18,488,6.963,716,5.976,862,4.741,1065,7.984,1117,7.104]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,385,5.272]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[16,0.765,18,3.434,382,6.112,385,5.142]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[2,1.266,11,1.299,12,1.307,13,0.045,24,6.831,36,2.301,45,1.698,75,2.485,77,4.631,81,4.064,90,3.443,133,0.31,274,1.359,308,4.808,385,7.904,599,4.746,601,4.069,618,3.307]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,134,3.168]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[134,2.838,867,4.85,1042,5.162,1043,3.943,1141,4.337]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[11,1.299,12,1.307,13,0.065,16,0.606,18,2.717,89,1.885,129,1.951,133,0.31,134,4.943,142,2.676,155,2.963,168,3.607,274,1.951,295,1.948,365,3.807,620,3.094,1041,3.022,1044,3.189,1048,3.668,1142,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,680,3.15,1143,6.128]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[16,0.65,129,1.459,680,2.831,868,3.015,1018,4.088,1019,5.507]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[11,1.542,12,1.552,13,0.054,36,2.732,46,1.985,89,1.333,106,2.716,107,3.02,109,2.959,129,1.613,133,0.368,234,3.041,261,3.876,295,2.313,550,4.148,680,5.454,1020,5.277]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[2,0.855,3,0.761,16,0.587,18,2.633,205,1.543,1143,4.969,1144,3.29,1145,5.398]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[684,3.859,1144,4.707,1146,7.109]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,1.204,12,1.212,13,0.042,78,3.343,89,1.041,104,3.682,120,2.426,133,0.287,138,2.529,209,2.311,282,1.883,318,2.097,328,2.197,339,2.701,341,1.79,349,3.105,371,3.29,442,3.872,496,3.872,628,4.236,944,4.754,1127,4.121,1144,4.613,1147,6.571,1148,4.484,1149,1.988,1150,5.164]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[16,0.671,17,1.106,57,1.847,232,3.285,274,1.507,648,3.765]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[57,1.664,204,0.759,206,1.422,648,3.392,649,3.346,1151,3.664,1152,5.122]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,1.667,12,1.677,20,2.766,33,5.927,57,2.137,89,1.441,98,2.187,107,3.264,169,4,191,4.484,274,1.744,294,1.964,510,5.052,551,6.206,616,5.36,1010,3.46]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,204,0.909,1153,3.726]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1154,7.039,1155,7.039,1156,7.039,1157,7.039]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[3,1.231,11,2.037,12,2.05,13,0.071,152,2.653,204,1.192,1153,6.048]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,0.99,13,0.041,16,0.552,18,2.477,75,1.578,206,1.298,227,2.907,390,1.112,1158,2.581]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.373,206,1.799,867,5.279,1158,3.578]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[0,2.21,2,1.375,4,1.944,11,1.46,12,1.469,13,0.07,129,1.528,133,0.349,138,1.606,152,1.901,205,1.79,206,1.6,227,3.584,289,2.617,339,1.715,390,1.371,763,4.236,1149,2.41,1158,3.183]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,227,3.81,732,2.94]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[867,4.85,1159,6.468,1160,6.468,1161,6.468,1162,6.468]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[3,0.838,11,1.386,12,1.395,13,0.079,89,1.199,129,1.451,133,0.466,138,1.525,152,1.805,204,1.143,206,1.52,227,3.403,289,2.485,339,1.628,390,2.123,655,4.93,732,2.626,763,4.085,1163,5.945,1164,5.945]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[16,0.785,18,3.521,1010,3.494,1165,3.549]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[16,0.839,18,3.767,1010,3.738]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[13,0.052,15,1.913,16,1.094,18,3.109,30,3.134,45,1.943,57,1.906,105,2.115,167,3.941,364,2.324,488,4.061,550,3.999,747,3.53,954,5.286,993,3.268,1010,4.87,1165,4.322,1166,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[2,0.978,13,0.05,16,0.671,17,1.106,232,3.285,801,3.285]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[801,3.182,860,3.811,1167,5.982,1168,5.982,1169,5.982,1170,5.507]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[11,1.17,12,1.177,13,0.079,14,0.75,15,1.506,16,0.545,17,0.898,45,2.685,57,1.5,58,2.374,96,1.779,108,3.102,133,0.541,139,2.978,148,2.778,274,1.224,289,2.097,290,3.102,294,1.379,364,1.829,374,4.161,378,3.196,801,5.174,871,2.941,1053,4.147,1171,4.619]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[13,0.054,117,1.883,133,0.371,146,2.782,801,3.541]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[117,1.991,801,3.744,866,4.911,1170,6.48]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[3,0.707,11,1.17,12,1.177,13,0.071,14,0.75,15,1.506,45,2.685,58,2.374,96,1.779,107,2.291,108,3.102,133,0.49,148,2.778,197,3.665,274,1.224,289,2.097,290,3.102,291,2.643,294,1.379,364,1.829,374,4.161,378,3.196,801,5.519,871,2.941,929,2.26,1053,4.147,1171,4.619]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[13,0.05,16,0.671,17,1.106,232,3.285,1172,3.667,1173,5.122]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[16,0.65,141,1.723,860,3.811,1172,3.551,1174,5.982,1175,5.982]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,1.363,12,1.372,13,0.067,48,2.616,89,1.179,100,2.998,111,2.583,133,0.325,204,0.798,205,2.366,273,4.489,295,2.045,301,2.566,302,4.666,306,4.271,364,2.132,402,3.428,620,2.263,1049,3.996,1172,6.544,1173,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[3,0.716,4,0.99,16,0.552,101,1.975,133,0.283,427,2.651,747,2.812,1176,4.675,1177,2.701]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[4,1.167,151,5.507,1178,3.597,1179,5.982,1180,5.982,1181,4.011]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[4,1.423,11,1.701,12,1.712,13,0.093,36,3.014,89,1.471,101,2.838,133,0.536,427,3.808,1176,8.864,1177,3.88]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[13,0.064,45,2.403,1182,6.845]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1182,7.425,1183,8.551]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[13,0.069,45,2.599,75,2.65,82,4.998,192,7.404,364,3.109,1182,10.075]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[3,0.812,13,0.047,16,0.626,447,4.109,509,3.225,747,3.19,1184,5.003]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[16,0.565,204,0.71,402,3.049,509,2.911,1185,5.2,1186,5.2,1187,5.2,1188,4.015]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[13,0.089,14,0.874,15,1.755,44,4.17,57,2.872,96,2.073,127,4.079,129,1.427,140,3.668,265,5.383,328,2.488,402,3.428,447,5.902,509,4.632,678,1.748,812,4.271,841,4.385,1184,7.186,1188,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[4,1.124,122,2.98,246,2.928,1056,4.208,1189,5.304,1190,5.304,1191,4.448]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[74,3.316,1191,4.994,1192,4.994,1193,6.468,1194,6.468]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[4,1.853,11,1.667,12,1.677,13,0.077,53,3.572,89,1.441,138,1.833,339,1.957,427,3.731,682,4.045,1189,6.58,1190,8.745,1191,7.334]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[13,0.054,16,0.724,17,1.192,1195,6.128,1196,6.128]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[783,4.512,786,4.724,1197,6.468,1198,5.954,1199,5.954]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[2,1.573,11,1.222,12,1.23,13,0.042,56,2.902,90,2.257,133,0.292,186,6.975,318,2.128,341,1.816,678,1.567,715,3.451,781,6.174,788,4.55,789,4.046,1195,9.144,1196,9.144,1198,4.824,1199,4.824,1200,4.824,1201,5.24,1202,5.24]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[13,0.05,89,1.245,181,3.819,656,2.307,749,2.319,1203,6.177]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[749,2.899,1204,7.722,1205,7.722]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[11,1.279,12,1.287,13,0.044,20,2.122,33,4.548,57,2.364,89,1.106,120,2.576,140,3.441,181,6.272,267,4.693,289,3.304,405,4.234,656,3.463,749,3.809,1206,10.146,1207,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[2,0.804,16,0.552,253,3.808,370,3.808,747,2.812,1208,4.675,1209,4.675,1210,4.675,1211,4.675]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[16,0.473,1025,3.033,1181,2.916,1211,4.003,1212,4.348,1213,4.348,1214,4.348,1215,4.348,1216,4.348,1217,4.003,1218,3.358]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[2,1.521,11,1.363,12,1.372,13,0.047,14,0.874,36,2.415,133,0.325,191,3.668,253,6.206,642,4.849,678,1.748,923,3.85,1025,7.287,1128,4.515,1208,7.619,1209,7.619,1210,7.619,1219,4.515,1220,5.383]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[2,0.912,13,0.047,275,2.928,1173,4.778,1221,5.304,1222,5.304,1223,5.003]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[783,4.911,1218,5.435,1224,7.039,1225,7.039]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[2,1.465,3,0.968,11,1.602,12,1.612,13,0.056,45,2.094,133,0.382,275,4.702,364,2.505,783,4.792,952,5.697,1173,7.671,1221,8.516,1222,8.516]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[13,0.047,17,1.031,204,0.786,206,1.473,232,3.064,1226,4.778,1227,4.208]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[204,0.666,206,1.248,860,3.11,1057,4.239,1149,1.879,1228,4.882,1229,2.703,1230,4.494,1231,4.494]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[11,1.737,12,1.748,13,0.06,133,0.543,204,1.017,206,2.783,380,6.177,474,5.751,925,5.196,1226,8.095,1230,6.857]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,2.18,16,0.671,747,3.42,1232,5.686,1233,5.363,1234,4.769]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1232,4.788,1233,4.516,1234,4.015,1235,5.2,1236,4.788,1237,5.2,1238,4.516,1239,5.2]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,2.249,2,1.009,4,1.243,6,2.68,11,1.486,12,1.496,13,0.082,89,1.285,101,3.914,153,5.691,232,3.39,915,4.78,916,3.941,1233,5.535,1234,6.787,1236,5.868,1238,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[2,1.054,13,0.054,783,4.644,786,4.862,1025,4.644]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[783,3.881,786,4.064,1025,3.881,1217,5.122,1218,4.296,1240,5.122,1241,5.564]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[2,1.109,11,1.634,13,0.076,21,2.111,48,3.135,106,2.878,111,3.094,234,3.221,258,5.409,274,1.709,337,4.887,341,2.428,399,4.331,783,6.539,948,5.253,1025,4.887]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[17,1.106,133,0.344,232,3.285,1032,2.319,1242,4.769,1243,4.93]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[456,1.835,739,1.852,860,3.313,1032,1.952,1242,4.015,1243,4.15,1244,4.516,1245,4.788]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[13,0.034,14,1.425,15,2.863,106,2.63,133,0.356,145,3.102,152,1.256,196,1.902,268,3.194,289,2.676,291,2.179,351,3.03,442,3.102,455,2.522,456,2.259,769,2.121,789,3.194,871,2.425,1032,2.94,1079,3.102,1242,6.808,1243,5.11,1244,5.559,1245,3.808,1246,4.136,1247,4.136,1248,4.136,1249,4.136,1250,3.592,1251,4.136,1252,2.368,1253,3.021,1254,4.136]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[13,0.058,16,0.785,18,3.521,1255,6.268]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[16,0.765,739,2.507,1255,6.112,1256,6.48]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[11,1.064,12,1.071,13,0.075,20,1.766,21,1.375,57,1.365,75,1.419,89,1.392,120,2.144,129,1.114,133,0.254,138,1.77,140,2.863,204,1.136,206,1.166,227,3.951,282,1.664,295,1.596,339,1.89,350,2.745,353,3.184,364,1.664,390,1.511,496,3.422,656,1.705,732,3.049,871,2.675,1255,9.104,1257,4.564]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[13,0.064,45,2.403,903,5.621]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[56,3.581,886,4.512,890,4.612,903,4.612,1258,5.954]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[11,1.602,12,1.612,13,0.075,45,2.82,98,2.831,133,0.382,188,3.492,201,4.247,364,2.505,548,5.697,618,4.078,657,3.015,903,7.459,1020,5.482]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[814,0.472]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[2,0.855,13,0.044,124,3.555,205,1.543,370,4.048,528,2.792,1083,3.246,1259,4.969]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[124,5.085,205,2.208,1260,7.722]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[3,1.173,11,1.941,12,1.954,13,0.067,14,1.244,15,2.499,133,0.463,390,1.823,1259,9.653]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[2,1.143,75,2.244,628,4.04,1261,6.268]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[786,5.142,1025,4.911,1261,6.112,1262,4.179]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[2,1.455,11,1.259,12,1.267,13,0.044,36,2.231,41,3.851,46,1.621,89,1.089,96,1.915,105,1.792,133,0.435,280,2.594,282,1.969,306,3.945,318,2.193,324,4.478,341,1.872,550,3.388,592,3.556,597,4.05,696,3.128,715,3.556,901,3.767,1063,4.31,1261,9.678]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[95,3.608,133,0.402,214,5.148,704,3.638]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[77,3.012,81,2.643,422,2.69,704,2.621,1263,4.516,1264,4.15,1265,4.788,1266,4.788]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[11,1.571,12,1.581,75,2.095,81,3.425,90,2.902,95,5.176,133,0.375,152,2.046,308,4.053,422,3.486,599,4,749,2.53,975,4.806,1009,4.606,1264,5.378,1266,6.204,1267,4.806,1268,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[2,0.912,14,0.861,15,1.729,17,1.031,19,3.938,704,2.904,964,4.019]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[422,3.642,704,3.548,1263,6.112,1269,5.02]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[2,1.126,11,1.107,12,1.669,13,0.038,46,1.425,48,2.125,58,2.247,95,3.554,98,2.609,111,2.097,133,0.592,141,1.367,216,2.687,280,2.28,281,2.894,371,3.025,389,2.855,422,2.456,631,1.984,657,2.084,704,4.297,749,1.782,1059,3.56,1076,3.56,1250,4.122,1267,6.08,1270,4.371,1271,4.748]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[2,0.978,278,4.142,279,3.875,619,5.122,704,3.113,1074,3.536]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[422,3.642,704,3.548,1263,6.112,1269,5.02]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[11,1.988,12,2.001,48,3.816,111,3.766,133,0.475,281,5.198,631,3.563,704,4.297,1272,8.526]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[13,0.054,129,1.624,390,1.458,696,3.855,816,5.313]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[390,1.541,816,5.618,817,6.48,1273,7.039]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[2,0.783,11,1.154,12,1.161,13,0.04,14,0.739,89,0.997,90,2.131,106,4.237,109,3.909,129,1.789,133,0.275,295,1.73,341,1.715,390,2.115,397,2.275,428,6.366,528,2.559,584,4.828,816,5.851,1044,4.197,1047,3.71,1274,4.947,1275,4.947,1276,4.947,1277,4.554]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,2.349,16,0.724,747,3.686,1278,5.78,1279,5.78]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[141,2.422,1083,3.597,1278,5.194,1279,5.194,1280,5.982]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,1.222,12,1.23,13,0.073,14,0.783,15,1.573,16,0.57,63,2.093,89,1.056,106,2.153,109,3.423,133,0.588,134,2.3,141,1.509,153,3.393,204,1.044,301,2.3,762,1.509,894,3.656,1278,9.172,1279,7.844,1281,5.24]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[117,2.229,146,3.294,732,3.482]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[117,1.574,204,0.759,206,1.422,390,1.218,732,2.457,866,3.881,1282,5.122]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[11,1.542,12,1.552,13,0.083,89,1.333,129,1.613,133,0.613,138,1.696,149,3.062,203,3.925,204,0.902,206,1.69,339,1.811,390,1.448,528,3.421,654,3.176,1283,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[0,1.905,3,0.761,4,1.053,16,0.587,101,2.1,747,2.989,1284,2.482,1285,2.792]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[4,1.373,63,2.812,1284,3.237,1285,3.642]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[4,1.878,11,1.701,12,1.712,13,0.059,14,1.09,15,2.19,63,2.914,101,2.838,133,0.536,153,4.723,894,5.089,1284,3.354,1285,4.981]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[13,0.058,133,0.402,232,3.839,648,4.4]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[204,0.816,206,1.529,648,3.646,649,3.597,1151,3.939,1152,5.507]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[11,1.774,12,1.786,20,2.944,36,3.143,133,0.424,204,1.038,211,4.926,212,5.2,232,4.047,364,2.774,648,6.034,772,5.426,1286,7.005]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[16,0.671,204,0.843,566,3.819,747,3.42,1287,5.686,1288,5.363]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,1.571,12,1.581,13,0.055,96,2.389,133,0.646,135,4.806,136,4.701,204,0.92,251,2.996,347,4.922,776,5.692,1284,3.098,1290,3.903]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[133,0.439,280,3.786,597,5.911]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[16,0.406,17,0.669,280,1.795,592,2.461,597,2.802,631,1.562,958,2.38,1291,3.736,1292,3.736,1293,3.736,1294,3.736,1295,3.736,1296,3.736,1297,1.95]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[3,0.761,11,1.259,12,1.267,13,0.044,14,0.807,16,0.587,17,0.967,41,3.851,46,1.621,75,1.679,98,1.653,106,2.218,133,0.301,224,2.872,280,3.755,281,6.517,282,1.969,350,3.248,431,3.556,453,3.248,528,2.794,597,7.554,657,2.37,1297,2.819,1298,5.4]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,0.871,89,1.245,209,2.764,227,3.536,720,4.632,732,2.728]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[178,3.303,209,2.49,720,4.172,724,4.296,1299,5.564,1300,5.564,1301,5.122]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,1.166,46,1.755,89,2.222,98,2.532,129,1.427,133,0.325,138,1.5,152,1.775,204,1.129,206,1.494,209,4.674,339,1.601,341,2.027,389,3.516,390,1.28,721,4.849,1302,5.383,1303,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[13,0.058,17,1.292,133,0.402,1304,6.268]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[17,1.071,1025,4.173,1304,5.194,1305,5.982,1306,4.774,1307,5.982]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[2,1.504,11,1.667,12,1.677,13,0.077,14,1.068,90,4.091,95,3.572,133,0.398,295,2.5,900,6.58,1304,9.264,1308,7.147]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[45,2.2,440,4.085,620,2.793,1309,6.645]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[98,1.494,201,3.018,741,3.896,1309,4.494,1310,4.239,1311,4.882,1312,4.494,1313,4.882,1314,4.882]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[11,1.701,12,1.712,14,1.09,15,2.19,133,0.406,295,2.551,366,4.447,614,6.456,741,5.822,1106,5.822,1312,6.716,1315,7.295,1316,6.716,1317,7.295,1318,7.295]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,1.205,13,0.05,16,0.671,18,3.013,209,2.764,1319,5.122]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,1.506,16,0.839,1320,6.404]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,2.146,11,1.774,12,1.786,13,0.08,20,2.944,36,3.143,100,3.901,133,0.424,993,3.901,1319,8.208]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[13,0.05,16,0.671,19,4.222,747,3.42,982,4.769,1321,6.177]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[16,0.65,649,3.597,982,4.619,984,5.507,985,5.507,986,5.507]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[2,1.448,11,0.882,12,0.888,13,0.074,57,1.131,63,1.511,76,2.245,78,2.449,89,1.204,98,1.827,101,1.471,120,1.777,124,2.491,129,0.923,133,0.211,134,1.66,152,1.813,251,3.288,280,1.817,295,2.088,301,1.66,307,2.191,318,2.425,341,1.311,366,2.306,398,3.284,618,3.544,657,1.66,701,3.137,728,2.491,982,7.854,988,3.482,989,3.482,991,3.482,992,3.019,1059,2.836,1322,3.782,1323,3.482,1324,3.782]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.205,14,0.923,15,1.854,16,0.671,747,3.42,1320,5.122]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.085,16,0.605,528,2.878,1181,3.731,1319,4.614,1320,6.624]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.981,13,0.053,14,0.97,20,3.445,21,1.956,36,2.682,100,3.328,133,0.361,208,2.401,209,3.983,294,1.784,373,1.589,397,2.985,628,3.633,993,3.328,1319,7.381,1320,5.383]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.124,13,0.047,17,1.031,232,3.064,749,2.163,1227,4.208,1325,4.448]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.262,860,4.12,1121,4.85,1325,4.994,1326,6.468]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.46,11,1.187,12,1.194,13,0.072,15,1.528,98,1.557,107,2.324,133,0.283,152,1.545,160,3.982,196,2.34,208,1.883,301,2.234,351,2.408,497,3.102,527,4.22,594,4.22,654,2.445,734,2.544,749,3.677,769,4.554,822,2.324,871,2.984,1123,3.93,1325,7.563]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[2,1.143,13,0.058,141,2.079,1327,6.645]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1328,9.58]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[13,0.046,16,0.615,17,1.013,105,1.878,117,1.601,133,0.45,138,1.451,142,2.719,205,1.618,257,3.168,294,1.555,309,4.036,359,4.036,494,5.21,503,3.664,528,2.928,807,4.914,993,2.902,1120,1.832,1297,2.955,1327,9.476,1329,4.517,1330,5.66,1331,3.948,1332,5.66,1333,0.833]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[2,1.143,3,1.017,274,1.761,1334,4.753]],["keywords//docs/security/using-fail2ban-for-security/",[1334,5.085,1335,7.722,1336,7.109]],["toc//docs/security/using-fail2ban-for-security/",[3,0.75,13,0.043,14,0.795,16,0.578,17,0.952,95,2.658,117,1.504,133,0.557,146,2.223,174,3.566,262,3.503,604,3.118,739,1.894,1086,4.411,1120,1.721,1331,3.711,1334,6.998,1336,4.897,1337,5.319,1338,5.319,1339,5.319,1340,5.319,1341,4.897,1342,7.733,1343,4.897,1344,4.619]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[0,2.033,2,0.912,16,0.626,275,2.928,747,3.19,1223,5.003,1345,5.304]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[16,0.605,783,3.881,786,4.064,1181,3.731,1218,4.296,1346,5.564,1347,5.564]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[2,1.484,11,1.634,12,1.644,13,0.057,36,2.894,133,0.39,275,5.369,678,2.095,952,5.81,1223,6.083,1345,9.724,1348,7.006,1349,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[4,1.205,13,0.05,17,1.106,19,4.222,134,2.711,1350,5.363]],["keywords//docs/development/version-control/install-gogs-on-debian/",[4,1.262,74,3.316,134,2.838,446,5.616,1350,5.616]],["toc//docs/development/version-control/install-gogs-on-debian/",[3,0.898,4,1.243,11,1.486,13,0.095,133,0.355,134,2.797,157,2.931,205,1.822,211,4.127,267,3.784,306,4.656,371,4.061,620,2.467,1059,4.78,1350,9.418]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[13,0.047,16,0.626,124,3.794,224,3.064,301,2.528,747,3.19,1351,3.794]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[16,0.388,1032,1.34,1181,2.393,1244,3.099,1351,2.35,1352,3.569,1353,2.239,1354,3.569,1355,3.569,1356,3.569,1357,3.569,1358,3.569,1359,3.569,1360,3.099,1361,3.569]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[2,0.882,13,0.076,14,1.194,15,1.672,20,2.156,45,1.698,46,1.672,89,1.612,105,1.849,133,0.31,160,2.963,253,4.177,295,1.948,440,5.293,656,2.081,749,3.511,769,2.856,1123,4.301,1302,5.128,1351,6.73]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[13,0.058,117,2.041,146,3.017,1362,5.272]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[117,1.166,866,2.876,1363,4.123,1364,4.123,1365,4.123,1366,3.58,1367,4.123,1368,4.123,1369,4.123,1370,4.123,1371,4.123,1372,4.123]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[11,1.204,12,1.212,13,0.089,30,2.539,36,2.133,48,2.311,100,3.88,111,2.281,117,1.46,133,0.421,251,2.296,280,2.48,282,1.883,289,2.158,301,2.266,435,2.48,592,3.401,618,3.065,1362,7.204,1373,5.164,1374,6.967,1375,4.282,1376,5.164,1377,5.164,1378,4.484]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[16,0.671,45,1.883,620,2.39,735,4.068,747,3.42,1106,4.93]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[16,0.65,661,4.619,735,3.939,901,4.173,1106,4.774,1379,5.982]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[13,0.062,87,5.011,163,5.102,614,5.102,620,3.83,735,6.518,762,2.192,763,3.712,1106,7.899,1250,6.607,1380,7.609]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[82,4.621,117,2.229,1063,6.291]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[45,1.195,75,1.219,117,1.109,201,2.424,274,0.957,280,1.883,592,2.582,1063,3.129,1120,1.269,1381,3.92,1382,3.92,1383,3.92,1384,3.92]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[13,0.048,14,0.888,46,1.785,105,1.973,133,0.54,273,3.225,280,2.856,281,3.624,307,3.443,397,2.734,453,3.576,524,4.147,592,3.915,971,5.162,1063,7.737,1075,3.576,1385,3.915,1386,5.945,1387,5.945,1388,5.945,1389,5.473,1390,5.945,1391,4.59]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[2,0.978,13,0.05,133,0.344,148,3.42,482,4.068,830,4.769]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1392,7.722,1393,7.722,1394,7.722]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[0,2.291,11,1.514,12,1.523,13,0.072,21,1.956,106,2.666,133,0.565,148,3.594,234,2.985,482,7.79,772,4.629,830,5.012,1395,5.976,1396,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[117,1.883,146,2.782,213,3.902,679,3.444,1234,5.14]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[203,3.303,204,0.759,390,1.218,679,2.878,1234,4.296,1238,4.831,1397,5.564]],["toc//docs/development/java/java-development-wildfly-centos-7/",[2,0.882,3,0.785,5,3.607,6,2.342,11,1.299,12,1.307,13,0.076,106,2.288,133,0.445,157,3.676,204,1.091,232,2.963,390,1.22,525,5.128,572,4.446,679,2.882,916,3.444,1234,7.221,1253,4.069,1398,5.57,1399,5.57,1400,5.57,1401,5.57,1402,5.57]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[13,0.064,133,0.439,720,5.911]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[722,7.109,723,6.705,724,5.962]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[11,1.154,12,1.161,13,0.059,14,0.739,106,3.968,133,0.538,145,7.736,147,4.149,148,4.837,209,3.281,224,2.631,295,1.73,352,3.528,592,3.258,624,2.214,720,8.102,734,2.472,749,1.857,769,2.536]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[4,1.408,133,0.402,305,4.933,493,5.148]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[4,1.262,290,3.998,305,4.42,493,4.612,684,3.232]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[11,0.965,44,2.95,81,2.103,90,3.373,95,2.067,98,1.959,131,2.2,141,1.191,157,1.902,166,3.808,257,2.315,258,3.194,305,4.376,307,2.396,309,2.95,354,3.808,358,6.251,490,3.592,496,3.102,657,3.437,685,2.034,812,3.021,977,3.592,1056,3.021,1403,3.592,1404,4.017,1405,4.136,1406,2.456,1407,4.136,1408,3.592,1409,4.136,1410,4.136,1411,4.136,1412,3.808,1413,3.808,1414,4.136,1415,3.43,1416,3.808,1417,4.136,1418,3.808,1419,3.808,1420,4.136,1421,4.136,1422,3.808]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[2,0.978,14,0.923,15,1.854,652,4.512,1423,5.363,1424,4.93]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[652,3.566,1262,2.898,1423,4.239,1424,3.896,1425,4.882,1426,4.882,1427,4.882,1428,4.882,1429,4.882]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[2,1.372,13,0.059,14,1.084,15,2.178,45,2.212,57,1.459,90,2.101,133,0.482,147,2.761,194,3.767,280,3.486,341,1.691,678,1.459,691,3.894,762,1.405,763,2.38,993,2.501,1262,2.896,1423,8.906,1424,5.791,1430,4.879,1431,4.879,1432,6.018,1433,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[13,0.054,341,2.307,555,5.313,708,5.52,1434,6.128]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[708,4.313,1435,7.607,1436,5.2,1437,5.2,1438,5.2,1439,5.2,1440,5.2]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[2,0.762,3,0.678,13,0.058,16,0.523,78,4.651,89,0.97,96,1.706,98,1.473,111,2.126,118,4.179,133,0.478,149,2.228,180,3.432,205,1.376,227,2.755,243,3.841,294,1.974,295,1.683,341,2.49,628,2.693,678,1.439,708,8.456,772,3.432,1219,3.716,1434,7.912,1441,4.812,1442,4.812,1443,4.812,1444,4.179]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[133,0.439,656,2.944,1140,5.285]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[13,0.042,45,1.585,133,0.289,465,4.15,605,3.487,656,1.943,749,1.952,1140,3.487]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[2,1.484,4,1.366,11,1.634,12,1.644,13,0.057,133,0.522,196,3.221,204,0.956,205,2.68,497,4.271,656,2.617,718,5.81,749,2.63,763,3.418,1140,4.697]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[3,0.938,45,2.029,342,4.31,926,5.52,1445,5.313]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[342,4.558,901,4.911,926,5.838,1445,5.618]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[45,2.731,59,6.718,282,3.266,433,5.014,620,3.467,926,9.1]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[13,0.058,117,2.041,146,3.017,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1446,2.864,1447,3.47,1448,3.47,1449,3.606,1450,3.101]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[13,0.058,117,2.041,146,3.017,203,4.285]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1447,3.47,1450,3.101,1451,4.348,1452,4.348,1453,4.348]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[2,0.958,3,0.852,11,1.41,12,1.419,13,0.049,36,2.498,53,3.022,89,1.708,129,1.475,153,3.915,203,6.869,290,3.738,295,2.115,923,3.982,927,3.738,928,4.507,929,2.724,964,4.218,1044,3.461]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[141,2.079,294,1.984,657,3.168,1454,4.132]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[274,1.578,657,3.897,1454,3.702,1455,4.612]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[13,0.043,16,0.578,17,0.952,75,1.653,98,1.628,117,1.504,120,2.499,133,0.296,146,2.223,179,3.118,279,3.337,341,3.158,399,3.288,657,2.334,739,1.894,901,3.711,1120,1.721,1297,2.777,1454,6.71,1456,5.319,1457,4.619,1458,9.111,1459,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[2,0.978,16,0.671,204,0.843,205,1.766,747,3.42,1165,3.037]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[16,0.65,157,2.751,204,0.816,684,2.99,1181,4.011,1460,5.982]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,1.435,12,1.444,13,0.08,91,4.613,133,0.477,138,1.578,204,1.348,209,4.78,257,3.443,289,2.571,318,3.484,339,1.685,435,2.955,1461,4.292,1462,5.342,1463,4.75]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[2,0.912,16,0.626,46,1.729,422,2.98,717,3.562,747,3.19,1464,5.003]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[16,0.703,422,3.346,1181,4.337,1464,5.616,1465,6.468]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[2,1.383,11,2.037,12,2.05,13,0.071,90,3.763,133,0.486,1464,9.383]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[2,1.143,13,0.058,45,2.2,1466,6.268]],["keywords//docs/game-servers/install-teamspeak/",[1218,5.435,1466,6.112,1467,7.039,1468,5.435]],["toc//docs/game-servers/install-teamspeak/",[11,1.634,12,1.644,13,0.057,20,2.711,36,2.894,133,0.39,267,4.159,280,3.365,330,5.591,341,2.428,445,4.614,589,4.996,1466,10.209,1469,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[5,4.31,45,2.029,133,0.371,456,2.349,1470,6.128]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[623,5.162,1471,6.468,1472,5.954,1473,5.616,1474,6.468]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[5,6.454,14,1.489,456,3.518]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[2,0.978,4,1.205,13,0.05,17,1.106,205,1.766,232,3.285]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[4,1.167,17,1.071,157,2.751,684,2.99,860,3.811,861,5.194]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[4,2.045,11,1.941,12,1.954,13,0.067,17,1.49,21,2.509,234,4.821,301,3.654]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[3,0.812,133,0.321,227,3.298,482,3.794,732,2.545,830,4.448,1475,4.598]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[75,1.729,204,0.759,206,1.422,390,1.218,482,3.664,860,3.545,1476,5.122]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[89,2.178,98,2.674,133,0.486,138,2.241,339,2.393,732,3.859,1475,6.973]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[3,0.716,89,1.024,227,2.907,482,4.922,732,2.243,830,3.921,1334,3.344,1475,4.053]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[204,0.666,206,1.248,390,1.069,482,3.215,860,3.11,1334,3.215,1476,4.494,1477,3.896,1478,4.882]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[89,2.053,98,2.433,107,3.631,133,0.443,148,4.403,482,6.706,516,6.346,830,6.139,1475,6.346,1479,7.951]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[2,0.978,17,1.106,204,0.843,205,1.766,232,3.285,1227,4.512]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[17,0.931,204,0.71,658,4.788,659,4.15,684,2.599,1480,5.2,1481,4.15,1482,5.2]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[11,1.41,12,1.419,13,0.079,91,4.535,133,0.472,138,1.551,204,1.447,209,4.745,257,3.385,289,2.527,318,3.442,339,1.656,435,2.905,1461,4.218,1462,5.251,1463,4.669]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[17,1.292,232,3.839,732,3.188,1227,5.272]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[17,0.738,204,0.563,206,1.054,246,2.096,390,0.903,732,1.821,860,2.627,1483,4.123,1484,4.123,1485,3.419,1486,3.796,1487,4.123]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[11,1.602,12,1.612,13,0.075,14,1.026,15,2.062,129,1.676,133,0.515,138,1.762,149,3.181,204,1.262,206,1.756,339,1.881,390,2.29,654,3.3]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[30,3.549,58,3.416,59,5.413,341,2.502]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[30,2.941,826,4.266,886,4.173,891,3.507,1488,5.507,1489,5.507]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[13,0.069,30,4.192,58,5.036,133,0.475,337,5.948,891,4.998,1490,6.805,1491,7.849]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[30,3.037,45,1.883,58,2.923,59,4.632,341,2.141,886,4.309]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[30,2.736,826,3.968,857,4.614,886,3.881,891,3.262,1488,5.122,1489,5.122]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[13,0.05,16,0.932,17,1.535,30,3.025,58,4.673,75,1.912,117,2.426,133,0.342,146,2.571,337,4.292,450,3.86,891,3.607,1120,2.776,1297,4.477,1490,4.91,1491,5.664,1492,5.303]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.298,17,1.192,19,4.55,427,3.475,1177,3.541]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.085,17,0.996,427,2.904,1178,3.346,1493,3.881,1494,3.44,1495,5.122]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[0,2.21,4,1.694,11,1.46,12,1.469,13,0.087,36,2.587,48,2.802,111,2.765,137,3.543,251,2.784,282,2.283,289,2.617,390,1.371,427,3.268,435,4.17,682,4.914,1177,4.618]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[3,0.938,45,2.029,46,1.998,216,3.767,1496,5.78]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[45,1.402,46,1.381,87,3.029,178,2.731,204,0.628,213,2.696,427,2.401,646,3.994,1496,3.994,1497,4.234]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[2,1.088,13,0.075,14,1.026,15,2.062,45,2.094,98,2.102,133,0.515,204,0.938,402,4.027,486,3.845,618,4.078,678,2.054,741,5.482,1496,8.032,1497,6.324,1498,5.965]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[886,6.056,1499,7.2]],["keywords//docs/platform/kvm-reference/",[886,4.512,1500,6.468,1501,6.468,1502,6.468,1503,5.616]],["toc//docs/platform/kvm-reference/",[30,3.079,56,3.467,75,1.946,117,1.771,133,0.349,188,3.183,191,3.928,214,4.465,282,2.283,319,4.368,339,1.715,408,3.928,554,3.928,618,3.717,763,3.054,852,5.437,886,4.368,901,4.368,1000,2.632,1297,3.268,1391,4.834,1503,5.437,1504,6.261,1505,4.695]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[13,0.058,17,1.292,232,3.839,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[17,0.738,75,1.282,129,1.006,201,2.549,203,2.448,390,0.903,860,2.627,1446,2.715,1447,3.291,1448,3.291,1449,3.419,1450,2.941]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.124,13,0.047,16,0.626,18,2.81,133,0.321,206,1.473,1149,2.218]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.373,206,1.799,867,5.279,1149,2.71]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.781,11,1.571,12,1.581,13,0.055,21,2.03,133,0.375,138,1.728,152,2.046,206,2.647,208,2.493,257,3.772,274,1.644,314,6.204,339,1.845,584,4.438,1149,2.594,1506,4.228]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[4,1.298,16,0.724,206,1.701,747,3.686,1149,2.563]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[4,1.085,16,0.605,206,1.422,1149,2.142,1507,5.564,1508,3.262,1509,3.731]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[13,0.048,14,0.888,21,1.791,36,2.456,84,5.515,89,1.199,105,1.973,120,2.793,131,4.454,133,0.54,138,1.525,152,1.805,206,1.52,208,2.199,274,1.451,282,2.168,339,1.628,373,1.455,584,3.915,1149,2.289,1404,3.73,1506,3.73,1510,3.675]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1142,5.911,1511,7.257,1512,5.621]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[178,2.898,724,3.769,1301,4.494,1512,3.481,1513,4.882,1514,4.494,1515,4.882,1516,3.769,1517,4.494]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[2,1.028,94,5.976,95,3.244,98,1.986,147,3.674,216,3.674,341,2.25,450,4.072,487,3.904,610,5.636,726,4.629,1087,5.383,1512,7.244,1516,5.012,1518,6.491,1519,5.636,1520,6.491,1521,6.491,1522,6.491,1523,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[89,1.455,772,5.148,1512,5.148,1516,5.573]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[178,3.087,724,4.015,732,2.297,1477,4.15,1512,3.709,1516,4.015,1517,4.788,1524,5.2]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[13,0.052,14,0.952,15,1.913,20,2.467,89,1.772,133,0.489,138,1.635,181,3.941,204,1.2,206,1.629,282,2.324,339,1.746,390,2.375,929,2.871,1516,4.922,1523,5.868,1525,6.374]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[2,0.978,13,0.05,16,0.671,747,3.42,1087,5.122,1512,4.405]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[723,4.239,724,3.769,1192,3.769,1512,3.481,1514,4.494,1526,4.882,1527,4.882,1528,4.882,1529,4.494]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[2,1.326,13,0.048,14,0.888,15,1.785,20,2.301,76,3.529,89,1.199,106,3.44,147,3.365,196,2.734,289,2.485,295,2.079,439,2.813,485,5.162,497,3.624,678,1.778,734,2.971,938,4.745,1087,6.944,1512,5.972,1516,4.59,1529,5.473,1530,5.945]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[2,0.912,13,0.047,75,1.791,274,1.406,620,2.229,704,2.904,869,3.67]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[16,0.605,17,0.996,117,1.574,422,2.878,631,2.325,704,2.804,1120,1.801]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[2,1.009,13,0.071,14,0.952,46,1.913,75,1.981,77,3.692,81,3.24,95,4.393,133,0.355,295,2.229,308,3.833,491,4.127,620,2.467,704,5.735,762,1.836,1531,6.374,1532,6.374]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[45,2.2,1404,4.528,1533,5.148,1534,5.272]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[274,1.578,280,3.107,1535,6.468,1536,6.468,1537,5.616]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[3,1.271,131,3.517,224,3.517,397,3.041,524,4.613,657,2.902,945,6.088,971,5.742,1404,6.435,1534,7.492,1538,6.088,1539,6.612,1540,6.612,1541,6.088,1542,6.612,1543,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[17,1.292,232,3.839,1010,3.494,1227,5.272]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[17,1.26,1010,3.407,1227,5.142,1544,4.234]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[13,0.055,15,2.023,17,1.206,30,3.313,36,2.784,45,2.054,57,2.015,105,2.236,167,4.166,232,3.584,327,4.806,364,2.457,488,4.293,550,4.228,715,4.438,763,3.287,993,3.455,1010,4.42,1545,5.851]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[2,0.912,16,0.626,341,1.997,747,3.19,1262,3.42,1424,4.598,1546,5.761]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1262,5.076,1424,6.825]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[2,1.205,13,0.062,36,3.143,56,4.213,89,1.534,133,0.424,295,2.661,364,2.774,402,4.46,545,7.005,618,4.517,1262,4.517,1547,9.898]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[2,0.855,13,0.044,16,0.587,747,2.989,1025,3.766,1058,4.687,1548,5.398,1549,4.969]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[16,0.531,783,3.405,1025,3.405,1128,3.769,1181,3.273,1218,3.769,1240,4.494,1550,4.882,1551,4.882]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[2,1.446,11,1.571,12,1.581,13,0.055,36,2.784,133,0.375,291,3.55,678,2.015,952,5.588,1058,8.993,1128,5.203,1549,9.534,1552,6.738,1553,9.131]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[16,0.587,17,0.966,30,2.654,56,2.989,528,2.792,822,2.465,891,3.164,1554,3.85]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[16,0.565,17,0.931,823,4.015,824,4.015,825,3.9,826,3.709,1555,4.15,1556,4.15]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[814,0.472]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[3,0.938,509,3.726,664,4.747,692,5.14,1557,6.657]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[16,0.703,17,1.158,509,3.62,664,4.612,692,4.994]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[13,0.084,15,1.2,20,1.546,53,1.997,89,0.806,98,1.223,105,1.326,109,2.789,133,0.522,152,1.893,165,2.372,167,2.471,195,2.919,289,1.67,295,2.18,307,2.314,402,3.654,408,2.507,440,2.262,489,3.086,604,2.343,664,5.465,678,1.195,679,2.067,692,7.678,753,3.679,1049,2.731,1059,2.997,1558,6.233,1559,3.996,1560,8.655]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[2,1.143,17,1.292,146,3.017,1561,6.268]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[17,1.382,1262,4.584,1561,6.705]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[2,1.685,13,0.086,90,3.672,341,2.955,402,4.998,678,2.55,1561,7.404]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,2.728,328,2.628,655,5.122,1499,5.122,1562,6.177,1563,6.177]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,3.109,328,2.995,1564,7.039,1565,7.039]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,3.677,70,5.631,345,1.191,397,3.828,433,6.424,645,7.665,738,7.665]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[117,1.747,146,2.581,203,3.667,739,2.2,1032,2.319,1566,3.254]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[739,2.304,866,4.512,1567,6.468,1568,6.468,1569,4.612]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,203,4.856,208,2.128,295,2.861,339,1.575,351,3.871,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[117,1.747,390,1.352,739,2.2,1000,2.597,1032,2.319,1566,3.254]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[739,2.304,1002,5.162,1569,4.612,1572,6.468,1573,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,208,2.128,295,2.861,339,1.575,351,3.871,390,1.791,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[0,2.18,2,0.978,68,2.728,132,4.309,205,1.766,787,5.122]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[16,0.565,17,0.931,68,2.297,70,2.793,132,3.628,147,2.943,684,2.599,1574,4.788]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[2,1.59,13,0.063,20,3.009,68,4.91,70,4.176,132,7.003,205,2.223,341,2.695,433,4.352]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[16,0.724,17,1.192,275,3.384,1575,5.14,1576,6.128]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[16,0.703,17,1.158,786,4.724,1577,6.468,1578,6.468]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,133,0.342,186,4.75,275,5.019,318,2.499,328,2.618,678,1.84,1059,4.613,1200,5.664,1220,7.896,1252,3.522,1575,7.624,1576,9.091,1579,5.664]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[3,0.938,305,4.55,390,1.458,493,4.747,1450,4.747]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[390,1.541,1450,5.02,1580,7.039,1581,6.48]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[290,4.807,305,5.315,390,2.198,894,5.425,932,6.752,1450,5.546,1582,7.776,1583,7.776,1584,7.776,1585,7.776,1586,7.776,1587,7.776]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[52,5.758,1022,7.257,1142,5.911]],["keywords//docs/uptime/reboot-survival-guide/",[52,5.142,1588,7.039,1589,7.039,1590,7.039]],["toc//docs/uptime/reboot-survival-guide/",[15,2.484,16,0.636,17,1.047,52,6.045,98,1.789,105,1.94,117,2.341,128,4.17,129,1.427,146,2.444,152,1.775,167,5.116,169,3.273,271,4.079,280,2.808,281,3.564,464,4.385,584,3.85,656,2.184,788,5.077,1000,2.458,1591,5.847,1592,5.847,1593,5.847]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[2,1.248,204,1.076,290,4.873]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[133,0.392,204,0.961,684,3.518,1581,6.48]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[91,5.151,204,0.938,209,4.14,257,3.845,358,5.482,807,5.965,894,4.792,1461,4.792,1462,5.965,1594,6.324,1595,6.869,1596,6.869,1597,6.869,1598,6.869,1599,6.869,1600,6.869,1601,6.869,1602,6.869]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[0,2.349,13,0.054,68,2.94,227,3.81,732,2.94]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[16,0.703,17,1.158,68,2.857,732,3.922]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[13,0.078,14,1.09,20,2.823,68,4.76,70,3.918,133,0.406,204,0.996,341,2.528,390,1.597,433,4.083,621,4.576,678,2.181,732,3.222]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[814,0.472]],["title//docs/uptime/monitoring/top-htop-iotop/",[2,1.054,3,0.938,141,1.917,493,4.747,516,5.313]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[141,1.863,516,5.162,1603,5.616,1604,5.954,1605,5.162]],["toc//docs/uptime/monitoring/top-htop-iotop/",[107,3.551,244,5.68,289,3.25,328,4.73,349,4.677,516,6.206,714,7.159,715,5.121,1538,7.159,1603,6.752,1604,7.159]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[2,1.054,152,2.021,205,1.903,271,4.644,1606,5.78]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1606,6.705,1607,7.722,1608,7.722]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[20,3.077,89,1.603,98,2.433,133,0.567,243,6.346,328,4.332,341,2.756,348,4.605,1606,8.842]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[14,0.861,15,1.729,16,0.626,17,1.031,203,3.42,283,2.528,1066,4.598]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[16,0.565,17,0.931,203,3.087,283,2.282,390,1.139,466,3.9,1066,4.15,1609,4.788]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[13,0.067,14,1.244,21,2.509,129,2.031,133,0.463,152,2.528,208,3.08,280,3.999,1053,4.66,1066,6.644]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[36,3.256,445,5.191,1140,5.285]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[465,7.459,466,4.172,1140,5.356,1609,5.122]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[107,3.474,133,0.424,138,1.951,162,5.426,339,2.084,551,6.607,612,6.31,653,4.047,862,5.558,1140,7.376,1610,4.704,1611,7.609]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[13,0.054,74,3.413,234,3.061,873,5.52,1062,4.862]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[74,3.067,873,4.96,1612,5.194,1613,4.774,1614,4.774,1615,4.96]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[13,0.051,74,3.21,89,1.75,133,0.349,152,2.636,160,3.33,234,2.879,417,5.192,440,3.543,737,5.764,873,7.2,1062,6.342,1519,8.655,1616,8.682,1617,6.261,1618,6.261,1619,6.261]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[13,0.054,17,1.192,133,0.371,146,2.782,530,5.52]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[23,7.872,1620,8.551]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[13,0.042,14,0.783,20,2.028,53,3.823,56,2.902,98,2.764,120,3.593,133,0.426,141,1.509,174,3.514,281,3.194,319,3.656,365,6.788,503,3.393,530,8.759,582,4.824,678,1.567,739,1.866,812,3.828,871,3.072,1331,3.656,1416,4.824,1621,4.824]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[13,0.058,17,1.292,1262,4.285,1622,6.268]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[17,0.874,860,3.11,861,4.239,1227,3.566,1262,2.898,1544,2.936,1622,4.239,1623,4.239,1624,3.405]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[2,1.231,11,1.813,12,1.825,13,0.081,36,3.212,46,2.334,133,0.433,280,3.735,678,2.325,762,2.24,1262,4.616,1622,6.752]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[13,0.064,17,1.411,1625,6.086]],["keywords//docs/game-servers/multicraft-on-debian/",[17,1.382,1262,4.584,1625,5.962]],["toc//docs/game-servers/multicraft-on-debian/",[13,0.088,133,0.486,439,4.134,678,2.613,717,5.401,1262,5.187,1625,6.746]],["deprecated//docs/game-servers/multicraft-on-debian/",[814,0.472]],["title//docs/game-servers/multicraft-on-ubuntu/",[13,0.064,16,0.857,1625,6.086]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[16,0.839,1262,4.584,1625,5.962]],["toc//docs/game-servers/multicraft-on-ubuntu/",[13,0.088,133,0.486,439,4.134,678,2.613,717,5.401,1262,5.187,1625,6.746]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[2,0.759,13,0.039,16,0.521,17,0.858,45,1.461,279,3.007,880,3.501,1081,4.162,1626,4.162,1627,4.413]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1626,6.705,1627,7.109,1628,7.722]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[3,1.263,13,0.073,133,0.499,294,2.462,364,3.266,1626,9.528]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[246,4.007,735,5.191,1083,4.741]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[8,3.839,313,4.187,1083,5.34,1629,5.954]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[15,2.441,106,4.244,206,2.079,279,6.482,735,5.357,769,4.171,1083,4.892,1574,7.488,1630,5.357]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[509,4.412,735,5.191,1083,4.741]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[8,3.551,313,3.873,509,3.348,1083,5.058,1629,5.507]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[15,1.985,106,3.703,241,5.484,279,5.655,402,3.876,735,7.591,769,3.391,1083,6.932,1184,5.742,1188,5.106,1631,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[29,5.413,367,5.573,1010,3.494,1632,6.645]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[16,0.531,17,0.874,42,3.566,117,1.381,274,1.191,367,3.769,841,3.661,1010,2.363,1120,1.58]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[13,0.074,16,0.993,17,1.634,60,5.851,76,4,117,2.582,146,2.816,152,2.046,993,3.455,1000,2.833,1010,3.262,1120,2.181,1253,4.922,1632,6.204,1633,6.738,1634,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[2,0.978,14,0.923,15,1.854,16,0.671,17,1.106,1262,3.667]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[16,0.839,17,1.382,1262,4.584]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[2,1.383,13,0.071,90,3.763,341,3.028,678,2.613,1262,6.964]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[16,0.857,732,3.482,747,4.365]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[204,0.71,206,1.329,390,1.139,1181,3.487,1635,4.788,1636,5.2,1637,5.2,1638,4.015]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,1.737,12,1.748,13,0.079,89,1.502,129,1.817,133,0.606,138,1.91,204,1.017,206,1.904,339,2.04,390,2.137]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[117,2.041,146,3.017,1463,5.573,1639,7.218]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[117,2.184,866,5.387,1640,7.722]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[2,1.549,3,0.852,11,1.41,12,1.419,13,0.049,52,4.417,57,1.808,98,1.85,133,0.337,267,3.59,318,3.442,548,5.015,678,1.808,1059,6.355,1463,7.554,1641,9.783,1642,6.047,1643,6.047]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[127,5.499,133,0.439,456,2.782]],["keywords//docs/networking/dns/common-dns-configurations/",[1473,6.705,1644,7.109,1645,7.109]],["toc//docs/networking/dns/common-dns-configurations/",[2,1.358,3,1.209,14,0.919,15,1.847,105,2.042,122,4.437,133,0.342,138,1.578,173,3.983,177,4.292,351,4.673,455,3.75,456,2.171,457,4.613,739,2.191,740,2.602,1543,5.342,1646,5.664,1647,4.91,1648,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[4,1.408,13,0.058,17,1.292,132,5.035]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[17,0.874,246,2.481,1649,3.896,1650,4.239,1651,4.882,1652,4.882,1653,4.239,1654,4.882,1655,4.882]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[2,1.155,4,1.423,13,0.078,89,1.941,98,2.946,120,3.427,132,5.089,133,0.406,205,2.086,262,4.804,331,6.716,1656,6.716,1657,7.295]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[13,0.05,75,1.92,272,4.93,631,2.581,1658,5.363,1659,5.363]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[272,5.618,631,2.942,893,5.618,1658,6.112]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[2,1.409,3,0.915,13,0.053,16,0.706,17,1.162,75,2.018,95,4.449,152,1.971,289,2.713,1253,6.502,1297,3.388,1404,4.072,1492,4.013,1658,7.729,1660,6.491,1661,5.383,1662,5.976,1663,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[138,1.851,488,4.598,509,4.04,1065,5.272]],["keywords//docs/websites/cms/high-availability-wordpress/",[390,1.416,466,4.85,509,3.62,1053,3.62,1664,5.954]],["toc//docs/websites/cms/high-availability-wordpress/",[13,0.066,14,0.859,15,1.726,21,1.733,89,1.16,129,1.403,133,0.61,148,4.53,204,0.785,208,2.128,224,3.059,295,2.012,509,3.219,678,1.72,762,1.657,1053,5.328,1140,3.857,1498,4.994,1665,4.313,1666,4.994,1667,5.752]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[129,1.507,133,0.344,148,4.763,390,1.352,1053,3.457]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[466,5.279,1053,3.94,1664,6.48,1668,7.039]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[13,0.06,89,1.502,129,1.817,133,0.543,148,5.405,224,3.962,295,2.605,390,2.137,1053,6.094,1665,5.585]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[13,0.07,132,6.056]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[246,3.578,1649,5.618,1650,6.112,1669,6.48]],["toc//docs/development/nodejs/how-to-install-nodejs/",[13,0.057,21,2.824,46,3.171,76,4.159,100,3.592,147,5.305,301,3.075,520,6.083,589,4.996,655,5.81,701,5.81,1670,7.006,1671,7.006,1672,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[13,0.05,117,1.747,146,2.581,227,3.536,1149,2.378,1158,3.14]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[4,1.085,75,1.729,117,1.574,206,1.422,1149,2.142,1158,2.828,1673,2.614]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[0,2.249,4,2.116,13,0.071,14,0.952,36,2.633,105,2.115,133,0.56,138,1.635,203,3.784,206,2.247,306,4.656,339,1.746,373,1.56,1149,3.384,1674,4.78]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[631,3.628,906,6.929]],["keywords//docs/platform/network-helper/",[528,2.878,604,3.262,623,4.44,631,3.339,1675,5.564,1676,5.564]],["toc//docs/platform/network-helper/",[14,0.919,16,0.669,17,1.101,60,5.342,98,1.883,117,1.74,133,0.342,253,4.613,341,2.132,365,4.205,491,3.983,631,3.585,906,6.845,1120,1.991,1253,6.265,1297,3.212,1395,5.664,1419,5.664,1492,3.803,1661,5.102,1677,5.342,1678,6.152]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[17,0.966,146,2.256,169,3.021,209,2.416,528,2.792,648,3.29,1188,4.168,1679,4.308]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[17,0.931,509,2.911,648,3.17,649,3.128,650,3.799,1151,3.425,1679,4.15,1680,4.788]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[13,0.077,45,2.179,48,3.198,111,3.157,169,5.317,178,4.243,209,3.198,510,3.802,648,4.357,678,2.137,1188,5.519,1679,9.074]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[3,0.812,13,0.047,17,1.031,146,2.408,528,2.98,648,3.512,1679,4.598]],["keywords//docs/websites/cms/drush-drupal/",[17,0.931,509,2.911,528,2.69,648,3.17,649,3.128,650,3.799,1151,3.425,1680,4.788]],["toc//docs/websites/cms/drush-drupal/",[2,1.252,3,0.773,13,0.075,14,0.819,72,4.112,74,2.812,89,1.106,98,1.678,107,2.504,246,2.788,274,1.338,289,2.292,295,2.765,366,4.819,510,2.917,648,3.343,678,1.64,812,4.006,992,6.309,1253,4.006,1461,3.826,1679,8.097,1681,5.484]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[117,1.883,146,2.782,204,0.909,656,2.487,749,2.499]],["keywords//docs/security/ssl/ssl-apache2-centos/",[204,0.71,656,1.943,1120,1.683,1682,3.554,1683,4.788,1684,4.516,1685,5.2,1686,3.425]],["toc//docs/security/ssl/ssl-apache2-centos/",[3,1.202,11,1.988,12,2.001,133,0.592,152,2.589,204,1.164,656,3.185,749,3.201]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[16,0.671,17,1.106,204,0.843,528,3.195,656,2.307,749,2.319]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[16,0.565,17,0.931,204,0.71,656,1.943,684,2.599,1682,3.554,1687,4.788,1688,4.788]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[3,1.202,11,1.988,12,2.001,133,0.592,152,2.589,204,1.164,656,3.185,749,3.201]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[16,0.785,747,3.997,1010,3.494,1165,3.549]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[16,0.839,1010,3.738,1181,5.178]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[13,0.055,15,2.023,16,0.993,30,3.313,45,2.054,57,2.015,105,2.236,167,4.166,364,2.457,488,4.293,550,4.228,954,5.588,993,3.455,1010,5.013,1165,3.313,1166,5.588,1689,2.902]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[814,0.472]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,1.124,13,0.047,17,1.031,146,2.408,749,2.163,1325,4.448,1544,3.465]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,0.897,1121,3.449,1123,3.552,1325,3.552,1544,2.766,1624,3.209,1653,3.994,1690,4.6,1691,4.234,1692,3.814]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,1.445,13,0.06,15,1.506,17,0.898,21,1.512,45,1.529,98,1.535,106,2.061,107,2.291,152,1.523,160,3.941,196,2.307,208,1.856,234,2.307,301,2.202,351,2.374,497,3.058,527,4.161,594,4.161,654,2.41,678,1.5,734,2.507,749,3.651,769,4.516,871,2.941,1123,3.874,1325,7.511]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1005,3.832]],["title//docs/websites/cms/cms-overview/",[46,2.167,294,1.984,685,3.549,862,5.272]],["keywords//docs/websites/cms/cms-overview/",[509,3.114,528,2.878,648,3.392,649,3.346,650,4.064,1151,3.664,1693,5.122]],["toc//docs/websites/cms/cms-overview/",[45,2.319,46,2.284,48,3.405,111,3.361,294,2.091,509,5.54,610,6.607,648,6.034,650,7.23,685,3.741,1188,5.875]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[371,5.022,1694,6.845,1695,7.257]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[16,0.565,17,0.931,42,3.799,117,1.471,274,1.269,1120,1.683,1694,4.516,1695,4.788]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[4,1.394,152,2.17,204,1.296,371,6.052,463,5.519,704,3.602,1032,2.683,1035,5.221,1566,3.766,1694,9.264,1696,7.147,1697,6.58,1698,7.147]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[98,2.412,1009,5.387,1699,6.086]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1699,4.619,1700,4.774,1701,5.507,1702,4.619,1703,5.507,1704,5.507]],["toc//docs/tools-reference/file-transfer/filezilla/",[3,1.33,13,0.076,678,2.822,1699,8.744]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[13,0.047,16,0.626,18,2.81,209,2.578,439,2.726,717,3.562,1705,5.003]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[439,3.331,717,4.352,1705,6.112,1706,7.039]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[11,1.363,12,1.372,13,0.078,46,1.755,98,1.789,133,0.325,194,4.515,209,4.299,373,1.431,439,2.767,624,2.616,657,2.566,717,3.615,993,2.998,1253,4.271,1647,4.666,1648,4.666,1705,9.939,1707,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[2,0.912,13,0.047,16,0.626,124,3.794,301,2.528,740,2.436,1708,5.003]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[739,2.75,740,3.266,1708,6.705]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[2,0.855,13,0.044,106,2.218,140,4.905,152,1.64,204,0.737,291,2.845,295,1.889,337,3.767,341,1.872,353,3.767,455,3.292,678,1.615,740,2.284,749,2.935,923,3.556,948,4.05,1242,7.096,1243,7.334,1470,8.46,1708,4.689,1709,4.478,1710,5.4,1711,5.4,1712,5.4]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[29,5.413,841,5.413,1010,3.494,1713,6.645]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[16,0.531,17,0.874,42,3.566,117,1.381,274,1.191,841,3.661,1010,2.363,1120,1.58,1713,4.494]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[13,0.041,16,0.545,17,0.898,29,3.762,75,1.56,117,1.419,841,7.781,993,2.572,1010,2.428,1120,1.624,1297,2.619,1492,3.102,1661,4.161,1677,4.356,1714,10.376,1715,10.376,1716,5.017,1717,5.017,1718,5.017,1719,5.017,1720,5.017,1721,5.017,1722,5.017,1723,5.017,1724,5.017,1725,5.017]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[45,2.646,433,4.859]],["keywords//docs/platform/linode-images/",[433,4.786,1726,8.551]],["toc//docs/platform/linode-images/",[0,3.161,46,2.689,433,6.64,1459,7.15,1727,8.958]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.205,17,1.106,146,2.581,390,1.352,1544,3.715,1728,5.363]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.373,390,1.541,1624,4.911,1728,6.112]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[0,2.574,3,1.028,4,1.878,13,0.078,21,2.198,133,0.406,208,2.698,364,2.66,390,1.597,397,3.354,678,2.181,1728,9.358]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[13,0.05,16,0.671,747,3.42,1191,4.769,1287,5.686,1288,5.363]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.014,74,2.666,134,2.282,390,1.139,427,2.715,1178,3.128,1191,4.015,1192,4.015]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[0,2.098,4,1.16,13,0.079,14,0.888,15,1.785,21,1.791,124,3.915,129,1.451,134,2.609,138,1.525,208,2.199,251,2.643,274,1.451,294,2.301,339,1.628,364,2.168,391,4.745,427,3.104,628,3.328,1191,8.565]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[3,0.938,619,5.52,1038,5.52,1468,5.14,1729,5.78]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1468,4.994,1729,5.616,1730,4.512,1731,5.616,1732,5.616]],["toc//docs/applications/messaging/using-weechat-for-irc/",[2,0.593,3,0.834,11,0.873,12,0.878,13,0.048,14,0.884,16,0.407,17,0.67,75,1.163,77,3.429,79,3.445,80,3.445,81,1.902,90,1.612,117,1.058,133,0.208,308,3.56,328,1.592,341,1.297,402,2.194,408,2.348,431,3.899,486,2.095,497,2.281,528,1.936,599,3.514,620,1.448,642,3.103,653,1.991,654,1.798,691,2.987,715,2.465,1033,2.194,1036,2.987,1120,1.211,1252,2.142,1297,1.954,1729,8.796,1730,2.611,1733,2.558,1734,3.445,1735,3.742,1736,5.45,1737,3.742,1738,5.45,1739,3.742,1740,3.742]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[13,0.058,17,1.292,301,3.168,1741,6.268]],["keywords//docs/applications/messaging/install-znc-debian/",[1741,5.616,1742,6.468,1743,6.468,1744,6.468,1745,6.468]],["toc//docs/applications/messaging/install-znc-debian/",[11,1.737,12,1.748,13,0.06,90,3.208,95,3.723,133,0.415,181,4.605,289,3.113,656,2.782,749,2.796,769,3.819,1741,8.476,1746,7.448,1747,7.448]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[3,1.017,137,4.085,735,4.753,739,2.571]],["keywords//docs/email/using-google-apps-for-email/",[1748,7.722,1749,7.722,1750,7.722]],["toc//docs/email/using-google-apps-for-email/",[89,1.853,351,4.349,455,5.603,871,5.388,992,7.335,1709,7.622]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[75,2.244,133,0.402,604,4.231,1406,4.285]],["keywords//docs/networking/linux-static-ip-configuration/",[165,4.584,623,6.163,1406,4.584]],["toc//docs/networking/linux-static-ip-configuration/",[16,0.91,17,1.064,70,3.193,75,1.848,90,2.561,117,2.368,133,0.331,146,2.485,152,1.805,165,3.529,345,0.85,371,3.788,408,3.73,631,2.485,734,2.971,903,4.24,906,4.745,1000,2.499,1120,1.924,1297,3.104,1344,5.162,1406,3.529,1492,3.675,1661,4.93,1751,5.945]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,2.033,16,0.626,105,1.912,1306,4.598,1362,4.208,1689,2.481,1752,4.448]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[204,0.628,206,1.176,891,2.696,1306,3.671,1362,3.36,1366,3.994,1477,3.671,1752,3.552,1753,3.029,1754,4.6]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[13,0.085,14,0.691,15,1.388,20,1.789,21,1.393,30,2.273,57,1.382,89,1.691,133,0.558,193,3.297,208,1.71,209,2.069,224,2.459,227,2.646,294,1.271,295,1.617,330,3.69,491,2.993,501,3.69,678,1.382,732,2.042,735,3.045,763,2.255,871,2.71,891,2.71,1362,5.091,1752,6.478,1755,4.623,1756,4.256,1757,4.623]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[17,0.966,146,2.256,204,0.737,206,1.38,341,1.871,1226,4.476,1544,3.246,1758,4.476]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[204,0.883,206,1.653,1057,5.616,1149,2.49,1231,5.954]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[13,0.064,133,0.567,204,1.085,206,2.871,289,3.323,474,6.139,1226,8.444,1758,6.594]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[14,0.995,15,1.998,17,1.192,19,4.55,203,3.952]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[17,1.158,129,1.578,203,3.839,390,1.416,1495,5.954]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[2,1.088,3,0.968,13,0.056,90,2.959,133,0.382,142,3.3,203,7.142,274,1.676,290,4.247,295,2.402,927,4.247,928,3.654,929,3.095,1759,6.869]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[13,0.054,17,1.192,133,0.371,819,5.14,1760,6.657]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[17,1.26,390,1.541,819,5.435,1310,6.112]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[13,0.085,133,0.584,345,1.191,390,1.823,678,2.489,819,8.096,1333,1.226]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[2,0.855,3,0.761,133,0.3,740,2.283,1032,2.026,1033,3.164,1035,3.943,1630,3.555]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[739,2.304,740,2.735,1032,2.428,1035,4.724,1624,4.512]],["toc//docs/email/postfix/postfix-smtp-debian7/",[2,0.882,13,0.045,14,1.194,57,1.666,98,1.705,129,1.359,131,2.963,133,0.521,137,3.153,152,1.691,274,1.359,450,3.495,678,1.666,735,3.668,929,3.602,1032,3.511,1034,4.619,1035,4.069,1036,4.446,1037,5.128,1038,4.619,1142,4.177,1761,4.301,1762,5.57,1763,5.57]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[13,0.064,133,0.439,1764,6.845]],["keywords//docs/applications/cloud-storage/dropbox/",[16,0.565,17,0.931,110,3.215,117,1.471,568,4.788,1120,1.683,1310,4.516,1764,4.516]],["toc//docs/applications/cloud-storage/dropbox/",[13,0.076,133,0.525,152,2.865,652,6.893,1764,8.194]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[30,3.273,75,2.069,691,5.313,1765,5.78,1766,5.52]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[188,3.288,1505,4.85,1767,6.468,1768,6.468,1769,6.468]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[16,0.864,17,1.423,30,3.91,75,2.471,117,2.249,691,6.346,1120,2.573,1297,4.151,1492,4.915,1506,4.988,1765,6.904,1766,6.594]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1005,3.832]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[2,1.143,732,3.188,1120,2.336,1770,6.645]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[732,2.642,1120,1.936,1771,5.982,1772,4.369,1773,4.486,1774,5.982]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[814,0.472]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[17,1.031,45,1.756,341,1.997,599,3.42,762,1.659,1075,3.465,1445,4.598]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[17,0.996,624,2.49,860,3.545,1775,4.614,1776,5.564,1777,5.122,1778,5.122]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[13,0.084,45,2.479,75,2.528,77,4.711,81,4.135,90,3.503,95,4.065,152,2.47,1775,8.568]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[16,0.587,45,1.645,341,1.871,599,3.204,762,1.555,1075,3.246,1445,4.308,1689,2.325]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[16,0.65,624,2.677,1753,3.939,1775,4.96,1777,5.507,1778,5.507]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[13,0.084,45,2.479,75,2.528,77,4.711,81,4.135,90,3.503,95,4.065,152,2.47,1775,8.568]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[814,0.472]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[3,0.871,16,0.671,24,4.512,385,4.512,1079,4.632,1689,2.66]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[16,0.765,382,6.112,385,5.142,1689,3.032]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[2,0.926,13,0.047,24,7.017,36,2.415,45,1.782,75,2.572,77,4.793,81,4.207,90,3.564,133,0.325,274,1.427,308,4.977,385,8.052,599,4.913,601,4.271,618,3.471]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[14,0.923,89,1.245,117,1.747,680,2.923,1053,3.457,1779,5.363]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[14,0.861,17,1.031,89,1.161,146,2.408,680,2.726,1053,3.225,1544,3.465]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[14,0.861,16,0.626,89,1.161,680,2.726,1053,3.225,1689,2.481,1784,2.954]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[29,5.413,42,5.272,1269,5.148,1785,6.645]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[16,0.565,17,0.931,42,3.799,117,1.471,274,1.269,1120,1.683,1269,3.709,1785,4.788]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[13,0.064,16,0.864,17,1.423,42,5.808,76,4.72,107,3.631,111,3.512,117,2.249,274,1.94,749,2.985,1120,2.573,1786,7.951]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[13,0.054,16,0.724,740,2.815,958,4.241,1689,2.867]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[16,0.5,390,1.007,460,3.552,739,1.638,740,1.945,1032,1.727,1360,3.994,1566,2.423,1689,1.981,1787,2.844]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[13,0.062,14,1.137,133,0.424,152,3.005,282,2.774,289,3.18,317,5.426,460,7.642,678,2.275,1360,6.607,1787,6.119]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[814,0.472]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[14,0.806,57,1.614,138,1.384,204,1.067,339,1.478,1286,4.969,1788,5.398]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[16,0.5,17,0.823,57,1.375,117,1.301,1010,2.226,1120,1.489,1297,2.401,1486,4.234,1492,2.844,1789,4.6]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[14,1.266,16,0.657,17,1.082,57,2.534,58,2.861,133,0.337,138,2.173,156,3.982,169,3.385,193,4.312,204,0.825,209,2.706,258,4.669,339,2.321,366,3.686,431,3.982,589,4.312,653,3.216,854,4.669,1010,2.927,1782,5.015,1790,5.567]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[3,0.812,6,2.422,89,1.161,117,1.629,157,2.649,1779,5.003,1791,4.448]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[6,2.719,117,1.829,157,2.974,1779,5.616,1791,4.994]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[6,3.343,13,0.064,96,2.819,133,0.443,157,3.656,278,5.331,291,4.189,453,4.782,628,4.45,1791,7.863,1792,7.32]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[3,0.812,6,2.422,16,0.626,89,1.161,157,2.649,1689,2.481,1791,4.448]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[6,2.515,16,0.65,157,2.751,528,3.094,1689,2.576,1791,4.619]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[6,3.343,13,0.064,96,2.819,133,0.443,157,3.656,278,5.331,291,4.189,453,4.782,628,4.45,1791,7.863,1792,7.32]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[814,0.472]],["title//docs/platform/billing-and-payments/",[1012,6.342,1014,6.51]],["keywords//docs/platform/billing-and-payments/",[1012,6.246,1014,6.412]],["toc//docs/platform/billing-and-payments/",[40,3.336,45,2.498,57,1.33,92,3.689,105,2.247,107,2.032,138,1.141,169,2.49,201,2.75,345,0.968,350,2.676,372,2.413,397,2.046,440,2.518,464,3.336,589,3.173,620,1.722,662,2.791,731,5.879,1009,4.627,1011,3.863,1012,6.691,1014,5.077,1065,3.25,1099,3.863,1333,0.655,1707,3.689,1793,4.449,1794,4.449,1795,3.435,1796,4.096,1797,4.449,1798,3.435,1799,3.863,1800,5.879,1801,3.689]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[17,1.192,19,4.55,199,5.52,614,4.464,1802,5.78]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1802,7.425,1803,8.551]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[2,1.484,95,4.685,98,2.144,131,3.726,133,0.39,289,3.917,294,1.925,453,4.213,628,5.246,631,2.928,678,2.095,1802,9.172]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[14,0.861,15,1.729,45,1.756,569,5.304,624,2.578,1074,3.298,1804,5.761]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[6,2.719,1074,5.082,1805,5.954,1806,6.468]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[2,1.231,14,1.162,15,2.334,75,2.417,77,4.504,81,3.953,308,4.677,370,5.831,391,6.206,599,4.616,678,2.325,1506,4.878,1805,7.159]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[21,2.616,472,6.929]],["keywords//docs/platform/package-mirrors/",[16,0.531,17,0.874,21,1.471,45,1.488,117,1.381,233,3.769,234,2.245,472,3.896,1807,4.494]],["toc//docs/platform/package-mirrors/",[14,1.77,16,0.864,17,1.423,21,2.396,117,2.249,294,3.087,472,6.346]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.205,17,1.106,146,2.581,427,3.224,1177,3.285,1544,3.715]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.853,13,0.086,14,1.068,21,2.154,36,2.953,208,2.644,282,2.606,289,2.987,373,1.75,390,1.565,435,4.563,682,5.376]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,0.99,13,0.041,17,0.909,75,1.578,203,3.014,206,1.298,227,2.907,232,2.701,1158,2.581]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[0,2.574,2,1.707,4,1.423,11,1.701,12,1.712,13,0.078,129,1.78,133,0.406,205,2.086,206,1.865,319,5.089,390,1.597,1149,2.808]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[2,1.054,17,1.192,146,2.782,1158,3.384,1544,4.004]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[0,2.424,2,1.465,4,1.804,13,0.085,14,1.026,129,1.676,133,0.382,138,1.762,205,1.964,206,1.756,339,1.881,373,1.682,390,1.504,678,2.054,1149,2.645]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[36,2.982,445,4.753,804,4.528,1055,5.573]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[16,0.703,17,1.158,528,3.346,804,4.058,1055,4.994]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[3,0.539,11,0.892,12,0.897,13,0.031,45,1.165,49,3.32,56,2.117,133,0.543,152,1.161,162,4.294,174,2.564,205,1.093,278,2.564,280,1.836,281,2.331,289,1.598,306,2.793,365,2.613,453,2.299,488,2.436,685,2.96,804,6.639,1055,8.407,1056,4.398,1065,2.793,1329,3.051,1810,3.823,1811,4.993,1812,3.171,1813,3.823,1814,3.823,1815,3.823,1816,4.398,1817,3.32,1818,3.823]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[117,1.883,141,1.917,1000,2.799,1032,2.499,1819,5.78]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[141,2.028,1032,2.643,1353,4.416,1819,6.112]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[13,0.069,152,2.589,179,4.998,244,6.228,268,6.583,544,7.071,678,2.55,1819,7.404,1820,6.081]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.124,16,0.626,427,3.007,1165,2.833,1177,3.064,1689,2.481,1784,2.954]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.931,11,1.774,12,1.786,13,0.08,36,3.143,282,2.774,289,3.18,390,1.666,435,4.754,682,5.602]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[13,0.054,117,1.883,133,0.371,1000,2.799,1821,3.475]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[117,1.991,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[11,1.897,12,1.909,13,0.084,133,0.453,152,2.47,277,5.674,656,3.038,1821,5.927]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[68,4.267]],["keywords//docs/applications/containers/what-is-docker/",[16,0.703,68,2.857,70,3.474,117,1.829,1689,2.785]],["toc//docs/applications/containers/what-is-docker/",[4,1.453,13,0.06,16,0.81,68,3.29,117,2.107,135,5.312,136,5.196,262,4.905,345,1.065,815,5.441,1000,3.131,1333,1.097,1689,3.208,1822,9.761]],["deprecated//docs/applications/containers/what-is-docker/",[814,0.472]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,1.298,13,0.054,17,1.192,146,2.782,1544,4.004]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,1.014,17,0.931,157,2.391,684,2.599,1623,4.516,1624,3.628,1653,4.516,1823,5.2]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,2.068,13,0.079,14,0.903,17,1.082,20,2.34,46,1.815,57,1.808,58,2.861,89,1.219,141,1.742,234,2.78,274,1.475,301,2.654,318,2.456,373,1.48,678,1.808,762,1.742,822,3.87,1015,2.281,1824,3.128]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,1770,5.686]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1825,7.722,1826,5.962,1827,6.404]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[3,1.028,13,0.059,133,0.536,290,4.51,294,2.005,345,1.043,390,2.51,927,4.51,928,3.88,929,3.286,1333,1.074,1665,5.47]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[814,0.472]],["title//docs/platform/api/api-key/",[87,5.717,196,3.992]],["keywords//docs/platform/api/api-key/",[196,3.551,1828,7.722,1829,7.109]],["toc//docs/platform/api/api-key/",[350,6.169,734,5.127]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[45,2.646,447,6.191]],["keywords//docs/platform/linode-cli/",[1829,6.48,1830,7.039,1831,7.039,1832,7.039]],["toc//docs/platform/linode-cli/",[3,0.717,13,0.061,16,0.814,17,1.34,45,1.551,57,1.522,75,1.582,77,4.336,87,3.352,122,2.633,196,2.34,289,3.712,295,1.78,308,4.503,351,2.408,399,3.146,440,2.88,447,6.334,505,4.22,599,4.445,628,2.849,1120,1.647,1140,3.412,1790,4.685,1833,5.089,1834,5.089,1835,5.089]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[13,0.058,117,2.041,390,1.58,1000,3.035]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1446,2.864,1447,3.47,1448,3.47,1449,3.606,1450,3.101]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[2,0.958,3,0.852,11,1.41,12,1.419,13,0.049,36,2.498,53,3.022,89,1.708,129,1.475,153,3.915,290,3.738,295,2.115,390,2.533,923,3.982,927,3.738,928,4.507,929,2.724,964,4.218,1044,3.461]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[194,5.573,246,3.669,456,2.547,1836,6.645]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[246,3.925,456,2.725,1836,7.109]],["toc//docs/networking/dns/previewing-websites-without-dns/",[57,2.137,75,2.222,77,4.139,81,3.633,98,3.265,138,2.736,152,2.17,165,4.243,308,4.298,599,4.243,604,4.19,621,5.959]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[13,0.058,17,1.292,146,3.017,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[17,0.702,75,1.219,129,0.957,201,2.424,203,2.327,390,0.858,1446,2.582,1447,3.129,1448,3.129,1449,3.251,1450,2.796,1623,3.404,1624,2.735]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[13,0.05,16,0.671,17,1.106,18,3.013,232,3.285,1837,4.405]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[16,0.605,17,0.996,860,3.545,1837,3.968,1838,5.564,1839,4.831,1840,5.564]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[13,0.058,17,1.292,146,3.017,1837,5.148]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[17,1.26,1624,4.911,1837,5.02,1839,6.112]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[814,0.472]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[13,0.058,16,0.785,1689,3.109,1837,5.148]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[16,0.765,1689,3.032,1837,5.02,1839,6.112]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[117,1.747,204,0.843,206,1.579,341,2.141,1000,2.597,1229,3.42]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[157,2.391,204,0.71,206,1.329,1229,2.88,1673,2.443,1841,3.554,1842,3.554,1843,4.516]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[11,1.988,12,2.001,13,0.069,133,0.475,204,1.453,206,2.72,1229,4.721]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[17,1.031,146,2.408,204,0.786,206,1.473,341,1.997,1229,3.19,1544,3.465]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[204,0.759,206,1.422,1229,3.081,1673,2.614,1841,3.803,1842,3.803,1843,4.831]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[11,1.854,12,1.866,13,0.064,133,0.443,204,1.39,206,2.603,282,2.899,1229,4.403,1844,5.962,1845,7.32]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[814,0.472]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[13,0.054,17,1.192,146,2.782,390,1.458,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[17,0.996,175,3.968,390,1.218,1821,2.904,1846,4.614,1847,4.614,1848,4.614]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[13,0.054,17,1.192,133,0.371,232,3.541,1821,3.475]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[17,0.823,175,3.28,206,1.176,390,1.007,860,2.93,1821,2.401,1846,3.814,1847,3.814,1848,3.814,1849,4.6]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[2,1.143,732,3.188,1120,2.336,1850,7.218]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1772,5.142,1773,5.279,1851,7.039,1852,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[2,1.054,117,1.883,204,0.909,205,1.903,1000,2.799]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[117,1.692,204,0.816,1002,4.774,1686,3.939,1853,3.873,1854,5.507]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[11,1.667,12,1.677,13,0.086,133,0.398,138,1.833,204,1.552,209,3.198,318,3.858,339,1.957,435,3.433,1463,5.519]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[137,4.461,390,1.726,895,5.387]],["keywords//docs/platform/longview/longview-app-for-mysql/",[8,4.584,390,1.691,895,5.278]],["toc//docs/platform/longview/longview-app-for-mysql/",[8,2.608,13,0.036,16,0.478,17,0.786,41,3.133,58,2.079,90,3.92,129,1.636,133,0.453,188,2.233,257,2.459,267,3.981,345,0.628,372,2.383,390,1.781,399,2.716,662,2.756,763,2.143,804,2.756,1020,3.506,1047,6.099,1264,3.506,1267,3.133,1415,3.643,1432,7.547,1855,4.045,1856,3.815,1857,4.394,1858,4.394,1859,3.506,1860,3.643,1861,4.045,1862,4.394,1863,3.643]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[4,1.537,137,4.461,895,5.387]],["keywords//docs/platform/longview/longview-app-for-nginx/",[4,1.373,8,4.179,895,4.811,1864,7.039]],["toc//docs/platform/longview/longview-app-for-nginx/",[2,0.83,4,1.762,8,3.111,13,0.042,16,0.57,17,0.938,41,5.455,58,2.48,90,2.257,133,0.426,160,2.787,188,2.664,257,2.933,267,3.111,358,4.182,372,2.842,399,3.24,607,5.455,620,2.028,662,3.288,763,2.556,1264,4.182,1415,4.346,1432,4.346,1859,4.182,1860,4.346,1863,4.346,1865,4.55,1866,4.55,1867,4.346]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[137,4.461,204,1.076,895,5.387]],["keywords//docs/platform/longview/longview-app-for-apache/",[8,4.179,204,0.961,895,4.811,1868,7.039]],["toc//docs/platform/longview/longview-app-for-apache/",[2,0.742,8,2.781,13,0.038,16,0.509,17,0.839,41,5.021,58,2.217,133,0.392,155,2.492,160,2.492,188,2.381,204,1.154,257,2.622,267,2.781,282,1.708,358,3.739,372,2.541,399,2.896,607,3.341,620,1.813,662,2.939,763,2.285,1264,3.739,1415,5.838,1432,3.885,1594,4.313,1697,4.313,1855,4.313,1859,3.739,1860,3.885,1861,4.313,1863,3.885,1865,4.068,1866,4.068,1867,3.885,1869,4.685,1870,4.068,1871,4.685]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[2,1.248,732,3.482,1492,4.873]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[732,3.411,1492,4.774,1872,7.109]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.641,138,1.525,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,1873,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[814,0.472]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[45,2.2,138,1.851,199,5.986,1505,5.413]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1505,5.791,1874,7.722,1875,7.722]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[2,0.991,11,1.46,12,1.469,13,0.051,15,1.879,45,1.908,48,2.802,96,2.22,111,2.765,167,3.871,205,1.79,227,3.584,246,4.413,351,4.108,364,2.283,553,7.2,654,3.007,732,2.765,739,2.23,1610,3.871,1811,5.192]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[2,1.054,17,1.192,146,2.782,732,2.94,1544,4.004]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[17,0.778,204,0.593,206,1.111,390,0.952,732,1.921,1485,3.606,1624,3.033,1772,3.176,1876,4.348,1877,3.776,1878,4.348]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[11,1.667,12,1.677,13,0.077,89,1.441,129,1.744,133,0.594,138,1.833,149,3.31,204,0.975,206,1.827,339,1.957,390,2.08,654,3.433]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[13,0.054,75,2.069,227,3.81,732,2.94,1297,3.475]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[204,0.563,206,1.054,390,0.903,732,1.821,1297,2.152,1477,3.291,1879,4.123,1880,4.123,1881,4.123,1882,4.123,1883,4.123,1884,3.58]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[2,0.958,11,1.41,12,1.419,13,0.079,75,2.634,89,1.219,106,2.484,129,1.475,133,0.545,138,1.551,149,2.8,204,1.157,206,2.166,339,1.656,390,1.855,654,2.905,732,2.671,1297,3.157]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[16,0.785,45,2.2,1262,4.285,1689,3.109]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[16,0.765,1262,4.179,1689,3.032,1885,6.48]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[2,1.009,13,0.071,14,0.952,15,1.913,57,1.906,95,3.186,98,1.95,120,2.994,133,0.56,224,3.39,294,1.752,345,0.912,364,2.324,913,5.087,916,3.941,1262,5.973,1333,0.939,1886,6.374]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[814,0.472]],["title//docs/development/version-control/introduction-to-version-control/",[76,4.679,82,4.621,439,3.73]],["keywords//docs/development/version-control/introduction-to-version-control/",[74,3.609,1192,5.435,1887,7.039,1888,7.039]],["toc//docs/development/version-control/introduction-to-version-control/",[3,0.95,13,0.055,14,1.007,15,2.023,36,2.784,74,3.455,76,6.148,131,3.584,216,3.814,294,1.852,439,4.901,445,4.438,1889,6.738,1890,7.929,1891,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[17,1.106,146,2.581,204,0.843,427,3.224,1177,3.285,1544,3.715]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1178,4.234,1494,4.352,1892,6.112,1893,5.279]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[13,0.054,16,0.724,390,1.458,1689,2.867,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[16,0.473,175,3.101,390,0.952,1165,2.138,1753,2.864,1784,2.23,1821,2.27,1846,3.606,1847,3.606,1848,3.606,1894,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[13,0.054,16,0.724,390,1.458,747,3.686,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[16,0.473,175,3.101,390,0.952,1165,2.138,1181,2.916,1784,2.23,1821,2.27,1846,3.606,1847,3.606,1848,3.606,1894,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[2,0.978,16,0.671,205,1.766,1144,3.765,1689,2.66,1784,3.167]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[684,3.859,1144,4.707,1146,7.109]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[13,0.042,14,0.771,16,0.561,89,1.041,104,6.388,107,2.358,133,0.499,138,2.529,209,2.311,318,2.097,339,2.701,341,1.79,373,1.264,442,3.872,628,4.236,1127,4.121,1144,4.613,1147,7.778,1148,4.484,1490,4.121,1758,4.282,1895,4.754]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[2,0.978,17,1.106,146,2.581,204,0.843,205,1.766,1544,3.715]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[17,1.071,204,0.816,1544,3.597,1624,4.173,1854,5.507,1896,5.194]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[11,1.667,12,1.677,13,0.086,133,0.398,138,1.833,204,1.552,209,4.251,318,3.858,339,1.957,435,3.433]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[16,0.587,17,0.966,146,2.256,274,1.317,704,2.72,869,3.439,1689,2.325,1784,2.768]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[16,0.565,17,0.931,422,2.69,631,2.173,704,2.621,1624,3.628,1689,2.24,1885,4.788]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[2,0.762,13,0.058,14,0.719,45,1.467,55,3.357,90,3.094,95,4.295,133,0.268,196,3.952,274,1.174,279,3.019,389,2.894,397,2.213,422,4.446,497,2.933,620,1.862,704,3.62,734,3.59,749,2.696,762,1.386,925,3.357,967,3.432,968,3.432,975,3.432,1072,3.116,1074,2.755,1268,4.43,1303,3.432,1897,3.515,1898,3.609]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[814,0.472]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[390,1.458,763,3.247,1032,2.499,1545,5.78,1566,3.507]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[390,1.691,1032,2.899,1566,4.069]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[14,0.611,15,1.227,45,1.246,77,2.368,96,2.249,111,2.802,133,0.228,155,2.175,181,2.528,282,1.491,291,2.154,295,2.219,307,2.368,339,1.738,341,1.417,351,3.002,390,0.895,488,2.605,656,1.527,657,2.785,663,3.55,756,2.987,763,1.995,871,2.397,923,2.693,993,4.864,1032,3.289,1035,2.987,1267,2.916,1566,4.617,1570,2.492,1899,3.55,1900,3.764,1901,4.089,1902,4.089,1903,4.089,1904,4.089,1905,4.089]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[13,0.05,17,1.106,204,0.843,232,3.285,427,3.224,1177,3.285]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1178,4.234,1494,4.352,1892,6.112,1893,5.279]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[0,2.744,11,1.813,12,1.825,13,0.063,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[181,4.873,188,4.007,601,5.758]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[17,0.996,181,3.44,188,2.828,274,1.358,601,4.064,1544,3.346,1906,5.564]],["toc//docs/security/encryption/full-disk-encryption-xen/",[13,0.056,15,2.062,17,1.656,36,2.838,89,1.385,133,0.515,181,4.247,188,4.702,282,2.505,445,4.524,491,4.448,601,5.018,614,4.606,1907,6.324,1908,6.324,1909,6.869]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[814,0.472]],["title//docs/platform/automating-server-builds/",[2,1.248,100,4.042,178,4.679]],["keywords//docs/platform/automating-server-builds/",[188,3.288,720,4.85,1512,4.612,1910,6.468,1911,6.468]],["toc//docs/platform/automating-server-builds/",[2,1.088,45,3.188,57,2.054,100,3.522,105,2.28,165,4.078,169,3.845,178,4.078,188,3.492,373,1.682,585,5.018,604,4.027,781,4.695,894,4.792,1647,5.482,1648,5.482,1912,6.869]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[2,1.248,341,2.732,740,3.334]],["keywords//docs/email/running-a-mail-server/",[1353,4.416,1649,5.618,1913,7.039,1914,7.039]],["toc//docs/email/running-a-mail-server/",[2,1.617,5,2.475,13,0.031,95,3.009,100,1.96,105,1.269,133,0.213,145,4.515,163,2.564,174,2.564,235,2.727,257,2.14,341,1.325,380,3.171,397,1.758,455,4.54,456,2.125,656,1.428,740,4.713,749,1.435,756,2.793,762,1.101,1009,2.613,1242,2.952,1256,3.52,1333,0.563,1533,4.294,1630,2.518,1709,3.171,1811,3.171,1812,3.171,1908,3.52,1915,2.867,1916,3.52,1917,6.021,1918,6.021,1919,3.823]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[390,1.58,739,2.571,1032,2.71,1566,3.803]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[2,0.773,16,0.531,17,0.874,390,1.069,739,1.739,740,2.065,1032,1.833,1566,2.572,1920,4.882]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[11,1.386,12,1.395,13,0.068,21,1.791,53,2.971,109,2.661,133,0.331,152,2.543,165,4.971,351,3.962,390,1.302,456,2.098,653,4.454,656,2.221,739,3.453,749,2.232,1032,2.232,1566,3.132,1570,5.105]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[17,1.292,146,3.017,1010,3.494,1544,4.341]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1544,4.234,1921,6.48,1922,6.48,1923,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[13,0.055,15,2.023,17,1.206,30,3.313,36,2.784,45,2.054,57,2.015,105,2.236,146,2.816,167,4.166,327,4.806,364,2.457,488,4.293,550,4.228,715,4.438,763,3.287,993,3.455,1010,4.42,1545,5.851]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[814,0.472]],["title//docs/security/linode-manager-security-controls/",[45,2.2,46,2.167,274,1.761,439,3.416]],["keywords//docs/security/linode-manager-security-controls/",[274,1.578,921,4.724,929,2.914,1128,4.994,1924,6.468]],["toc//docs/security/linode-manager-security-controls/",[48,1.873,53,2.092,87,2.756,91,3.139,101,1.628,102,3.853,106,1.719,107,1.911,111,1.849,133,0.233,139,5.267,142,2.01,165,3.835,196,1.925,274,1.021,277,2.92,282,2.356,291,4.675,295,1.464,302,3.34,317,2.985,371,4.116,440,2.369,604,3.788,620,1.62,657,1.837,734,2.092,739,1.491,758,6.851,908,2.985,929,1.886,970,3.471,994,3.057,1086,6.544,1128,3.232,1925,4.185,1926,4.185]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,2.366,109,3.527,167,4.873]],["keywords//docs/security/backups/backing-up-your-data/",[169,4.97,179,3.792,1927,5.162,1928,6.468]],["toc//docs/security/backups/backing-up-your-data/",[2,0.9,14,0.849,15,2.434,24,2.596,25,2.837,75,1.766,77,2.059,78,2.301,81,1.807,105,1.179,163,2.383,167,3.513,169,6.234,179,2.084,188,1.807,195,2.596,198,1.909,267,3.373,287,2.341,301,1.56,308,2.138,328,1.512,390,0.778,399,2.197,489,5.481,506,2.947,572,2.837,599,2.11,789,2.744,1761,2.744,1867,2.947,1927,7.077,1929,3.272,1930,2.744,1931,4.934,1932,2.947,1933,3.272,1934,2.947,1935,3.554,1936,3.554,1937,3.554,1938,3.554]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[3,1.224,895,5.934]],["keywords//docs/platform/longview/longview/",[895,5.278,1939,7.722,1940,7.722]],["toc//docs/platform/longview/longview/",[13,0.055,57,1.347,87,2.967,95,4.128,96,1.597,109,3.059,137,2.55,188,2.29,191,2.827,196,3.143,233,3.479,257,2.522,280,2.164,281,2.747,294,1.238,399,2.785,435,2.164,631,1.883,661,3.479,763,2.198,862,3.291,871,2.641,893,3.596,895,7.13,1062,3.291,1444,3.912,1870,3.912,1941,4.506,1942,4.506,1943,4.506,1944,4.506,1945,4.506,1946,4.506,1947,4.506,1948,3.736,1949,3.912]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[45,2.646,46,2.606]],["keywords//docs/platform/linode-managed/",[921,6.246,1950,8.551]],["toc//docs/platform/linode-managed/",[13,0.06,14,0.75,36,2.073,45,1.529,53,2.507,105,3.728,131,2.669,133,0.279,141,1.445,154,4.356,196,2.307,295,1.755,350,3.017,371,4.72,389,3.017,445,3.304,624,2.245,653,4.685,928,2.669,1072,3.248,1267,5.284,1817,4.356,1866,4.356,1899,4.356,1948,4.161,1951,5.017,1952,5.017]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[2,0.978,13,0.05,75,1.92,588,3.819,624,2.764,1953,5.363]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[528,3.995,624,3.456,1953,6.705]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[13,0.07,16,0.681,17,1.121,24,4.573,45,1.908,58,2.963,75,2.699,77,3.626,81,3.183,90,2.697,280,3.007,308,3.765,364,2.283,380,5.192,506,5.192,599,3.717,624,2.802,1297,3.268,1953,9.346]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[16,0.671,204,0.843,1153,3.457,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[679,3.346,1955,6.468,1956,6.468,1957,5.954,1958,5.162]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[3,1.263,13,0.073,152,2.72,204,1.223,678,2.679,1153,6.142]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[13,0.05,16,0.671,1252,3.536,1689,2.66,1959,3.667,1960,3.999]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[528,2.379,913,3.671,1753,3.029,1959,2.731,1961,3.36,1962,3.029,1963,3.029,1964,2.978,1965,2.978,1966,4.6]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[13,0.071,14,1.305,133,0.486,280,4.197,451,5.326,678,2.613,1959,6.415]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[814,0.472]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[0,1.905,3,0.761,4,1.053,16,0.587,63,2.156,137,3.055,1285,2.792,1689,2.325]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[4,1.014,16,0.565,63,2.078,776,2.666,1285,2.69,1967,5.2,1968,5.2,1969,4.788]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[2,1.259,4,1.551,13,0.064,101,3.093,107,3.631,133,0.567,345,1.137,678,2.377,1285,5.268,1333,1.171]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[814,0.472]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,740,2.436,1033,3.377,1689,2.481,1970,3.42]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1353,3.753,1753,3.939,1970,3.551,1971,5.982,1972,4.486,1973,4.486]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[13,0.063,14,1.162,21,2.343,105,2.581,133,0.559,152,2.361,155,4.136,208,2.876,373,1.904,740,4.245,1970,4.616]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[16,0.587,370,4.048,1689,2.325,1784,2.768,1954,3.09,1974,3.766,1975,3.689,1976,3.29]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[206,1.529,1673,2.81,1753,3.939,1976,3.646,1977,4.369,1978,4.96]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[13,0.08,20,2.381,21,1.854,57,1.84,76,3.652,133,0.342,141,1.772,274,1.501,301,2.7,539,4.387,620,2.381,678,1.84,762,1.772,822,2.809,1015,2.321,1976,7.092,1979,5.664,1980,6.152]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[814,0.472]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,122,2.98,205,1.647,1689,2.481,1981,3.19]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[204,0.883,1144,3.943,1981,3.581,1982,4.724,1983,4.612]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[6,4.825,209,3.726,282,3.036,348,4.822,351,3.94,728,5.483,1144,6.392]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[16,0.724,105,2.209,141,1.917,1172,3.952,1689,2.867]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[157,1.999,317,3.101,528,2.25,624,1.946,1035,3.176,1172,2.581,1331,3.033,1753,2.864,1916,4.003,1984,4.348,1985,4.003]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[13,0.058,48,3.198,111,3.157,133,0.398,205,2.044,273,3.877,317,6.774,328,3.041,620,2.766,739,2.546,1172,5.639,1331,4.986,1630,4.707,1730,4.986,1986,6.58]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[16,0.626,739,2.052,1165,2.833,1689,2.481,1784,2.954,1954,3.298,1987,3.42]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1987,3.839,1988,6.468,1989,6.468,1990,4.42,1991,4.85]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[13,0.057,14,1.047,282,2.554,341,3.249,345,1.002,373,1.715,678,2.095,908,4.996,929,3.156,958,4.463,1333,1.032,1610,4.331,1787,4.331,1987,6.271,1992,5.117]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[16,0.626,739,2.052,747,3.19,1165,2.833,1288,5.003,1987,3.42,1993,5.761]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1987,3.839,1990,4.42,1991,4.85,1994,6.468,1995,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[13,0.059,14,1.09,282,2.66,341,3.337,373,1.786,678,2.181,908,5.202,929,3.286,958,4.647,1610,4.51,1787,4.51,1987,6.398,1992,5.328]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1005,3.832]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.053,16,0.587,1149,2.078,1165,2.654,1689,2.325,1784,2.768,1809,2.654,1954,3.09]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.262,1508,3.792,1996,4.994,1997,5.616,1998,4.512]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[13,0.05,14,0.919,21,1.854,84,5.648,89,1.24,120,2.89,131,4.562,133,0.595,138,1.578,152,1.868,208,2.276,282,2.243,339,1.685,373,1.506,456,2.171,510,3.272,1149,2.369,1404,3.86,1510,3.803,1809,3.025]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[16,0.552,204,0.693,206,1.298,341,1.76,1165,2.497,1229,2.812,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[204,0.759,206,1.422,1229,3.081,1673,2.614,1841,3.803,1842,3.803,1843,4.831]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,1.854,12,1.866,13,0.064,133,0.443,204,1.39,206,2.603,282,2.899,1229,4.403,1844,5.962,1845,7.32]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[814,0.472]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[3,0.812,16,0.626,210,3.562,1252,3.298,1960,3.73,1999,3.377,2000,5.761]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1961,3.012,1963,2.715,1964,2.67,1965,2.67,1999,2.417,2001,4.123,2002,4.123,2003,3.092,2004,2.715,2005,2.215,2006,4.123,2007,4.123]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[3,0.932,13,0.054,96,2.344,107,3.02,133,0.368,138,1.696,261,3.876,295,2.313,307,3.83,339,1.811,373,1.619,456,2.334,696,3.83,763,3.226,1999,6.013,2005,3.551,2008,4.959,2009,4.613,2010,4.281]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[16,0.724,801,3.541,1689,2.867,1784,3.413,1954,3.81]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[129,1.578,868,3.26,2011,6.468,2012,6.468,2013,4.612]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[13,0.069,20,2.381,46,2.575,58,2.911,108,3.803,109,2.753,133,0.342,148,3.407,198,3.304,294,1.691,341,2.132,364,2.243,378,3.919,486,3.443,801,6.188,1053,3.443,2014,6.117]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1290,3.855,1689,2.867,1784,3.413,1954,3.81]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.124,13,0.047,16,0.626,1165,2.833,1689,2.481,1784,2.954,1954,3.298]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.085,16,0.605,157,2.558,684,2.781,1997,4.831,2017,5.564,2018,5.564]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,2.2,11,1.634,12,1.644,13,0.095,58,3.315,152,2.127,234,4.31,301,3.075,2019,7.006,2020,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2021,3.81]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[3,0.676,16,0.521,89,0.966,368,3.344,1689,2.065,1784,2.458,1954,2.744,2025,3.157,2026,3.104,2027,4.413]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[16,0.587,141,1.555,294,1.483,657,2.369,1454,3.09,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[16,0.671,204,0.843,566,3.819,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[63,2.812,204,0.961,566,4.352,1284,3.237]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,1.571,12,1.581,13,0.055,96,2.389,133,0.646,135,4.806,136,4.701,204,0.92,251,2.996,347,4.922,776,5.692,1284,3.098,1290,3.903]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2028,3.648]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[16,0.605,74,2.853,429,3.346,1809,2.736,1978,4.614,2022,3.346,2028,3.049]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[3,0.716,6,2.135,16,0.552,105,1.685,204,0.693,283,2.228,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[3,0.812,16,0.626,141,1.659,726,4.109,1689,2.481,1930,4.448,2035,4.109]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[16,0.65,1753,3.939,2035,4.266,2036,5.194,2037,4.96,2038,5.982]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[3,0.968,13,0.075,14,1.026,95,3.433,133,0.515,234,3.159,251,3.054,282,2.505,359,4.899,554,4.31,678,2.054,1329,5.482,2035,6.597,2037,5.697,2039,5.304,2040,4.606]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[2,0.855,16,0.587,204,0.737,205,1.543,1165,2.654,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[16,0.565,204,0.71,528,2.69,684,2.599,1753,3.425,1784,2.666,1896,4.516,2041,5.2]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,1.701,12,1.712,13,0.087,133,0.406,138,1.871,204,1.471,209,3.264,318,3.911,339,1.998,435,3.504,1463,5.632]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,205,1.647,246,2.928,1689,2.481,2042,3.157]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1753,4.259,1853,4.187,1978,5.363,2042,3.544,2043,6.468]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[13,0.056,14,1.026,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,373,1.682,620,3.58,717,5.719,777,6.322,993,3.522,2042,5.069]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2044,3.767]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2046,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[2,0.978,3,0.871,16,0.671,205,1.766,1689,2.66,2042,3.385]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[624,2.185,1753,3.215,1853,3.161,1978,4.048,2042,2.675,2047,4.882,2048,3.896,2049,4.882,2050,3.566]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[13,0.056,14,1.026,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,373,1.682,620,3.58,717,5.719,777,6.322,993,3.522,2042,5.069]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[4,0.99,13,0.041,16,0.552,78,3.288,206,1.298,1149,1.955,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[4,1.014,206,1.329,1149,2.002,1508,3.049,1509,3.487,1997,4.516,2051,5.2,2052,5.2]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.978,16,0.671,1158,3.14,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[0,3.272,2,1.252,4,1.808,13,0.064,14,0.819,16,0.596,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,364,2,373,1.342,390,1.201,762,1.58,822,2.504,1015,2.069,1149,2.111]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[16,0.552,46,1.524,487,3.054,739,1.809,1689,2.187,1733,3.471,1784,2.604,1954,2.907,2053,3.095]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[16,0.626,105,1.912,450,3.614,456,2.033,1689,2.481,2055,4.109,2056,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[16,0.65,456,2.111,631,2.5,2056,3.278,2057,5.982,2058,5.982]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[13,0.054,14,0.988,89,1.333,98,2.023,105,2.194,133,0.502,138,1.696,208,2.446,372,3.587,373,1.619,451,4.031,762,1.905,1385,5.937,2056,6.036,2059,4.613,2060,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[3,0.761,16,0.587,109,2.416,110,3.337,149,2.5,1689,2.325,2061,2.899,2062,3.85]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[16,0.703,868,3.26,2061,3.474,2063,4.612,2064,5.363]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[3,1.366,13,0.079,2061,6.181]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[3,0.676,16,0.521,155,2.55,456,1.692,1165,2.357,1689,2.065,1784,2.458,1954,2.744,2065,2.55,2066,3.276]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.905,16,0.587,129,1.317,390,1.182,1041,2.928,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[390,1.416,1446,4.259,1753,4.259,2070,4.994,2071,4.724]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,2.21,2,0.991,13,0.051,53,3.129,89,1.75,129,1.528,153,4.054,290,3.871,295,2.19,390,2.561,678,1.872,923,4.123,927,3.871,928,4.618,929,2.821,964,4.368,1044,3.584]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[13,0.058,16,0.785,390,1.58,747,3.997]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[16,0.448,75,1.282,390,0.903,1181,2.765,1446,2.715,1448,3.291,1450,2.941,2072,4.123,2073,4.123,2074,4.123,2075,4.123,2076,4.123]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,1689,2.325,1784,2.768]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[2,1.567,13,0.062,36,3.143,107,3.474,133,0.424,261,4.46,345,1.088,550,4.773,680,5.513,1333,1.12]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[3,0.871,16,0.671,129,1.507,134,2.711,1041,3.35,1689,2.66]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[134,2.838,1042,5.162,1043,3.943,1141,4.337,1753,4.259]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[13,0.072,14,0.97,89,2.048,129,2.172,133,0.361,134,4.458,142,3.118,168,4.203,274,1.584,295,2.27,620,2.512,929,2.924,1044,3.716,1048,4.275,2077,5.012,2078,5.012]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.855,13,0.044,16,0.587,1689,2.325,1784,2.768,1954,3.09,2005,2.899,2079,3.164]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2005,3.213,2079,3.507,2080,5.982,2081,4.486,2082,4.486,2083,4.486]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2,1.179,3,1.05,13,0.06,133,0.415,234,3.425,235,5.312,282,2.716,456,2.629,653,3.962,762,2.145,2005,4,2010,4.822,2079,5.722,2084,5.585]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.978,16,0.671,732,2.728,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[16,0.531,204,0.666,206,1.248,390,1.069,732,2.156,1477,3.896,2085,3.769,2086,4.882,2087,4.882]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,1.667,12,1.677,13,0.077,89,1.441,129,1.744,133,0.594,138,1.833,149,3.31,204,0.975,206,1.827,339,1.957,390,2.08,654,3.433]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[2,1.248,141,2.27,1934,6.537]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[33,5.363,141,2.557,857,5.363,1934,5.363]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[3,0.963,13,0.037,21,1.358,25,3.596,30,2.215,36,1.861,45,2.518,46,2.479,53,2.252,57,2.47,133,0.38,141,2.379,294,1.238,445,2.967,488,2.87,493,3.213,621,2.827,657,3.625,739,1.605,762,1.298,789,3.479,894,4.769,895,3.079,1010,2.181,1166,3.736,1323,4.148,1331,3.143,1344,3.912,1647,3.596,1648,3.596,1867,3.736,1929,4.148,2088,4.506]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[2,1.248,141,2.27,2089,6.845]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[141,2.028,1605,7.505,2089,6.112]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[2,0.593,3,0.527,13,0.085,14,0.559,20,1.448,21,1.128,36,3.034,44,2.669,53,2.959,89,1.193,98,1.812,133,0.506,138,0.96,141,1.078,145,4.439,204,0.511,205,1.07,206,1.513,267,2.222,273,2.03,295,2.07,301,1.642,345,0.535,390,1.296,539,2.669,618,2.222,653,1.991,657,1.642,678,1.119,822,3.354,870,2.423,1333,0.551,1870,3.25,1979,3.445,2089,8.398]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[814,0.472]],["title//docs/applications/social-networking/dolphin/",[2090,8.389]],["keywords//docs/applications/social-networking/dolphin/",[2090,6.705,2091,6.163,2092,7.109]],["toc//docs/applications/social-networking/dolphin/",[2,0.783,13,0.088,14,0.739,15,1.485,20,1.914,57,1.479,129,1.207,133,0.408,193,3.528,206,2.233,209,2.214,295,1.73,318,2.009,341,1.715,366,4.469,390,1.083,653,2.631,657,2.171,678,1.479,717,3.058,739,1.762,777,3.381,880,3.613,913,3.948,2090,8.958,2093,4.947]],["deprecated//docs/applications/social-networking/dolphin/",[578,0.7,811,0.641,814,0.086,2092,2.156,2094,0.877,2095,0.877,2096,0.877]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[3,0.938,46,1.998,129,1.624,351,3.15,1108,4.058]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[129,1.122,390,1.007,457,3.449,1108,2.804,1821,2.401,2097,4.6,2098,4.6,2099,4.6,2100,4.6,2101,4.6]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[46,3.013,89,1.568,106,3.194,129,2.449,295,2.719,351,5.26,390,1.703,457,5.831,2102,7.776]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2,1.054,13,0.054,75,2.069,2103,5.78,2104,6.128]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2103,6.112,2105,7.039,2106,7.039,2107,7.039]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[13,0.069,20,3.319,36,3.543,133,0.477,301,2.7,762,1.772,2103,10.74,2104,5.664,2108,10.682,2109,6.152]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[188,3.669,624,3.23,870,4.673,925,5.035]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[188,3.925,624,3.456,870,5]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[36,2.542,45,1.875,81,3.127,89,1.24,188,5.914,191,3.86,197,4.494,309,4.387,364,2.243,506,5.102,618,3.652,672,4.387,870,3.983,871,5.028,1089,5.664,1105,4.494,1734,5.664,2110,5.342,2111,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[188,3.669,440,4.085,870,4.673,1761,5.573]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[188,3.925,1505,5.791,2112,7.722]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[45,3.038,53,3.129,89,1.75,133,0.349,188,5.471,191,3.928,301,2.748,364,3.166,491,4.054,618,5.917,870,4.054,871,3.67,1105,4.573,2110,7.539]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[16,0.785,1010,3.494,1689,3.109,1784,3.701]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[16,0.839,1010,3.738,1784,3.959]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[13,0.049,15,1.815,16,1.064,30,2.973,36,2.498,45,1.843,57,1.808,105,2.007,167,3.738,327,4.312,364,2.205,488,3.852,550,3.794,715,3.982,954,5.015,993,3.101,1010,5.132,1165,2.973,1166,5.015,2113,2.688,2114,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[814,0.472]],["title//docs/troubleshooting/rescue-and-rebuild/",[1105,6.342,2115,7.2]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1105,6.246,2115,7.091]],["toc//docs/troubleshooting/rescue-and-rebuild/",[13,0.045,21,1.678,36,3.303,45,1.698,90,2.399,98,1.705,169,3.118,188,2.832,191,5.016,195,4.069,294,2.197,341,1.931,408,3.495,493,3.973,614,3.735,618,3.307,624,2.493,925,3.886,928,2.963,993,2.856,1105,6.831,1541,5.128,2115,4.619,2116,4.837,2117,5.128,2118,5.57]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2,1.248,45,2.403,1505,5.911]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2119,7.722,2120,7.722,2121,7.722]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[14,0.771,45,2.307,53,2.581,78,3.343,89,1.526,98,1.58,105,1.714,108,3.192,133,0.549,147,2.922,165,3.065,188,4.553,191,3.24,214,3.682,281,3.148,364,1.883,389,3.105,491,3.343,550,3.24,604,3.027,614,3.462,618,4.492,870,3.343,948,3.872,973,4.754,1009,3.529,1105,3.772,1316,4.754]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[814,0.472]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[133,0.439,188,4.007,491,5.104]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[188,4.347,2122,8.551]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[3,1.012,13,0.039,36,1.988,58,2.277,75,1.496,89,1.733,133,0.595,188,5.633,224,2.56,350,4.32,445,3.169,491,6.925,547,4.179,621,3.019,881,3.609,947,3.991,970,3.991,1062,3.515,1907,4.43,2123,4.43,2124,4.812]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1001,6.645,1012,5.272,1013,5.986,1014,5.413]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1012,4.369,1013,4.96,1014,4.486,1799,5.194,1800,5.194,2125,5.982]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[57,1.872,92,5.192,105,2.078,345,0.895,350,3.765,397,2.879,440,3.543,589,4.465,620,2.423,1012,6.342,1013,5.192,1014,6.511,1099,5.437,1796,5.764,1798,4.834,1799,5.437,1800,7.539,1801,5.192,2126,6.261,2127,6.261,2128,6.261]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[814,0.472]],["title//docs/troubleshooting/troubleshooting/",[763,4.713]],["keywords//docs/troubleshooting/troubleshooting/",[763,4.673]],["toc//docs/troubleshooting/troubleshooting/",[2,0.507,3,0.451,45,2.898,46,1.567,53,1.599,78,2.072,90,1.378,98,1.597,106,2.144,107,1.461,110,1.979,120,1.503,126,2.146,128,2.282,129,0.781,133,0.178,138,0.821,165,1.9,188,2.654,205,0.915,246,1.627,271,2.233,295,1.119,307,3.024,319,3.642,339,0.876,341,1.809,345,0.458,372,1.736,408,2.008,423,2.946,440,1.811,455,1.951,456,1.129,601,2.338,604,1.876,624,1.432,631,1.338,653,1.702,657,1.405,890,2.282,929,2.352,1036,2.554,1378,2.779,1433,2.779,1700,4.166,1795,2.471,1856,2.779,2129,3.2,2130,3.2,2131,2.779,2132,3.2,2133,3.2,2134,3.2,2135,3.2,2136,3.2,2137,3.2,2138,3.2,2139,2.946,2140,3.2,2141,3.2,2142,3.2,2143,3.2]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[440,4.913,929,3.911]],["keywords//docs/platform/accounts-and-passwords/",[46,2.113,440,3.984,921,5.142,929,3.171]],["toc//docs/platform/accounts-and-passwords/",[14,0.783,45,2.332,46,2.296,48,2.345,57,1.567,111,2.315,165,4.541,295,3.159,345,1.094,350,3.151,366,4.663,408,4.799,653,2.787,739,2.724,927,4.729,928,2.787,929,4.474,1036,4.182,1948,6.343,1992,3.828,2116,4.55]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[435,4.641]],["keywords//docs/platform/support/",[435,3.381,2144,7.039,2145,7.039,2146,7.039]],["toc//docs/platform/support/",[45,2.802,268,7.097,435,4.415,678,2.748,1948,7.622,2147,9.191]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[3,0.812,45,1.756,105,1.912,109,2.578,169,3.225,274,1.406,1533,4.109]],["keywords//docs/platform/linode-backup-service/",[2148,4.882,2149,4.882,2150,4.882,2151,4.882,2152,4.882,2153,4.882,2154,4.882,2155,4.882,2156,4.882]],["toc//docs/platform/linode-backup-service/",[45,2.801,46,1.621,49,4.689,53,2.699,105,2.595,169,6.434,195,6.713,282,1.969,352,3.851,372,2.929,397,2.483,399,3.339,480,4.972,544,4.478,585,3.945,618,3.206,731,6.789,1065,3.945,1707,4.478,1801,4.478,2157,5.4]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[138,2.227,246,4.413]],["keywords//docs/websites/hosting-a-website/",[246,3.578,1649,5.618,1650,6.112,1669,6.48]],["toc//docs/websites/hosting-a-website/",[2,0.762,5,3.116,13,0.07,14,0.719,45,2.62,89,0.97,98,1.473,106,1.977,129,2.097,133,0.268,138,1.234,149,2.228,152,1.461,204,0.98,205,1.376,206,2.197,246,2.446,305,5.874,339,1.318,390,1.573,455,2.933,456,2.535,546,7.912,584,3.169,654,2.311,672,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[2,1.375,274,2.118]],["keywords//docs/security/securing-your-server/",[274,2.052,280,2.873,624,2.677,2158,5.982,2159,5.982]],["toc//docs/security/securing-your-server/",[3,0.612,16,0.472,17,0.777,48,1.942,57,1.986,89,0.875,105,3.001,106,1.783,111,1.917,117,1.227,133,0.242,196,1.995,267,2.576,274,1.059,280,2.084,289,1.814,291,2.286,295,1.518,341,1.504,350,3.995,352,3.095,359,3.095,440,2.456,528,2.245,538,3.599,620,1.679,624,3.612,631,1.814,923,2.858,964,3.027,1120,1.404,1334,2.858,1404,2.723,1533,3.095,1662,3.995,1949,3.768,2009,3.027,2160,4.34,2161,3.995,2162,4.34,2163,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[2,1.054,14,0.995,15,1.998,732,2.94,1492,4.115]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[732,3.411,1492,4.774,1872,7.109]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.641,138,1.525,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,1873,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[2,0.978,16,0.671,141,1.779,2164,4.405,2165,4.405,2166,4.309]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[16,0.65,141,1.723,2164,4.266,2166,4.173,2167,5.982,2168,5.507]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[204,1.185,2169,7.539]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[204,0.961,2169,6.112,2170,7.039,2171,7.039]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[13,0.057,133,0.39,165,4.159,289,2.928,604,4.107,678,2.095,1086,5.81,2169,8.139,2172,7.006,2173,7.006,2174,7.006,2175,7.006,2176,7.006,2177,7.006,2178,7.006,2179,7.006,2180,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[133,0.439,204,1.076,2181,7.257]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[204,1.167,2182,8.551]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[13,0.062,14,1.137,48,3.405,82,4.46,111,3.361,117,2.152,152,2.31,281,4.638,924,6.072,2181,10.128,2183,7.609,2184,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[17,1.192,739,2.371,1000,2.799,1987,3.952,2185,3.198]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[1990,4.42,1991,4.85,2186,6.468,2187,6.468,2188,5.954]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[13,0.052,14,0.952,133,0.355,282,2.324,341,2.209,345,0.912,373,1.56,656,2.381,749,3.3,768,3.886,769,3.268,908,4.546,929,2.871,958,4.061,1119,3.999,1333,0.939,1787,3.941,1987,5.218,1992,4.656,2111,7.29]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[814,0.472]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[3,0.871,75,1.92,328,2.628,579,4.309,580,4.93,930,4.632]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[580,6.825,930,6.412]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.729,15,1.464,89,1.463,96,1.73,98,3.138,124,5.706,133,0.272,169,2.731,211,3.159,224,2.595,328,2.076,349,4.364,579,6.694,616,3.658,621,3.061,664,5.175,930,3.658,956,6.301,993,2.501,1343,4.491,1459,6.915,2189,4.879,2190,4.879,2191,4.236,2192,4.879]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[2,1.054,16,0.724,1158,3.384,2114,5.52,2193,5.78]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,0.995,15,1.998,105,2.209,456,2.349,1108,4.058]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[456,3.018,1108,5.213]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[3,1.202,46,2.559,378,5.432,455,5.198,456,3.009,970,7.071,1112,9.798,1931,7.404]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1142,6.51,2194,7.2]],["keywords//docs/websites/cms/kloxo-guides/",[1108,4.291,2194,5.838,2195,5.02,2196,5.02]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[2,1.143,117,2.041,1000,3.035,1158,3.669]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[0,3.3,2,1.266,4,1.824,13,0.065,14,0.832,21,1.678,57,1.666,129,1.359,133,0.31,138,1.429,141,1.604,205,1.593,206,1.424,274,1.359,294,1.531,301,2.445,339,1.525,364,2.031,373,1.364,390,1.22,762,1.604,822,2.544,1015,2.102,1149,2.145,1674,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[89,1.589,440,4.461,2197,6.537]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[440,4.37,2197,6.404,2198,7.109]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[21,2.982,89,2.349,295,3.461,345,1.088,440,5.602,1333,1.12,2198,9.112]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[814,0.472]],["title//docs/websites/cms/directadmin/",[2197,8.012]],["keywords//docs/websites/cms/directadmin/",[2197,7.944]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[2,1.054,16,0.724,732,2.94,2114,5.52,2193,5.78]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1638,4.994,2085,4.994,2199,6.468,2200,6.468,2201,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[13,0.058,117,2.041,2194,5.986,2202,2.524]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1108,4.291,2194,5.838,2195,5.02,2196,5.02]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[13,0.081,389,5.995,628,5.58]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[16,0.785,1010,3.494,2114,5.986,2193,6.268]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2203,7.039,2204,7.039,2205,5.838,2206,5.838]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[364,3.635,1010,5.663]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[3,0.871,13,0.05,656,2.307,749,2.319,1108,3.765,1119,3.875]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[604,4.527,656,2.884,1108,4.707]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[11,1.897,12,1.909,13,0.066,89,1.64,160,4.326,656,3.038,749,3.878,763,3.968,769,4.171,1119,5.103]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[941,5.285,1120,2.551,2207,6.537]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[198,3.474,752,4.512,941,4.337,942,5.363,1120,2.093]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[814,0.472]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[117,2.229,941,5.285,1000,3.314]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[117,1.829,198,3.474,752,4.512,941,4.337,942,5.363]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[17,1.292,941,4.84,1000,3.035,2185,3.467]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[17,1.071,198,3.213,752,4.173,941,4.011,942,4.96,2185,2.873]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[2,1.143,732,3.188,1120,2.336,2207,5.986]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1772,5.142,1773,5.279,2208,7.039,2209,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[2,1.28,13,0.083,14,1.208,15,1.699,129,1.973,133,0.606,138,1.451,149,2.621,204,1.104,205,1.618,206,1.447,339,1.55,373,1.385,390,2.254,503,3.664,654,2.719]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[814,0.472]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[117,2.229,732,3.482,1000,3.314]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[117,1.574,204,0.759,206,1.422,390,1.218,732,2.457,1002,4.44,1282,5.122]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[11,1.602,12,1.612,13,0.085,89,1.385,129,1.676,133,0.623,138,1.762,204,1.262,205,1.964,206,1.756,339,1.881,390,2.025]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1140,5.285,1142,5.911,1499,6.537]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[465,6.825,1140,5.734]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[4,1.053,14,0.807,41,3.851,133,0.301,147,5.201,158,4.689,161,4.478,165,3.206,191,3.388,196,2.483,204,0.737,276,3.945,307,3.128,327,3.851,497,3.292,599,3.206,604,3.166,653,2.872,749,2.027,812,3.945,969,4.972,993,2.769,1075,3.248,1140,5.242,2210,5.4,2211,5.4,2212,5.4,2213,5.4,2214,5.4,2215,4.972]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[17,1.031,390,1.261,739,2.052,1000,2.422,1032,2.163,1566,3.035,2185,2.767]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[17,0.996,739,1.982,1566,2.931,2185,2.673,2188,5.122,2216,5.564,2217,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[117,1.747,390,1.352,739,2.2,1032,2.319,1566,3.254,2202,2.16]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[739,2.304,1569,4.612,2219,6.468,2220,6.468,2221,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,208,2.128,295,2.861,339,1.575,351,3.871,390,1.791,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[2,1.143,1120,2.336,1158,3.669,2207,5.986]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[2,1.28,4,1.577,13,0.076,14,0.846,21,1.705,57,1.692,129,1.381,133,0.525,138,1.451,141,1.63,205,1.618,206,1.447,274,1.973,339,1.55,345,0.809,373,1.385,390,1.239,584,3.727,762,1.63,1015,2.135,1149,2.179,1333,0.833,1506,3.551]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[2,1.054,17,1.192,1000,2.799,1158,3.384,2185,3.198]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,17,0.952,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,990,4.619,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2165,4.109,2166,4.019]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2222,5.564,2223,4.831,2224,4.614]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[14,1.188,105,2.639,133,0.567,152,2.414,155,4.229,345,1.137,373,1.946,740,4.307,1333,1.171,1970,4.72]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[2,1.054,16,0.724,732,2.94,2165,4.747,2166,4.644]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1638,4.994,2085,4.994,2168,5.954,2225,6.468,2226,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[17,0.966,105,1.791,450,3.386,456,1.905,1000,2.269,2055,3.85,2056,2.958,2185,2.593]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[17,1.158,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2165,3.85,2166,3.766]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2207,4.778]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[3,0.932,13,0.054,14,0.988,133,0.571,273,3.587,294,1.817,345,0.946,373,1.619,439,3.129,456,2.334,486,3.701,620,2.559,1333,0.974,2065,6.131,2069,3.551]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2165,3.85,2166,3.766]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[16,0.671,46,1.854,340,3.999,681,3.765,2165,4.405,2166,4.309]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[681,3.943,2228,6.468,2229,5.162,2230,5.162,2231,5.162]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[17,1.106,46,1.854,340,3.999,681,3.765,1000,2.597,2185,2.967]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2233,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[4,1.205,17,1.106,206,1.579,1000,2.597,1149,2.378,2185,2.967]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[4,1.373,1508,4.127,1509,4.72,2234,7.039]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[4,1.205,16,0.671,206,1.579,1149,2.378,2165,4.405,2166,4.309]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[4,1.373,1508,4.127,1509,4.72,2235,7.039]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[45,2.403,862,5.758,1076,5.911]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2236,8.551,2237,8.551]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[107,3.401,133,0.415,165,5.795,431,4.905,474,5.751,621,4.673,1075,4.48,1076,8.996,2238,7.448,2239,7.448]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2165,4.405,2166,4.309]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[1996,4.994,2240,6.468,2241,5.954,2242,6.468,2243,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[14,0.995,15,1.998,45,2.029,1074,3.81,1076,4.992]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[631,2.942,1074,4.029,1076,5.279,2244,7.039]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,1.634,12,1.644,16,0.762,17,1.254,75,2.914,117,2.651,133,0.39,146,2.928,399,4.331,628,3.921,734,3.501,1000,2.945,1120,2.267,1297,3.657,1492,4.331,2139,6.449]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[16,0.785,1010,3.494,2165,5.148,2166,5.035]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2205,5.838,2206,5.838,2245,7.039,2246,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[364,3.635,1010,5.663]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[814,0.472]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[2,0.912,17,1.031,122,2.98,205,1.647,1000,2.422,1981,3.19,2185,2.767]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[204,0.961,1481,5.618,1981,3.898,1983,5.02]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[17,1.192,204,0.909,566,4.115,1000,2.799,2185,3.198]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[204,0.985,566,4.462,1120,2.336,2247,3.955]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[16,0.724,204,0.909,566,4.115,2113,2.959,2248,2.867]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/platform/stackscripts/",[0,2.782,178,4.679,505,6.537]],["keywords//docs/platform/stackscripts/",[178,3.839,201,3.998,226,4.85,2249,6.468,2250,6.468]],["toc//docs/platform/stackscripts/",[0,2.759,3,1.295,45,1.646,53,2.699,58,2.555,82,3.166,87,3.556,89,1.089,213,3.166,254,3.767,283,2.37,485,4.689,486,3.023,505,9.762,762,1.555,869,3.44,2030,3.621,2251,5.4,2252,4.972,2253,5.4,2254,5.4,2255,5.4,2256,5.4]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[17,1.106,1000,2.597,1974,4.309,1975,4.222,1976,3.765,2185,2.967]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1120,2.154,1974,4.644,1975,4.55,1976,4.058,2247,3.648]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[204,0.909,566,4.115,1120,2.154,1284,3.061,2247,3.648]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[63,2.812,204,0.961,566,4.352,1284,3.237]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[0,2.522,13,0.077,14,1.068,101,3.695,133,0.529,204,1.296,251,3.177,345,1.022,373,1.75,776,3.665,1284,4.368,1333,1.052]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[17,1.292,1000,3.035,2028,3.955,2185,3.467]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[17,0.931,74,2.666,429,3.128,1809,2.557,2022,3.128,2028,2.85,2257,5.2,2258,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[16,0.785,2028,3.955,2113,3.209,2248,3.109]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[16,0.785,2028,3.955,2259,3.521,2260,3.494]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[17,1.031,46,1.729,429,3.465,685,2.833,1000,2.422,2185,2.767,2261,4.208]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[46,1.854,429,3.715,685,3.037,1120,1.999,2247,3.385,2261,4.512]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[16,0.626,46,1.729,429,3.465,685,2.833,2259,2.81,2260,2.789,2261,4.208]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[46,1.729,117,1.629,213,3.377,2202,2.015,2263,4.109,2264,4.448,2265,5.003]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[213,3.792,2263,4.612,2266,5.954,2267,5.616,2268,5.162]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[13,0.084,57,2.432,133,0.453,141,2.343,274,1.985,678,2.432,762,2.343,1015,3.069,2263,7.368]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[46,1.729,213,3.377,1120,1.865,2247,3.157,2263,4.109,2264,4.448,2265,5.003]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[213,3.792,2263,4.612,2266,5.954,2267,5.616,2268,5.162]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[13,0.081,57,2.325,133,0.433,141,2.24,274,1.897,345,1.112,678,2.325,762,2.24,1015,2.934,1333,1.145,2263,7.159]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[17,0.966,46,1.62,487,3.246,739,1.923,1000,2.269,1733,3.689,2053,3.29,2185,2.593]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[13,0.058,14,1.068,133,0.594,345,1.022,349,4.298,365,4.885,373,1.75,585,5.221,588,4.419,740,3.023,1333,1.052,2053,6.504,2269,6.206]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[17,1.106,45,1.883,46,1.854,1000,2.597,2185,2.967,2270,3.621]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[45,2.029,46,1.998,1120,2.154,2247,3.648,2270,3.902]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[13,0.09,53,2.699,57,1.615,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,364,1.969,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[141,1.779,294,1.697,657,2.711,1120,1.999,1454,3.536,2247,3.385]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[16,0.626,141,1.659,294,1.583,657,2.528,1454,3.298,2259,2.81,2260,2.789]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[2,0.978,17,1.106,141,1.779,1000,2.597,2164,4.405,2185,2.967]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[141,2.463,2164,6.098]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[16,0.626,224,3.064,916,3.562,2259,2.81,2260,2.789,2280,4.598,2281,4.32]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1043,2.976,2282,4.882,2283,4.882,2284,4.882,2285,4.239,2286,3.896,2287,3.896,2288,3.769,2289,3.896]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[17,1.292,801,3.839,1000,3.035,2185,3.467]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[129,1.718,801,3.744,868,3.548,2013,5.02]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[17,1.106,204,0.843,427,3.224,1000,2.597,1177,3.285,2185,2.967]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[204,0.843,275,3.14,656,2.307,749,2.319,1120,1.999,2247,3.385]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[684,3.518,1682,4.811,1684,6.112,2292,5.838]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[17,1.106,274,1.507,704,3.113,869,3.935,1000,2.597,2185,2.967]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2293,7.722,2294,7.722,2295,7.722]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,4.306,497,4.208,631,2.885,704,3.479,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[4,1.298,1120,2.154,2247,3.648,2296,4.747,2297,5.52]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[814,0.472]],["title//docs/websites/wikis/twiki-on-centos-5/",[117,2.229,2021,4.512,2202,2.757]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-centos-5/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[814,0.472]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[17,1.292,1000,3.035,2021,4.132,2185,3.467]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1120,2.551,2021,4.512,2247,4.32]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[814,0.472]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[3,0.938,196,3.061,291,3.507,624,2.979,1072,4.31]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[422,3.094,624,2.677,965,5.507,1074,3.424,1096,5.507,1897,4.369]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[2,1.326,75,1.848,81,3.022,90,3.607,142,4.022,155,3.162,181,3.675,196,4.839,291,3.132,294,2.301,624,2.661,672,4.24,734,4.185,1079,6.28,1510,3.675,2050,4.343,2299,8.374]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[3,0.871,75,1.92,129,1.507,390,1.352,1041,3.35,1297,3.224]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1826,5.962,1884,6.705,2300,7.722]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[3,1.028,13,0.059,133,0.536,290,4.51,294,2.005,345,1.043,390,2.51,927,4.51,928,3.88,929,3.286,1333,1.074,1665,5.47]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[814,0.472]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[16,0.724,204,0.909,566,4.115,2259,3.247,2260,3.222]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[17,1.031,105,1.912,1000,2.422,1252,3.298,1959,3.42,1960,3.73,2185,2.767]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1961,3.566,1962,3.215,1964,3.161,1965,3.161,2004,3.215,2301,4.882,2302,4.882,2303,4.048,2304,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[13,0.081,14,1.5,133,0.433,280,3.735,345,1.112,373,1.904,451,4.74,678,2.325,1333,1.145,1959,5.959]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[2,0.912,17,1.031,204,0.786,205,1.647,275,2.928,1000,2.422,2185,2.767]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[659,5.162,1481,5.162,2305,6.468,2306,6.468,2307,6.468]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[11,1.41,12,1.419,13,0.079,133,0.472,138,1.551,149,2.8,204,1.335,209,3.792,257,3.385,275,3.074,289,3.542,318,2.456,339,1.656,345,0.865,435,2.905,654,2.905,1333,0.89,1461,4.218,2308,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[75,2.45,1297,4.115,2028,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[2,1.179,4,1.453,13,0.094,133,0.415,204,1.017,205,2.13,345,1.065,696,4.314,1333,1.097,1610,4.605,2028,5.349]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2259,2.81,2260,2.789]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2309,5.507]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[2,1.054,17,1.192,732,2.94,1000,2.799,2185,3.198]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1485,6.404,1877,6.705,2310,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[2,0.978,122,3.195,205,1.766,1120,1.999,1981,3.42,2247,3.385]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[204,0.961,1981,3.898,1983,5.02,2311,6.48]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[17,1.031,224,3.064,916,3.562,1000,2.422,2185,2.767,2280,4.598,2281,4.32]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1043,2.976,2286,3.896,2287,3.896,2288,3.769,2289,3.896,2312,4.882,2313,4.882,2314,4.882,2315,4.494]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[3,0.716,17,0.909,109,2.272,110,3.139,149,2.351,1000,2.135,2061,2.727,2062,3.621,2185,2.439]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[17,1.26,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[3,0.812,6,2.422,105,1.912,204,0.786,283,2.528,1120,1.865,2247,3.157]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[3,0.812,4,1.124,17,1.031,776,2.954,1000,2.422,1285,2.98,2185,2.767]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,1.298,17,1.192,246,3.384,1000,2.799,2185,3.198]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,1.167,17,1.071,157,2.751,684,2.99,2316,5.507,2317,5.982]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,2.053,13,0.079,14,0.888,17,1.064,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/postgresql/debian-6-squeeze/",[3,0.812,17,1.031,129,1.406,134,2.528,1000,2.422,1041,3.125,2185,2.767]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1043,4.291,1141,4.72,2318,7.039,2319,7.039]],["toc//docs/databases/postgresql/debian-6-squeeze/",[13,0.074,14,1.007,89,2.088,129,1.644,133,0.375,134,4.545,168,4.363,295,2.357,345,0.964,929,3.036,1044,3.857,1048,4.438,1333,0.992,2077,5.203,2078,5.203]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[17,1.192,204,0.909,1000,2.799,1153,3.726,2185,3.198]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[679,3.642,2320,5.838,2321,6.48,2322,6.48]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[17,1.192,204,0.909,566,4.115,2202,2.328,2324,2.674]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[17,1.031,96,2.042,703,4.32,739,2.052,1000,2.422,1032,2.163,2185,2.767]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[17,1.106,204,0.843,566,3.819,1000,2.597,1284,2.84,2185,2.967]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[4,1.205,17,1.106,1000,2.597,1149,2.378,1809,3.037,2185,2.967]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[1996,4.994,2241,5.954,2327,6.468,2328,6.468,2329,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[17,0.966,294,1.483,295,1.888,440,3.055,1032,2.026,1566,2.844,2202,1.888,2324,2.168]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[739,2.507,1032,2.643,1566,3.709,2330,7.039]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[13,0.049,14,0.903,105,2.812,133,0.59,142,2.905,291,3.186,345,0.865,373,1.48,620,2.34,656,2.259,740,4.484,756,4.417,762,1.742,938,4.826,1032,2.27,1333,0.89,1566,3.186,2331,6.047,2332,6.047]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[16,0.671,204,0.843,427,3.224,1177,3.285,2259,3.013,2260,2.99]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[4,1.205,17,1.106,1000,2.597,2185,2.967,2296,4.405,2297,5.122]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[2,1.484,4,1.828,13,0.057,14,1.047,101,2.725,107,3.199,133,0.522,345,1.002,373,1.715,435,3.365,822,3.199,1285,5.464,1333,1.032]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[17,1.292,1000,3.035,1290,4.18,2185,3.467]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[17,1.031,739,2.052,1000,3.443,1351,3.794,2185,2.767,2333,4.598]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1569,4.266,2334,5.982,2335,5.982,2336,5.507,2337,4.774,2338,4.774]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[13,0.079,21,2.244,57,2.227,96,2.641,133,0.415,141,2.145,274,1.817,294,2.047,345,1.065,678,2.227,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[17,1.031,46,1.729,429,3.465,685,2.833,2202,2.015,2261,4.208,2324,2.314]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[2,0.912,17,1.031,740,2.436,1000,2.422,1033,3.377,1970,3.42,2185,2.767]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1353,3.491,1972,4.172,1973,4.172,2316,5.122,2339,5.564,2340,5.564,2341,5.122]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[16,0.785,2021,4.132,2113,3.209,2248,3.109]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[16,0.785,2021,4.132,2259,3.521,2260,3.494]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[3,0.761,17,0.966,155,2.871,456,1.905,1000,2.269,2065,2.871,2066,3.689,2185,2.593]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[17,0.931,456,1.835,804,3.263,2065,2.766,2069,2.793,2342,5.2,2343,5.2,2344,5.2]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,1.298,16,0.724,246,3.384,2259,3.247,2260,3.222]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,1.167,16,0.65,157,2.751,684,2.99,2345,5.194,2346,4.96]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,2.053,13,0.079,14,0.888,16,0.646,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[17,1.292,1000,3.035,1010,3.494,2185,3.467]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1921,6.48,1922,6.48,2185,3.381,2347,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[258,7.286,294,2.593,364,3.441,1010,5.482]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[4,1.298,75,2.069,1149,2.563,1297,3.475,1809,3.273]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1149,2.49,1998,4.512,2348,6.468,2349,5.616,2350,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[13,0.059,14,1.09,21,2.198,133,0.536,138,1.871,152,2.215,208,2.698,339,1.998,345,1.043,373,1.786,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[4,1.298,75,2.069,206,1.701,1149,2.563,1297,3.475]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1508,4.127,1509,4.72,2349,6.112,2350,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[13,0.064,14,1.188,133,0.443,138,2.039,152,2.414,206,2.032,339,2.177,345,1.137,373,1.946,762,2.29,1149,3.061,1333,1.171]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2247,3.157]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[3,0.932,13,0.054,14,0.988,133,0.571,273,3.587,294,1.817,345,0.946,373,1.619,439,3.129,456,2.334,486,3.701,620,2.559,1333,0.974,2065,6.131,2069,3.551]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2259,2.633,2260,2.613]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.408,75,2.244,246,3.669,1297,3.768]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.262,684,3.232,2349,5.616,2350,5.616,2351,6.468]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.793,13,0.074,14,1.373,345,1.314,373,2.25,1333,1.353]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[17,1.292,2028,3.955,2202,2.524,2324,2.899]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[17,0.931,74,2.666,429,3.128,1809,2.557,2022,3.128,2028,2.85,2352,5.2,2353,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/social-networking/phpfox/",[2354,7.711]],["keywords//docs/applications/social-networking/phpfox/",[869,4.92,2091,6.163,2354,6.163]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[814,0.472]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[17,1.292,2021,4.132,2202,2.524,2324,2.899]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[3,0.812,17,1.031,129,1.406,390,1.261,1000,2.422,1041,3.125,2185,2.767]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1826,4.994,2355,6.468,2356,5.954,2357,6.468,2358,6.468]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[16,0.785,2044,4.085,2259,3.521,2260,3.494]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2359,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[105,1.912,450,3.614,456,2.033,1120,1.865,2055,4.109,2056,3.157,2247,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2292,5.363]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2259,2.633,2260,2.613]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[16,0.785,1290,4.18,2259,3.521,2260,3.494]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[4,1.205,17,1.106,2202,2.16,2296,4.405,2297,5.122,2324,2.481]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[3,0.938,129,1.624,390,1.458,1041,3.611,1492,4.115]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[129,1.718,390,1.541,1492,4.352,2288,5.435]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[3,1.173,13,0.067,133,0.463,290,5.147,345,1.191,390,2.638,1333,1.226]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[814,0.472]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[16,0.671,46,1.854,390,1.352,1821,3.224,2259,3.013,2260,2.99]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[16,0.765,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[13,0.078,98,2.232,133,0.536,152,2.215,204,0.996,274,1.78,277,5.089,364,2.66,602,4.576,656,2.725,1821,5.983]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[4,1.298,206,1.701,1120,2.154,1149,2.563,2247,3.648]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[4,1.373,1508,4.127,1509,4.72,2360,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[13,0.06,14,1.113,21,2.244,133,0.543,152,2.262,206,1.904,208,2.755,345,1.065,373,1.823,510,3.962,1149,2.868,1333,1.097,2274,4.822,2361,5.585]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[4,1.298,1120,2.154,1149,2.563,1809,3.273,2247,3.648]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[4,1.373,1508,4.127,1998,4.911,2360,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[13,0.06,14,1.113,21,2.244,133,0.543,152,2.262,208,2.755,345,1.065,373,1.823,510,3.962,1149,3.758,1333,1.097,1534,5.441,1809,3.662]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[16,0.785,1290,4.18,2113,3.209,2248,3.109]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1120,2.551,2044,4.461,2362,4.32]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[8,3.303,117,1.574,313,3.602,1083,3.346,2044,3.149,2045,4.064,2363,5.564]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[3,0.871,4,1.205,75,1.92,776,3.167,1285,3.195,1297,3.224]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[4,1.262,63,2.584,776,3.316,1285,3.346,1884,5.616]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[2,1.525,4,1.423,13,0.059,14,1.09,89,1.471,101,2.838,107,3.331,133,0.406,318,2.963,345,1.043,373,1.786,1285,4.981,1333,1.074,1824,3.774]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[3,0.871,4,1.205,776,3.167,1120,1.999,1285,3.195,2247,3.385]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[2,1.179,4,1.904,13,0.079,14,1.113,101,2.897,107,3.401,133,0.543,345,1.065,373,1.823,1285,5.05,1333,1.097]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[2,0.978,204,0.843,205,1.766,275,3.14,1120,1.999,2247,3.385]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[659,6.163,2364,7.722,2365,7.109]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[2,0.868,13,0.075,14,0.819,120,2.576,133,0.565,138,1.406,149,2.539,157,2.522,204,1.265,209,2.454,287,3.612,289,2.292,318,2.227,339,1.502,345,0.784,348,3.176,373,1.342,435,2.634,602,3.441,654,2.634,888,4.112,929,2.471,1333,0.807,1533,3.911,2366,4.112]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[204,0.985,1120,2.336,1153,4.04,2247,3.955]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[679,3.346,2367,6.468,2368,6.468,2369,6.468,2370,5.616]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[3,1.173,13,0.067,14,1.244,152,2.528,204,1.136,345,1.191,373,2.038,1153,5.869,1333,1.226]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[16,0.724,204,0.909,1153,3.726,2259,3.247,2260,3.222]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[679,3.346,1958,5.162,2371,6.468,2372,6.468,2373,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2259,2.81,2260,2.789]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[16,0.65,1682,4.088,1853,3.873,2346,4.96,2374,5.507,2375,5.507]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,2247,3.385]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1826,5.962,1827,6.404,2376,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.409,927,4.704,928,4.047,929,3.428,1333,1.12,1665,5.706]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,1.408,246,3.669,1120,2.336,2247,3.955]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,1.167,157,2.751,684,2.99,2292,4.96,2360,5.194,2377,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,2.068,13,0.069,14,0.903,20,2.34,21,1.822,46,1.815,57,1.808,58,2.861,89,1.219,141,1.742,274,1.475,301,2.654,318,2.456,345,0.865,373,1.48,678,1.808,762,1.742,822,2.761,1015,2.281,1333,0.89,1674,4.535,1824,3.128]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,204,0.786,205,1.647,275,2.928,2259,2.81,2260,2.789]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[204,0.816,684,2.99,1982,4.369,2378,5.982,2379,5.982,2380,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2113,2.561,2248,2.481]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2309,5.507]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2259,2.633,2260,2.613]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[16,0.785,2044,4.085,2113,3.209,2248,3.109]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2381,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2113,2.4,2248,2.325]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/redis/redis-on-fedora-14/",[801,4.193,1120,2.551,2247,4.32]],["keywords//docs/databases/redis/redis-on-fedora-14/",[129,1.578,801,3.44,868,3.26,2013,4.612,2382,6.468]],["toc//docs/databases/redis/redis-on-fedora-14/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,427,3.224,1177,3.285,2259,3.013,2260,2.99]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2259,2.477,2260,2.458,2383,3.621]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1673,2.614,1841,3.803,1842,3.803,2384,5.564,2385,5.564,2386,4.064,2387,4.064]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[13,0.059,14,1.09,133,0.406,159,5.632,204,1.314,206,2.461,209,3.264,282,2.66,345,1.043,373,1.786,1229,4.039,1252,4.176,1333,1.074,1844,5.47]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2259,2.81,2260,2.789]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2223,4.831,2224,4.614,2388,5.564]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[3,0.761,109,2.416,110,3.337,149,2.5,1120,1.747,2061,2.899,2062,3.85,2247,2.958]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2259,2.477,2260,2.458]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[3,1.202,13,0.086,345,1.219,762,2.456,1333,1.255,2061,6.232]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2259,2.633,2260,2.613]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[2,1.143,1120,2.336,1158,3.669,2247,3.955]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1120,1.721,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[2,1.054,16,0.724,1158,3.384,2389,3.127,2390,3.083]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[0,3.272,2,1.252,4,1.808,13,0.064,16,0.596,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,345,0.784,364,2,390,1.201,762,1.58,822,2.504,1015,2.069,1149,2.111,1333,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[2,1.143,732,3.188,1120,2.336,2247,3.955]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1772,5.142,1773,5.279,2391,7.039,2392,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[2,1.28,13,0.083,14,1.208,15,1.699,129,1.973,133,0.606,138,1.451,149,2.621,204,1.104,205,1.618,206,1.447,339,1.55,373,1.385,390,2.254,503,3.664,654,2.719]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[814,0.472]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[2,1.248,141,2.27,1172,4.679]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1172,4.584,1605,6.163,2393,7.722]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[814,0.472]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[487,4.341,2394,5.413,2395,6.268,2396,6.268]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[75,1.859,342,3.873,841,4.486,2395,5.194,2396,5.194,2397,4.96]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[97,3.828,131,2.787,349,5.973,350,4.6,487,4.6,547,8.624,1457,4.55,1621,7.042,1761,4.046,1860,4.346,2030,5.129,2191,4.55,2308,4.55,2395,8.624,2396,9.172,2398,7.649,2399,5.24]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[16,0.671,274,1.507,704,3.113,869,3.935,2259,3.013,2260,2.99]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[16,0.65,422,3.094,631,2.5,704,3.015,2346,4.96,2375,5.507]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[3,0.812,75,1.791,257,3.225,328,2.451,550,3.614,2400,5.003,2401,5.003]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[75,2.188,2400,6.112,2401,6.112,2402,7.039]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[97,5.941,257,5.783,294,2.235,322,5.454,341,2.819,346,7.488,621,5.103,871,4.768,2400,7.063,2401,7.063]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[98,1.89,579,4.309,662,3.875,961,4.93,2269,5.363,2403,4.769]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[75,1.859,447,4.266,961,4.774,1510,3.698,2397,4.96,2404,5.507]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[3,1.072,349,4.576,439,3.6,657,4.344,877,5.426,958,4.847,961,8.78,1820,5.426,2269,8.595,2405,7.005]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[3,0.812,101,2.241,109,2.578,198,3.094,680,2.726,1120,1.865,2247,3.157]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[2,1.054,16,0.724,1158,3.384,2259,3.247,2260,3.222]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[75,2.069,105,2.209,141,1.917,1172,3.952,1492,4.115]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[13,0.08,96,2.181,133,0.595,204,0.84,317,4.387,341,2.132,345,0.88,364,2.243,678,1.84,740,2.602,1033,3.607,1172,6.669,1331,5.983,1333,0.906,1730,4.292]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[16,0.671,105,2.05,141,1.779,1172,3.667,2259,3.013,2260,2.99]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[13,0.087,20,1.888,89,0.984,96,1.73,100,3.721,133,0.482,251,2.169,295,1.706,317,3.479,341,1.691,345,0.698,364,1.779,402,2.86,678,1.459,740,2.063,762,1.405,924,5.791,1033,2.86,1049,3.334,1172,6.79,1331,5.062,1333,0.718,1730,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[3,0.871,4,1.205,117,1.747,776,3.167,1285,3.195,2202,2.16]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[2,1.525,4,1.878,13,0.078,14,1.09,101,2.838,107,3.331,133,0.536,345,1.043,373,1.786,1285,4.981,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[3,0.871,4,1.205,776,3.167,1120,1.999,1285,3.195,2362,3.385]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[2,1.525,4,1.878,13,0.059,101,2.838,107,3.331,133,0.536,345,1.043,435,3.504,822,3.331,1285,5.575,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2389,2.706,2390,2.668]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[2,1.525,4,1.878,13,0.059,101,2.838,107,3.331,133,0.536,345,1.043,435,3.504,822,3.331,1285,5.575,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[16,0.626,96,2.042,703,4.32,739,2.052,1032,2.163,2113,2.561,2248,2.481]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[16,0.626,96,2.042,703,4.32,739,2.052,1032,2.163,2259,2.81,2260,2.789]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[4,1.298,133,0.371,157,3.061,282,2.427,656,2.487]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[4,1.014,157,2.391,276,3.799,656,1.943,1691,4.788,2406,5.2,2407,5.2,2408,5.2]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[3,0.936,4,1.764,13,0.035,46,1.303,76,3.944,89,0.875,96,1.539,122,2.245,133,0.37,138,1.704,157,3.055,160,2.308,177,3.027,305,2.966,339,1.819,435,2.084,510,2.308,605,2.91,656,4.123,734,3.32,749,3.659,768,2.645,769,3.406,1119,2.723,2409,4.34,2410,6.643]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[3,0.812,4,1.124,17,1.031,776,2.954,1285,2.98,2202,2.015,2324,2.314]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2259,2.81,2260,2.789]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2259,3.013,2260,2.99,2270,3.621]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[16,0.785,801,3.839,2259,3.521,2260,3.494]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[129,1.578,868,3.26,2013,4.612,2411,6.468,2412,6.468]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[13,0.037,20,3.221,46,2.072,57,1.365,58,2.16,89,0.92,108,2.821,109,2.042,133,0.463,141,1.314,148,2.527,198,2.451,274,1.114,294,1.254,318,1.854,341,1.582,345,0.653,364,1.664,378,2.907,486,2.554,762,2.673,801,5.791,822,3.801,1015,1.722,1053,2.554,1333,0.672,1824,2.361,2014,4.922]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[16,0.671,204,0.843,566,3.819,1284,2.84,2259,3.013,2260,2.99]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[20,2.576,328,2.832,349,4.004,726,4.747,875,5.14]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[875,5.962,931,6.163,2413,7.722]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[3,0.761,20,4.137,54,4.972,59,4.05,98,1.653,131,2.872,157,3.595,161,4.478,352,3.851,470,4.31,662,3.388,685,2.655,726,5.576,749,2.027,768,3.292,769,2.769,875,6.037,1079,4.05,1267,3.851,1707,4.478,1820,3.851,1986,4.972,2252,4.972,2414,4.972,2415,4.972,2416,4.972]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,0.871,75,1.92,98,1.89,328,2.628,349,3.715,621,3.875]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[75,2.4,931,6.163,2417,7.722]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,1.055,75,2.761,96,1.804,98,3.194,99,3.55,126,3.412,127,3.55,131,2.707,149,2.357,174,3.412,193,3.629,257,2.849,289,2.127,305,3.478,328,3.779,349,3.061,621,7.264,654,2.445,685,2.502,877,3.629,1403,4.419]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[45,2.029,46,1.998,1120,2.154,2270,3.902,2362,3.648]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[141,1.779,294,1.697,657,2.711,1120,1.999,1454,3.536,2362,3.385]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2259,2.81,2260,2.789]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[134,2.625,1042,4.774,1043,3.646,1141,4.011,2418,5.982,2419,5.982]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[12,1.562,98,2.037,579,4.644,662,4.176,959,5.313]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[75,2.188,447,5.02,959,5.618,2397,5.838]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,1.072,12,1.786,98,2.328,122,3.936,328,3.237,439,3.6,662,4.773,959,9.298,1071,6.607,1820,5.426,2405,7.005]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2259,2.81,2260,2.789]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2259,2.81,2260,2.789]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1446,4.259,2070,4.994,2071,4.724,2420,6.468,2421,6.468]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[3,1.146,13,0.066,96,2.884,133,0.575,294,2.235,345,1.163,390,2.486,1333,1.198]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2259,3.013,2260,2.99]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2345,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[16,0.785,1010,3.494,2259,3.521,2260,3.494]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2205,5.838,2206,5.838,2422,7.039,2423,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[294,2.593,948,7.076,1010,4.568,2111,7.826,2424,8.194]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[2,1.054,16,0.724,732,2.94,2259,3.247,2260,3.222]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1638,4.994,2085,4.994,2346,5.363,2425,6.468,2426,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[3,0.871,399,3.819,456,2.18,493,4.405,1047,4.632,2427,5.363]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[456,2.484,763,3.434,1692,5.838,2427,6.112]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[2,0.941,3,1.563,13,0.048,255,4.745,455,3.624,456,2.955,572,4.745,728,3.915,734,2.971,1047,4.458,1219,4.59,1761,4.59,1820,4.24,2427,10.267,2428,5.945,2429,5.945]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[3,0.938,141,1.917,294,1.829,493,4.747,2430,5.78]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[75,1.859,97,4.369,372,3.245,763,2.918,2431,5.982,2432,5.982]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[3,1.072,197,5.558,294,2.091,328,3.237,372,4.127,1820,5.426,1859,6.072,2131,6.607,2430,10.116,2433,7.609,2434,7.609]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1120,2.551,2362,4.32,2435,6.086]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[198,3.781,752,4.911,1120,2.278,2435,5.435]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[16,0.626,390,1.261,739,2.052,1032,2.163,1566,3.035,2259,2.81,2260,2.789]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[16,0.605,739,1.982,1566,2.931,2260,2.693,2436,5.564,2437,5.564,2438,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,206,1.579,1149,2.378,2259,3.013,2260,2.99]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[4,1.373,1508,4.127,1509,4.72,2345,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2259,2.633,2260,2.613]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[89,1.342,98,2.037,294,1.829,652,4.862,2440,6.128]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[75,2.01,468,5.954,931,5.162,1510,3.998,2397,5.363]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,0.824,89,1.937,98,1.789,131,3.11,274,1.427,294,1.607,328,2.488,542,7.619,652,8.361,2030,3.92,2440,5.383,2441,9.07,2442,8.276,2443,5.847,2444,5.847,2445,5.847]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,0.938,46,1.998,98,2.037,657,2.921,2446,5.78]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2446,6.705,2447,7.722,2448,7.722]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,0.798,98,2.887,133,0.525,193,4.036,287,3.727,328,2.408,341,2.803,366,3.45,439,2.678,657,4.778,789,6.244,978,5.21,1077,6.454,1934,4.693,2446,8.193,2449,5.66,2450,5.66]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[100,3.701,129,1.761,283,3.168,680,3.416]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[129,1.718,283,3.089,680,3.331,868,3.548]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[2,0.752,11,1.107,12,1.114,14,0.709,15,1.425,48,2.125,89,0.957,98,2.176,106,1.95,111,2.097,129,1.158,133,0.475,138,1.218,152,1.442,196,2.183,282,2.593,283,3.741,291,2.501,295,1.66,389,2.855,452,4.122,548,3.937,680,2.247,696,2.75,734,2.373,805,8.803,907,4.122,1020,3.789,1047,3.56,2451,4.371,2452,7.111]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[16,0.671,1974,4.309,1975,4.222,1976,3.765,2113,2.746,2248,2.66]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[137,3.26,205,1.647,206,1.473,1120,1.865,1149,2.218,2042,3.157,2362,3.157]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2042,3.544,2453,5.954,2454,5.954,2455,5.954,2456,6.468]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[13,0.069,21,2.569,133,0.592,152,2.589,208,3.154,345,1.219,510,4.535,1333,1.255]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1120,1.999,1575,4.769,1795,4.769,2362,3.385,2457,4.405,2458,4.512]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[739,2.507,1120,2.278,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1120,2.551,2028,4.32,2362,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[74,2.853,429,3.346,1120,1.801,1809,2.736,2022,3.346,2028,3.049,2459,4.44]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[105,2.05,1120,1.999,1252,3.536,1960,3.999,1999,3.621,2362,3.385]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[3,0.867,13,0.05,14,0.919,96,2.181,107,2.809,133,0.342,138,1.578,261,3.607,295,2.152,307,3.563,339,1.685,345,0.88,373,2.1,456,2.171,696,3.563,763,3.001,1333,0.906,1999,5.789,2005,3.304,2008,4.613,2009,4.292,2010,3.983]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[17,1.031,141,1.659,294,1.583,657,2.528,1454,3.298,2202,2.015,2324,2.314]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[16,0.626,141,1.659,294,1.583,657,2.528,1454,3.298,2113,2.561,2248,2.481]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[141,2.27,657,3.459,1454,4.512]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[814,0.472]],["title//docs/websites/wikis/confluence-on-centos-5/",[117,2.229,2202,2.757,2461,5.022]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2461,4.485,2462,7.039,2463,5.618,2464,5.618]],["toc//docs/websites/wikis/confluence-on-centos-5/",[13,0.077,14,1.068,89,1.915,129,1.744,133,0.398,138,1.833,339,1.957,373,1.75,679,3.697,915,5.36,1000,3.005,2461,7.243]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[814,0.472]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1120,2.551,2362,4.32,2461,5.022]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2461,4.485,2463,5.618,2464,5.618,2465,7.039]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[13,0.075,14,1.026,89,1.865,129,1.676,133,0.382,138,1.762,339,1.881,345,0.982,373,1.682,679,3.554,915,5.151,1000,2.888,1333,1.011,2461,7.129]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[105,1.912,450,3.614,456,2.033,1120,1.865,2055,4.109,2056,3.157,2362,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2466,5.616]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[13,0.054,89,1.333,98,2.023,105,2.194,133,0.502,138,1.696,208,2.446,345,0.946,372,3.587,451,4.031,762,1.905,1333,0.974,1385,5.937,2056,6.036,2059,4.613,2060,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2362,3.157]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[3,0.968,13,0.056,133,0.582,273,3.726,294,1.888,345,0.982,439,3.251,456,2.424,486,3.845,620,2.658,1333,1.011,2065,6.212,2069,3.689]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2389,2.536,2390,2.5]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[3,0.968,13,0.056,133,0.582,273,3.726,294,1.888,345,0.982,439,3.251,456,2.424,486,3.845,620,2.658,1333,1.011,2065,6.212,2069,3.689]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2461,4.485,2463,5.618,2464,5.618,2467,7.039]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[16,0.785,2389,3.391,2390,3.342,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2461,4.485,2463,5.618,2464,5.618,2468,7.039]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[16,0.785,2113,3.209,2248,3.109,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2461,4.485,2463,5.618,2464,5.618,2469,7.039]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2389,2.536,2390,2.5]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2470,5.162]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[13,0.053,89,1.309,98,1.986,133,0.361,138,1.665,208,2.401,234,2.985,282,2.367,345,0.928,359,4.629,372,3.521,451,3.957,762,1.87,1333,0.956,1385,5.862,2040,4.352,2056,5.567,2059,4.528,2060,4.629]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[3,1.017,75,2.244,328,3.071,854,5.573]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[174,4.337,342,4.187,854,4.994,2404,5.954,2471,6.468]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[3,1.114,14,0.819,75,2.457,131,2.917,289,2.292,318,2.227,322,3.677,328,3.364,399,3.39,450,3.441,549,4.548,854,8.304,1579,5.049,2039,4.234,2163,4.548,2472,5.484,2473,7.278,2474,9.27,2475,5.484,2476,5.484,2477,5.484,2478,5.484]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[17,1.106,631,2.581,2202,2.16,2324,2.481,2354,4.93,2479,5.686]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[869,4.92,2091,6.163,2354,6.163]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[13,0.074,20,3.557,345,1.314,678,2.748,1333,1.353,2354,7.335]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[3,0.716,16,0.552,89,1.024,368,3.542,2025,3.344,2026,3.288,2027,4.675,2113,2.257,2248,2.187]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,89,1.088,368,3.766,2025,3.555,2026,3.495,2389,2.536,2390,2.5]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[13,0.06,96,2.641,133,0.606,234,3.425,282,2.716,341,2.582,762,2.145,2025,4.905,2026,7.481,2040,4.994]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2113,2.561,2248,2.481]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[16,0.65,1682,4.088,1853,3.873,2374,5.507,2480,4.619,2481,5.507]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[17,0.966,100,2.768,101,2.1,204,0.737,2202,1.888,2324,2.168,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[13,0.086,14,0.903,89,1.708,101,2.352,104,4.312,129,1.475,133,0.337,152,1.836,204,1.157,208,2.237,345,0.865,373,1.48,390,1.855,762,1.742,1333,0.89,2483,4.669,2486,6.543,2488,5.251,2489,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[16,0.587,100,2.768,101,2.1,204,0.737,2113,2.4,2248,2.325,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[13,0.084,14,0.859,89,1.649,101,2.237,104,4.102,129,1.403,133,0.32,152,1.746,204,1.116,208,2.128,234,2.645,282,2.097,345,0.823,373,1.408,390,1.791,762,1.657,1333,0.847,2040,3.857,2483,4.441,2486,6.316,2488,4.994,2489,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[105,2.05,117,1.747,1252,3.536,1959,3.667,1960,3.999,2202,2.16]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2490,4.882,2491,4.494]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[13,0.086,14,1.274,133,0.475,280,4.096,451,5.198,678,2.55,1959,6.318]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2113,2.4,2248,2.325]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/social-networking/planet-feed-aggregator/",[999,6.086,2025,5.191,2026,5.104]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2026,5.536,2091,6.825]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[814,0.472]],["title//docs/databases/redis/redis-on-centos-5/",[117,2.229,801,4.193,2202,2.757]],["keywords//docs/databases/redis/redis-on-centos-5/",[129,1.578,801,3.44,868,3.26,2013,4.612,2492,6.468]],["toc//docs/databases/redis/redis-on-centos-5/",[0,1.906,13,0.044,20,2.09,46,2.347,57,1.615,58,2.555,108,3.339,109,2.417,133,0.301,141,1.555,148,2.99,198,2.9,274,1.318,294,1.484,318,2.193,341,1.872,364,1.969,378,3.44,486,3.023,762,2.252,801,5.686,822,2.466,1015,2.037,1053,3.023,1824,2.794,2014,5.576]],["deprecated//docs/databases/redis/redis-on-centos-5/",[814,0.472]],["title//docs/databases/redis/redis-on-fedora-13/",[801,4.193,1120,2.551,2362,4.32]],["keywords//docs/databases/redis/redis-on-fedora-13/",[129,1.578,801,3.44,868,3.26,2013,4.612,2493,6.468]],["toc//docs/databases/redis/redis-on-fedora-13/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[16,0.785,801,3.839,2389,3.391,2390,3.342]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[129,1.578,868,3.26,2013,4.612,2494,6.468,2495,5.954]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[101,2.1,204,0.737,206,1.38,341,1.871,1120,1.747,1229,2.989,2362,2.958,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[13,0.066,14,1.215,133,0.453,204,1.41,206,2.641,345,1.163,373,1.991,1229,4.504,1333,1.198]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,427,3.224,1177,3.285,2113,2.746,2248,2.66]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[16,0.587,100,2.768,101,2.1,204,0.737,2389,2.536,2390,2.5,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[13,0.084,14,0.859,89,1.649,101,2.237,104,4.102,129,1.403,133,0.32,152,1.746,204,1.116,208,2.128,234,2.645,282,2.097,345,0.823,373,1.408,390,1.791,762,1.657,1333,0.847,2040,3.857,2483,4.441,2486,6.316,2488,4.994,2489,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[278,4.84,439,3.416,592,4.753,631,3.017]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[280,3.381,592,4.636,631,2.942,958,4.485]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.895,3,0.789,13,0.021,15,0.761,16,0.276,17,0.454,40,1.901,46,1.291,52,3.141,75,1.337,82,1.486,89,0.511,96,1.985,99,1.768,108,4.961,117,0.717,126,1.7,133,0.239,156,1.669,165,1.505,167,1.567,208,0.938,278,5.381,279,1.59,280,1.218,281,4.892,289,1.059,307,2.49,319,3,328,1.078,431,1.669,521,2.201,524,1.768,528,2.224,592,7.247,604,1.486,616,1.901,631,1.059,662,1.59,763,1.237,871,1.486,1044,1.451,1076,4.946,1120,0.82,1270,3.958,1297,1.323,1303,1.808,1378,2.201,1389,5.155,1406,1.505,1413,2.334,1459,2.023,1865,2.201,2191,2.201,2496,2.334,2497,2.535,2498,2.535,2499,2.535,2500,2.535,2501,2.535]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,427,3.224,1177,3.285,2389,2.901,2390,2.86]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[0,2.574,13,0.059,101,2.838,122,3.774,133,0.406,137,4.128,204,0.996,251,3.243,365,4.986,397,4.427,682,6.099,1177,5.121]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.205,16,0.671,427,3.224,1177,3.285,2113,2.746,2248,2.66]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[16,0.785,801,3.839,2113,3.209,2248,3.109]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[129,1.578,868,3.26,2013,4.612,2495,5.954,2502,6.468]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[98,1.763,1077,4.598,1733,5.597,1932,4.778,2503,5.304,2504,5.761]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1408,5.194,1932,4.96,2505,5.982,2506,5.982,2507,5.982,2508,5.982]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[3,1.252,89,1.026,98,2.718,149,2.357,193,3.629,267,3.021,328,3.185,330,4.062,657,2.234,685,2.502,1077,8.712,1408,7.713,1932,7.366,2163,4.22,2503,10.049,2509,5.089,2510,5.089,2511,5.089]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[13,0.064,133,0.439,509,4.412]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[511,5.616,512,5.616,514,5.616,2512,6.468,2513,6.468]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[11,2.143,12,2.157,13,0.074,133,0.512,509,6.239]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[2,1.143,117,2.041,1158,3.669,2202,2.524]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[0,3.243,2,1.238,4,1.792,13,0.063,14,0.807,21,1.627,57,1.615,129,1.318,133,0.301,138,1.385,141,1.555,205,1.544,206,1.38,274,1.318,294,1.484,301,2.37,339,1.479,345,0.772,364,1.969,373,1.322,390,1.182,762,1.555,822,2.466,1015,2.037,1149,2.079,1333,0.795,1674,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[814,0.472]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[17,1.292,801,3.839,2202,2.524,2324,2.899]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[129,1.578,868,3.26,2013,4.612,2514,6.468,2515,6.468]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[204,0.985,210,4.462,1120,2.336,1153,4.04]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[679,3.346,2370,5.616,2516,6.468,2517,6.468,2518,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[3,1.231,13,0.071,152,2.653,204,1.192,345,1.25,1153,6.048,1333,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[204,0.985,1120,2.336,1153,4.04,2362,3.955]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[679,3.346,2370,5.616,2519,6.468,2520,6.468,2521,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[3,1.231,13,0.071,152,2.653,204,1.192,345,1.25,1153,6.048,1333,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[16,0.724,204,0.909,1153,3.726,2113,2.959,2248,2.867]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[679,3.346,1957,5.954,1958,5.162,2522,6.468,2523,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[16,0.724,204,0.909,1153,3.726,2389,3.127,2390,3.083]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[679,3.346,1958,5.162,2524,6.468,2525,6.468,2526,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[3,1.121,13,0.083,152,2.414,163,5.331,204,1.085,345,1.137,679,4.113,1153,5.7,1333,1.171,2323,5.962]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[30,2.833,56,3.19,75,1.791,822,2.631,891,3.377,1297,3.007,1554,4.109]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[823,4.296,824,4.296,825,4.172,826,3.968,1297,2.904,1555,4.44,1556,4.44]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[30,2.833,56,3.19,117,1.629,146,2.408,822,2.631,891,3.377,1554,4.109]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[117,1.574,823,4.296,824,4.296,825,4.172,826,3.968,1555,4.44,1556,4.44]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[30,3.037,56,3.42,341,2.141,822,2.821,891,3.621,1554,4.405]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[823,4.619,824,4.619,825,4.486,826,4.266,1555,4.774,1556,4.774]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[2,1.143,75,2.244,1158,3.669,1297,3.768]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[0,2.424,2,1.465,4,1.804,13,0.075,14,1.026,129,1.676,133,0.382,138,1.762,205,1.964,206,1.756,339,1.881,345,0.982,373,1.682,390,1.504,1149,2.645,1333,1.011]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[814,0.472]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[328,2.832,349,4.004,579,4.644,2394,4.992,2527,5.78]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1510,4.352,2527,6.112,2528,7.039,2529,6.48]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[3,1.432,98,3.108,126,4.352,193,4.629,328,2.762,349,3.904,408,4.072,616,4.868,621,4.072,787,5.383,2527,10.271,2530,6.491,2531,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[98,2.209,365,4.933,366,4.4,2532,5.986]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[328,2.995,1499,5.838,2533,7.039,2534,7.039]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,1.067,75,2.352,96,1.831,98,3.213,99,3.602,136,3.602,195,3.772,244,3.772,262,3.401,289,2.158,328,2.197,350,3.105,366,6.401,408,3.24,431,3.401,589,3.682,603,4.484,620,1.998,829,4.484,1049,3.529,2532,7.428,2535,5.164,2536,4.754,2537,5.164]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[98,2.412,579,5.499,877,5.621]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[98,1.979,664,4.612,877,4.612,958,4.12,2529,5.954]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,1.007,98,2.187,328,4.041,657,3.137,862,5.221,877,8.441,958,6.052,1077,5.704,2281,5.36,2538,6.206,2539,7.147]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[2,1.143,1120,2.336,1158,3.669,2362,3.955]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[0,3.272,2,1.252,4,1.808,13,0.064,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,345,0.784,364,2,390,1.201,762,1.58,822,2.504,1015,2.069,1120,1.775,1149,2.111,1333,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[2,1.054,16,0.724,1158,3.384,2113,2.959,2248,2.867]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[17,1.031,96,2.042,703,4.32,739,2.052,1032,2.163,2202,2.015,2324,2.314]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[17,0.966,74,2.768,149,2.5,213,3.164,631,2.256,2202,1.888,2324,2.168,2540,4.687]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[74,3.316,1615,5.363,2540,5.616,2541,6.468,2542,6.468]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[2,0.958,13,0.079,98,1.85,100,3.101,133,0.59,180,4.312,205,1.729,294,1.662,318,2.456,341,2.096,345,0.865,440,3.422,678,1.808,906,4.826,1010,2.927,1333,0.89,2538,5.251,2540,9.206]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[2,1.054,17,1.192,1158,3.384,2202,2.328,2324,2.674]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[0,3.433,2,1.173,4,1.718,13,0.06,14,0.75,17,1.326,21,2.232,57,1.5,129,1.224,133,0.279,138,1.287,141,1.445,205,1.435,206,1.282,274,1.224,294,1.379,301,2.202,339,1.374,345,0.718,364,1.829,373,1.228,390,1.099,762,1.445,822,2.291,990,4.356,1015,1.893,1149,1.932,1333,0.739,2543,5.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[16,0.552,137,2.874,205,1.452,206,1.298,1149,1.955,1165,2.497,2042,2.783,2113,2.257,2248,2.187]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1853,3.873,2453,5.507,2454,5.507,2480,4.619,2544,5.507,2545,5.507]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[13,0.067,21,2.509,133,0.584,152,2.528,208,3.08,345,1.191,510,4.428,678,2.489,1333,1.226]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[390,1.352,739,2.2,1032,2.319,1120,1.999,2272,3.457,2362,3.385]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2546,4.882,2547,3.769,2548,3.769,2549,3.769,2550,3.769]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[3,1.033,13,0.059,14,1.095,15,2.201,21,1.491,89,0.997,100,2.536,133,0.538,152,1.502,208,1.83,295,2.564,339,1.355,345,0.707,351,3.469,390,2.115,397,2.275,656,1.848,740,2.092,749,1.857,1032,3.279,1333,0.728,1570,3.016,2218,3.381,2272,4.104]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[2,0.978,204,0.843,205,1.766,275,3.14,1120,1.999,2362,3.385]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[659,6.163,2365,7.109,2551,7.722]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[2,0.926,13,0.078,120,2.747,133,0.581,138,1.5,157,2.689,204,1.311,209,2.616,287,3.85,289,2.444,318,2.375,339,1.601,345,0.836,348,3.386,435,2.808,602,3.668,888,4.385,929,2.634,1333,0.861,1533,4.17,2366,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,2362,3.385]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1826,5.962,1827,6.404,2552,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.409,927,4.704,928,4.047,929,3.428,1333,1.12,1665,5.706]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[814,0.472]],["title//docs/databases/postgresql/fedora-13/",[3,0.871,129,1.507,134,2.711,1041,3.35,1120,1.999,2362,3.385]],["keywords//docs/databases/postgresql/fedora-13/",[1043,4.707,1141,5.178,2553,7.722]],["toc//docs/databases/postgresql/fedora-13/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[4,1.298,206,1.701,1120,2.154,1149,2.563,2362,3.648]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[4,1.373,1508,4.127,1509,4.72,2554,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,206,1.865,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[4,1.298,1120,2.154,1149,2.563,1809,3.273,2362,3.648]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[4,1.373,1508,4.127,1998,4.911,2554,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,208,2.698,294,2.005,345,1.043,510,3.88,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[3,0.761,109,2.416,110,3.337,149,2.5,1120,1.747,2061,2.899,2062,3.85,2362,2.958]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[3,0.812,101,2.241,109,2.578,198,3.094,680,2.726,1120,1.865,2362,3.157]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2,0.978,205,1.766,246,3.14,1120,1.999,2042,3.385,2362,3.385]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2042,3.857,2455,6.48,2466,6.112,2555,6.48]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[13,0.057,14,1.047,81,3.561,133,0.39,140,4.395,274,2.287,345,1.002,373,1.715,620,3.627,717,5.795,777,6.406,1333,1.032,2042,5.136]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2,0.978,205,1.766,246,3.14,1120,1.999,2042,3.385,2247,3.385]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2042,3.857,2292,5.838,2555,6.48,2556,7.039]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[13,0.057,14,1.047,81,3.561,133,0.39,140,4.395,274,2.287,345,1.002,373,1.715,620,3.627,717,5.795,777,6.406,1333,1.032,2042,5.136]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2557,6.268]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[17,1.158,2557,5.616,2558,6.468,2559,6.468,2560,6.468]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[13,0.074,152,2.791,345,1.314,557,7.335,1333,1.353,2557,7.981]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[210,3.819,390,1.352,739,2.2,1032,2.319,1120,1.999,2272,3.457]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2561,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[3,1.033,13,0.059,14,1.095,15,2.201,21,1.491,89,0.997,100,2.536,133,0.538,152,1.502,208,1.83,295,2.564,339,1.355,345,0.707,351,3.469,390,2.115,397,2.275,656,1.848,740,2.092,749,1.857,1032,3.279,1333,0.728,1570,3.016,2218,3.381,2272,4.104]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[16,0.671,105,2.05,141,1.779,1172,3.667,2113,2.746,2248,2.66]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[13,0.087,20,1.888,89,0.984,96,1.73,100,3.721,133,0.482,251,2.169,295,1.706,317,3.479,341,1.691,345,0.698,364,1.779,402,2.86,678,1.459,740,2.063,762,1.405,924,5.791,1033,2.86,1049,3.334,1172,6.79,1331,5.062,1333,0.718,1730,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[2,1.143,732,3.188,1120,2.336,2362,3.955]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1772,5.142,1773,5.279,2562,7.039,2563,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,1.408,246,3.669,1120,2.336,2362,3.955]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,1.167,157,2.751,684,2.99,2377,5.194,2466,5.194,2554,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,2.084,13,0.08,20,2.381,21,1.854,46,1.847,57,1.84,58,2.911,89,1.24,141,1.772,274,1.501,301,2.7,318,2.499,345,0.88,678,1.84,762,1.772,822,2.809,1015,2.321,1333,0.906,1674,4.613,1824,3.183]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[2,0.978,16,0.671,141,1.779,2113,2.746,2164,4.405,2248,2.66]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[141,2.463,2164,6.098]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2113,2.746,2248,2.66,2270,3.621]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[117,1.883,204,0.909,566,4.115,1284,3.061,2202,2.328]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[0,2.629,13,0.079,14,1.113,101,3.797,133,0.543,204,1.332,251,3.311,373,1.823,776,3.819,1284,4.488]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,566,3.819,1284,2.84,2113,2.746,2248,2.66]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,566,3.819,1284,2.84,2389,2.901,2390,2.86]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[13,0.083,101,3.093,133,0.567,204,1.085,251,3.535,345,1.137,776,4.077,1284,4.682,1333,1.171]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[16,0.626,141,1.659,726,4.109,1930,4.448,2035,4.109,2113,2.561,2248,2.481]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[16,0.703,2035,4.612,2036,5.616,2248,2.785,2480,4.994]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[3,0.898,13,0.071,14,0.952,95,3.186,133,0.56,234,2.931,251,2.834,282,2.324,345,0.912,359,4.546,554,3.999,678,1.906,1329,5.087,1333,0.939,2035,6.269,2037,5.286,2039,4.922,2040,4.274,2564,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,1284,2.84,2113,2.746,2248,2.66,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[16,0.605,63,2.223,204,0.759,1284,2.558,2248,2.396,2481,5.122,2566,4.44]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[3,0.932,13,0.054,14,0.988,63,2.642,101,2.572,122,3.421,133,0.368,138,2.312,204,0.902,251,2.94,294,1.817,345,0.946,364,2.411,373,1.619,685,3.251,1284,4.716,1333,0.974,1406,3.925]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[17,1.106,204,0.843,566,3.819,1284,2.84,2202,2.16,2324,2.481]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[814,0.472]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[3,0.761,4,1.053,6,2.269,271,3.766,464,4.048,762,1.555,2403,4.168,2567,4.687]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[4,0.848,6,1.828,157,1.999,204,0.593,283,1.908,465,5.31,684,2.173,2568,4.348,2569,4.348,2570,4.348]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[4,1.314,6,2.833,96,2.389,105,2.236,133,0.375,157,3.098,204,0.92,271,6.37,283,2.957,307,3.903,397,3.098,453,4.053,464,6.847,678,2.015,762,1.941,2009,4.701,2403,5.203,2567,5.851]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[17,1.031,869,3.67,2202,2.015,2324,2.314,2571,5.761,2572,5.761,2573,5.304]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2574,7.039,2575,7.039,2576,7.039,2577,5.435]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[0,2.522,13,0.077,20,2.766,57,2.137,101,2.78,133,0.398,141,2.059,274,1.744,345,1.022,678,2.137,762,2.736,1015,2.696,1333,1.052,2573,8.745]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[16,0.671,274,1.507,704,3.113,869,3.935,2113,2.746,2248,2.66]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[16,0.65,422,3.094,631,2.5,704,3.015,2480,4.619,2578,5.982]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[16,0.671,739,2.2,1165,3.037,1987,3.667,2113,2.746,2248,2.66]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1987,3.839,1990,4.42,1991,4.85,2579,6.468,2580,5.954]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[13,0.058,14,1.068,282,2.606,341,3.292,345,1.022,373,1.75,908,5.097,929,3.22,958,4.553,1333,1.052,1610,4.419,1787,4.419,1987,6.334,1992,5.221]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[16,0.587,390,1.182,739,1.923,1032,2.026,1165,2.654,1566,2.844,2113,2.4,2248,2.325]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[16,0.605,739,1.982,1566,2.931,2248,2.396,2580,5.122,2581,5.564,2582,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[16,0.626,224,3.064,916,3.562,2280,4.598,2281,4.32,2389,2.706,2390,2.668]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1043,3.392,2285,4.831,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2583,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[16,0.587,224,2.871,916,3.337,1165,2.654,2113,2.4,2248,2.325,2280,4.308,2281,4.048]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1043,3.392,2285,4.831,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2584,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2113,2.4,2248,2.325]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1974,5.499,1975,5.387,2585,6.845]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1975,4.811,2585,6.112,2586,7.039,2587,6.48]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2585,7.063]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1375,5.986,1974,5.035,1975,6.535]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[732,2.857,1375,5.363,2587,5.954,2588,6.468,2589,6.468]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[13,0.09,345,1.314,678,2.748,1333,1.353,1375,7.622]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[16,0.587,739,1.923,1000,2.269,1165,2.654,1351,3.555,2113,2.4,2248,2.325,2333,4.308]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1569,4.266,2337,4.774,2338,4.774,2590,5.982,2591,5.982,2592,5.507]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[16,0.587,105,1.791,1165,2.654,1252,3.09,1959,3.204,1960,3.495,2113,2.4,2248,2.325]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2593,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[46,2.167,205,2.064,685,3.549,2594,6.268]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[206,1.653,646,5.616,649,3.89,1151,4.259,2594,5.616]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2594,7.063]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2113,2.561,2248,2.481]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.124,16,0.626,1149,2.218,1165,2.833,1809,2.833,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2595,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,0.939,13,0.077,14,0.719,16,0.781,21,1.45,84,4.73,89,0.97,120,2.26,131,3.821,133,0.53,138,1.234,152,1.461,208,1.78,282,1.755,339,1.318,345,0.688,373,1.178,456,1.698,510,2.56,1149,1.853,1333,0.709,1404,3.019,1510,2.975,1765,4.179,1766,5.957,1809,2.366,2274,3.116,2361,3.609,2596,7.183,2597,4.812]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[16,0.521,101,1.865,204,0.654,206,1.225,341,1.661,1165,2.357,1229,2.654,2113,2.131,2248,2.065,2383,3.419]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1673,2.614,1841,3.803,1842,3.803,2386,4.064,2387,4.064,2598,5.564,2599,5.564]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[13,0.056,14,1.026,133,0.382,159,5.304,204,1.262,206,2.364,209,3.074,234,3.159,282,3.373,345,0.982,373,1.682,1229,3.804,1252,3.932,1333,1.011,1844,5.151,2040,4.606]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,740,2.283,1033,3.164,1165,2.654,1970,3.204,2113,2.4,2248,2.325]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2223,4.831,2224,4.614,2600,5.564]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[46,1.854,213,3.621,313,3.999,2264,6.641,2601,5.686]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2268,5.162,2602,6.468,2603,5.954,2604,6.468,2605,6.468]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[13,0.083,57,2.377,141,2.29,274,1.94,345,1.137,678,2.377,762,2.29,1015,3,1333,1.171,2264,6.139,2601,7.32]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[814,0.472]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[46,1.998,213,3.902,313,4.31,2264,5.14,2606,5.78]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2268,5.618,2603,6.48,2606,6.112,2607,7.039]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2606,7.063]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2113,2.257,2248,2.187]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2113,2.4,2248,2.325]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[3,0.716,16,0.552,155,2.701,456,1.792,1165,2.497,2065,2.701,2066,3.471,2113,2.257,2248,2.187]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,205,1.543,246,2.744,1165,2.654,2042,2.958,2113,2.4,2248,2.325]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1853,4.187,2042,3.544,2480,4.994,2544,5.954,2545,5.954]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[13,0.054,14,0.988,21,1.992,81,3.361,133,0.368,140,4.148,274,2.199,301,2.902,345,0.946,373,1.619,620,3.488,717,5.573,777,6.161,993,3.391,1333,0.974,2042,4.94]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2,0.804,46,1.524,77,2.941,134,2.228,142,2.439,274,1.239,308,3.054,599,3.014,2608,3.921]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2048,5.162,2608,4.994,2609,6.468,2610,5.954,2611,5.954]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[3,1.263,13,0.073,133,0.499,624,4.009,1074,5.128,2608,8.473]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[3,0.761,16,0.587,129,1.317,390,1.182,1041,2.928,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1446,4.636,2070,5.435,2071,5.142,2612,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[3,1.146,13,0.066,96,2.884,133,0.575,294,2.235,345,1.163,390,2.486,1333,1.198]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,204,0.737,205,1.543,275,2.744,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[204,0.816,684,2.99,1982,4.369,2613,5.982,2614,5.982,2615,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[16,0.724,1010,3.222,1165,3.273,2113,2.959,2248,2.867]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2205,6.404,2206,6.404,2616,7.722]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[294,2.593,948,7.076,1010,4.568,2111,7.826,2424,8.194]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[16,0.626,46,1.729,340,3.73,681,3.512,1165,2.833,2113,2.561,2248,2.481]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2617,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[3,0.761,16,0.587,129,1.317,134,2.369,1041,2.928,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[134,2.625,1042,4.774,1043,3.646,1141,4.011,2618,5.982,2619,5.982]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,1.205,16,0.671,246,3.14,1165,3.037,2113,2.746,2248,2.66]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,1.085,16,0.605,157,2.558,684,2.781,2480,4.296,2595,4.831,2620,5.564]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,2.053,13,0.079,14,0.888,16,0.646,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[128,5.148,631,3.017,1659,6.268,2621,5.986]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2621,5.838,2622,6.48,2623,6.48,2624,6.48]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[3,0.807,13,0.066,75,1.116,77,2.079,81,2.912,127,2.505,128,2.56,133,0.319,138,0.921,149,1.663,244,2.623,268,6.881,287,2.364,294,1.574,308,2.159,352,2.56,453,2.159,599,2.131,631,3.409,663,3.118,734,1.794,871,2.105,889,3.305,893,2.865,977,3.118,1412,3.305,1510,2.22,1646,3.305,1985,3.305,2069,1.928,2415,3.305,2416,3.305,2451,5.273,2621,8.847,2623,3.305,2624,3.305,2625,3.59,2626,3.59,2627,3.59,2628,3.59,2629,3.59,2630,3.59,2631,3.59]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[3,0.812,81,2.928,129,1.406,134,2.528,142,2.767,620,2.229,2608,4.448]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2048,4.774,2608,4.619,2610,5.507,2611,5.507,2632,5.982,2633,5.982]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[3,1.263,13,0.073,133,0.499,624,4.009,1074,5.128,2608,8.473]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[17,1.031,739,2.052,1000,2.422,1351,3.794,2202,2.015,2324,2.314,2333,4.598]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1569,4.266,2336,5.507,2337,4.774,2338,4.774,2634,5.982,2635,5.982]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[46,1.998,58,3.15,76,3.952,439,3.15,2636,5.78]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1192,4.015,1613,4.15,1614,4.15,2636,4.516,2637,5.2,2638,4.788,2639,4.788,2640,5.2]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[13,0.045,42,4.069,58,2.636,89,1.885,98,2.447,142,2.676,155,2.963,234,3.676,255,4.446,407,4.619,653,2.963,662,3.495,685,3.931,1403,4.837,1798,6.173,1890,6.942,2394,4.177,2457,3.973,2496,5.128,2636,8.874,2641,5.128]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.905,16,0.587,105,1.791,1306,4.308,1362,3.943,1752,4.168,2389,2.536,2390,2.5]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1306,4.44,1362,4.064,1366,4.831,1752,4.296,2642,5.564,2643,5.564,2644,5.564]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[13,0.08,14,0.783,15,1.573,20,2.028,30,2.577,89,1.542,133,0.553,209,2.345,224,4.069,227,3,295,1.833,301,2.3,330,4.182,345,0.749,487,3.151,491,3.393,678,1.567,732,2.315,763,2.556,891,3.072,1333,0.772,1362,5.587,1374,4.824,1752,5.906,1756,4.824]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[17,1.106,105,2.05,141,1.779,1172,3.667,2202,2.16,2324,2.481]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[13,0.086,20,2.028,96,1.858,100,3.922,133,0.503,317,3.737,341,1.816,345,0.749,364,1.911,402,3.072,678,1.567,740,2.216,762,1.509,924,6.105,1033,3.072,1172,6.93,1331,5.336,1333,0.772,1730,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.124,16,0.626,206,1.473,1149,2.218,1165,2.833,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.373,1508,4.127,1509,4.72,2595,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[98,2.412,2645,7.257,2646,6.845]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[17,1.158,169,3.62,2577,4.994,2646,5.616,2647,6.468]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[13,0.076,16,0.762,17,1.254,45,2.135,75,2.178,117,1.981,155,3.726,554,4.395,1120,2.267,1297,3.657,2113,3.114,2202,3.278,2248,3.017,2324,2.814,2646,8.139]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[814,0.472]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[15,2.167,129,1.761,167,4.462,390,1.58]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[169,4.322,390,1.691,2648,7.109]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[3,1.207,46,1.176,89,1.875,95,2.581,98,0.696,109,2.311,120,1.841,129,1.498,169,5.877,177,5.974,195,5.921,275,3.12,289,3.579,294,1.077,390,1.657,406,6.966,870,2.537,907,1.975,1044,4.331,1506,1.427,1665,1.705,1930,3.026,2648,5.651,2649,2.274,2650,6.922,2651,6.138,2652,3.918,2653,3.918,2654,2.274,2655,2.093,2656,2.274]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[17,1.106,45,1.883,46,1.854,2202,2.16,2270,3.621,2324,2.481]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2270,3.621,2389,2.901,2390,2.86]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/wikis/dokuwiki-engine/",[369,7.993,2657,7.993]],["keywords//docs/websites/wikis/dokuwiki-engine/",[206,1.974,2022,4.644,2658,7.722]],["toc//docs/websites/wikis/dokuwiki-engine/",[13,0.086,57,2.55,141,2.456,274,2.08,678,2.55,762,2.456,1015,3.217,2657,7.849]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[16,0.671,46,1.854,390,1.352,1821,3.224,2389,2.901,2390,2.86]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[16,0.765,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[13,0.075,98,2.102,133,0.515,152,2.086,204,0.938,234,3.159,274,1.676,277,4.792,282,2.505,364,2.505,602,4.31,656,2.566,1821,5.841,2659,6.324]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[46,1.998,205,1.903,206,1.701,685,3.273,2660,6.128]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[649,4.234,732,3.109,2661,7.039,2662,7.039]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[13,0.083,57,2.377,141,2.29,206,2.032,274,1.94,345,1.137,678,2.377,762,2.29,1015,3,1333,1.171,2660,7.32]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[814,0.472]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[117,2.229,2202,2.757,2279,5.191]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[8,3.551,117,1.692,1083,3.597,1605,4.774,2279,3.939,2663,5.507]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[13,0.078,14,0.874,89,1.179,120,2.747,133,0.461,138,1.5,152,1.775,179,3.428,204,0.798,208,2.163,274,1.427,318,2.375,339,1.601,353,4.079,373,1.431,543,3.85,762,1.684,1506,3.668,1820,4.17,2279,7.538]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[814,0.472]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[17,1.292,1290,4.18,2202,2.524,2324,2.899]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[814,0.472]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[46,2.167,209,3.23,2664,6.645,2665,6.645]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1809,3.797,2664,7.109,2666,7.722]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[3,1.05,13,0.094,21,2.244,96,2.641,97,5.441,142,3.578,251,3.311,345,1.065,348,4.314,2665,8.986,2667,7.448]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[3,0.761,17,0.966,89,1.088,368,3.766,2025,3.555,2026,3.495,2202,1.888,2324,2.168]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[117,1.883,1974,4.644,1975,4.55,1976,4.058,2202,2.328]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[20,3.222,57,2.489,133,0.463,141,2.398,274,2.031,539,5.937,678,2.489,762,2.398,1015,3.141,1976,5.075]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[814,0.472]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[3,0.812,46,1.729,108,3.562,322,3.863,327,4.109,715,3.794,1733,3.938]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[75,2.01,322,4.337,715,4.259,901,4.512,2668,6.468]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[3,0.932,13,0.054,46,1.985,56,3.662,96,2.344,324,5.484,327,4.716,328,2.813,408,4.148,431,4.355,624,2.959,715,8.017,1733,4.519,2394,4.959,2669,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2021,5.53]],["keywords//docs/websites/wikis/twiki/",[429,4.234,1809,3.461,2021,4.029,2022,4.234]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[814,0.472]],["title//docs/applications/messaging/advanced-irssi-usage/",[97,5.758,453,4.741,2670,6.291]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1468,4.619,1730,4.173,1731,5.194,1732,5.194,2670,4.774,2671,5.507]],["toc//docs/applications/messaging/advanced-irssi-usage/",[3,1.202,164,7.071,196,3.921,345,1.219,402,4.998,1333,1.255,1459,6.805,1475,6.805,1570,5.198]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[3,0.938,619,5.52,1038,5.52,1468,5.14,2670,5.313]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1468,4.619,1730,4.173,1731,5.194,1732,5.194,2670,4.774,2671,5.507]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[13,0.039,36,1.988,46,2.156,81,3.651,96,1.706,97,3.515,113,3.991,133,0.478,295,1.683,328,2.047,402,2.821,431,4.73,631,3.002,642,5.957,653,2.56,678,1.439,956,4.179,1033,2.821,1252,2.755,1730,5.011,1736,4.43,1738,6.613,2394,3.609,2670,8.138,2672,4.812,2673,4.812,2674,4.812,2675,4.812]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[3,0.812,101,2.241,109,2.578,117,1.629,198,3.094,680,2.726,2202,2.015]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2389,2.536,2390,2.5]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[3,0.761,6,2.269,17,0.966,105,1.791,204,0.737,283,2.369,2202,1.888,2324,2.168]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[0,1.796,2,0.806,3,0.717,6,3.148,105,1.689,139,3.021,156,3.352,160,2.707,167,3.146,173,3.295,204,0.695,283,2.234,345,0.728,554,3.193,588,3.146,609,3.55,634,3.629,685,4.367,1075,3.061,1333,0.749,1406,4.445,1630,3.352,1981,2.818,2030,6.999,2031,3.629,2032,3.717,2033,3.717,2034,3.717,2403,3.93]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2389,2.536,2390,2.5]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[210,4.873,1120,2.551,2028,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[74,2.853,429,3.346,1120,1.801,1809,2.736,2022,3.346,2028,3.049,2459,4.44]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[16,0.785,2028,3.955,2389,3.391,2390,3.342]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2390,2.576]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[3,0.812,101,2.241,109,2.578,198,3.094,210,3.562,680,2.726,1120,1.865]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[3,0.812,6,2.422,105,1.912,117,1.629,204,0.786,283,2.528,2202,2.015]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[0,1.849,2,0.83,3,0.739,6,3.216,105,1.739,139,3.111,156,3.451,160,2.787,167,3.24,173,3.393,204,0.715,283,2.3,554,3.288,588,3.24,609,3.656,634,3.737,685,4.442,1075,3.151,1406,4.541,1630,3.451,1981,2.902,2030,7.082,2031,3.737,2032,3.828,2033,3.828,2034,3.828,2403,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2389,2.536,2390,2.5]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[13,0.062,133,0.649,138,1.951,339,2.084,345,1.088,588,4.704,740,3.218,1333,1.12,2053,6.706]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1974,5.499,1975,5.387,2676,6.845]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[206,1.799,1673,3.307,1977,5.142,2676,6.112]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[13,0.067,57,2.489,141,2.398,274,2.031,345,1.191,678,2.489,762,2.398,1015,3.141,1333,1.226,2676,7.229]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[814,0.472]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[13,0.047,75,1.791,104,4.109,554,3.614,1974,4.019,1975,3.938,2677,5.003]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[206,1.799,1673,3.307,1977,5.142,2677,6.112]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[13,0.081,678,2.981,2677,8.656]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1005,3.832]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[4,1.298,206,1.701,210,4.115,1120,2.154,1149,2.563]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[4,1.373,1508,4.127,1509,4.72,2678,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,206,1.865,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[4,1.298,210,4.115,1120,2.154,1149,2.563,1809,3.273]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[4,1.373,1508,4.127,1998,4.911,2678,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[13,0.058,21,2.154,96,2.534,133,0.594,138,1.833,152,2.17,208,2.644,294,1.964,339,1.957,345,1.022,1149,3.657,1333,1.052,1534,5.221,1809,3.514]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[3,0.812,6,2.422,105,1.912,204,0.786,210,3.562,283,2.528,1120,1.865]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[16,0.626,390,1.261,739,2.052,1032,2.163,1566,3.035,2389,2.706,2390,2.668]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1569,4.612,2679,5.954,2680,6.468,2681,6.468,2682,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[3,0.678,13,0.039,14,1.073,15,2.156,21,1.45,89,0.97,96,1.706,133,0.568,152,2.181,208,1.78,294,1.322,295,2.512,339,1.318,345,0.688,351,3.399,390,1.882,397,2.213,656,1.798,657,2.112,740,2.035,749,1.806,993,2.467,1032,3.226,1333,0.709,1566,2.535,1570,2.933,1571,3.515,2218,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[117,1.883,204,0.909,275,3.384,656,2.487,749,2.499]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[684,2.99,866,4.173,1002,4.774,1682,4.088,1683,5.507,2683,4.96]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[204,0.843,210,3.819,275,3.14,656,2.307,749,2.319,1120,1.999]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[684,3.518,1682,4.811,1684,6.112,2459,5.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2389,2.706,2390,2.668]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[16,0.605,656,2.078,1682,3.803,1688,5.122,1853,3.602,2470,4.44,2684,4.614]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[117,1.883,274,1.624,704,3.355,869,4.241,1000,2.799]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[117,1.991,422,3.642,631,2.942,704,3.548]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[3,0.66,13,0.038,55,4.911,90,3.642,95,2.341,133,0.392,142,2.25,196,4.324,254,3.268,274,1.718,279,2.939,339,1.283,389,2.817,422,3.642,497,4.291,631,2.942,704,4.262,734,3.518,749,2.643,967,3.341,968,3.341,975,3.341,1072,4.558,1074,2.682,1303,3.341,1897,3.422,1898,3.513]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,1.408,117,2.041,246,3.669,2202,2.524]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,1.167,117,2.379,157,2.751,684,2.99,2683,4.96]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,2.053,13,0.079,14,0.888,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1674,4.458,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[133,0.439,204,1.076,405,6.086]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[133,0.43,204,1.054,1686,5.085]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[98,2.328,120,3.574,289,4.869,489,5.875,602,4.773,1391,5.875,2281,5.706,2308,6.607,2538,6.607,2685,7.609,2686,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[46,2.167,204,0.985,726,5.148,2687,6.268]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[46,1.67,98,1.703,157,2.558,204,0.759,689,5.122,726,3.968,2687,4.831]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[89,2.068,1570,6.253]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[17,1.106,274,1.507,704,3.113,869,3.935,2202,2.16,2324,2.481]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[17,1.158,422,3.346,631,2.703,704,3.26,2324,2.598]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,4.306,497,4.208,631,2.885,704,3.479,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[16,0.671,274,1.507,704,3.113,869,3.935,2389,2.901,2390,2.86]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[16,0.65,422,3.094,631,2.5,704,3.015,2470,4.774,2684,4.96]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,1.298,17,1.192,246,3.384,2202,2.328,2324,2.674]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,1.167,17,1.071,157,2.751,684,2.99,2577,4.619,2688,5.507]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,2.053,13,0.079,14,0.888,17,1.064,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,1.408,210,4.462,246,3.669,1120,2.336]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,1.167,157,2.751,684,2.99,2377,5.194,2459,4.774,2678,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,2.084,13,0.08,20,2.381,21,1.854,46,1.847,57,1.84,58,2.911,89,1.24,141,1.772,274,1.501,301,2.7,318,2.499,345,0.88,678,1.84,762,1.772,822,2.809,1015,2.321,1333,0.906,1674,4.613,1824,3.183]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-centos-5/",[117,2.229,2044,4.461,2202,2.757]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[8,3.303,117,1.574,313,3.602,1083,3.346,2044,3.149,2045,4.064,2689,5.564]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.205,16,0.671,427,3.224,1177,3.285,2389,2.901,2390,2.86]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2383,3.621,2690,3.405,2691,3.344]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[13,0.062,133,0.424,159,5.875,204,1.351,206,2.53,209,3.405,282,2.774,345,1.088,1229,4.213,1252,4.355,1333,1.12,1844,5.706]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[3,0.761,109,2.416,110,3.337,117,1.527,149,2.5,2061,2.899,2062,3.85,2202,1.888]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[3,1.366,13,0.079,2061,6.181]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2389,2.385,2390,2.351]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[3,1.121,13,0.083,234,3.656,282,2.899,345,1.137,762,2.29,1333,1.171,2040,5.331,2061,6.034]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2383,3.621,2389,2.385,2390,2.351]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[13,0.058,133,0.398,159,5.519,204,1.296,206,2.428,209,3.198,234,3.286,282,3.463,345,1.022,1229,3.958,1252,4.091,1333,1.052,1844,5.36,2040,4.792]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[17,0.966,46,1.62,213,3.164,2202,1.888,2263,3.85,2264,4.168,2265,4.687,2324,2.168]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[213,3.792,2263,4.612,2267,5.616,2268,5.162,2692,6.468]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[13,0.081,57,2.325,133,0.433,141,2.24,274,1.897,345,1.112,678,2.325,762,2.24,1015,2.934,1333,1.145,2263,7.159]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[17,0.966,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2202,1.888,2324,2.168]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[17,1.031,390,1.261,739,2.052,1032,2.163,1566,3.035,2202,2.015,2324,2.314]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[17,1.158,739,2.304,1032,2.428,1566,3.408,2324,2.598]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[3,0.716,17,0.909,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2202,1.776,2324,2.04]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[17,1.26,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[16,0.785,2389,3.391,2390,3.342,2435,5.573]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[198,3.213,752,4.173,2435,4.619,2693,5.507,2694,7.742]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,1284,2.84,2389,2.901,2390,2.86,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[16,0.605,63,2.223,204,0.759,1284,2.558,2390,2.576,2470,4.44,2566,4.44]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[3,0.968,13,0.056,63,2.744,101,2.672,122,3.554,133,0.382,138,2.372,204,0.938,234,3.159,251,3.054,282,2.505,345,0.982,685,3.378,1284,4.253,1333,1.011,1406,4.078,2659,6.324]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[16,0.785,1027,4.84,2389,3.391,2390,3.342]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[198,3.213,752,4.173,1027,4.011,2693,5.507,2694,7.742]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[13,0.092,149,3.766,205,2.326,345,1.163,656,3.038,678,2.432,749,3.053,1027,5.454,1333,1.198]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[620,2.39,624,2.764,925,4.309,2061,3.317,2064,5.122,2695,5.686]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[81,2.643,204,0.71,624,2.327,1265,4.788,2050,3.799,2061,2.793,2064,4.313,2696,5.2]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[90,3.858,205,2.561,391,7.15,620,3.467,624,4.009,2064,7.429,2697,8.958]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[2,0.978,117,1.747,122,3.195,205,1.766,1981,3.42,2202,2.16]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[204,0.961,1981,3.898,1983,5.02,2698,7.039]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[6,4.825,209,3.726,282,3.036,348,4.822,351,3.94,728,5.483,1144,6.392]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[2,0.978,122,3.195,205,1.766,210,3.819,1120,1.999,1981,3.42]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[204,0.961,1981,3.898,1983,5.02,2311,6.48]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2389,2.706,2390,2.668]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[117,1.883,204,0.909,1284,3.061,2202,2.328,2565,5.313]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[63,2.584,117,1.829,204,0.883,1284,2.974,2566,5.162]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[3,0.95,13,0.074,14,1.007,101,2.621,122,3.486,129,1.644,133,0.375,138,2.342,204,0.92,345,0.964,373,1.65,435,3.237,685,3.313,1284,4.762,1333,0.992,1406,4]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[117,1.747,1575,4.769,1795,4.769,2202,2.16,2457,4.405,2458,4.512]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[117,1.991,739,2.507,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[13,0.073,133,0.611,620,3.467,2458,8.665]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[101,2.1,117,1.527,204,0.737,206,1.38,341,1.871,1229,2.989,2202,1.888,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[13,0.066,14,1.215,133,0.453,204,1.41,206,2.641,345,1.163,373,1.991,1229,4.504,1333,1.198]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[101,2.1,204,0.737,206,1.38,210,3.337,341,1.871,1120,1.747,1229,2.989,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[13,0.069,133,0.475,204,1.453,206,2.72,345,1.219,1229,4.721,1333,1.255]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[3,0.761,17,0.966,101,2.1,109,2.416,198,2.899,680,2.554,2202,1.888,2324,2.168]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[16,0.626,1575,4.448,1795,4.448,2389,2.706,2390,2.668,2457,4.109,2458,4.208]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[16,0.703,739,2.304,1990,4.42,2390,2.995,2457,4.612]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/clients/retrieve-email-using-getmail/",[3,1.017,255,5.761,739,2.571,2699,6.268]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[739,2.75,2699,6.705,2700,7.109]],["toc//docs/email/clients/retrieve-email-using-getmail/",[3,1.271,13,0.054,96,2.344,122,3.421,133,0.502,179,3.876,440,3.742,453,3.977,739,3.211,958,4.213,974,6.088,993,4.622,1630,4.355,1930,5.106,2699,8.906]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2701,7.539,2702,7.993]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1673,3.627,2701,6.705,2703,7.722]],["toc//docs/development/frameworks/catalyst-and-modperl/",[0,1.997,2,0.896,13,0.066,14,0.846,15,1.699,101,2.202,107,2.584,133,0.45,138,1.451,204,1.405,251,2.516,294,1.555,339,1.55,345,0.809,364,2.064,685,2.783,1056,4.134,1333,0.833,1406,3.36,2655,5.21,2701,8.193,2702,7.445]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[17,1.031,46,1.729,205,1.647,685,2.833,2202,2.015,2324,2.314,2704,5.003]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[17,0.996,63,2.223,649,3.346,1151,3.664,2015,4.172,2704,4.831,2705,5.564]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[3,0.987,4,1.366,6,3.94,13,0.057,133,0.522,204,0.956,216,3.965,345,1.002,557,5.591,1333,1.032,2403,7.237,2567,8.139,2704,8.139]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[17,1.106,46,1.854,390,1.352,1821,3.224,2202,2.16,2324,2.481]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[17,1.26,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[13,0.078,98,2.232,133,0.536,152,2.215,204,0.996,274,1.78,277,5.089,364,2.66,602,4.576,656,2.725,1821,5.983]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[17,1.031,224,3.064,916,3.562,2202,2.015,2280,4.598,2281,4.32,2324,2.314]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1043,3.392,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2315,5.122,2706,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[274,1.507,624,2.764,916,3.819,1074,3.536,2290,4.769,2695,5.686]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2048,6.163,2707,7.722,2708,7.722]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[14,1.068,15,2.145,45,2.179,75,2.222,77,4.139,81,3.633,89,1.915,90,3.078,308,4.298,599,4.243,916,4.419,1074,6.508,2050,5.221]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[814,0.472]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[17,1.292,2202,2.524,2279,4.753,2324,2.899]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[8,3.551,17,1.071,1083,3.597,1605,4.774,2279,3.939,2663,5.507]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[13,0.074,14,0.795,89,1.072,120,2.499,133,0.43,138,1.364,152,1.615,179,3.118,204,1.055,274,1.298,318,2.16,339,1.457,345,0.761,353,3.711,371,3.389,373,1.302,510,2.829,543,3.503,762,1.532,1333,0.783,1506,3.337,1820,3.793,2161,4.897,2279,7.535]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[17,1.031,1575,4.448,1795,4.448,2202,2.015,2324,2.314,2457,4.109,2458,4.208]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[17,1.26,739,2.507,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2709,4.802]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[17,0.966,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2202,1.888,2324,2.168]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[17,1.158,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-joomla/",[46,2.167,205,2.064,650,5.272,685,3.549]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[649,4.644,650,5.64,1151,5.085]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[13,0.083,20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,650,7.438,678,2.377,762,2.29,1015,3]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[3,0.761,17,0.966,155,2.871,456,1.905,2065,2.871,2066,3.689,2202,1.888,2324,2.168]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[17,1.158,456,2.282,804,4.058,2065,3.44,2069,3.474]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2435,5.573]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[17,1.26,198,3.781,752,4.911,2435,5.435]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[4,1.693,133,0.483]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[4,1.373,13,0.057,684,3.518,1422,6.48]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[2,0.773,4,0.952,11,1.138,36,2.998,82,2.86,98,1.493,99,3.403,103,4.236,133,0.534,138,1.251,149,2.259,157,2.243,287,3.213,307,2.826,339,1.987,351,2.309,397,3.337,442,3.658,489,5.603,550,3.061,620,1.888,654,2.343,657,2.141,678,1.459,928,2.595,1127,3.894,1391,3.767,1656,4.491,1666,4.236,2009,3.403,2040,3.271,2710,4.491,2711,4.491]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[17,1.292,1027,4.84,2202,2.524,2324,2.899]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[17,1.26,198,3.781,752,4.911,1027,4.72]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[13,0.092,149,3.766,205,2.326,345,1.163,656,3.038,678,2.432,749,3.053,1027,5.454,1333,1.198]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[46,1.998,58,3.15,301,2.921,412,5.52,2712,5.78]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1613,5.162,1614,5.162,2638,5.954,2712,5.616,2713,6.468]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[3,1.05,13,0.06,46,2.236,89,1.502,127,5.196,328,3.169,340,6.32,389,4.48,407,6.177,412,6.177,2641,6.857,2712,9.455]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[17,1.031,141,1.659,726,4.109,1930,4.448,2035,4.109,2202,2.015,2324,2.314]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[17,1.26,2035,5.02,2036,6.112,2324,2.828]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[3,0.932,13,0.083,14,0.988,95,3.305,133,0.571,251,2.94,345,0.946,359,4.716,554,4.148,678,1.977,1329,5.277,1333,0.974,2035,6.429,2037,5.484,2039,5.106,2564,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[0,2.547,101,2.808,2714,6.268,2715,6.268]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[204,0.816,2297,4.96,2714,5.194,2715,5.194,2716,5.982,2717,5.982]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[6,3.181,13,0.042,133,0.549,138,1.941,139,3.065,160,2.747,173,4.899,204,1.346,216,2.922,283,2.266,339,2.072,345,0.738,685,3.721,1056,5.527,1333,0.76,1406,4.492,2030,5.074,2031,5.397,2714,4.484,2715,4.484,2718,5.164]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[814,0.472]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[3,1.017,255,5.761,739,2.571,2719,6.268]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[740,2.735,1510,3.998,2700,5.954,2719,5.616,2720,6.468]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[3,0.785,13,0.045,14,0.832,82,3.266,92,4.619,99,5.577,107,3.651,158,4.837,173,3.607,191,3.495,253,4.177,261,3.266,291,2.935,295,1.948,341,1.931,359,3.973,588,4.943,657,2.445,740,2.356,1890,4.837,2719,8.874,2721,5.57,2722,5.128,2723,5.57,2724,5.57]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[814,0.472]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[89,1.245,142,2.967,390,1.352,620,2.39,624,2.764,1074,3.536]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2048,6.163,2725,7.722,2726,7.722]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[14,0.97,15,1.948,75,2.018,77,3.759,89,1.794,90,2.796,108,4.013,142,3.118,308,3.904,390,1.949,599,3.853,620,2.512,624,3.983,678,1.941,1074,6.256,2050,4.741]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[16,0.671,17,1.106,352,4.405,620,2.39,1341,5.686,1702,4.769]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[963,6.112,1702,5.435,2727,7.039,2728,7.039]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[133,0.525,295,3.3,365,6.45,440,5.341,963,8.194]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[16,0.785,2044,4.085,2729,4.753,2730,4.753]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2731,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[16,0.785,2044,4.085,2389,3.391,2390,3.342]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2732,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[2,1.179,13,0.06,14,1.113,133,0.543,138,1.91,205,2.13,206,1.904,339,2.04,372,4.04,503,4.822,678,2.227,781,5.091,2044,5.524]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[17,0.909,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2202,1.776,2324,2.04,2383,3.621]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[13,0.059,14,1.09,133,0.406,159,5.632,204,1.314,206,2.461,209,3.264,282,2.66,345,1.043,373,1.786,1229,4.039,1252,4.176,1333,1.074,1844,5.47]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[2,0.912,17,1.031,740,2.436,1033,3.377,1970,3.42,2202,2.015,2324,2.314]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1353,3.753,1970,3.551,1972,4.486,1973,4.486,2341,5.507,2577,4.619]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2389,2.706,2390,2.668]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1353,3.753,1970,3.551,1972,4.486,1973,4.486,2224,4.96,2470,4.774]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[13,0.063,21,2.343,105,2.581,133,0.559,152,2.361,155,4.136,208,2.876,345,1.112,740,4.245,1333,1.145,1970,4.616]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[4,1.298,117,1.883,1149,2.563,1809,3.273,2202,2.328]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[4,1.373,1508,4.127,1998,4.911,2733,6.48]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[13,0.062,14,1.137,21,2.293,133,0.551,138,1.951,152,2.31,208,2.815,339,2.084,373,1.863,1149,3.811,1534,5.558,1809,3.741]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[4,1.205,17,1.106,1149,2.378,1809,3.037,2202,2.16,2324,2.481]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[4,1.262,1508,3.792,1998,4.512,2329,5.616,2734,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[13,0.059,14,1.09,21,2.198,133,0.536,138,1.871,152,2.215,208,2.698,339,1.998,345,1.043,373,1.786,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2389,2.901,2390,2.86]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2735,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,1809,3.587,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[46,1.998,76,3.952,301,2.921,302,5.313,2736,5.78]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1192,5.435,2639,6.48,2736,6.112,2737,7.039]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[2,0.671,3,0.597,11,0.988,12,0.994,13,0.053,15,1.271,46,2.386,76,2.514,89,0.854,106,1.74,122,2.191,127,2.955,133,0.363,157,1.948,167,2.619,177,2.955,204,0.89,205,1.211,234,4.878,244,3.094,295,1.481,328,1.802,366,2.582,439,2.004,450,2.657,501,3.38,620,2.523,871,2.483,925,2.955,1010,2.05,1049,2.895,1277,3.899,2736,8.841,2738,4.236]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[814,0.472]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[179,4.621,180,5.621,544,6.537]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[75,1.617,178,3.087,179,3.049,294,1.429,696,3.012,2739,5.2,2740,4.788,2741,5.2]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[3,1.379,96,2.144,99,4.218,131,3.216,154,5.251,179,6.544,295,2.115,341,2.096,453,3.637,543,5.581,605,4.055,690,5.567,854,4.669,1079,4.535,1820,4.312,2722,7.802,2740,7.802]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[4,1.298,117,1.883,206,1.701,1149,2.563,2202,2.328]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[4,1.373,1508,4.127,1509,4.72,2733,6.48]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[13,0.062,21,2.293,96,2.697,133,0.612,152,2.31,206,1.945,208,2.815,294,2.091,510,4.047,1149,2.929,2274,4.926,2361,5.706]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[4,1.205,17,1.106,206,1.579,1149,2.378,2202,2.16,2324,2.481]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[4,1.373,1508,4.127,1509,4.72,2329,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[13,0.079,14,1.113,21,2.244,133,0.415,152,2.262,206,1.904,208,2.755,345,1.065,373,1.823,510,3.962,1149,2.868,1333,1.097,2274,4.822,2361,5.585]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[814,0.472]],["title//docs/tools-reference/linux-system-administration-basics/",[75,2.244,96,2.559,294,1.984,696,4.18]],["keywords//docs/tools-reference/linux-system-administration-basics/",[75,1.617,157,2.391,740,2.199,763,2.537,777,3.554,2742,5.2,2743,4.788,2744,5.2]],["toc//docs/tools-reference/linux-system-administration-basics/",[2,1.284,13,0.018,14,1.13,15,0.683,16,0.247,17,0.407,21,1.556,40,1.705,46,1.55,75,1.605,96,0.806,97,3.771,98,2.48,117,0.643,128,2.795,133,0.218,141,1.129,142,1.882,146,0.95,157,1.046,163,2.627,174,4.116,204,0.31,205,1.12,224,1.21,246,1.156,257,1.273,294,1.902,328,2.197,345,0.325,351,1.076,372,2.126,373,0.557,399,1.406,456,1.383,457,1.705,579,2.734,605,1.525,616,1.705,621,2.458,631,0.95,652,1.661,654,1.882,657,0.998,664,2.795,672,1.622,739,1.839,877,1.622,893,3.127,993,1.166,1033,1.333,1035,1.661,1047,1.705,1049,1.554,1056,1.661,1297,1.187,1385,4.042,1433,1.975,1533,1.622,1603,1.975,1859,1.815,1873,1.975,2131,1.975,2394,1.705,2430,1.975,2441,1.975,2531,2.093,2621,1.886,2622,2.093,2745,2.093,2746,2.274]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[2,0.978,204,0.843,205,1.766,210,3.819,275,3.14,1120,1.999]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[204,1.054,1853,5,2459,6.163]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[2,0.926,13,0.078,120,2.747,133,0.581,138,1.5,157,2.689,204,1.311,209,2.616,287,3.85,289,2.444,318,2.375,339,1.601,345,0.836,348,3.386,435,2.808,602,3.668,888,4.385,929,2.634,1333,0.861,1533,4.17,2366,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[17,1.292,2044,4.085,2202,2.524,2324,2.899]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[8,3.551,1083,3.597,2044,3.385,2045,4.369,2747,5.982,2748,5.982]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[105,2.05,117,1.747,1252,3.536,1960,3.999,1999,3.621,2202,2.16]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[3,0.898,13,0.052,14,0.952,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,373,2.152,456,2.249,696,3.692,763,3.109,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[814,0.472]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[17,1.106,631,2.581,2202,2.16,2324,2.481,2479,5.686,2749,5.363]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[732,3.109,2091,5.618,2749,6.112,2750,7.039]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[3,0.987,13,0.086,57,2.095,133,0.39,141,2.018,257,3.921,274,1.709,345,1.002,678,2.095,762,2.018,1015,2.643,1333,1.032,2749,9.794]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/apache/apache-access-control/",[204,1.076,439,3.73,620,3.05]],["keywords//docs/web-servers/apache/apache-access-control/",[157,2.558,204,0.759,274,1.358,684,2.781,1537,4.831,2751,5.564,2752,5.564]],["toc//docs/web-servers/apache/apache-access-control/",[11,1.701,12,1.712,157,4.427,204,0.996,291,3.843,439,4.556,487,4.387,620,3.726,734,3.646,929,3.286,1049,4.986,1490,5.822,2414,6.716]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[149,3.083,204,0.909,281,4.058,439,3.15,620,2.576]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[157,2.974,204,0.883,274,1.578,684,3.232,1537,5.616]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[107,3.331,131,3.88,149,3.378,281,5.869,439,5.424,453,4.387,604,4.276,620,4.435,2215,6.716]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[17,1.106,46,1.854,340,3.999,681,3.765,2202,2.16,2324,2.481]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[681,3.646,2229,6.712,2230,4.774,2231,4.774,2753,5.982]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[4,1.718,6,2.109,13,0.079,21,1.512,57,1.5,89,1.011,96,1.779,105,1.665,129,1.224,133,0.625,141,1.445,152,1.523,204,0.685,274,1.224,294,1.379,345,0.718,353,3.5,678,1.5,681,5.369,682,2.839,739,1.787,762,1.445,1015,1.893,1118,3.5,1333,0.739]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[2,0.912,17,1.031,122,2.98,205,1.647,1981,3.19,2202,2.015,2324,2.314]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[204,0.961,1481,5.618,1981,3.898,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[16,0.671,46,1.854,340,3.999,681,3.765,2389,2.901,2390,2.86]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2754,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[4,1.69,6,2.051,13,0.078,14,0.729,21,2.187,57,1.459,89,0.984,105,1.619,129,1.19,133,0.598,141,1.405,152,1.481,204,0.666,234,2.243,274,1.19,282,1.779,345,0.698,353,3.403,373,1.194,678,1.459,681,5.282,682,2.761,739,1.738,762,1.405,1015,1.841,1118,3.403,1333,0.718]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[89,1.245,117,1.747,749,2.319,768,3.765,769,3.167,1120,1.999]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[117,1.829,1120,2.093,1121,4.85,1122,5.162,2755,5.954]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[11,2.143,12,2.157,89,1.853,749,3.45,768,5.603,769,4.713]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[16,0.671,17,1.106,89,1.245,749,2.319,768,3.765,769,3.167]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[16,0.703,17,1.158,1121,4.85,1122,5.162,2755,5.954]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,2.143,12,2.157,89,1.853,749,3.45,768,5.603,769,4.713]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[589,4.747,656,2.487,749,2.499,768,4.058,769,3.413]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1121,4.85,1122,5.162,2756,6.468,2757,5.616,2758,6.468]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[13,0.071,48,3.91,89,1.761,111,3.859,749,3.28,768,5.326,769,4.48,1269,6.231]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[814,0.472]],["title//docs/platform/linode-beginners-guide/",[45,2.403,1142,5.911,1511,7.257]],["keywords//docs/platform/linode-beginners-guide/",[1649,5.618,2743,6.48,2759,7.039,2760,7.039]],["toc//docs/platform/linode-beginners-guide/",[5,2.587,13,0.032,14,0.597,20,2.412,45,3.505,75,1.242,90,1.721,96,1.417,98,1.223,106,1.642,138,1.025,152,1.213,165,3.7,169,2.237,212,2.731,246,2.031,272,3.189,439,1.891,456,1.41,496,2.997,555,3.189,604,3.654,657,1.754,672,2.85,717,2.471,739,1.423,762,1.151,932,3.47,1009,2.731,1010,1.934,1033,2.343,1761,3.086,1817,5.412,1856,3.47,2110,3.47,2424,3.47,2761,3.996,2762,3.996,2763,6.233,2764,3.996,2765,3.996]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[656,2.696,749,2.71,1118,5.035,1119,4.528]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1269,5.02,1682,4.811,2757,6.112,2766,7.039]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[13,0.069,89,1.719,160,4.535,749,3.995,769,4.372,928,4.535,1124,5.948,1269,6.081]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[814,0.472]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[3,0.871,122,3.195,351,2.923,510,3.285,2767,6.177,2768,5.686]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1269,5.02,1682,4.811,2757,6.112,2768,6.48]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[13,0.079,734,4.846,749,3.64,1269,6.914]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[77,3.577,98,1.89,308,3.715,599,3.667,1009,4.222,2769,5.363]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1700,4.774,1702,4.619,2769,5.194,2770,5.982,2771,5.982,2772,5.982]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[3,1.072,13,0.062,90,4.263,194,5.875,196,3.499,345,1.088,624,3.405,929,3.428,1118,5.308,1333,1.12,2769,8.595,2773,7.609]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[814,0.472]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[16,0.671,24,4.512,98,1.89,1009,4.222,1699,4.769,2389,2.901]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1699,4.619,1700,4.774,1701,5.507,1702,4.619,1703,5.507,1704,5.507]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[3,1.146,13,0.066,90,3.503,194,6.28,196,3.74,345,1.163,624,3.64,929,3.664,1333,1.198,1699,7.977]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[17,1.192,739,2.371,1987,3.952,2202,2.328,2324,2.674]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1987,3.839,1990,4.42,1991,4.85,2774,6.468,2775,5.616]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[13,0.058,14,1.068,282,2.606,341,3.292,345,1.022,373,1.75,908,5.097,929,3.22,958,4.553,1333,1.052,1610,4.419,1787,4.419,1987,6.334,1992,5.221]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[16,0.724,739,2.371,1987,3.952,2729,4.384,2730,4.384]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1987,3.839,1990,4.42,1991,4.85,2775,5.616,2776,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[13,0.052,14,1.313,21,1.921,133,0.355,282,2.324,301,2.797,341,3.047,345,0.912,373,1.56,678,1.906,908,4.546,929,2.871,958,4.061,1333,0.939,1610,3.941,1787,3.941,1987,5.973,1992,4.656,2039,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[16,0.724,739,2.371,1987,3.952,2389,3.127,2390,3.083]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1987,3.839,1990,4.42,1991,4.85,2775,5.616,2777,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[13,0.052,14,1.313,21,1.921,133,0.355,282,2.324,301,2.797,341,3.047,345,0.912,373,1.56,678,1.906,908,4.546,929,2.871,958,4.061,1333,0.939,1610,3.941,1787,3.941,1987,5.973,1992,4.656,2039,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2778,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1962,3.215,1963,3.215,1964,3.161,1965,3.161,1999,2.862,2003,3.661,2004,3.215,2779,4.882,2780,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[3,0.852,13,0.049,96,2.144,107,2.761,133,0.337,138,1.551,234,2.78,261,3.545,282,2.205,295,2.115,307,3.502,339,1.656,345,0.865,373,1.48,456,2.134,696,3.502,763,2.95,1333,0.89,1999,5.735,2005,3.248,2008,4.535,2009,4.218,2010,3.915,2040,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[96,2.795,133,0.439,204,1.076]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[133,0.36,157,2.974,204,0.883,684,3.232,1969,5.954]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[17,1.362,89,1.534,96,2.697,98,3.029,133,0.424,138,1.951,177,5.308,204,1.038,339,2.084,652,5.558,938,6.072,947,6.31,2441,6.607]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[204,0.985,348,4.18,888,5.413,2366,5.413]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[204,0.816,348,3.464,605,4.011,1686,3.939,2366,4.486,2781,5.507]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[11,1.854,12,1.866,302,6.346,348,5.898,605,5.331,728,5.236,888,7.636,1418,7.32,2366,5.962,2383,5.67]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[127,5.035,128,5.148,204,0.985,763,3.521]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[204,0.961,763,3.434,1686,4.636,2782,7.039]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[99,4.368,133,0.349,138,1.606,204,1.469,243,4.997,282,2.283,339,1.715,341,2.17,503,4.054,657,3.81,763,4.236,993,5.111,1391,4.834,1900,5.764,2711,5.764,2783,6.261,2784,6.261]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,204,0.786,205,1.647,275,2.928,2389,2.706,2390,2.668]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[204,0.816,684,2.99,1982,4.369,2785,5.982,2786,5.982,2787,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[13,0.08,96,2.181,133,0.55,138,1.578,149,2.849,204,1.348,209,3.838,257,3.443,275,3.127,289,2.571,294,1.691,318,2.499,339,1.685,345,0.88,435,2.955,654,2.955,1333,0.906,1461,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2389,2.706,2390,2.668]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1032,1.632,1353,2.728,1915,3.261,2272,2.434,2547,3.358,2548,3.358,2549,3.358,2550,3.358,2679,4.003,2788,4.348,2789,4.003]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[16,0.626,105,1.912,1252,3.298,1959,3.42,1960,3.73,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2790,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[2,1.054,16,0.724,732,2.94,2389,3.127,2390,3.083]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1638,4.994,2085,4.994,2684,5.363,2791,6.468,2792,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,149,2.579,204,0.76,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,654,2.676]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2389,2.706,2390,2.668]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1446,4.636,2070,5.435,2071,5.142,2793,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2389,2.706,2390,2.668]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[134,2.625,1043,3.646,1141,4.011,2794,5.982,2795,5.982,2796,5.982]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,205,1.647,246,2.928,2042,3.157,2389,2.706,2390,2.668]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1853,4.187,2042,3.544,2684,5.363,2797,6.468,2798,6.468]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[13,0.054,14,0.988,21,1.992,81,3.361,133,0.368,140,4.148,274,2.199,301,2.902,345,0.946,373,1.619,620,3.488,717,5.573,777,6.161,993,3.391,1333,0.974,2042,4.94]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/networking/ssh/using-sshfs-on-linux/",[3,0.938,120,3.127,142,3.198,614,4.464,2799,5.14]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2799,5.435,2800,7.039,2801,7.039,2802,7.039]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[3,0.915,13,0.053,14,0.97,15,1.948,21,1.956,48,2.905,75,2.018,95,3.244,98,1.986,108,4.013,111,2.867,120,3.049,142,4.276,196,2.985,294,1.784,614,6.811,624,2.905,678,1.941,2799,5.012]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[2,1.143,117,2.041,732,3.188,2202,2.524]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[117,2.184,732,3.411,2683,6.404]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[814,0.472]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[81,3.669,98,2.209,1009,4.933,2803,6.268]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1700,5.162,1702,4.994,2803,5.616,2804,6.468,2805,6.468]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[3,1.263,13,0.073,345,1.281,1118,6.249,1333,1.319,2803,9.528]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2,0.912,13,0.047,17,1.031,2005,3.094,2079,3.377,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2806,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2690,3.863,2691,3.794]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2807,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2808,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2690,3.863,2691,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1962,3.425,1963,3.425,1964,3.367,1965,3.367,1999,3.049,2003,3.9,2004,3.425,2809,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[3,0.898,13,0.052,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,345,0.912,373,1.56,456,2.249,696,3.692,763,3.109,1333,0.939,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1962,3.425,1963,3.425,1964,3.367,1965,3.367,1999,3.049,2003,3.9,2004,3.425,2810,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[3,0.852,13,0.049,96,2.144,107,2.761,133,0.337,138,1.551,234,2.78,261,3.545,282,2.205,295,2.115,307,3.502,339,1.656,345,0.865,373,1.48,456,2.134,696,3.502,763,2.95,1333,0.89,1999,5.735,2005,3.248,2008,4.535,2009,4.218,2010,3.915,2040,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[2,1.054,204,0.909,205,1.903,348,3.855,605,4.464]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[204,0.883,348,3.746,605,4.337,2687,5.616,2781,5.954]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[11,2.089,12,2.102,348,5.188,605,7.358,1391,6.917,2811,8.958]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[17,1.031,105,1.912,1252,3.298,1960,3.73,1999,3.377,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[3,0.898,13,0.052,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,345,0.912,373,1.56,456,2.249,696,3.692,763,3.109,1333,0.939,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[17,1.106,1974,4.309,1975,4.222,1976,3.765,2202,2.16,2324,2.481]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[20,3.148,57,2.432,133,0.453,141,2.343,274,1.985,345,1.163,539,5.801,762,2.343,1015,3.069,1333,1.198,1976,4.958]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[13,0.058,16,0.785,18,3.521,2812,6.268]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2022,4.644,2812,6.705,2813,7.722]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[20,3.3,133,0.592,390,1.867,539,6.081,1010,4.127,2812,10.075]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[13,0.064,146,3.294,648,4.805]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[206,1.422,648,3.392,649,3.346,1151,3.664,1673,2.614,1693,5.122,2015,4.172]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[3,1.173,13,0.067,14,1.244,20,3.222,133,0.463,146,3.48,648,6.996,678,2.489]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[2,1.143,732,3.188,1120,2.336,2814,7.218]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1772,5.142,1773,5.279,2815,7.039,2816,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[2,1.143,210,4.462,732,3.188,1120,2.336]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1772,5.142,1773,5.279,2817,7.039,2818,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[17,1.192,204,0.909,1153,3.726,2202,2.328,2324,2.674]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[679,3.642,2320,5.838,2321,6.48,2322,6.48]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[3,0.987,13,0.076,14,1.047,36,2.894,152,2.127,163,4.697,204,0.956,267,4.159,282,2.554,345,1.002,373,1.715,679,3.624,1153,5.912,1333,1.032,2323,5.253]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[13,0.047,16,0.626,204,0.786,1153,3.225,1165,2.833,2690,3.863,2691,3.794]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[679,3.642,1958,5.618,2320,5.838,2819,7.039]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[3,1.028,13,0.078,36,3.014,152,2.215,163,4.891,204,0.996,267,4.33,282,2.66,345,1.043,679,3.774,1153,6.032,1333,1.074,2323,5.47]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2690,3.863,2691,3.794]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2820,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[3,0.938,81,3.384,90,2.867,624,2.979,2050,4.862]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2050,5.64,2821,7.722,2822,7.722]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[13,0.059,90,3.142,101,2.838,138,1.871,142,4.625,307,4.225,341,2.528,624,4.309,925,5.089,1074,4.176,1075,4.387,1445,5.822,2050,7.033]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[16,0.626,105,1.912,1252,3.298,1959,3.42,1960,3.73,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2823,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[17,1.031,105,1.912,1252,3.298,1959,3.42,1960,3.73,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1959,3.087,1961,3.799,1962,3.425,1963,3.425,1964,3.367,1965,3.367,2004,3.425,2491,4.788]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[16,0.626,739,2.052,1000,2.422,1351,3.794,2333,4.598,2690,3.863,2691,3.794]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1569,5.02,2337,5.618,2338,5.618,2592,6.48]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2729,3.794,2730,3.794]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2789,4.494]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[3,1.017,169,4.04,1933,6.645,2799,5.573]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2799,5.435,2824,7.039,2825,7.039,2826,7.039]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,1.179,133,0.606,169,6.094,178,4.422,195,5.441,309,5.312,614,4.994,620,2.882,624,3.333,2799,5.751,2827,7.448]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[2,0.912,16,0.626,205,1.647,246,2.928,2042,3.157,2729,3.794,2730,3.794]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1853,4.558,2042,3.857,2828,7.039,2829,6.112]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[13,0.056,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,345,0.982,620,3.58,717,5.719,777,6.322,993,3.522,1333,1.011,2042,5.069]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[117,1.747,739,2.2,1000,2.597,1351,4.068,2202,2.16,2333,4.93]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1569,5.02,2337,5.618,2338,5.618,2830,7.039]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[13,0.081,21,2.343,57,2.325,98,2.38,141,2.24,274,1.897,294,2.137,678,3.002,762,2.24,1015,2.934,1351,5.121]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[814,0.472]],["title//docs/databases/postgresql/centos-5/",[3,0.871,117,1.747,129,1.507,134,2.711,1041,3.35,2202,2.16]],["keywords//docs/databases/postgresql/centos-5/",[134,3.089,1043,4.291,1141,4.72,2831,7.039]],["toc//docs/databases/postgresql/centos-5/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/centos-5/",[814,0.472]],["title//docs/databases/postgresql/fedora-12/",[3,0.871,129,1.507,134,2.711,210,3.819,1041,3.35,1120,1.999]],["keywords//docs/databases/postgresql/fedora-12/",[1043,4.707,1141,5.178,2832,7.722]],["toc//docs/databases/postgresql/fedora-12/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/fedora-12/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2690,3.863,2691,3.794]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[134,3.089,1043,4.291,1141,4.72,2833,6.48]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[13,0.059,89,2.173,129,1.78,133,0.406,134,4.73,295,2.551,345,1.377,1044,4.176,1048,4.804,1333,1.418]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2729,3.794,2730,3.794]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[134,3.089,1043,4.291,1141,4.72,2833,6.48]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[13,0.062,89,2.218,129,1.856,133,0.424,134,4.828,295,2.661,345,1.088,1044,4.355,1048,5.011,1333,1.12]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[17,1.031,390,1.261,739,2.052,1032,2.163,2202,2.015,2272,3.225,2324,2.314]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2834,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[3,1.044,13,0.041,14,1.316,15,2.224,21,1.512,89,1.011,133,0.541,152,1.523,208,1.856,295,2.591,339,1.374,345,0.718,351,3.506,373,1.228,390,2.13,397,2.307,656,1.874,740,2.122,749,1.883,1032,3.307,1333,0.739,1570,3.058,2218,3.429,2272,2.808]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[17,1.106,204,0.843,1284,2.84,2202,2.16,2324,2.481,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[63,2.812,204,0.961,1284,3.237,2566,5.618]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[3,0.987,13,0.057,14,1.047,63,2.799,101,2.725,122,3.624,133,0.39,138,2.404,204,0.956,251,3.114,345,1.002,373,1.715,685,3.445,1284,4.31,1333,1.032,1406,4.159]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[16,0.671,204,0.843,1284,2.84,2565,4.93,2690,4.142,2691,4.068]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[16,0.605,63,2.223,204,0.759,1284,2.558,2566,4.44,2691,3.664,2835,5.564]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[3,0.968,13,0.075,20,2.658,63,2.744,101,2.672,122,3.554,133,0.382,138,2.372,204,0.938,251,3.054,345,0.982,685,3.378,1284,4.809,1333,1.011,1406,4.078]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[2,0.912,17,1.031,205,1.647,246,2.928,2042,3.157,2202,2.015,2324,2.314]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1853,4.558,2042,3.857,2577,5.435,2688,6.48]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[13,0.059,81,3.708,133,0.406,140,4.576,274,2.349,345,1.043,620,3.726,717,5.952,777,6.581,1333,1.074,2042,5.276]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[30,3.037,58,2.923,59,4.632,341,2.141,891,3.621,1554,4.405]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[825,5.279,826,5.02,1555,5.618,1556,5.618]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[16,1.054,17,1.735,117,2.368,146,2.485,232,3.162,528,3.076,1000,3.52,1120,1.924,1165,2.923,1227,4.343,1544,3.576,1689,2.561,1784,3.048,2113,2.643,2185,2.856,2202,2.079,2248,2.561,2836,5.945,2837,5.945,2838,5.945,2839,5.945]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[814,0.472]],["title//docs/tools-reference/tools/introduction-to-rsync/",[82,5.09,1927,6.929]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[169,3.114,870,3.602,1498,4.831,1927,4.44,2645,5.122,2840,5.564,2841,5.564]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[397,3.921,925,5.948,1927,9.26,2842,8.526,2843,8.526,2844,8.526,2845,8.526]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[3,0.812,17,1.031,129,1.406,134,2.528,1041,3.125,2202,2.015,2324,2.314]],["keywords//docs/databases/postgresql/debian-5-lenny/",[134,3.089,1043,4.291,1141,4.72,2846,7.039]],["toc//docs/databases/postgresql/debian-5-lenny/",[13,0.074,14,1.007,89,2.088,129,1.644,133,0.375,134,4.545,168,4.363,295,2.357,345,0.964,929,3.036,1044,3.857,1048,4.438,1333,0.992,2077,5.203,2078,5.203]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/how-to-configure-git/",[36,3.256,74,4.042,445,5.191]],["keywords//docs/development/version-control/how-to-configure-git/",[16,0.5,17,0.823,74,2.358,1297,2.401,1492,2.844,1612,3.994,1613,3.671,1614,3.671,1615,3.814,2847,4.6]],["toc//docs/development/version-control/how-to-configure-git/",[74,5.583,96,2.641,133,0.415,142,3.578,155,3.962,234,4.488,328,3.169,397,4.488,412,6.177,585,5.441,1519,6.468]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[13,0.054,74,3.413,75,2.069,77,3.855,81,3.384]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[74,3.316,1612,5.616,1613,5.162,1614,5.162,1615,5.363]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[13,0.074,36,3.797,74,6.151,82,5.388]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[75,2.45,82,4.621,574,6.086]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[75,2.4,1798,5.962,2848,7.722]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[2,0.593,13,0.068,36,2.446,40,2.806,45,1.804,57,1.119,58,1.771,75,2.827,90,1.612,98,1.812,113,3.103,120,4.272,233,2.89,274,0.913,295,1.309,341,1.297,342,2.423,366,3.609,397,1.721,408,2.348,445,2.465,487,2.251,555,2.987,621,2.348,661,2.89,662,2.348,672,2.669,762,2.62,947,3.103,1333,0.551,1444,3.25,1457,3.25,1666,3.25,1766,4.909,1798,2.89,1949,3.25,2123,3.445,2849,5.92,2850,3.742,2851,3.742,2852,3.742]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[75,2.45,295,2.757,1049,5.387]],["keywords//docs/tools-reference/linux-users-and-groups/",[75,1.859,295,2.092,366,3.646,2532,4.96,2853,5.982,2854,5.982]],["toc//docs/tools-reference/linux-users-and-groups/",[89,1.405,98,2.859,107,2.111,120,3.941,126,3.1,244,3.377,262,3.045,287,3.045,295,3.267,328,1.967,350,2.781,366,6.11,397,3.205,408,4.373,440,2.617,549,3.834,662,2.901,829,4.015,955,4.256,992,3.69,1049,6.385,1253,3.377,2532,5.78,2536,4.256,2855,4.623]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[294,2.166,2116,6.845,2117,7.257]],["keywords//docs/security/recovering-from-a-system-compromise/",[2856,7.039,2857,8.657,2858,6.48]],["toc//docs/security/recovering-from-a-system-compromise/",[3,0.932,45,2.748,109,4.59,133,0.368,165,3.925,197,4.83,604,3.876,870,5.836,1455,4.716,1801,5.484,2115,7.475,2473,6.088,2710,6.088,2859,6.612,2860,6.612,2861,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[17,1.031,204,0.786,275,2.928,656,2.152,749,2.163,2202,2.015,2324,2.314]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1682,4.811,1687,6.48,1853,4.558,2577,5.435]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.298,117,1.883,427,3.475,1177,3.541,2202,2.328]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1178,4.234,1493,4.911,1494,4.352,2862,7.039]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.205,17,1.106,427,3.224,1177,3.285,2202,2.16,2324,2.481]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1178,4.234,1493,4.911,1494,4.352,1892,6.112]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.124,16,0.626,427,3.007,1165,2.833,1177,3.064,2690,3.863,2691,3.794]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1178,4.234,1493,4.911,1494,4.352,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.205,16,0.671,427,3.224,1177,3.285,2729,4.068,2730,4.068]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[13,0.054,45,2.029,56,3.686,58,3.15,1503,5.78]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[884,6.404,885,6.705,1006,7.109]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[14,0.97,15,1.948,36,2.682,45,2.713,89,1.309,133,0.361,188,3.299,339,2.782,491,4.203,554,6.373,618,3.853,624,2.905,870,4.203,1258,8.194,1505,4.868,2863,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[16,0.671,204,0.843,427,3.224,1177,3.285,2729,4.068,2730,4.068]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[0,2.744,13,0.063,107,3.551,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,397,3.576,682,5.681,894,5.425,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[2,0.855,16,0.587,204,0.737,205,1.543,275,2.744,1165,2.654,2690,3.619,2691,3.555]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[204,0.816,684,2.99,1982,4.369,2864,5.982,2865,5.982,2866,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[13,0.08,96,2.181,133,0.55,138,1.578,149,2.849,204,1.348,209,3.838,257,3.443,275,3.127,289,2.571,294,1.691,318,2.499,339,1.685,345,0.88,435,2.955,654,2.955,1333,0.906,1461,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[3,0.871,117,1.747,129,1.507,390,1.352,1041,3.35,2202,2.16]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1446,5.085,2071,5.64,2867,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.551,927,4.704,928,4.047,929,3.428,1333,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[3,0.871,129,1.507,210,3.819,390,1.352,1041,3.35,1120,1.999]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1826,5.962,1827,6.404,2868,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.551,927,4.704,928,4.047,929,3.428,1333,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2690,3.863,2691,3.794]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1446,4.636,2070,5.435,2071,5.142,2869,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2729,3.794,2730,3.794]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1446,4.636,2070,5.435,2071,5.142,2870,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[3,0.812,17,1.031,129,1.406,390,1.261,1041,3.125,2202,2.015,2324,2.314]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1446,4.636,2071,5.142,2356,6.48,2871,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[814,0.472]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[17,1.031,133,0.321,280,2.767,592,3.794,2202,2.015,2324,2.314,2872,5.761]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[631,2.942,2873,7.039,2874,7.039,2875,7.039]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[13,0.074,133,0.512,280,5.354,345,1.314,1333,1.353]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[13,0.05,16,0.671,204,0.843,1153,3.457,2729,4.068,2730,4.068]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[679,3.094,1153,3.348,2320,4.96,2829,5.194,2876,5.982,2877,5.982]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[3,1.121,13,0.083,152,2.414,163,5.331,204,1.085,345,1.137,679,4.113,1153,5.7,1333,1.171,2323,5.962]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[2,0.978,17,1.106,205,1.766,1144,3.765,2202,2.16,2324,2.481]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[684,3.232,2878,6.468,2879,6.468,2880,6.468,2881,6.468]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[13,0.046,14,0.846,17,1.013,104,4.036,107,2.584,133,0.45,138,2.42,318,2.299,339,2.584,341,1.962,345,0.809,373,1.385,442,4.244,628,4.526,1127,4.517,1144,4.929,1147,7.022,1148,4.914,1333,0.833,1490,4.517,1758,4.693,1895,5.21]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[128,5.148,372,3.915,631,3.017,763,3.521]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2857,9.2,2858,7.109]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[14,1.281,128,6.117,197,4.494,204,0.84,275,3.127,372,6.094,390,1.347,631,2.571,763,3.001,812,4.494,948,4.613,976,5.664,1659,5.342,1787,3.803,2059,5.983,2163,5.102,2882,6.152,2883,6.152]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[3,1.017,45,2.2,342,4.673,890,5.148]],["keywords//docs/networking/using-the-linode-shell-lish/",[342,4.558,890,5.02,901,4.911,1105,5.142]],["toc//docs/networking/using-the-linode-shell-lish/",[3,1.14,90,2.438,101,2.202,106,2.325,196,2.602,205,1.618,275,2.877,287,3.727,322,3.795,328,2.408,391,4.517,453,3.404,703,4.244,719,4.914,890,7.341,1072,3.664,2884,5.66,2885,5.66,2886,5.66,2887,5.66,2888,5.66,2889,5.66,2890,5.66,2891,5.66,2892,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[3,1.224,322,5.821]],["keywords//docs/networking/ssh/using-the-terminal/",[2893,7.722,2894,7.722,2895,7.722]],["toc//docs/networking/ssh/using-the-terminal/",[44,3.057,46,1.287,89,1.327,98,2.75,113,5.458,120,4.221,141,1.235,164,3.555,180,3.057,196,1.971,216,2.426,294,1.809,322,2.874,328,3.408,350,3.958,405,3.31,487,2.578,553,3.555,579,6.268,580,3.421,605,2.874,662,2.69,664,3.057,715,2.823,870,2.776,902,3.947,930,3.215,1081,3.723,1733,2.93,1798,3.31,1863,3.555,2394,3.215,2896,4.287,2897,4.287,2898,4.287]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[82,4.621,455,4.805,456,2.782]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1692,5.838,2899,7.039,2900,7.039,2901,7.039]],["toc//docs/networking/dns/dns-records-an-introduction/",[2,0.941,98,1.819,351,2.813,397,2.734,454,4.93,455,5.105,456,3.714,654,4.022,750,5.473,1219,4.59,1242,4.59,1243,4.745,1385,3.915,1709,4.93,2066,4.063,2745,5.473,2902,5.945,2903,5.473,2904,5.945,2905,5.945,2906,5.945,2907,5.945]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[2,0.978,117,1.747,204,0.843,205,1.766,275,3.14,2202,2.16]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[204,1.054,1853,5,2683,6.404]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[2,0.868,13,0.075,14,0.819,120,2.576,133,0.565,138,1.406,149,2.539,157,2.522,204,1.265,209,2.454,287,3.612,289,2.292,318,2.227,339,1.502,345,0.784,348,3.176,373,1.342,435,2.634,602,3.441,654,2.634,888,4.112,929,2.471,1333,0.807,1533,3.911,2366,4.112]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[2,0.912,17,1.031,204,0.786,205,1.647,275,2.928,2202,2.015,2324,2.314]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[684,2.99,1481,4.774,1896,5.194,2908,5.982,2909,5.982,2910,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[46,1.998,205,1.903,685,3.273,1219,5.14,2911,6.128]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2912,8.551,2913,8.551]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[13,0.072,20,2.512,57,1.941,89,1.309,129,1.584,141,1.87,209,2.905,274,1.584,397,2.985,435,3.118,589,4.629,762,1.87,1015,2.449,1219,7.843,2911,9.352,2914,6.491,2915,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[814,0.472]],["title//docs/networking/dns/dns-manager-overview/",[46,2.366,456,2.782,862,5.758]],["keywords//docs/networking/dns/dns-manager-overview/",[1472,5.122,1473,4.831,1644,5.122,1645,5.122,1692,4.614,1812,4.614,2916,5.564]],["toc//docs/networking/dns/dns-manager-overview/",[2,0.64,3,0.57,14,1.153,15,1.213,36,1.67,40,3.031,46,1.213,48,1.809,106,2.583,111,1.785,174,2.71,224,2.15,345,0.578,350,2.431,351,5.103,445,2.662,455,3.833,456,2.724,457,3.031,584,2.662,621,2.536,654,3.021,662,2.536,763,1.972,993,2.072,1062,2.952,1385,6.868,1543,3.51,1811,3.352,1812,3.352,1899,3.51,1931,3.51,2903,3.721,2917,4.042,2918,4.042]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[2,1.054,17,1.192,732,2.94,2202,2.328,2324,2.674]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1485,6.404,1877,6.705,2919,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[2,0.978,16,0.671,732,2.728,1165,3.037,2690,4.142,2691,4.068]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1635,7.109,2920,7.722,2921,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[2,1.295,13,0.084,14,0.859,15,1.726,129,1.996,133,0.652,138,2.098,204,0.785,205,1.645,206,1.47,294,1.581,339,2.24,390,2.27]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[2,1.054,16,0.724,732,2.94,2729,4.384,2730,4.384]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1638,5.962,2085,5.962,2829,6.705]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,149,2.579,204,0.76,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,654,2.676]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/tools-reference/linux-package-management/",[21,2.375,46,2.366,75,2.45]],["keywords//docs/tools-reference/linux-package-management/",[233,4.015,661,4.015,1807,4.788,2922,5.2,2923,4.788,2924,4.788,2925,5.2,2926,4.788]],["toc//docs/tools-reference/linux-package-management/",[3,0.776,16,0.371,17,0.612,21,3.318,46,2.933,57,1.022,75,1.711,100,1.752,117,0.966,133,0.19,142,1.641,155,1.817,233,4.251,289,1.428,294,0.939,328,1.454,345,0.489,365,2.335,397,2.531,453,2.055,574,2.638,661,2.638,894,2.384,1120,1.106,1297,2.874,1333,0.503,1492,2.112,1647,2.727,1648,2.727,1677,2.967,2923,5.068,2924,3.146,2926,6.365,2927,3.417,2928,3.417,2929,3.417,2930,3.417,2931,3.417,2932,3.417,2933,3.417,2934,3.417,2935,3.417,2936,3.417,2937,5.505,2938,3.417,2939,3.417]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":528,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2410,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2000,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":983,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2113,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2259,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2280,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2814,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2165,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2114,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":210,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1689,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2362,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2247,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":747,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1546,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2207,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":18,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":809,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2839,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":896,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1850,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":275,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":760,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1788,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1286,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1770,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1715,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1426,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":759,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":64,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2597,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1173,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1723,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2202,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1000,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1779,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1716,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1765,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1768,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1822,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":146,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":228,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1164,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":207,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1760,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1718,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":232,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2690,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":19,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2729,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2389,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2902,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1857,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2445,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1986,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":620,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1537,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2853,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2448,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":440,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":882,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1536,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1204,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":494,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":106,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2158,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2098,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":107,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":165,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":451,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":777,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1706,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2695,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1273,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":696,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2077,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1251,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":453,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":885,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1007,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":60,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1617,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":145,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2025,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":730,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1331,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":689,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":521,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1101,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1102,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1104,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1050,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":588,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1360,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2273,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2249,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1253,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1083,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1260,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":663,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1266,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1817,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":708,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1438,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1435,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1439,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1437,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1436,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1440,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2572,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":462,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":51,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":204,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1854,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1789,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1486,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":897,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2908,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2305,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":658,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1480,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2909,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2306,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2551,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2364,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":383,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2866,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1160,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1482,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2787,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2910,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2615,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2380,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2698,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1481,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2311,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1982,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2307,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1682,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2320,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2516,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2519,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2367,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2522,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2371,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1955,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1154,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2524,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2613,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2378,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2864,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2785,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2865,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2786,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2614,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2379,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1896,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":865,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":765,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":87,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1829,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1107,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":137,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1272,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":598,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2255,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":101,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":219,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1040,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":661,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2925,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1807,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2927,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1386,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1297,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1879,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1880,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1884,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1883,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":452,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2503,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":123,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1021,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1024,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2872,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2873,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2123,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":800,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":773,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2486,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2482,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":852,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":396,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1362,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1363,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2643,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1367,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2642,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":312,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":357,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2885,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":324,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1628,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1455,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2414,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":291,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1250,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2055,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":114,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":178,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":267,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":488,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":54,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1711,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2903,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":167,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":2840,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1655,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":162,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2543,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":169,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2148,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":464,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1338,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":149,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":841,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1186,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":96,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2712,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2588,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":247,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":249,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":11,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":12,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1517,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1511,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":764,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1608,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":1127,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2811,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1663,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1080,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":559,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1012,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":164,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1766,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1195,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1197,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2124,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":319,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":879,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":368,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1518,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2092,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":618,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2156,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":485,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2132,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":741,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1315,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1309,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":412,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":304,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2244,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":569,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":391,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1183,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2264,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2604,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2268,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":100,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1425,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2586,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1125,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1423,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2628,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2713,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":454,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":804,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2035,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":683,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":686,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2557,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2558,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":744,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2333,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2251,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1801,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2254,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1099,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":745,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2693,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":864,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2701,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1345,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":69,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":355,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":117,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2683,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1002,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":866,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1384,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1381,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1382,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1383,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1282,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2221,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":749,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1691,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1229,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1126,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":408,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1736,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1468,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1964,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1562,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1565,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1512,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1515,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1514,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1527,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1513,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2042,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2049,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2454,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2455,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2556,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2828,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2453,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2544,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2797,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2798,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2545,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2043,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2532,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2854,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":386,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":973,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":394,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2211,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1987,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2186,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2187,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2579,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1988,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":1994,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":460,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2723,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1302,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1783,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":260,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":411,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":447,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":95,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2038,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":595,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1232,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1062,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":201,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1447,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1310,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":821,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":793,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":797,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1710,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":283,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":649,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2745,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":302,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2457,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1963,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1045,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2501,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":328,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":931,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1831,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":842,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":115,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":942,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1119,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":407,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":127,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2397,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2402,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":869,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":822,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":823,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":495,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":235,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":72,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1077,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2117,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":506,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":574,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":140,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2429,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1782,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":500,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1201,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":133,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":723,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1301,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":699,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1966,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":286,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1745,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2784,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2461,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2462,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2467,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2464,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2468,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2463,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1254,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":90,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2489,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2843,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1506,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":901,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1116,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2883,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":70,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":130,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":922,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":685,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":646,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1680,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1693,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1151,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2662,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":835,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":67,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1685,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":439,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2195,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1085,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2476,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1516,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1815,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":870,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":924,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":903,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2135,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1322,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":476,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2061,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1860,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1208,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1212,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1213,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2272,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2765,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2844,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2664,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1108,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1111,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1697,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2666,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2665,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1859,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":22,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2761,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":333,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":89,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2100,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":874,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":645,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1267,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1800,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":985,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":179,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2741,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2739,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2740,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":183,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1906,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1211,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1214,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1215,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1216,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1123,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":56,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1006,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":884,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2250,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1003,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":826,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1488,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":825,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1714,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2769,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":359,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1374,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2827,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2886,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2932,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":241,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":109,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":803,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":10,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":129,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":284,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":285,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2763,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":479,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2014,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":854,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2475,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1313,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1314,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1579,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2650,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2638,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1222,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":780,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1776,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":17,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2688,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2340,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2310,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2188,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2339,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1624,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1876,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":860,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1483,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1495,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2341,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2874,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":861,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1484,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1877,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2919,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2577,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2774,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1921,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2295,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1623,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2748,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":116,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1979,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":781,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":565,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":558,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1525,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2783,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2450,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2032,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":126,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":756,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2253,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":971,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":251,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":0,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":700,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1968,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1090,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":24,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1938,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2625,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":492,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":325,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2163,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":213,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2560,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":214,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1659,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":893,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1761,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2427,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1458,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2197,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2655,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":120,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":371,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2154,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2673,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2126,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2239,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1974,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2587,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":188,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":423,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":58,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2640,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1633,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1790,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2205,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1284,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1243,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":939,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":182,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":184,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1245,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":456,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2104,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2933,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1473,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2344,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1472,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2899,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2900,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2901,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":68,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":71,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":73,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":379,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":639,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":736,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":815,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2062,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2930,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2658,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2657,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2090,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":351,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1692,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2916,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1550,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1551,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1548,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2177,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2178,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2180,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2175,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2174,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2176,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2179,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1566,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1920,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2220,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1573,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1568,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2217,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1903,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2762,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":20,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1589,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2924,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1106,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2016,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1764,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":648,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1152,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1679,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2109,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":853,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":176,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1944,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1612,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2031,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2703,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1028,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":537,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":943,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1271,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":752,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":224,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":580,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2654,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2458,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":1999,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2003,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2001,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2002,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2780,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2809,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2810,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2779,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":226,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":660,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":236,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":716,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2749,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2750,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":533,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":531,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":532,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":739,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2775,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":1991,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":282,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2151,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":181,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1205,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2407,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2403,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":369,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":693,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2024,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":690,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["enviro",{"_index":217,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["environ",{"_index":216,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":409,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2474,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2007,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1321,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":258,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2720,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2697,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2928,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2934,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2931,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1889,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2171,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":91,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1248,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1023,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":131,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":263,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":829,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1970,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2222,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":585,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":956,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1089,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2130,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1926,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1943,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2281,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":430,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1630,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1202,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":330,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2162,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":758,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":414,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1334,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1337,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1117,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1342,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1678,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1005,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":32,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":586,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":729,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1149,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2734,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":112,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":1996,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1590,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1026,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2274,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2596,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":612,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2603,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2010,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1120,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2816,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2815,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2459,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2818,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2817,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2466,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2563,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2562,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2456,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2292,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2392,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2391,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2208,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1774,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1771,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2227,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2365,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1660,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":999,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2719,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2721,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":98,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2508,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":711,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2534,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":918,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1311,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":468,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2841,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":237,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":309,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":905,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1699,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":958,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":353,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":621,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2528,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2417,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2884,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1258,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":280,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1296,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1063,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":772,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":960,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":838,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":840,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":839,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2034,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":948,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":561,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2594,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":360,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2585,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2606,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2269,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":277,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2861,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":644,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1616,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1576,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1975,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1977,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2096,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1075,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2033,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2589,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1226,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1030,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2297,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2887,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2882,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1182,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2671,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1752,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2644,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2888,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1330,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2675,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2567,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2570,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1654,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1324,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1008,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1700,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":601,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1078,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":86,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1249,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":261,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2326,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1379,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2660,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2064,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1066,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1025,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1218,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1639,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1640,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":703,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1634,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":734,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1326,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2601,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1492,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1872,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":445,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2699,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1928,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":834,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":367,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":698,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2540,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":74,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":873,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1191,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2847,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1615,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":522,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2478,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1632,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":926,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":253,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1064,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1034,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1733,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2668,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2505,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2506,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":596,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":211,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["gog",{"_index":1350,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":446,"title":{},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1911,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":735,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1629,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1749,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1750,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1073,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1748,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1754,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":899,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1094,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1279,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1445,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1278,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":675,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":677,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":674,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":877,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1712,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":504,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1049,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":1990,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":891,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1489,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1004,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":381,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2271,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1142,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":775,"title":{},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1408,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1609,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":517,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":778,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":782,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":259,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":463,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2442,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":964,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2074,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2691,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1037,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":519,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":959,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":161,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":568,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":570,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2213,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1785,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2146,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":906,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":212,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2637,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1698,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":721,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":727,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1065,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":466,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":625,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2674,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1798,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":784,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1247,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":138,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1650,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":373,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":688,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1539,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1540,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1011,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":876,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":514,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2513,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1194,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1429,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1134,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":602,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":331,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1603,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":157,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2751,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1848,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2351,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1129,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1686,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1864,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":738,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":218,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2131,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":143,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":144,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1985,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":23,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":889,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2028,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2353,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2258,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2352,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2257,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":433,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1915,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1233,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1696,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2323,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2626,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":270,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2718,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1395,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2656,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":345,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":55,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":389,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":311,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2496,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":338,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":13,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1103,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1110,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":845,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":697,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1193,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":676,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":909,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1159,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":742,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1452,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1448,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2072,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1174,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1653,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1823,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1652,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1017,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":820,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":936,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1392,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":849,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":792,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1967,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":511,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1185,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1352,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1328,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":486,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1960,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1961,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2111,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":501,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":714,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":633,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":619,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet radio",{"_index":2105,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2433,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":978,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2299,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":82,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1888,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1887,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":85,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1620,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2125,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1264,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iotop",{"_index":1604,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":604,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":623,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2237,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1114,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1371,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1335,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1658,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":592,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1270,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1076,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2236,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1730,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1743,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1708,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2670,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2629,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2270,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":128,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2607,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2602,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2006,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1341,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1336,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2730,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":679,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2321,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2370,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2517,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2520,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2368,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2819,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":911,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":910,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2322,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2518,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2521,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2369,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1957,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2373,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1958,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2523,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2372,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1956,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1156,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2525,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":540,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1238,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1397,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":915,"title":{},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":426,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":392,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1227,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":642,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":650,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":913,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2063,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":223,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":424,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":766,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1346,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1237,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2390,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2792,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":496,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1139,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":560,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":30,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":824,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":196,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1018,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2013,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1582,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":239,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2401,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2400,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":593,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":914,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2194,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1520,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1529,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2574,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":375,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":376,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":363,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":886,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1502,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1500,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":706,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":499,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":732,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1487,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2921,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1485,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1637,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1881,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1772,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1477,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":361,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":643,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":651,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1092,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":962,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2623,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1980,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":370,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2685,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":555,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1221,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1001,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1236,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1158,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2405,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2324,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1808,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2535,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1206,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1203,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":774,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2855,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1523,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":795,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":779,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1895,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1144,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2879,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2878,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":349,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":652,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1428,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":45,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1828,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2150,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2760,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2759,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1830,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1109,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1644,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1649,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2881,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1726,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":921,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1645,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2120,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2149,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1669,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1651,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2895,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2857,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2880,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1931,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":622,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":39,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":75,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2826,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2743,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2404,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2413,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2858,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":904,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2875,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1704,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1965,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1767,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1773,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1972,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1569,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2922,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1701,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1703,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2893,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2742,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1293,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2206,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1878,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":659,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2304,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":890,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":798,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":487,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2009,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2054,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2849,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1904,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2440,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":271,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":465,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1607,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":155,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1846,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":489,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":657,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2447,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":923,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2446,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2449,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":536,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1454,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2889,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":895,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1942,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":320,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2624,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":1992,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2059,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1165,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2083,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":694,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2248,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":185,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1235,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":77,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2772,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2770,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2771,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2609,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":554,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":562,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":118,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":80,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1027,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1029,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1031,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":740,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1839,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1353,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1356,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1571,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2053,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":265,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1934,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":33,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":589,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":461,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1832,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":46,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2152,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2101,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2611,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2097,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":856,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1762,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2261,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":725,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2394,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2263,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2692,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2266,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2267,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":399,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":186,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":552,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":203,"title":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1451,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1759,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":429,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2095,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":148,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1664,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1171,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2260,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2426,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1858,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1583,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1586,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1599,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":523,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1600,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1598,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1622,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2277,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2700,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":47,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":880,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2812,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":27,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1054,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":372,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2636,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1196,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1252,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":611,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1199,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2649,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1940,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":238,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["mid",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":709,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":710,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1505,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2121,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2119,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1262,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1427,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":65,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":669,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":830,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":472,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":26,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1463,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2487,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2566,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1868,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1289,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2687,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2752,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2738,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2169,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1758,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2483,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2702,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1230,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2565,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2366,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2182,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":566,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":191,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":556,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2170,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1403,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":365,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2181,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":209,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2439,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1781,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":680,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1019,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1327,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1332,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":141,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1984,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":794,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1280,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2484,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1794,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1953,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":614,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2911,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2912,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":553,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2112,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1376,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2913,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2325,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2621,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1461,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1625,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":122,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1223,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":785,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1347,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1983,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":513,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":323,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1304,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2164,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1305,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1627,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1709,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2676,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":390,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2300,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2867,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2356,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2355,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2357,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1827,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2868,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2552,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2376,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1825,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2869,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1161,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2870,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2793,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2871,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2071,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1826,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2358,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1849,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2421,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1446,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2726,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":818,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2073,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2725,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2070,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2612,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2420,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2550,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":817,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1665,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":2648,"title":{},"keywords":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1450,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1172,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1175,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2393,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2058,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":541,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":930,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2166,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":113,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1835,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1937,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1833,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":25,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2238,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":587,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":576,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2485,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2500,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":631,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2825,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1803,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1675,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":859,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":563,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":53,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2838,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":48,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":200,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1802,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":4,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2350,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2349,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2733,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":837,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2329,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2234,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2328,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1508,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2377,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2678,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":1998,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2241,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2240,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1509,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1690,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2243,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2595,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2345,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":1997,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1507,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2735,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2242,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1422,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1319,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2672,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":567,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":887,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":883,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":147,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":132,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1140,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":398,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1308,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":868,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2537,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":425,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":317,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":701,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2056,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":858,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":863,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2191,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":581,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1070,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1118,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1380,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1130,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2536,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":982,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":987,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":984,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1210,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1731,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1521,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1491,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1190,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":173,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2193,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2200,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":124,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1364,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2045,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1042,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1357,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":202,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":941,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":707,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1244,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":986,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1959,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2490,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2301,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2302,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2303,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2491,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2593,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2823,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2790,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":231,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":963,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1269,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2767,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1016,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":704,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2294,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2293,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":608,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1079,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":305,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":916,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2289,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2313,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2283,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2315,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2314,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2706,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1239,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2286,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2708,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2707,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2285,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2584,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2284,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2583,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2282,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":938,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":308,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1265,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2435,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2573,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":530,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2696,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":761,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1378,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2332,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2652,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":418,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":925,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2472,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":862,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1259,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":819,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":21,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":668,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2926,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2094,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1320,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":538,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":326,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":717,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1954,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1303,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2102,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2099,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1648,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":189,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":159,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":682,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2214,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":671,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1591,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":929,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":42,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":626,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1014,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1366,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2276,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":630,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2041,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1891,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":493,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1809,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2348,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1091,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":366,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":108,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1819,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":171,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2608,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2632,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2716,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":43,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":206,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1162,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2386,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1841,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2559,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2661,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1847,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1231,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1842,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2598,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2384,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2599,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2385,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1057,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1559,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1228,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1976,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2354,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1821,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2232,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["ping",{"_index":1433,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":665,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":393,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2044,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2689,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2747,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2363,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2381,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2359,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2046,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2731,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2732,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1373,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1897,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":50,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":190,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2262,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":731,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2026,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":790,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1434,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2196,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":934,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":937,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":935,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":940,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2704,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":578,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":402,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1561,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1316,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1246,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1695,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":474,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1916,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":307,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":215,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2047,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1816,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1032,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2219,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1572,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1567,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2216,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2681,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2680,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2834,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2561,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2546,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2547,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2789,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2581,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2436,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2820,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2679,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2548,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2549,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":168,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2419,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":134,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1141,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2318,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2832,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2553,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2610,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2831,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2846,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2833,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2319,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2794,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2618,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2418,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2795,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2796,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2633,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2724,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":34,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1907,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1795,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":442,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":534,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2686,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1784,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1978,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":892,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1275,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":395,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1013,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2127,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":678,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2710,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":751,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1836,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":954,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1619,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1457,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1464,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":497,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1365,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1274,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1545,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1925,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":257,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":314,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":557,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":491,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1538,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":62,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":340,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2541,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2230,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":808,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2918,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2630,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1797,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2079,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2806,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2807,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2808,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2778,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2309,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2081,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2084,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1533,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":158,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":450,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":220,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":6,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2029,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1981,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":172,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1474,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1072,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":417,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":720,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1300,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":722,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1299,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":125,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1061,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":737,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":551,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2050,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2821,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1554,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1555,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1556,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":310,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":666,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":670,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":63,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":66,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":810,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2576,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1047,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2571,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2575,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":354,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":655,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1564,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2159,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":950,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":799,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1739,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":7,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":9,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":356,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2298,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":473,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1177,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1893,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1494,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2862,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1892,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2291,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2432,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":362,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2215,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2837,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["rate",{"_index":2416,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1220,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2288,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1933,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2824,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1470,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":244,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":995,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":847,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1740,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1732,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2082,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2004,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2842,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":52,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2115,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2110,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1522,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":337,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":455,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2116,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":908,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2252,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":801,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":605,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2492,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1170,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":802,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2514,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2493,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2382,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2515,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2495,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2412,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2012,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1168,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2411,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2011,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1167,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1169,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2494,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":681,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2753,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2233,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2229,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2231,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2617,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2228,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2754,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":953,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":976,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":470,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1499,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1799,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2538,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2529,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":974,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1786,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1041,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1043,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1038,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2711,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1898,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":142,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1113,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":382,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":350,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1207,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2398,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":616,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1053,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1051,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1052,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1780,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1519,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":234,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":160,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":535,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":35,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1105,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2198,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":927,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2627,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":881,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2066,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2069,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":726,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1581,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2781,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2155,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1902,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":796,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1339,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":255,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":5,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1471,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":151,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":975,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":888,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1390,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2093,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":419,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":590,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":481,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":928,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2856,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2075,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":789,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1255,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1646,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1046,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2923,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":994,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":1,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1927,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":427,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1493,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1178,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1180,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":281,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":341,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1913,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":912,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1804,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":482,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1393,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1394,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1478,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1476,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":484,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":827,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":483,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2076,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2331,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2218,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1459,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":458,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":544,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2153,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1277,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1614,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2399,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":245,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":329,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":102,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":715,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":917,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":664,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2715,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2473,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":274,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2406,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1453,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1449,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":833,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":965,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":832,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2527,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":768,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2755,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2756,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1914,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":831,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":1033,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2223,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1971,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1763,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1456,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1056,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":2,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":724,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1910,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1605,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":229,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1200,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":105,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1950,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":327,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1369,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":14,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1668,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":628,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":919,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1702,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["sftp jail",{"_index":2727,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":298,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":299,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":303,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":805,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":199,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1874,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1563,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":342,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1713,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2694,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2103,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1323,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1606,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":769,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":346,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":475,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":471,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":104,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2296,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":177,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1368,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1370,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":510,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2060,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2667,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1479,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":378,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1856,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2714,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1095,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2677,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1035,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1973,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":480,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1135,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2036,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2564,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2479,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2542,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2091,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1805,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":84,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1806,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":297,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":762,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":692,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2746,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2764,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2395,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":248,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":301,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2639,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1198,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1787,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":515,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2361,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2722,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":728,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":154,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":28,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":272,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2192,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1242,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":334,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1424,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1547,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2037,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":264,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":175,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2287,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":170,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2717,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2185,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2347,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1791,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1838,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1837,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":624,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2800,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2728,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1096,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2048,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1093,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2799,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2801,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2802,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":656,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1122,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2758,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1121,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2408,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2757,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1683,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1687,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1684,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1688,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2374,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1694,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":227,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":230,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":505,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":410,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1131,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":36,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1325,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1059,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1549,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2663,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1475,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2653,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1406,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1676,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":8,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":61,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":786,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1240,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1217,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":783,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1241,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":111,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2210,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":550,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":110,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":198,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1082,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1081,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2107,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2106,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":702,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1132,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1209,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2531,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":972,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":300,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":405,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2023,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":457,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2768,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":527,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1626,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2530,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2736,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":955,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2275,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2212,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":31,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":900,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":59,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":435,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1022,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2737,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":197,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1115,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":638,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":640,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":641,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":691,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1769,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2441,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1498,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2645,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2647,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":99,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":294,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1939,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2330,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":687,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2744,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1863,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1044,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1587,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":221,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":332,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2533,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":498,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1288,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":961,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":49,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1932,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2507,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":180,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1163,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":848,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":850,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":851,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1404,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2052,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1535,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1575,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1578,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1577,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1466,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":384,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2144,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2631,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1755,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":322,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2894,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":449,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1261,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":152,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":579,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":712,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":150,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2605,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":843,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1188,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":944,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["third",{"_index":1647,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1585,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1584,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":279,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2145,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":174,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":977,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2471,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2039,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":629,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":996,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":250,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":718,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":276,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":746,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":321,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1058,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1128,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1153,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1155,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2877,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1157,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":894,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":516,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1088,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":705,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1069,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2428,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2622,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":313,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2265,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":278,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2108,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1009,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1133,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1377,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":719,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":413,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":763,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":814,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2709,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":1993,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1287,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1460,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":998,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1812,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":997,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":713,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":290,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1580,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1074,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1557,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1419,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":791,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2021,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":139,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1068,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1924,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1219,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":16,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2481,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2580,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2375,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2425,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2438,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2422,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2578,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2167,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2245,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2199,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2203,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1753,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2086,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1989,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1181,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1636,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":1995,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1840,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":867,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":898,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2835,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2920,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2876,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2776,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2470,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2791,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2777,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2224,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1295,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2829,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2684,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2620,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2017,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1635,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2085,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1894,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2480,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2682,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2346,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2423,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2168,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2246,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2201,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2204,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1885,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2018,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2087,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1361,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1292,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2616,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1638,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2256,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1662,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":597,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1294,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1298,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2065,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2342,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2343,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1189,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1291,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2383,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":949,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1176,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1179,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1949,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2396,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2646,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":388,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1510,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2848,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1317,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":846,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":539,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2129,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1814,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2161,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":753,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":15,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":57,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1010,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1922,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":672,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1588,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":348,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":3,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":97,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2569,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2568,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":295,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2078,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1036,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1930,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1285,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1496,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1497,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":807,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1375,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1055,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1818,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1613,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1810,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":477,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2027,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":76,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1192,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":78,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":662,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":577,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":339,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1969,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1467,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1501,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2431,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":667,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":240,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2278,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2430,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":385,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1307,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1306,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1372,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":222,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":469,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":422,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1465,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1263,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":192,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":29,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":459,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2917,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":315,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":947,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":529,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":205,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1843,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1673,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2015,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1146,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1359,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":335,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":695,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":684,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2813,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":647,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1290,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2279,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1312,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1256,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":743,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1705,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2782,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":600,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":246,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1875,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":83,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1729,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":437,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":875,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1504,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":38,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1544,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1923,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1086,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2497,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":187,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":336,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2022,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1234,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":81,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2804,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2805,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2822,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2803,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":421,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":787,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":194,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":748,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":509,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2512,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":512,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":397,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":816,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":358,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1890,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1642,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1087,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":136,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1184,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1187,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1560,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1318,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1534,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":262,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":776,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":599,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1778,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1777,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1775,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2290,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1503,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1143,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1145,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":387,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2005,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1962,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2008,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1067,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":518,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2929,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1728,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":757,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":233,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":478,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2089,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":467,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2539,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1351,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2634,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2334,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1354,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1355,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2337,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2635,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2591,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2338,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2830,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2336,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2592,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1358,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2335,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2590,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2504,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":571,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1741,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1744,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2057,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1084,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2705,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr-d279bb9616.json b/themes/docsmith/static/build/lunr-d279bb9616.json new file mode 100644 index 00000000000..dfe34aec8f5 --- /dev/null +++ b/themes/docsmith/static/build/lunr-d279bb9616.json @@ -0,0 +1 @@ +{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.239,1,6.179,2,3.289,3,3.499,4,1.341,5,1.502]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.946,2,6.132,8,6.771]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.065,10,5.627,11,0.857]],["keywords//docs/development/java/install-java-jdk/",[10,5.514,12,3.967,13,6.41]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.499,4,1.341,7,4.932,14,0.869,15,3.718,16,1.838]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.985,5,1.934,8,5.551,15,4.786,16,2.366,17,1.849,18,1.861,19,4.194,20,4.666,21,4.61]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.405,23,6.649,24,3.194,25,6.649]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.486,26,7.045,27,7.045,28,5.624]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.117,9,0.066,16,2.378,22,3.397,24,3.536,25,9.412,29,1.198,30,2.402,31,1.081,32,3.55,33,2.331,34,3.887,35,0.314,36,5.569,37,5.569,38,1.969,39,2.216,40,2.253,41,3.973,42,1.844,43,3.228,44,5.127,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.119,32,3.673,33,2.412,47,2.028,48,5.005,49,0.917]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.067,16,2.42,17,1.891,18,1.904,29,1.219,32,5.187,33,3.405,48,8.978,49,1.646]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.065,11,0.857,54,4.879]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.765,54,4.358,55,7.045,56,5.843]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.089,54,6.689,57,5.26,58,7.591,59,5.977,60,2.64]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.059,11,0.784,50,5.99,61,1.299]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.064,11,0.845,48,6.755,50,8.33,61,1.399,62,3.798,63,5.318,64,3.015,65,2.349,66,7.778,67,7.161,68,5.683]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.765,70,7.222,71,6.272,72,6.272]],["keywords//docs/platform/meltdown_statement/",[71,6.118,72,6.118,73,5.285,74,3.468]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.224,71,5.46,72,3.508,73,3.03,74,3.799,75,4.039,76,4.039,77,7.224,78,4.039,79,4.039,80,1.671,81,4.039,82,4.039,83,6.287,84,3.03,85,4.485,86,4.594,87,6.287,88,2.882,89,2.883,90,1.215,91,6.287,92,3.508,93,4.039,94,4.039,95,4.594,96,2.021,97,3.719,98,2.819,99,2.238,100,2.313,101,1.913,102,3.03,103,3.508,104,4.039,105,4.039]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.059,39,2.874,106,5.578,107,6.649]],["keywords//docs/development/python/install_python_miniconda/",[107,7.116,108,7.728,109,7.728]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.065,110,3.422,111,6.092]],["keywords//docs/applications/containers/install_docker_ce/",[110,3.354,112,4.114,113,7.728]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.065,110,3.422,114,5.763]],["keywords//docs/applications/containers/install_docker_compose/",[110,3.354,112,4.114,115,7.728]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.065,116,4.048,117,2.457]],["keywords//docs/development/version-control/how-to-install-git-linux/",[116,3.967,117,2.408,118,4.591]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.065,116,4.048,119,4.571]],["keywords//docs/development/version-control/how-to-install-git-mac/",[116,3.967,118,4.591,119,4.479]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.097,65,2.349,116,5.709,120,7.206,121,7.161,122,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.065,116,4.048,123,4.013]],["keywords//docs/development/version-control/how-to-install-git-windows/",[116,3.967,118,4.591,123,3.932]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[124,5.097,125,7.206]],["keywords//docs/development/introduction-to-websockets/",[125,5.843,126,4.642,127,7.045,128,7.045]],["toc//docs/development/introduction-to-websockets/",[0,1.405,49,1.115,125,10.422,129,4.616,130,7.006,131,3.021,132,5.255,133,5.811,134,6.45,135,6.45,136,3.505]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.776,110,3.422,137,6.85]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.401,31,1.081,110,2.416,137,4.836,138,4.836,139,5.126,140,2.936]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.073,14,0.912,17,1.509,18,1.518,30,2.799,31,1.26,60,1.96,110,4.41,112,3.455,114,6.506,137,7.732,141,2.359,142,3.636,143,1.854,144,5.013,145,5.013,146,4.743]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,110,3.422,114,5.763]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[110,3.714,114,6.254]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.065,17,1.274,18,1.283,24,2.425,31,1.064,38,1.938,42,3.07,45,2.44,46,2.409,110,4.024,111,4.234,114,6.776,147,4.006,148,1.681,149,3.826,150,2.814,151,2.136,152,5.048,153,4.761,154,3.911,155,3.252,156,2.506,157,3.391,158,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[148,2.215,159,7.222,160,5.99,161,6.272]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.076,161,6.712,162,7.728]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.066,14,1.137,39,2.252,90,1.702,120,3.665,148,1.735,161,9.46,163,5.658,164,1.604,165,4.914,166,9.438,167,4.438,168,5.658,169,2.93,170,5.658,171,3.728,172,5.658,173,3.796,174,3.949,175,4.037]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[110,3.422,112,4.199,131,3.401]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.713,110,3.057,112,3.751,176,7.045]],["toc//docs/applications/containers/docker-container-communication/",[0,1.083,5,1.313,9,0.064,14,0.759,16,1.606,17,1.255,18,1.263,19,2.847,29,0.809,30,2.328,35,0.304,110,4.373,111,4.17,112,5.365,114,3.945,131,3.964,151,2.103,177,3.768,178,3.851,179,3.768,180,3.058,181,1.388,182,3.207,183,3.389]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[181,1.857,184,2.085,185,3.473,186,5.99]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.683,17,1.315,18,1.324,29,0.848,35,0.319,120,5.239,136,2.831,154,4.037,164,1.604,181,2.427,184,3.145,185,3.889,187,7.534,188,6.067,189,2.368,190,3.205,191,3.136,192,2.623,193,5.209]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.015,31,1.402,32,4.603,33,3.022]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.5,33,3.235,194,7.116]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.568,9,0.064,17,1.255,18,1.263,31,1.048,32,4.984,33,3.272,35,0.304,39,3.111,49,1.245,60,1.63,180,3.058,181,1.388,195,3.497,196,4.688,197,2.874,198,3.557,199,2.485,200,4.688,201,4.17,202,2.874,203,4.478,204,3.851,205,3.621,206,4.478,207,3.207,208,4.97]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.756,15,4.346,16,2.148,30,3.114]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.187,30,2.582,209,3.878,210,5.986,211,5.986,212,5.986]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.805,5,2.596,17,1.662,18,1.672,20,4.193,21,4.143,45,3.182,46,3.141,185,3.437,213,4.63,214,4.795,215,5.1,216,7.148,217,4.988,218,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.194,219,4.467,220,6.649,221,6.649]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[219,5.822,222,7.045,223,5.624]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.748,8,3.602,14,1.064,17,1.2,18,1.208,90,1.553,148,1.583,203,4.281,219,3.193,220,9.084,221,9.084,223,8.385,224,3.987,225,5.162,226,2.626,227,4.752,228,7.567,229,4.75,230,4.483,231,3.682,232,3.987,233,2.376,234,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[148,1.895,164,1.752,189,2.586,235,3.321,236,5.125,237,5.366]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[237,6.712,238,4.781,239,7.728]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.816,5,1.638,9,0.091,17,1.566,18,1.576,49,1.454,54,4.168,143,1.924,237,5.852,240,0.925,241,1.727,242,6.738,243,2.497,244,3.019,245,4.168,246,4.608]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.312,89,1.888,143,1.765,185,2.971,247,3.625]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.178,89,1.829,110,2.598,112,3.187,185,2.879,248,5.512]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.068,14,1.17,16,1.357,29,0.683,31,0.885,34,3.183,45,2.03,46,2.004,89,1.393,90,1.372,110,1.979,112,4.432,131,2.976,142,5.199,148,1.399,167,2.145,181,1.173,185,4.003,197,2.428,206,3.783,247,4.884,248,6.354,249,4.561,250,4.561,251,3.961,252,4.561,253,3.783,254,4.561,255,2.428,256,4.561]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.986,49,0.808,143,1.45,164,1.44,184,1.466,189,2.126,257,3.81,258,2.909]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.081,143,1.59,164,1.579,258,3.19,259,5.568,260,5.568,261,5.568]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.067,9,0.075,14,0.747,17,1.236,18,1.244,28,4.245,31,1.032,35,0.3,257,5.801,258,5.22,262,4.41,263,2.831,264,4.107,265,2.448,266,3.793,267,6.173,268,9.113,269,9.113,270,6.414,271,4.245,272,5.317,273,4.245,274,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[275,6.272,276,3.674,277,6.649,278,6.649]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.863,39,2.576,275,5.621,279,6.473,280,6.473]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.07,16,1.411,21,2.75,24,2.099,29,0.711,39,1.888,59,3.245,134,4.369,143,1.355,150,2.435,155,1.952,243,1.758,244,2.126,275,4.121,277,7.85,278,8.718,281,2.112,282,4.745,283,3.56,284,5.676,285,4.745,286,2.658,287,3.665,288,3.936,289,4.745,290,2.784,291,3.127,292,7.11,293,4.745,294,4.369,295,4.745,296,2.819,297,3.665]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.055,61,1.197,63,4.554,184,1.923,187,5.316]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.978,5,1.186,9,0.06,14,0.685,17,1.134,18,1.141,35,0.409,120,4.7,143,2.475,186,4.045,187,8.19,193,4.49,199,3.34,298,4.876,299,4.49,300,3.403,301,3.893,302,4.704,303,1.193,304,2.481,305,3.563,306,3.403,307,4.868,308,3.061,309,2.345,310,2.974,311,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.747,35,0.49]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.354,30,2.401,209,3.607,312,2.447,313,5.568,314,5.568,315,5.568]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.55,17,1.482,18,1.491,30,3.792,35,0.496,148,1.955,174,4.448,209,4.129,308,4.001,316,4.199,317,6.373,318,3.68,319,3.943,320,3.361,321,6.373,322,6.373,323,1.756,324,3.081,325,6.373]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.083,11,0.586,33,2.26,49,0.859,164,1.531,189,2.26,326,5.399,327,4.689]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.65,33,2.505,164,1.697,327,5.199,328,5.986,329,5.986]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.02,9,0.073,17,1.183,18,1.19,35,0.287,41,3.629,42,1.684,49,1.192,54,3.147,64,1.972,119,2.948,123,2.588,136,4.902,171,3.352,246,3.479,281,2.264,309,2.446,327,9.806,330,2.235,331,4.061,332,5.087,333,4.684,334,3.479,335,2.948,336,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[132,5.417,184,2.085,337,5.152,338,6.272]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.576,184,1.869,338,5.621,339,6.473,340,6.473]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.927,9,0.068,16,1.739,29,0.876,39,2.326,40,2.365,60,1.765,80,2.418,90,1.759,106,4.515,132,6.209,155,2.405,198,3.852,337,4.17,338,5.077,341,3.787,342,5.382,343,9.609,344,5.845,345,4.17,346,4.08,347,5.845]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.015,348,6.272,349,4.845,350,6.649]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[348,4.836,349,3.735,350,5.126,351,4.618,352,4.836,353,5.126,354,3.972]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.302,9,0.053,35,0.366,90,3.057,123,3.302,148,1.991,348,10.721,351,5.384,352,5.637,353,5.976,354,6.352,355,2.765]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.733,356,5.366,357,4.932,358,5.689,359,5.366]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.576,356,5.621,360,5.959,361,5.959,362,6.473]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.758,9,0.069,14,0.531,17,0.879,18,0.884,29,1.108,39,1.504,61,0.68,63,2.584,80,1.564,85,2.697,106,2.919,118,2.245,142,3.343,155,1.555,164,1.072,184,1.091,189,1.582,199,1.74,202,2.012,255,2.012,288,3.135,291,2.49,323,2.037,355,1.61,356,7.294,360,3.48,361,6.808,363,3.48,364,2.638,365,3.78,366,1.038,367,3.866,368,2.072,369,2.448,370,3.78,371,3.78,372,0.544,373,3.48,374,2.762,375,2.191,376,2.275,377,2.275,378,1.79,379,2.697,380,2.638]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.838,29,0.926,218,4.408,381,5.689,382,5.366,383,5.689]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.576,218,4.618,312,2.844,382,5.621,384,6.473]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.086,17,1.2,18,1.208,39,3.011,80,3.706,106,3.987,142,4.239,151,2.011,184,2.185,218,3.682,291,3.401,312,3.325,323,1.422,363,4.752,366,1.417,382,9.122,383,4.752,385,6.041,386,3.682,387,5.162,388,5.162]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.776,180,4.467,389,6.85]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[110,3.057,112,3.751,389,6.118,390,5.843]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.083,42,2.149,47,2.284,110,2.816,111,5.013,141,2.359,142,3.636,155,2.67,180,3.676,181,1.669,389,9.497,391,4.438,392,3.959,393,5.013,394,4.53,395,5.976,396,4.869]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.051,31,1.199,35,0.348,47,2.175,312,2.715,390,5.125]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.256,47,2.278,110,2.809,112,3.446,390,5.369]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.071,17,1.118,18,1.125,29,0.721,31,0.934,35,0.271,47,1.693,89,2.194,110,3.117,141,1.748,155,1.979,181,1.237,190,4.868,191,3.98,234,3.515,312,3.156,390,9.454,397,3.066,398,2.611,399,1.764,400,3.99,401,4.81,402,4.81,403,4.81,404,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.221,110,3.77]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[110,3.354,112,4.114,405,7.728]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,110,5.152,183,5.626,406,7.434]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.515,238,3.822,240,0.849,366,1.697,407,5.689]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[408,4.836,409,5.568,410,5.568,411,4.069,412,5.568,413,5.568,414,5.568]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.652,9,0.063,49,1.211,89,2.325,96,3.807,110,3.302,131,3.282,320,4.013,407,10.135,411,5.561,415,4.58,416,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.784,20,4.237,150,3.706,417,6.272]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.133,417,6.118,418,6.486,419,7.045]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.045,16,0.996,17,0.779,18,0.784,19,1.766,20,1.965,28,2.674,29,0.502,35,0.189,40,1.355,47,1.179,59,2.29,60,1.636,80,1.386,149,2.337,150,1.719,151,2.111,188,2.512,202,1.783,230,2.909,286,1.876,291,2.207,296,1.99,297,2.587,316,2.207,368,1.163,417,7.476,418,7.217,420,3.349,421,3.349,422,3.141,423,2.909,424,2.072,425,5.418,426,5.418,427,1.965,428,3.349,429,3.349,430,2.587,431,3.084,432,2.778,433,2.102,434,3.349,435,8.608,436,3.349,437,2.778,438,3.349,439,5.418,440,3.349,441,3.349,442,2.778,443,3.349,444,3.349,445,3.349]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.723,16,1.981,29,0.998,446,5.524,447,3.448]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[446,7.099,447,4.432]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.052,16,1.896,29,0.955,35,0.359,42,2.11,45,2.837,46,2.801,49,1.4,60,1.925,74,3.137,80,2.637,100,1.91,131,3.792,136,4.399,309,3.065,310,3.888,446,9.001]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[448,6.649,449,5.765,450,5.99,451,6.272]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.804,449,5.624,451,6.118,452,3.681]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.173,9,0.048,14,0.822,17,1.359,18,1.368,35,0.329,96,2.924,148,1.793,155,2.405,391,3.997,394,4.08,449,6.607,450,6.865,451,7.188,452,3.054,453,5.077,454,4.981,455,5.845,456,3.852,457,5.845,458,3.274,459,5.845,460,2.811,461,5.845]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.936,47,2.344,151,2.595,247,3.907,462,5.784]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[110,3.354,247,4.534,462,6.712]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.136,17,1.118,18,1.125,19,5.847,29,1.076,35,0.405,45,2.141,46,2.114,56,3.99,80,1.99,118,2.857,146,3.515,151,3.349,155,1.979,462,8.859,463,4.81,464,2.279,465,2.724,466,4.81,467,4.81,468,7.182,469,3.169,470,5.124,471,4.81]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.936,89,2.035,142,3.73,251,5.784,472,5.784]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.152,98,4.917,427,4.133,472,6.118]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.071,11,0.522,17,1.118,18,1.125,19,2.536,35,0.537,38,2.539,47,1.693,49,1.368,56,3.99,57,2.895,60,1.453,62,2.349,89,2.912,90,1.447,98,5.012,150,2.469,182,2.857,217,3.357,244,3.218,427,2.822,430,3.715,472,7.464,473,3.019,474,4.177,475,2.895]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.035,90,2.004,155,2.739,476,5.524,477,4.062]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[378,3.066,476,5.369,477,3.948,478,2.288,479,4.855]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[155,4.448,169,4.526,217,6.1,476,8.969,477,6.596]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[480,6.542,481,7.887,482,6.092]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.855,480,5.369,482,4.999,483,6.473,484,6.473]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.074,17,2.084,18,2.097,124,5.258,323,2.47,480,7.434,482,6.923]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.015,300,5.04,485,5.578,486,5.417]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[485,5.969,487,6.17,488,5.797]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.067,17,1.891,18,1.904,35,0.583,184,2.349,300,5.679,368,2.825,415,4.897,485,6.284,486,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.784,14,1.015,62,3.527,489,6.272]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[489,4.52,490,4.791,491,5.204,492,4.154,493,5.204,494,4.154,495,4.791,496,4.02]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.952,9,0.039,16,1.411,17,1.103,18,1.11,24,2.099,198,3.127,217,3.312,226,2.414,301,3.788,364,3.312,422,2.184,430,3.665,489,9.587,492,3.788,494,5.676,495,7.85,496,7.833,497,4.745,498,4.745,499,8.526,500,8.526,501,4.745,502,4.369,503,4.745]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.304,224,4.17,238,4.837,251,4.689,323,1.488,504,3.557]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[504,5.092,505,7.116,506,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.433,9,0.029,14,0.504,16,1.703,17,0.834,18,0.839,29,0.858,35,0.46,40,1.451,89,1.096,90,1.079,96,1.795,120,2.324,142,2.01,148,1.756,173,2.407,224,5.519,238,6.769,302,1.948,368,1.246,372,0.516,458,2.01,473,2.252,504,6.822,507,3.116,508,5.322,509,2.159,510,2.287,511,2.771,512,3.116,513,2.324,514,3.303,515,2.56,516,3.303,517,3.588]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.733,238,3.822,518,4.635,519,3.769,520,5.689,521,5.689]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[158,3.444,219,3.444,337,3.972,492,4.445,519,3.396,522,5.568,523,4.445]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.035,14,0.925,16,1.957,17,0.996,18,1.002,29,0.986,35,0.241,45,1.907,46,1.883,49,0.682,89,1.309,90,1.289,136,2.143,143,1.224,155,1.762,158,4.07,190,3.726,197,2.281,243,1.588,296,2.545,302,3.572,355,1.825,364,2.99,376,2.578,520,9.423,521,8.274,524,6.58,525,2.775,526,6.58,527,3.554,528,3.554,529,6.58,530,3.721]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.511,29,0.761,89,1.552,169,2.63,217,3.544,240,0.697,368,1.764,531,2.845,532,2.704]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[533,6.118,534,6.118,535,7.045,536,6.118]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.064,17,1.808,18,1.82,35,0.566,169,4.027,181,2,240,1.068,366,2.136,508,4.357,531,6.231]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.044,35,0.304,312,2.373,368,1.875,537,4.689,538,4.31,539,4.31,540,4.31]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[537,6.118,539,5.624,540,5.624,541,6.118]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.918,18,0.924,35,0.485,45,1.758,54,2.443,64,1.531,112,2.102,136,3.09,151,2.964,184,1.14,191,2.188,229,4.775,312,3.343,316,2.602,368,1.371,369,2.558,398,5.069,523,3.152,537,9.558,540,6.073,542,3.429,543,7.472,544,3.636,545,3.636,546,2.756,547,3.636,548,3.949,549,3.275,550,2.045]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.859,164,1.531,189,2.26,257,4.05,258,3.093,271,4.31,303,1.321,551,4.971]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[552,6.41,553,7.116,554,7.728]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.082,16,1.188,17,0.928,18,0.934,29,0.598,31,0.775,32,3.972,33,2.608,35,0.351,49,0.636,54,2.47,90,1.201,100,1.197,129,2.631,131,1.722,155,1.643,171,2.631,181,1.027,240,0.548,246,2.731,257,4.674,258,4.389,267,6.117,270,7.786,323,1.1,335,2.315,478,1.412,479,4.674,551,7.97,552,3.312,555,3.993,556,3.993,557,3.993,558,5.411]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.047,16,1.714,29,0.863,106,4.451,190,3.264,312,2.532,539,4.6]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[539,6.17,540,6.17,541,6.712]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.593,17,0.687,18,0.692,24,1.307,29,1.207,35,0.489,45,1.316,46,1.299,58,2.568,59,2.022,64,1.146,80,2.024,101,1.401,142,1.656,148,1.5,181,0.76,184,1.807,190,4.119,191,1.638,195,1.915,233,1.361,312,2.15,320,1.559,323,0.815,324,1.036,368,1.699,398,2.656,404,1.885,474,2.568,511,2.283,539,5.806,540,6.931,541,7.54,542,2.568,543,4.249,549,2.452,559,4.249,560,2.452,561,2.109,562,2.956,563,2.956,564,3.223,565,2.452,566,2.722,567,2.722,568,2.568,569,2.452,570,2.452,571,3.071,572,2.568,573,2.956]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[144,5.144,574,5.524,575,4.18,576,5.316,577,6.131]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.216,138,4.836,578,5.568,579,5.126,580,5.126,581,5.568,582,5.568]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.135,5,1.376,9,0.046,16,2.406,17,1.315,18,1.324,29,1.212,39,2.252,45,2.519,46,2.486,60,1.709,129,6.219,138,7.023,141,2.057,142,3.169,181,1.455,366,2.221,576,4.517,577,7.446,580,5.209,583,5.658,584,5.658,585,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.936,20,3.907,586,5.784,587,6.131,588,6.131]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.133,177,4.917,586,6.118,589,7.045]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.463,9,0.079,17,1.696,18,1.707,20,5.651,21,4.228,40,3.896,155,3.001,177,5.092,368,3.345,564,4.807,586,6.336]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.341,14,0.869,35,0.348,49,0.984,110,2.681,590,4.772]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[110,3.354,341,5.007,590,5.969]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.936,4,1.19,5,1.333,9,0.045,17,1.274,18,1.283,24,2.425,35,0.523,42,1.815,49,1.476,60,1.656,65,1.656,110,3.431,114,4.006,281,2.44,309,3.802,590,7.839,591,4.376,592,5.048,593,4.234,594,5.482]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.055,427,3.907,595,5.784,596,5.144,597,5.316]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[427,3.512,595,5.199,596,4.624,598,4.178,599,4.779,600,5.512]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.075,17,1.236,18,1.244,35,0.3,88,3.793,90,2.326,318,2.225,368,1.846,427,5.87,595,9.232,596,5.973,597,4.245,600,4.895,601,4.895,602,5.317,603,3.503,604,3.885,605,5.317,606,5.317,607,3.289,608,3.793,609,5.317,610,5.317]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.407,447,3.739,611,4.758,612,7.222]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[303,2.095,447,4.432]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.482,18,1.491,34,4.448,35,0.359,136,4.399,165,5.535,309,4.228,336,3.835,372,0.917,447,4.553,550,3.3,611,4.199,613,5.286,614,6.373,615,6.373,616,4.781,617,6.373,618,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.148,29,1.082,49,1.15,590,5.578]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[341,5.544,590,6.61]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.064,17,1.236,18,1.244,35,0.599,49,1.692,60,1.606,65,2.335,143,2.208,195,3.444,281,3.442,309,3.718,323,1.465,399,1.306,590,7.728,591,4.245,592,4.895,619,5.317,620,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.981,29,0.998,148,2.042,240,0.915,621,4.18]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[240,1.175,621,5.373]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.278,17,1.482,18,1.491,29,0.955,124,3.739,167,2.997,287,4.922,288,5.286,311,2.328,346,4.448,509,3.835,546,4.448,621,6.319,622,7.636,623,5.905,624,4.275,625,6.373,626,4.547]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.059,61,1.299,63,4.938,627,6.272]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[110,3.354,366,2.122,627,6.712]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.839,9,0.034,17,0.972,18,0.979,35,0.445,41,2.984,47,1.472,54,2.587,64,1.621,65,1.263,74,2.059,112,4.201,155,1.721,227,5.947,246,2.86,253,5.357,265,1.926,318,1.751,336,2.517,377,3.887,570,3.469,627,8.329,628,2.919,629,5.609,630,6.459,631,3.469,632,5.947,633,2.806,634,3.851,635,3.138,636,4.183,637,2.485,638,6.545,639,3.058]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,4.29,623,4.237,640,4.533,641,7.222]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,5.591,642,7.513]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.964,90,2.919,354,6.922,643,4.347]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.083,14,0.759,30,2.328,312,2.373,485,4.17,510,3.442,644,5.399,645,4.971]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.879,30,3.333,312,3.396]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.088,17,1.455,18,1.465,30,3.745,35,0.562,45,2.787,46,2.751,60,1.891,84,4.696,85,4.466,485,6.707,530,5.437,645,7.996,646,8.684,647,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.838,29,0.926,447,3.199,648,5.366,649,7.923]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.703,164,1.835,303,1.584,447,3.352,648,5.621]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.814,9,0.036,11,0.471,14,0.61,17,1.008,18,1.015,35,0.374,38,1.533,40,1.754,47,1.526,60,1.31,62,2.118,88,3.094,148,2.475,167,2.04,181,1.115,182,2.576,190,3.762,238,2.683,372,0.624,422,1.997,447,4.683,464,2.055,613,3.597,647,2.429,648,9.296,650,1.815,651,3.993,652,4.337,653,3.094,654,4.337,655,4.337,656,4.337]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.239,89,1.888,90,1.859,110,2.681,190,3.499,657,5.366]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[110,2.809,112,3.446,658,6.473,659,6.473,660,6.473]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.56,17,1.808,18,1.82,42,2.575,47,2.737,90,3.022,110,4.358,190,4.405,657,8.722,661,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.167,49,0.859,89,1.649,143,1.542,662,4.689,663,4.971,664,4.971]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[241,1.252,531,2.736,662,4.243,665,4.243,666,4.885,667,2.98,668,2.94,669,3.57,670,4.885]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.213,17,1.405,18,1.414,42,2.002,47,2.128,49,0.962,89,1.847,129,3.984,155,3.487,233,2.783,265,2.783,330,2.657,378,4.015,464,2.864,662,5.251,663,7.803,671,4.418,672,4.512,673,4.076,674,5.015,675,2.262]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.763,61,0.862,143,1.369,240,0.658,257,3.596,258,2.746,263,2.552,271,3.827,676,2.107]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[267,4.445,270,4.618,553,5.126,558,4.836,677,5.126,678,4.445,679,5.568]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.076,17,1.255,18,1.263,22,3.293,24,3.458,35,0.304,257,7.559,258,5.266,262,4.478,263,2.874,265,2.485,267,6.241,270,6.485,273,4.31,274,3.945,558,6.79,676,3.436,680,4.17,681,6.79,682,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.336,39,2.65,65,2.011,265,3.066,519,4.062]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.576,683,6.473,684,6.473,685,5.621,686,6.473]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.054,14,0.929,17,1.537,18,1.547,39,3.588,49,1.053,64,2.563,65,2.723,90,1.989,136,3.308,185,3.179,240,0.908,288,5.484,320,3.487,687,6.612,688,6.612,689,6.612,690,4.717,691,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.055,35,0.375,61,1.197,63,4.554,692,6.66]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[693,7.116,694,7.728,695,7.728]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.092,12,3.526,17,1.597,18,1.607,35,0.522,45,3.058,46,3.019,49,1.094,267,5.484,639,2.663,693,9.634,696,2.059,697,3.254]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,698,4.062]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.839,31,1.5,698,4.714]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.491,9,0.096,17,1.597,18,1.607,31,1.333,35,0.387,45,3.058,46,3.019,281,3.058,452,3.589,597,5.484,698,6.383,699,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.055,35,0.375,164,1.888,189,2.787,700,5.784]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[700,7.433,701,4.282]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.065,17,1.849,18,1.861,35,0.448,42,2.633,143,2.271,155,3.272,311,2.905,700,8.848,702,3.915,703,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.015,148,2.215,181,1.857,704,7.222]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[181,1.812,399,1.73,705,7.045,706,6.486]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.85,42,3.045,181,2.365,673,4.422,707,8.467,708,7.342]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.691,155,2.739,532,3.545,682,4.751,709,5.144]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[709,5.441,710,7.045,711,7.045,712,7.045]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.302,9,0.073,12,3.331,17,1.509,18,1.518,54,4.015,64,2.516,240,0.891,246,4.438,303,1.589,309,3.121,310,3.959,626,6.352,639,2.516,709,8.446,713,5.16]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,393,5.144,668,4.008]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[393,4.999,714,6.473,715,6.473,716,6.473,717,6.473]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.583,9,0.098,17,1.696,18,1.707,31,1.416,88,5.205,177,5.092,393,7.44,470,5.205,647,4.087,718,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.148,29,1.082,719,6.272,720,5.417]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[303,1.274,446,4.317,447,2.695,719,4.52,721,2.625,722,5.204,723,5.204,724,5.204]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.08,14,1.047,17,1.732,18,1.743,45,3.316,46,3.274,131,3.213,281,3.316,368,2.587,447,3.857,719,8.481,720,5.588,725,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.859,148,1.895,271,4.932,355,2.632,726,5.689]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[727,7.045,728,7.045,729,7.045,730,7.045]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.053,14,1.252,17,1.509,18,1.518,124,3.808,148,1.991,167,3.052,182,3.856,183,4.074,355,3.793,396,4.869,422,2.988,726,8.197,731,5.976,732,4.277,733,5.976,734,4.015,735,5.384,736,5.637]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.172,5,1.313,9,0.044,11,0.586,62,2.637,90,1.624,737,4.05,738,4.478]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.299,5,1.456,738,4.965,739,5.512,740,5.199,741,4.624]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.067,9,0.085,17,1.337,18,1.345,35,0.537,65,1.737,142,3.221,153,4.994,155,2.365,244,2.576,415,3.461,737,8.222,738,6.786,742,5.75,743,4.102,744,5.75,745,3.789]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.039,35,0.27,90,1.442,143,1.369,180,2.715,477,2.924,518,3.596,746,4.164,747,4.794,748,4.164]],["keywords//docs/applications/project-management/install-farmos/",[667,4.714,746,6.712,749,3.418]],["toc//docs/applications/project-management/install-farmos/",[4,1.383,9,0.052,17,1.482,18,1.491,35,0.359,45,2.837,46,2.801,129,4.199,155,2.622,233,2.934,241,1.634,324,2.233,334,4.358,378,3.019,647,3.57,673,3.065,746,9.424,750,6.373,751,3.188,752,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.336,110,2.89,359,5.784,458,3.73,690,4.751]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[458,4.794,753,8.559]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.526,110,4.297,118,4.521,359,6.609,432,6.312,433,4.777,458,6.531,464,3.605,754,7.007,755,7.007]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.336,49,1.06,756,2.376,757,2.82,758,5.316]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[759,6.473,760,6.473,761,6.473,762,6.473,763,6.473]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.083,11,0.705,17,1.509,18,1.518,35,0.366,46,2.852,49,1.033,155,2.67,183,4.074,305,4.743,378,3.075,396,4.869,477,3.959,673,3.121,757,2.749,758,5.181,764,3.597,765,6.491,766,2.441,767,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,768,6.272]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[668,4.651,768,6.712,769,5.394]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.518,9,0.081,14,0.625,16,1.323,17,1.034,18,1.04,29,0.666,35,0.382,45,1.979,46,1.954,49,0.708,64,1.723,141,1.616,142,2.491,148,2.076,219,2.75,240,0.93,243,1.647,276,2.262,281,3.013,305,3.249,307,2.983,311,1.624,334,3.04,546,3.103,621,2.791,675,1.664,757,1.883,766,1.672,768,9.019,770,4.094,771,4.446,772,4.446,773,3.249]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,182,3.423,303,1.41,320,3.039,369,3.733,774,4.6,775,4.451]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[643,2.9,774,5.167,776,5.959,777,6.473,778,6.473]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.064,15,4.681,17,1.808,18,1.82,35,0.438,69,6.209,320,4.102,676,3.418,774,8.88,779,2.246,780,3.798]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.042,32,3.237,33,2.126,49,0.808,89,1.552,240,0.697,449,4.054,450,4.213,781,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[125,5.843,675,2.636,782,7.045,783,7.045]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.352,9,0.055,17,1.566,18,1.576,32,4.295,33,2.82,35,0.515,65,2.035,90,2.027,240,0.925,368,2.34,449,7.291,450,7.576,766,2.534,784,6.738,785,4.11,786,3.458]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.371,124,4.627,596,6.092]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[596,6.61,599,6.832]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.117,9,0.066,17,1.295,18,1.303,54,3.445,90,1.675,99,5.184,148,2.452,197,2.965,246,3.808,283,4.177,508,3.119,523,4.446,596,7.896,597,8.643,787,9.354,788,5.569,789,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.047,11,0.626,62,2.814,368,2.001,675,2.156,790,5.005,791,5.005]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.576,139,5.959,790,5.621,791,5.621,792,3.322]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.302,5,1.578,9,0.073,16,1.931,17,1.509,18,1.518,29,0.972,35,0.366,45,2.889,46,2.852,47,2.284,281,2.889,465,3.676,675,2.429,790,9.952,791,5.637,793,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,11,0.552,49,0.808,61,0.913,304,2.584,794,4.676,795,4.676,796,4.676,797,3.473]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[181,1.54,796,5.512,798,5.986,799,4.178,800,5.986,801,5.986]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,14,0.726,17,1.2,18,1.208,35,0.291,40,2.088,49,1.747,99,2.86,126,3.401,224,5.844,304,4.558,368,2.628,571,3.24,732,4.986,794,8.248,795,8.248,799,3.602,802,3.772,803,4.281,804,4.483,805,3.987,806,5.162]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.059,11,0.784,49,1.15,807,6.649]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.765,808,7.045,809,7.045,810,7.045]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.074,17,1.537,18,1.547,45,2.943,46,2.906,174,6.293,281,2.943,807,6.088,811,9.017,812,9.017,813,9.017,814,9.017,815,9.017,816,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.051,11,0.671,35,0.348,62,3.017,140,3.258,312,2.715]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[817,7.045,818,7.045,819,4.422,820,6.118]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.192,9,0.049,14,0.836,35,0.335,40,2.404,89,1.816,131,2.563,140,3.135,155,3.445,190,3.366,191,5.374,233,2.736,312,2.612,404,6.711,452,3.106,559,5.162,560,4.93,820,5.162,821,5.944,822,5.162,823,5.944]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.239,11,0.671,39,2.459,142,3.461,366,1.697,824,5.689]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.076,685,6.712,825,7.728]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.809,9,0.054,17,1.537,18,1.547,39,4.083,96,3.308,106,5.107,142,6.174,167,3.109,366,2.476,685,5.742,826,4.832,827,4.832,828,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[829,0.474]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.221,830,6.348]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.711,38,3.765,110,3.701,150,4.378,458,4.778,830,8.485]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.341,9,0.051,11,0.671,35,0.348,62,3.017,831,4.932]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.677,832,7.116,833,7.728]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.469,5,1.738,9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,195,4.63,300,4.988,318,2.991,368,2.482,831,8.522]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,834,5.144]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[834,5.969,835,7.728,836,7.728]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.494,4,1.617,9,0.08,17,1.732,18,1.743,35,0.55,303,1.823,323,2.053,465,4.219,482,5.754,713,4.318,834,7.542]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.671,61,1.111,74,3.041,99,3.424,550,3.199,837,2.825]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.65,61,1.076,838,4.624,839,4.624,840,4.491,841,4.271]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.348,89,1.888,90,1.859,504,4.071,643,2.768]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[504,5.092,505,7.116,842,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.052,16,1.896,17,1.482,18,1.491,29,0.955,120,5.696,124,3.739,148,1.955,185,4.228,355,2.715,504,7.502,643,4.51,843,6.373,844,5.535,845,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.263,469,5.197,846,5.763]],["keywords//docs/security/getting-started-with-selinux/",[309,3.112,846,4.73,847,6.473,848,6.473,849,6.473]],["toc//docs/security/getting-started-with-selinux/",[9,0.065,17,1.849,18,1.861,45,3.54,46,3.495,229,4.993,846,8.662,850,7.953,851,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.293,47,2.344,89,2.035,110,2.89,112,3.545]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[110,3.057,112,3.751,830,5.148,852,7.045]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.931,110,4.552,112,6.114,149,5.813,173,5.587,355,3.548,571,5.228]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.055,35,0.375,368,2.313,369,4.314,853,5.784]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[853,5.199,854,5.986,855,5.986,856,4.491,857,5.986,858,5.986]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.067,14,1.144,45,3.622,46,3.575,99,4.509,290,4.773,853,10.382,859,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.051,47,2.175,110,2.681,112,3.289,442,5.125,458,3.461]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[110,3.057,112,3.751,830,5.148,860,7.045]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.059,17,1.662,18,1.672,31,1.387,54,4.422,80,2.957,110,4.632,311,2.611,442,5.929,458,5.323,518,5.362,640,4.487,861,7.148,862,6.581]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.059,11,0.784,824,6.649,863,6.649]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[864,7.728,865,7.728,866,7.728]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.054,17,1.537,18,1.547,45,2.943,46,2.906,88,4.717,90,1.989,155,2.72,218,8.229,271,5.278,377,3.979,863,9.447,867,5.742,868,6.612,869,5.107]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[829,0.474]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.065,11,0.857,846,5.763]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[117,2.016,846,4.73,870,5.959,871,6.473,872,5.369]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.072,17,2.032,18,2.045,45,3.891,46,3.841,377,5.26,846,6.387,870,8.048]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[110,3.77,124,5.097]],["keywords//docs/applications/containers/introduction-to-docker/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.891,46,3.841,110,5.094,458,4.896,657,7.591,830,6.387]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.051,61,1.111,184,1.784,263,3.289,650,2.586,873,5.366]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[873,6.118,874,7.045,875,4.491,876,6.118]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.978,9,0.04,17,1.134,18,1.141,35,0.409,45,2.171,46,2.143,100,1.462,143,1.393,148,1.496,155,2.985,171,3.213,181,1.254,184,1.408,265,2.245,302,2.647,303,1.193,311,1.781,323,2.388,324,1.708,333,4.49,335,2.826,496,3.766,611,3.213,616,3.658,639,1.89,650,2.041,873,9.673,877,3.563,878,4.876]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.493,16,1.35,29,0.68,62,2.217,144,3.506,164,1.287,189,1.9,190,2.571,312,1.995,862,4.18,879,3.506]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.456,879,4.624,880,5.986,881,4.178,882,4.491,883,3.02]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.074,18,1.081,20,2.711,29,1.044,35,0.26,54,2.859,60,1.396,141,1.68,148,2.137,171,3.045,190,5.292,219,4.311,240,0.635,246,3.16,255,2.46,309,2.222,311,1.688,312,3.687,335,2.678,559,4.013,637,2.745,647,3.904,675,3.14,751,3.487,766,1.738,879,7.217,884,2.946,885,2.993,886,2.711]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[229,4.951,433,4.951,846,5.763]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[846,7.007]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.936,116,3.418,118,3.956,323,1.835,464,3.155]],["keywords//docs/quick-answers/linux/how-to-use-git/",[117,2.195,887,7.045,888,5.843,889,7.045]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.221,890,6.71]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[117,2.195,890,5.441,891,5.843,892,5.026]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.327,64,3.66,148,2.896,890,7.293,893,9.443]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.015,89,2.206,158,4.467,346,5.04]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[158,3.703,226,3.046,253,4.965,894,5.986,895,4.374,896,4.491]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.59,54,3.557,89,2.909,155,3.917,158,6.417,173,3.858,246,3.932,253,9.721,346,7.24,352,4.994,509,3.461,896,4.314,897,5.75]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.059,35,0.407,89,2.206,898,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[898,6.118,899,5.843,900,6.118,901,4.917]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.537,9,0.085,16,1.188,17,0.928,18,0.934,29,0.598,34,2.787,35,0.529,89,1.904,141,2.265,142,2.237,173,2.679,188,2.996,226,3.17,255,2.126,302,2.168,311,2.276,318,1.671,368,1.387,386,2.849,397,2.546,458,2.237,513,4.036,637,2.372,643,1.789,673,1.92,898,7.517,902,3.993,903,2.996,904,3.677,905,2.849,906,2.343,907,3.993,908,3.188,909,2.787,910,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.047,11,0.626,164,1.634,189,2.412,240,0.791,879,4.451,911,5.763]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.456,879,4.624,881,4.178,883,3.02,912,5.986,913,5.986]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.064,17,1.255,18,1.263,35,0.441,54,3.339,124,3.167,148,1.656,151,2.103,155,3.216,233,2.485,240,0.741,246,3.691,255,2.874,265,2.485,303,1.321,311,1.972,312,2.372,460,2.596,631,4.478,713,3.129,827,3.945,879,8.261,914,3.851,915,4.97,916,3.768,917,4.97]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.936,89,2.035,112,3.545,117,2.075,918,4.751]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[110,3.354,918,5.514,919,7.728]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.991,34,4.615,35,0.373,95,4.832,100,1.982,112,5.463,117,3.197,229,4.151,346,4.615,513,4.283,637,3.928,676,2.906,867,5.742,920,6.612,921,5.278,922,5.742,923,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.059,12,3.706,164,2.048,189,3.022]],["keywords//docs/development/java/install-java-on-centos/",[13,5.369,164,2.52,924,6.473,925,5.959]],["toc//docs/development/java/install-java-on-centos/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.059,12,3.706,61,1.299,263,3.844]],["keywords//docs/development/java/install-java-on-debian/",[13,5.843,61,1.267,262,5.843,925,6.486]],["toc//docs/development/java/install-java-on-debian/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.059,11,0.784,12,3.706,62,3.527]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.618,11,0.703,12,3.322,13,5.369,929,4.004]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.068,10,5.942,12,4.274,17,1.936,18,1.948,29,1.248,142,4.665,262,6.908,826,6.086,929,5.152]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.055,11,0.723,31,1.293,62,3.252,930,5.784]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.162,236,4.965,882,4.491,895,4.374,930,5.199,931,5.986]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.278,4,1.383,9,0.083,11,0.692,14,0.896,31,1.707,35,0.567,80,2.637,100,1.91,141,2.317,296,3.786,305,4.657,766,2.396,930,8.742,932,6.373,933,6.373]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.776,89,2.41,458,4.418]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.199,89,2.41,311,2.881]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[112,3.844,117,2.25,676,3.173,918,5.152]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[918,5.026,935,7.045,936,4.642,937,5.624]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[308,5.228,643,3.732,676,4.61,905,5.942,916,5.813,918,7.485,938,5.813,939,6.908]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.206,940,4.467,941,3.844,942,3.257]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.41,226,4.013,896,5.916]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.936,117,2.075,148,2.042,255,3.545,943,4.996]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[349,4.726,369,4.564,943,5.285,944,5.624]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,148,2.681,171,5.759,323,2.409,943,8.111,945,7.591,946,8.741]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.051,49,0.984,164,1.752,189,2.586,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[948,7.116,949,7.116,950,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.051,11,0.671,49,0.984,62,3.017,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[948,7.116,949,7.116,953,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.059,164,2.048,189,3.022,954,4.845]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.352,5,1.638,9,0.075,17,1.566,18,1.576,35,0.38,45,2.999,46,2.961,64,2.612,241,1.727,324,2.361,364,4.703,368,2.34,392,4.11,647,3.775,954,7.452]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[117,2.25,355,3.077,376,4.346,735,5.99]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[349,3.735,369,3.607,470,3.972,735,4.618,736,4.836,944,4.445,956,5.568]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.213,117,1.95,349,5.826,355,3.7,598,4.369,635,4.696,640,3.93,803,5.193,957,5.764,958,5.764,959,6.26,960,5.193,961,4.696,962,6.26,963,6.26,964,6.26,965,5.193,966,6.26,967,5.193,968,5.764,969,5.437,970,6.26]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,355,3.36,892,5.627]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[117,2.195,891,5.843,892,5.026,971,4.491]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,355,3.36,972,6.296]],["keywords//docs/quick-answers/linux/how-to-use-head/",[117,2.016,148,1.985,891,5.369,972,5.167,973,6.473]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,355,3.36,974,6.296]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[117,2.016,148,1.985,891,5.369,974,5.167,975,6.473]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.761,475,3.468,631,4.78,639,2.234,976,5.005,977,4.022]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.565,49,0.828,117,1.621,164,1.476,303,1.274,643,2.332,776,4.791,978,4.791]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.088,18,1.095,19,2.469,99,2.595,100,1.403,214,3.141,233,3.894,310,2.856,318,1.96,324,2.963,464,2.218,509,2.818,546,3.268,560,3.884,639,1.815,643,2.098,751,2.342,936,3.085,942,2.112,979,4.682,980,3.341,981,3.341,982,4.311,983,5.838,984,4.066,985,4.682,986,4.311,987,4.311,988,3.341,989,4.311,990,4.066,991,4.311,992,4.682,993,4.682,994,4.682]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,995,5.144,996,6.66]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.565,668,3.132,882,3.904,995,4.02,997,4.791,998,4.791,999,4.791,1000,5.204]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.573,5,1.142,9,0.074,17,0.654,18,0.659,30,2.026,35,0.478,39,1.12,42,1.555,45,1.253,46,1.237,49,0.962,60,2.715,100,1.408,118,1.672,120,1.824,141,1.023,142,3.385,144,3.628,148,1.441,151,1.097,281,2.69,309,2.259,311,1.028,323,1.294,324,2.472,392,2.865,423,2.445,433,2.948,616,3.523,628,1.965,676,2.064,718,2.335,995,8.008,1001,2.592,1002,2.592,1003,2.445,1004,2.592,1005,3.75,1006,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.531,181,1.389,189,2.26,1007,5.714,1008,4.971,1009,7.199]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.697,240,0.822,1007,4.374,1008,5.512,1010,5.986,1011,5.986]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.521,9,0.058,14,0.985,17,1.629,18,1.639,35,0.395,100,2.1,141,3.408,151,2.73,240,0.962,1007,6.851,1009,10.391,1012,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.658,101,2.558,102,4.05,164,1.531,906,3.167,1013,2.273,1014,4.971]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1015,6.17,1016,7.728,1017,7.728]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.08,35,0.547,74,4.776,906,5.692]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1018,3.828]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.059,89,2.206,99,4.002,101,3.421]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[899,5.843,900,6.118,901,4.917,1019,6.486]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.067,35,0.461,64,2.229,89,3.169,90,1.73,99,3.187,100,1.723,101,2.724,141,2.974,226,2.926,337,4.102,458,3.221,632,5.294,634,5.294,639,2.229,901,4.013,905,4.102,906,4.799,941,3.061,1020,5.75,1021,5.75,1022,3.932]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1023,3.822,1024,6.85,1025,5.763]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1024,6.118,1025,5.148,1026,5.843,1027,5.285]],["toc//docs/platform/upgrade-to-hourly-billing/",[530,8.664,1023,4.834,1028,3.77]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.654,896,6.517]],["keywords//docs/platform/disk-images/resizing-a-linode/",[896,6.42,1023,4.147]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.137,896,7.702]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,263,3.545,1029,5.784]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.839,1029,6.712,1030,7.728]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.061,17,1.732,18,1.743,35,0.42,185,3.582,320,3.929,323,2.053,324,2.61,480,6.179,639,2.887,780,3.638,1029,10.042]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.059,164,2.048,189,3.022,697,3.421]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.256,5,1.522,9,0.051,17,1.455,18,1.465,24,2.769,35,0.353,80,2.59,90,1.883,155,2.575,156,2.862,265,2.882,290,3.673,299,5.764,324,3.043,379,4.466,571,3.93,697,5.359,1033,4.998]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.156,11,0.626,49,0.917,62,2.814,1034,5.306,1035,5.306,1036,5.763]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.839,49,1.23,1037,7.728]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.192,9,0.049,17,1.382,18,1.391,29,0.89,35,0.335,41,4.241,49,1.833,57,3.577,131,2.563,136,2.974,323,1.638,509,3.577,651,5.473,802,4.343,1034,9.693,1038,5.845,1039,5.944]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.059,164,2.048,189,3.022,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[164,1.997,1040,4.726,1041,6.486,1042,7.045]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.915,4,0.99,5,1.109,9,0.076,17,1.06,18,1.067,21,2.644,29,1.034,35,0.562,45,2.03,46,2.004,49,0.726,64,1.768,111,3.523,141,1.658,167,2.145,189,1.909,240,0.626,241,1.169,255,2.428,303,1.116,318,1.909,324,2.418,392,4.21,532,2.428,564,3.005,618,2.71,675,1.707,884,2.908,1040,6.688,1043,4.199]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.765,1040,4.726,1041,6.486,1044,7.045]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.952,4,1.03,5,1.154,9,0.058,17,1.103,18,1.11,21,2.75,29,1.065,35,0.572,45,2.112,46,2.085,49,0.755,64,1.839,111,3.665,141,1.725,167,2.232,240,0.652,241,1.216,255,2.526,303,1.161,318,1.986,324,2.491,392,4.337,532,2.526,564,3.127,618,2.819,675,1.775,884,3.025,1040,6.804,1043,4.369]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.27,43,2.779,61,0.862,180,2.715,752,3.159,757,2.03,1045,1.803,1046,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.703,61,1.164,1045,2.434,1046,5.369,1047,4.73]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.333,9,0.045,17,1.274,18,1.283,35,0.309,49,0.873,60,1.656,148,1.681,155,2.255,180,3.105,303,1.935,311,2.002,639,2.125,751,2.743,756,1.956,780,2.677,942,4.182,1045,4.215,1046,4.547,1048,4.376,1049,5.048,1050,4.547,1051,5.482,1052,5.482]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.502,9,0.051,30,2.665,164,1.752,189,2.586,1053,3.354]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.038,881,4.917,1054,5.624,1055,4.297]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.343,5,2.33,9,0.055,17,0.757,18,0.762,22,1.986,30,3.325,35,0.184,100,0.976,131,1.404,155,2.179,164,0.923,173,4.49,185,1.566,197,1.734,209,3.431,265,2.438,303,1.887,320,1.717,324,1.141,369,2.11,377,1.96,422,3.081,509,4.028,544,2.998,639,2.989,649,2.998,702,1.603,1056,5.208,1057,5.296,1058,5.296,1059,2.443,1060,6.314,1061,2.227,1062,3.256]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.449,29,1.082,697,3.421,1063,7.222]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[312,3.096,697,3.337,883,3.554,1064,7.045]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.192,16,1.768,17,1.382,18,1.391,29,0.89,35,0.547,45,2.646,46,2.612,60,1.795,80,2.459,148,2.569,155,2.445,181,1.529,233,2.736,320,3.135,324,2.083,650,2.488,697,3.967,713,3.445,751,2.974,1065,4.691,1066,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.837,61,0.775,199,1.985,263,2.295,531,2.415,550,3.423,675,1.613,938,3.009,1067,3.33,1068,3.15]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.162,531,3.353,675,2.24,819,3.758,1067,4.624,1069,5.199]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.083,9,0.076,17,1.255,18,1.263,31,1.518,35,0.603,45,2.403,46,2.372,60,1.63,99,2.992,148,1.656,199,2.485,241,1.384,255,2.874,422,2.485,427,3.167,531,3.024,647,3.024,1067,7.783,1070,4.688,1071,4.05,1072,5.398,1073,5.398]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.654,1074,6.348]],["keywords//docs/platform/disk-images/clone-your-linode/",[934,5.647,1074,7.309]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.137,1074,7.502]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.059,164,2.048,189,3.022,240,0.992]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[164,2.191,240,1.061,881,5.394]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,143,1.496,155,2.155,181,1.347,192,2.428,240,1.05,303,1.872,307,3.514,366,1.438,510,4.876,532,2.789,546,3.656,673,2.519,675,2.862,1075,4.182,1076,7.042,1077,5.589,1078,4.182,1079,4.823]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,164,1.359,182,2.848,189,2.006,213,3.106,214,3.216,320,2.528,643,2.148,775,3.703,942,2.162]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[643,3.463,1080,7.116,1081,7.728]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,65,2.116,182,4.162,233,4.316,320,4.945,751,3.505,775,5.411,1082,7.006,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.468,14,0.606,61,0.775,62,2.105,182,2.561,213,2.793,214,2.892,263,2.295,320,2.274,643,1.932,775,3.33,942,1.945]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.703,61,1.164,643,2.9,1080,5.959,1085,6.473]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,182,4.162,233,4.316,320,5.573,751,3.505,752,4.616,775,5.411,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.348,49,0.984,307,4.145,639,2.395,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[447,3.648,650,2.949,721,3.554,1086,4.036]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.17,17,1.696,18,1.707,29,1.093,49,1.161,60,2.203,311,2.665,397,4.651,623,4.28,639,2.828,721,3.68,780,3.563,1086,4.179,1087,4.39,1088,5.473,1089,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,117,1.925,219,3.822,223,4.932,226,3.144,620,4.515]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,223,5.624,872,5.843,1090,7.045]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.278,9,0.072,14,0.896,17,1.482,18,1.491,35,0.359,61,1.581,89,1.947,141,2.317,219,6.227,223,5.088,226,4.474,263,3.393,303,1.56,323,1.756,400,5.286,906,3.739,1091,4.781]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.307,89,1.552,238,3.142,240,0.697,286,2.845,1092,5.079,1093,4.411,1094,4.411]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[579,6.486,1094,6.118,1095,4.24,1096,6.486]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.532,16,0.799,17,0.625,18,0.628,29,0.402,60,0.811,80,1.869,89,0.821,90,0.808,96,2.26,129,1.77,148,1.385,173,3.03,184,1.304,190,3.88,233,1.237,243,0.995,312,5.174,336,1.617,355,1.924,368,1.568,458,3.837,514,4.158,571,2.835,673,1.292,885,2.926,1091,3.388,1094,9.577,1096,8.846,1097,2.686,1098,2.228,1099,2.228,1100,2.686,1101,2.473,1102,4.517]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,531,4.045]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[533,6.118,534,6.118,536,6.118,1103,6.486]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.083,9,0.064,17,1.255,18,1.263,29,0.809,31,1.048,35,0.568,148,2.398,231,3.851,240,0.741,241,1.384,318,3.272,512,4.688,531,5.991,545,4.97,546,6.415,690,3.851,1103,8.463,1104,5.398]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.936,233,3.066,320,3.512,643,2.984,914,4.751]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[320,2.744,643,2.332,774,4.154,914,3.713,1105,5.204,1106,5.204,1107,4.791,1108,4.791]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.255,18,1.263,89,1.649,96,2.701,155,2.221,233,5.133,303,1.914,318,2.259,320,2.847,453,4.688,574,4.478,643,2.419,751,3.911,774,4.31,914,6.558,1022,3.691,1068,3.945,1084,3.497,1107,4.97,1109,5.398,1110,7.818,1111,4.688,1112,5.398]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.059,89,2.206,117,2.25,1113,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.318,899,4.965,1113,5.199,1114,5.986,1115,5.986,1116,5.986]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,49,0.834,64,2.03,65,1.582,74,2.578,89,1.6,95,3.828,117,2.383,141,1.904,226,2.665,229,3.288,303,1.282,323,1.443,458,2.934,513,3.393,633,3.514,637,3.112,909,3.656,1113,7.847,1117,3.828,1118,4.182,1119,5.238]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.065,164,2.236,1120,4.811]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1120,4.297,1121,7.045,1122,7.045,1123,7.045]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.058,14,1.318,35,0.528,42,2.32,74,3.448,89,2.14,90,2.108,478,3.736,696,2.81,785,4.273,1120,5.719,1124,6.45]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[185,4.178,639,3.367]],["keywords//docs/networking/remote-access/",[642,5.167,1125,6.473,1126,6.473,1127,6.473,1128,6.473]],["toc//docs/networking/remote-access/",[14,1.124,29,0.834,32,5.097,35,0.314,207,5.557,234,4.069,478,2.827,519,3.397,622,4.836,623,5.997,639,3.099,643,2.495,650,3.346,672,4.257,905,3.973,916,5.58,940,3.445,1084,3.607,1129,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.634,675,2.156,766,2.167,786,2.958,1130,4.022,1131,3.617,1132,1.869]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.697,1131,3.758,1132,1.941,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.586,61,0.971,550,2.796,675,2.02,766,2.03,786,2.771,1130,3.768,1131,3.389]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.65,61,1.076,1131,3.758,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.199,47,2.175,145,4.772,146,4.515,305,4.515,675,2.312]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.5,305,5.647,675,2.892]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.067,17,1.236,18,1.244,31,1.032,35,0.3,49,0.846,60,1.606,99,2.947,199,4.195,233,2.448,303,1.301,307,3.567,311,1.942,379,3.793,397,5.809,460,2.557,624,3.567,702,2.617,980,3.793,981,3.793,1139,4.107,1140,5.317,1141,5.317,1142,5.317,1143,5.317,1144,5.317,1145,5.317,1146,5.317,1147,5.317,1148,5.317]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.278,99,3.691,164,1.888,189,2.787,837,3.045]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[164,1.835,838,4.999,839,4.999,840,4.855,841,4.618]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[181,1.857,276,3.674,510,4.603,1077,5.277]],["keywords//docs/websites/host-a-website-with-high-availability/",[488,5.285,550,3.648,701,3.525,1129,5.624]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.062,17,0.908,18,0.914,35,0.555,49,0.622,60,2.281,90,1.175,155,3.107,190,2.212,240,0.841,303,0.956,307,2.62,309,3.632,310,4.607,312,1.716,318,1.634,337,2.786,477,2.382,478,1.381,519,2.382,531,2.187,546,2.725,623,2.291,633,2.62,1065,3.43,1076,7.873,1078,6.029,1079,5.637,1129,3.117,1149,3.905,1150,6.123,1151,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[124,4.627,510,5.028,1077,5.763]],["keywords//docs/websites/introduction-to-high-availability/",[181,1.812,276,3.585,488,5.285,1129,5.624]],["toc//docs/websites/introduction-to-high-availability/",[5,1.578,49,1.033,143,1.854,148,1.991,184,1.874,300,4.53,323,1.788,422,2.988,486,4.869,492,5.181,510,6.971,733,5.976,877,4.743,1077,7.991,1129,7.107]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,411,5.277]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.765,62,3.44,408,6.118,411,5.148]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.046,17,1.295,18,1.303,35,0.314,49,1.273,68,6.835,80,2.304,89,1.701,117,2.491,119,4.634,123,4.068,131,3.448,303,1.363,336,4.812,411,7.911,618,4.75,620,4.069,637,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.059,11,0.784,30,3.114,62,3.527]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.791,882,4.855,1054,5.167,1055,3.948,1152,4.342]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.876,5,1.944,9,0.066,11,0.605,17,1.295,18,1.303,30,4.86,35,0.314,62,2.719,185,2.678,197,2.965,209,3.607,303,1.957,324,1.951,391,3.808,639,3.099,1053,3.023,1056,3.19,1060,3.669,1153,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,697,3.155,1154,6.131]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.326,5,1.608,9,0.054,17,1.537,18,1.547,24,2.924,35,0.373,80,2.735,90,1.989,155,2.72,156,3.023,265,3.044,290,3.879,324,2.317,571,4.151,697,5.464,1033,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.586,14,0.759,49,0.859,62,2.637,143,1.542,1154,4.971,1155,3.293,1156,5.399]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.035,9,0.042,17,1.2,18,1.208,35,0.291,40,2.088,120,3.344,145,3.987,146,3.772,154,3.682,167,2.427,181,2.538,244,2.313,311,1.885,355,2.199,366,2.709,368,1.792,376,3.106,397,3.29,518,3.872,647,4.239,957,4.752,1155,4.616,1158,6.572,1159,4.483,1160,1.99,1161,5.162]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.671,61,1.111,100,1.852,263,3.289,303,1.512,667,3.769]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.669,240,0.765,241,1.427,667,3.396,668,3.351,1162,3.669,1163,5.126]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.434,2,3.805,17,1.662,18,1.672,64,2.77,77,5.929,100,2.142,148,2.192,156,3.268,229,4.487,303,1.749,323,1.97,532,5.059,572,6.208,635,5.362,1023,3.463]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,240,0.915,1164,3.73]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1165,7.045,1166,7.045,1167,7.045,1168,7.045]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.072,14,1.229,17,2.032,18,2.045,60,2.64,240,1.2,1164,6.057]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.102,9,0.042,11,0.552,31,0.986,62,2.48,117,1.582,241,1.302,258,2.909,1169,2.584]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1169,3.585]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.359,5,1.522,9,0.071,17,1.455,18,1.465,31,1.936,35,0.353,47,2.203,49,1.382,60,1.891,143,1.788,181,1.61,241,1.605,258,3.586,318,2.62,366,1.719,780,4.241,1160,2.414,1169,3.185]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,258,3.815,749,2.945]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[882,4.855,1170,6.473,1171,6.473,1172,6.473,1173,6.473]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.192,4,2.105,5,1.445,9,0.08,14,0.836,17,1.382,18,1.391,35,0.472,60,1.795,181,1.529,240,1.15,241,1.524,258,3.405,318,2.488,366,1.632,674,4.93,749,2.629,780,4.09,1174,5.944,1175,5.944]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.784,62,3.527,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.839,62,3.774,1023,3.745]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.052,11,1.093,15,3.835,16,1.896,42,2.11,62,3.112,74,3.137,89,1.947,100,1.91,141,2.317,510,4.063,571,4.001,764,3.532,967,5.286,1006,3.271,1023,4.877,1176,4.328,1177,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.051,11,0.671,49,0.984,61,1.111,140,3.258,263,3.289]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[140,3.157,875,3.816,1178,5.986,1179,5.986,1180,5.986,1181,5.512]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.08,11,0.545,16,1.492,17,1.166,18,1.173,29,0.751,35,0.548,38,1.773,61,0.902,89,2.691,100,1.503,101,2.376,140,5.131,141,1.823,157,3.102,182,2.979,191,2.779,303,1.227,318,2.099,319,3.102,323,1.382,400,4.16,404,3.197,886,2.942,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.055,35,0.375,140,3.512,164,1.888,189,2.787]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[140,3.715,164,1.997,881,4.917,1181,6.486]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.072,14,0.705,16,1.492,17,1.166,18,1.173,29,0.751,35,0.497,38,1.773,89,2.691,101,2.376,140,5.474,141,1.823,156,2.293,157,3.102,191,2.779,234,3.664,303,1.227,318,2.099,319,3.102,320,2.645,323,1.382,400,4.16,404,3.197,886,2.942,942,2.262,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.051,11,0.671,61,1.111,263,3.289,1183,3.67,1184,5.125]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.65,184,1.728,875,3.816,1183,3.556,1185,5.986,1186,5.986]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.173,9,0.068,17,1.359,18,1.368,35,0.329,41,4.17,45,2.602,46,2.569,141,2.125,143,2.364,150,3,240,0.803,302,4.493,324,2.048,330,2.569,331,4.666,427,3.429,639,2.266,1061,3.997,1183,6.552,1184,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.986,35,0.286,151,1.979,452,2.654,764,2.815,1187,4.676,1188,2.704]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.162,194,5.512,1189,3.603,1190,5.986,1191,5.986,1192,4.016]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.463,9,0.094,17,1.696,18,1.707,31,1.416,35,0.543,80,3.018,151,2.842,452,3.812,1187,8.868,1188,3.884]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.065,89,2.41,1193,6.85]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1193,7.433,1194,8.559]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.07,89,2.606,117,2.657,124,5.004,141,3.101,230,7.408,1193,10.084]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.047,11,0.626,14,0.81,470,4.111,531,3.228,764,3.194,1195,5.005]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.565,240,0.715,427,3.053,531,2.915,1196,5.204,1197,5.204,1198,5.204,1199,4.02]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.421,9,0.091,16,1.739,29,0.876,38,2.067,88,4.17,100,2.88,174,4.08,183,3.669,294,5.382,355,2.49,427,3.429,470,5.905,531,4.636,696,1.752,827,4.271,856,4.385,1195,7.188,1199,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.119,169,2.984,276,2.932,1068,4.211,1200,5.306,1201,5.306,1202,4.451]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[116,3.322,1202,4.999,1203,4.999,1204,6.473,1205,6.473]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.434,9,0.078,17,1.662,18,1.672,31,1.845,96,3.576,181,1.838,366,1.963,452,3.735,699,4.048,1200,6.581,1201,8.749,1202,7.339]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.055,11,0.723,61,1.197,1206,6.131,1207,6.131]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[799,4.517,802,4.73,1208,6.473,1209,5.959,1210,5.959]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.043,17,1.218,18,1.225,35,0.295,40,2.119,49,1.582,99,2.903,131,2.259,224,6.978,368,1.819,696,1.57,732,3.451,797,6.178,804,4.549,805,4.046,1206,9.147,1207,9.147,1209,4.823,1210,4.823,1211,4.823,1212,5.238,1213,5.238]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.239,9,0.051,219,3.822,675,2.312,766,2.323,1214,6.179]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[766,2.906,1215,7.728,1216,7.728]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.1,9,0.045,17,1.274,18,1.283,64,2.125,77,4.547,100,2.37,167,2.578,183,3.441,219,6.279,296,4.697,318,3.309,430,4.234,675,3.469,766,3.816,1217,10.15,1218,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.808,283,3.81,396,3.81,764,2.815,1219,4.676,1220,4.676,1221,4.676,1222,4.676]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1038,3.037,1192,2.919,1222,4.006,1223,4.351,1224,4.351,1225,4.351,1226,4.351,1227,4.351,1228,4.006,1229,3.361]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.048,17,1.359,18,1.368,29,0.876,35,0.329,49,1.53,80,2.418,229,3.669,283,6.209,661,4.849,696,1.752,936,3.852,1038,7.293,1139,4.515,1219,7.62,1220,7.62,1221,7.62,1230,4.515,1231,5.382]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.047,49,0.917,304,2.932,1184,4.78,1232,5.306,1233,5.306,1234,5.005]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[799,4.917,1229,5.441,1235,7.045,1236,7.045]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.056,14,0.966,17,1.597,18,1.607,35,0.387,49,1.473,89,2.099,141,2.497,304,4.708,799,4.794,965,5.698,1184,7.675,1232,8.52,1233,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.047,61,1.036,240,0.791,241,1.477,263,3.068,1237,4.78,1238,4.211]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[240,0.671,241,1.252,875,3.114,1069,4.243,1160,1.884,1239,4.885,1240,2.707,1241,4.498,1242,4.498]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.061,17,1.732,18,1.743,35,0.55,240,1.023,241,2.793,406,6.179,496,5.754,938,5.199,1237,8.1,1241,6.859]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.671,47,2.175,764,3.424,1243,5.689,1244,5.366,1245,4.772]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1243,4.791,1244,4.52,1245,4.02,1246,5.204,1247,4.791,1248,5.204,1249,4.52,1250,5.204]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.278,9,0.083,10,4.547,17,1.482,18,1.491,31,1.237,33,2.667,47,2.243,49,1.015,151,3.922,195,5.696,263,3.393,929,3.943,1244,5.535,1245,6.791,1247,5.868,1249,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.055,49,1.06,799,4.648,802,4.866,1038,4.648]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[799,3.886,802,4.069,1038,3.886,1228,5.126,1229,4.3,1251,5.126,1252,5.568]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.077,17,1.629,45,3.118,46,3.079,49,1.115,65,2.116,155,2.882,265,3.225,287,5.411,303,1.715,364,4.889,368,2.433,424,4.334,799,6.544,961,5.255,1038,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.348,61,1.111,263,3.289,1045,2.323,1253,4.772,1254,4.932]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[478,1.84,756,1.857,875,3.317,1045,1.957,1253,4.02,1254,4.154,1255,4.52,1256,4.791]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.034,16,2.837,29,1.429,35,0.361,60,1.248,146,3.021,155,2.633,188,3.101,233,1.903,297,3.193,318,2.679,320,2.18,378,3.032,477,2.522,478,2.263,786,2.122,805,3.193,886,2.425,1045,2.945,1091,3.101,1253,6.811,1254,5.11,1255,5.559,1256,3.806,1257,4.134,1258,4.134,1259,4.134,1260,4.134,1261,3.59,1262,4.134,1263,2.368,1264,3.021,1265,4.134]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.059,11,0.784,62,3.527,1266,6.272]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.765,756,2.514,1266,6.118,1267,6.486]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.384,4,1.498,5,1.109,9,0.076,17,1.06,18,1.067,35,0.257,64,1.768,65,1.378,100,1.367,117,1.421,141,1.658,167,2.145,181,1.775,183,2.863,240,1.143,241,1.169,258,3.953,311,1.666,324,1.598,366,1.895,377,2.745,380,3.183,518,3.422,675,1.707,749,3.052,886,2.676,1266,9.109,1268,4.561]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.065,89,2.41,918,5.627]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.587,901,4.517,905,4.618,918,4.618,1269,5.959]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.076,17,1.597,18,1.607,35,0.387,89,2.827,141,2.497,148,2.838,226,3.495,238,4.25,569,5.698,637,4.081,676,3.019,918,7.465,1033,5.484]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[829,0.474]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.044,49,0.859,143,1.542,171,3.557,396,4.05,550,2.796,1095,3.249,1270,4.971]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[143,2.207,171,5.092,1271,7.728]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.808,9,0.068,14,1.171,16,2.477,17,1.936,18,1.948,29,1.248,35,0.469,1270,9.659]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.15,117,2.25,647,4.045,1272,6.272]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[802,5.148,1038,4.917,1272,6.118,1273,4.185]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.083,9,0.044,17,1.255,18,1.263,35,0.441,38,1.909,40,2.184,41,3.851,42,1.788,49,1.463,80,2.233,85,3.851,90,1.624,309,2.596,311,1.972,351,4.478,368,1.875,571,3.389,611,3.557,616,4.05,713,3.129,732,3.557,916,3.768,1075,4.31,1272,9.684]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.04,35,0.407,136,3.613,721,3.643]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[119,3.016,123,2.648,447,2.695,721,2.625,1274,4.52,1275,4.154,1276,4.791,1277,4.791]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.566,18,1.576,35,0.38,60,2.035,117,2.099,123,3.428,131,2.906,136,5.184,336,4.055,447,3.489,618,4.003,766,2.534,988,4.807,1022,4.608,1275,5.379,1277,6.204,1278,4.807,1279,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.714,29,0.863,49,0.917,61,1.036,63,3.94,721,2.907,977,4.022]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.039,17,1.103,18,1.663,35,0.6,45,2.112,46,2.085,49,1.132,90,1.428,101,2.248,136,3.557,142,2.658,148,2.615,184,1.37,309,2.282,310,2.894,397,3.025,415,2.856,447,2.457,650,1.986,676,2.085,721,4.301,766,1.784,1071,3.56,1088,3.56,1261,4.121,1278,6.083,1281,4.369,1282,4.745]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.984,307,4.145,308,3.879,638,5.125,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.983,18,1.996,35,0.481,45,3.797,46,3.748,310,5.203,650,3.57,721,4.303,1283,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.445,5,1.619,9,0.055,713,3.86,831,5.316]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.529,831,5.624,832,6.486,1284,7.045]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.992,4,2.097,5,1.783,9,0.041,17,1.149,18,1.157,24,3.864,29,0.741,35,0.279,49,0.787,131,2.132,155,4.245,324,1.732,368,1.717,422,2.276,453,6.367,550,2.56,603,4.831,831,5.852,1056,4.2,1059,3.709,1285,4.945,1286,4.945,1287,4.945,1288,4.552]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.723,47,2.344,764,3.691,1289,5.784,1290,5.784]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[184,2.43,1095,3.603,1289,5.199,1290,5.199,1291,5.986]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.051,9,0.074,11,0.569,16,1.558,17,1.218,18,1.225,24,3.383,29,0.785,30,2.259,35,0.596,39,2.085,155,2.155,184,1.512,195,3.393,240,1.05,330,2.302,779,1.512,909,3.656,1289,9.177,1290,7.847,1292,5.238]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[164,2.236,189,3.301,749,3.488]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,881,3.886,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.326,3,3.745,4,1.435,5,1.608,9,0.084,17,1.537,18,1.547,35,0.621,181,1.701,192,3.065,240,0.908,241,1.695,366,1.815,550,3.424,673,3.179,1294,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.586,14,0.759,31,1.048,47,1.9,151,2.104,764,2.992,1295,2.486,1296,2.796]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.368,39,2.804,1295,3.243,1296,3.648]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.06,16,2.17,17,1.696,18,1.707,29,1.093,31,1.87,35,0.543,39,2.903,151,2.842,195,4.726,909,5.092,1295,3.359,1296,4.988]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.059,35,0.407,263,3.844,667,4.405]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[240,0.822,241,1.535,667,3.652,668,3.603,1162,3.944,1163,5.512]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.769,18,1.78,35,0.429,54,4.708,64,2.95,80,3.148,141,2.766,240,1.045,246,5.204,263,4.051,667,6.04,789,5.429,1297,7.007]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,764,3.424,1298,5.689,1299,5.366]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.445,309,3.793,616,5.916]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.406,61,0.672,309,1.798,611,2.463,616,2.805,650,1.565,971,2.383,1302,3.739,1303,3.739,1304,3.739,1305,3.739,1306,3.739,1307,3.739,1308,1.954]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.044,11,0.586,14,0.759,17,1.255,18,1.263,29,0.809,35,0.304,61,0.971,85,3.851,90,1.624,117,1.682,148,1.656,155,2.221,255,2.874,309,3.76,310,6.524,311,1.972,377,3.249,456,3.557,475,3.249,550,2.795,616,7.559,676,2.372,1308,2.821,1309,5.398]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.239,14,0.869,244,2.768,258,3.539,737,4.635,749,2.733]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.266,244,2.495,737,4.177,741,4.3,1310,5.568,1311,5.568,1312,5.126]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.212,4,1.269,5,1.421,14,1.163,35,0.329,60,1.765,90,1.759,148,2.538,181,1.503,240,1.137,241,1.498,244,4.682,366,1.605,368,2.03,415,3.518,738,4.849,1313,5.382,1314,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.059,35,0.407,61,1.299,1315,6.272]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1038,4.178,1315,5.199,1316,5.986,1317,4.779,1318,5.986]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.078,17,1.662,18,1.672,29,1.071,35,0.403,49,1.513,131,4.098,136,3.576,324,2.504,915,6.581,1315,9.271,1319,7.148]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.206,465,4.09,639,2.799,1320,6.649]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[148,1.498,238,3.022,758,3.9,1320,4.498,1321,4.243,1322,4.885,1323,4.498,1324,4.885,1325,4.885]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.17,17,1.696,18,1.707,29,1.093,35,0.411,324,2.556,392,4.45,633,6.462,758,5.824,1118,5.824,1323,6.717,1326,7.296,1327,6.717,1328,7.296,1329,7.296]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.051,11,0.671,31,1.199,62,3.017,244,2.768,1330,5.125]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.839,31,1.5,1331,6.41]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.081,17,1.769,18,1.78,31,2.137,35,0.429,64,2.95,80,3.148,150,3.906,1006,3.906,1330,8.214]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.051,11,0.671,63,4.225,764,3.424,995,4.772,1332,6.179]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.65,668,3.603,995,4.624,997,5.512,998,5.512,999,5.512]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.197,5,0.919,9,0.075,17,0.879,18,0.884,30,1.63,35,0.213,39,1.504,40,2.414,49,1.455,60,1.802,100,1.133,118,2.245,120,2.448,148,1.83,151,1.473,167,1.777,171,2.49,281,3.291,309,1.817,324,2.091,330,1.661,335,2.191,368,1.312,392,2.305,423,3.282,637,3.545,676,1.661,718,3.135,745,2.49,995,7.859,1001,3.48,1002,3.48,1004,3.48,1005,3.017,1071,2.835,1333,3.78,1334,3.48,1335,3.78]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.671,16,1.838,29,0.926,31,1.199,764,3.424,1331,5.125]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.605,31,1.081,550,2.883,1192,3.735,1330,4.618,1331,6.631]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.053,29,0.972,31,1.973,35,0.366,64,3.451,65,1.96,80,2.685,150,3.331,243,2.405,244,3.989,323,1.788,399,1.594,422,2.988,647,3.636,1006,3.331,1330,7.385,1331,5.384]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.047,31,1.119,61,1.036,263,3.068,766,2.167,1238,4.211,1336,4.451]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.256,875,4.126,1133,4.855,1336,4.999,1337,6.473]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.073,16,1.513,17,1.183,18,1.19,31,1.453,35,0.287,60,1.536,148,1.56,156,2.326,202,3.986,233,2.342,243,1.885,330,2.235,378,2.41,519,3.103,549,4.22,613,4.22,673,2.446,751,2.545,766,3.684,786,4.559,837,2.326,886,2.984,1135,3.929,1336,7.567]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.059,49,1.15,184,2.085,1338,6.649]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1339,9.589]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.046,11,0.614,35,0.456,42,1.874,61,1.017,143,1.616,164,1.604,181,1.455,185,2.721,286,3.169,323,1.559,337,4.037,386,4.037,516,5.209,525,3.665,550,2.93,822,4.914,1006,2.904,1132,1.835,1308,2.956,1338,9.481,1340,4.517,1341,5.658,1342,3.949,1343,5.658,1344,0.838]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.015,49,1.15,303,1.767,1345,4.758]],["keywords//docs/security/using-fail2ban-for-security/",[1345,5.092,1346,7.728,1347,7.116]],["toc//docs/security/using-fail2ban-for-security/",[9,0.044,11,0.577,14,0.747,29,0.797,35,0.564,61,0.956,136,2.66,164,1.508,189,2.225,214,3.567,291,3.503,623,3.119,756,1.897,1098,4.41,1132,1.724,1342,3.711,1345,7.005,1347,4.895,1348,5.317,1349,5.317,1350,5.317,1351,5.317,1352,4.895,1353,7.733,1354,4.895,1355,4.618]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.626,47,2.028,49,0.917,304,2.932,764,3.194,1234,5.005,1356,5.306]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.605,799,3.886,802,4.069,1192,3.735,1229,4.3,1357,5.568,1358,5.568]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.058,17,1.629,18,1.639,35,0.395,49,1.493,80,2.898,304,5.377,696,2.1,965,5.811,1234,6.084,1356,9.73,1359,7.006,1360,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.051,30,2.665,31,1.199,61,1.111,63,4.225,1361,5.366]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.791,31,1.256,56,5.369,116,3.322,1361,5.621]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.097,14,0.896,17,1.482,30,2.749,31,1.237,35,0.359,41,4.547,54,3.943,143,1.82,199,2.934,296,3.786,397,4.063,639,2.47,1071,4.781,1361,9.424]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.047,11,0.626,171,3.797,255,3.068,330,2.532,764,3.194,1362,3.797]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1045,1.343,1192,2.396,1255,3.101,1362,2.353,1363,3.571,1364,2.242,1365,3.571,1366,3.571,1367,3.571,1368,3.571,1369,3.571,1370,3.571,1371,3.101,1372,3.571]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.604,9,0.077,16,1.656,29,1.198,35,0.314,42,1.844,49,0.886,64,2.158,89,1.701,90,1.675,202,2.965,283,4.177,324,1.951,465,5.298,675,2.084,766,3.517,786,2.858,1135,4.301,1313,5.127,1362,6.736]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.059,164,2.048,189,3.022,1373,5.277]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[164,1.17,881,2.88,1374,4.126,1375,4.126,1376,4.126,1377,3.583,1378,4.126,1379,4.126,1380,4.126,1381,4.126,1382,4.126,1383,4.126]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.09,17,1.2,18,1.208,35,0.427,45,2.298,46,2.268,74,2.541,80,2.135,150,3.884,164,1.463,281,2.298,309,2.482,311,1.885,318,2.16,330,2.268,460,2.482,611,3.401,637,3.066,1373,7.209,1384,5.162,1385,6.967,1386,4.281,1387,5.162,1388,5.162,1389,4.483]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.671,89,1.888,639,2.395,752,4.071,764,3.424,1118,4.932]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.65,680,4.624,752,3.944,916,4.178,1118,4.779,1390,5.986]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.063,129,5.014,205,5.105,633,5.105,639,3.838,752,6.525,779,2.197,780,3.716,1118,7.905,1261,6.609,1391,7.61]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[124,4.627,164,2.236,1075,6.296]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.198,117,1.222,164,1.112,238,2.427,303,0.96,309,1.886,611,2.585,1075,3.132,1132,1.272,1392,3.923,1393,3.923,1394,3.923,1395,3.923]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.049,29,0.89,35,0.547,42,1.968,90,1.788,302,3.227,309,2.858,310,3.626,335,3.445,422,2.736,475,3.577,546,4.148,611,3.916,984,5.162,1075,7.741,1087,3.577,1396,3.916,1397,5.944,1398,5.944,1399,5.944,1400,5.473,1401,5.944,1402,4.591]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.051,35,0.348,49,0.984,191,3.424,504,4.071,845,4.772]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1403,7.728,1404,7.728,1405,7.728]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.073,17,1.509,18,1.518,35,0.573,47,2.284,65,1.96,155,2.67,191,3.597,265,2.988,504,7.799,789,4.631,845,5.013,1406,5.976,1407,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.418,164,1.888,189,2.787,247,3.907,1245,5.144]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.154,4,1.208,12,2.858,240,0.765,1245,4.3,1249,4.836,1408,5.568]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.209,9,0.077,12,2.858,14,0.783,17,1.295,18,1.303,32,3.55,33,2.331,35,0.451,49,0.886,155,2.291,199,3.681,240,1.098,263,2.965,547,5.127,591,4.446,929,3.445,1245,7.225,1264,4.069,1409,5.569,1410,5.569,1411,5.569,1412,5.569,1413,5.569]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.065,35,0.445,737,5.916]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[739,7.116,740,6.712,741,5.969]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.06,17,1.149,18,1.157,29,0.741,35,0.545,155,3.975,188,7.741,190,4.152,191,4.842,244,3.285,255,2.632,324,1.732,379,3.528,611,3.258,643,2.215,737,8.109,751,2.474,766,1.859,786,2.538]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.402,35,0.407,334,4.938,515,5.152]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.256,319,4.004,334,4.426,515,4.618,701,3.238]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.961,19,2.18,88,2.949,123,2.103,131,3.378,136,2.068,148,1.963,184,1.194,199,1.903,208,3.806,286,2.316,287,3.193,334,4.377,335,2.396,337,2.949,381,3.806,385,6.252,512,3.59,518,3.101,676,3.442,702,2.035,827,3.021,990,3.59,1068,3.021,1414,3.59,1415,4.018,1416,4.134,1417,2.456,1418,4.134,1419,3.59,1420,4.134,1421,4.134,1422,4.134,1423,3.806,1424,3.806,1425,4.134,1426,3.429,1427,3.806,1428,4.134,1429,3.806,1430,3.806,1431,4.134,1432,4.134,1433,3.806]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.838,29,0.926,49,0.984,671,4.515,1434,5.366,1435,4.932]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[671,3.57,1273,2.902,1434,4.243,1435,3.9,1436,4.885,1437,4.885,1438,4.885,1439,4.885,1440,4.885]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.06,16,2.158,29,1.087,35,0.488,49,1.379,89,2.217,100,1.462,131,2.103,190,2.762,232,3.766,309,3.489,368,1.693,696,1.462,708,3.893,779,1.408,780,2.381,1006,2.503,1273,2.897,1434,8.91,1435,5.792,1441,4.876,1442,4.876,1443,6.018,1444,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.055,368,2.313,576,5.316,725,5.524,1445,6.131]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[725,4.317,1446,7.613,1447,5.204,1448,5.204,1449,5.204,1450,5.204,1451,5.204]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.965,9,0.059,11,0.522,14,0.676,35,0.484,38,1.701,46,2.114,49,0.766,120,4.653,143,1.374,148,1.475,165,4.177,192,2.23,218,3.432,258,2.755,273,3.84,323,1.979,324,1.685,368,2.494,647,2.694,696,1.442,725,8.461,789,3.432,1230,3.715,1445,7.913,1452,4.81,1453,4.81,1454,4.81,1455,4.177]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.445,675,2.951,1151,5.291]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.043,35,0.293,89,1.59,487,4.154,624,3.491,675,1.947,766,1.957,1151,3.491]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.058,17,1.629,18,1.639,31,1.36,35,0.528,49,1.493,143,2.678,233,3.225,240,0.962,519,4.273,675,2.621,735,5.811,766,2.634,780,3.421,1151,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.936,89,2.035,369,4.314,939,5.524,1456,5.316]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[369,4.564,916,4.917,939,5.843,1456,5.624]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.738,102,6.724,311,3.274,458,5.021,639,3.474,939,9.108]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.567,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.09,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1458,3.474,1461,3.105,1462,4.351,1463,4.351,1464,4.351]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.7,3,6.557,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[184,2.085,323,1.99,676,3.173,1465,4.137]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[303,1.584,676,3.905,1465,3.708,1466,4.618]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.044,11,0.577,21,3.082,35,0.3,61,0.956,117,1.656,148,1.631,164,1.508,167,2.5,189,2.225,308,3.338,368,3.164,424,3.289,676,2.336,756,1.897,916,3.711,1132,1.724,1308,2.778,1465,6.719,1467,5.317,1468,4.618,1469,9.113,1470,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.671,49,0.984,143,1.765,240,0.849,764,3.424,1176,3.041]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.65,199,2.756,240,0.822,701,2.995,1192,4.016,1471,5.986]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.081,17,1.43,18,1.439,35,0.484,40,3.47,132,4.614,181,1.582,240,1.357,244,4.789,286,3.446,318,2.574,366,1.689,460,2.958,1472,4.293,1473,5.342,1474,4.751]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.626,49,0.917,90,1.734,447,2.984,734,3.565,764,3.194,1475,5.005]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.703,447,3.352,1192,4.342,1475,5.621,1476,6.473]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.072,17,2.032,18,2.045,35,0.493,49,1.391,131,3.77,1475,9.39]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.059,49,1.15,89,2.206,1477,6.272]],["keywords//docs/game-servers/install-teamspeak/",[1229,5.441,1477,6.118,1478,7.045,1479,5.441]],["toc//docs/game-servers/install-teamspeak/",[9,0.058,17,1.629,18,1.639,35,0.395,64,2.715,80,2.898,296,4.162,309,3.369,357,5.593,368,2.433,469,4.616,608,4.998,1477,10.217,1480,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.245,35,0.375,89,2.035,478,2.355,1481,6.131]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[642,5.167,1482,6.473,1483,5.959,1484,5.621,1485,6.473]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.495,32,6.36,478,3.527]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.051,31,1.199,49,0.984,61,1.111,143,1.765,263,3.289]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.162,61,1.076,199,2.756,701,2.995,875,3.816,876,5.199]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.068,17,1.936,18,1.948,31,2.036,61,1.498,65,2.515,265,4.83,330,3.66]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.325,258,3.301,504,3.797,749,2.549,845,4.451,1486,4.6]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.208,117,1.735,240,0.765,241,1.427,504,3.669,875,3.549,1487,5.126]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.169,35,0.493,148,2.681,181,2.248,366,2.4,749,3.866,1486,6.978]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.019,14,0.714,258,2.909,504,4.927,749,2.246,845,3.923,1345,3.346,1486,4.054]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.06,240,0.671,241,1.252,504,3.219,875,3.114,1345,3.219,1487,4.498,1488,3.9,1489,4.885]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.044,35,0.448,148,2.439,156,3.636,191,4.408,504,6.713,538,6.349,845,6.143,1486,6.349,1490,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.984,61,1.111,143,1.765,240,0.849,263,3.289,1238,4.515]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,240,0.715,677,4.791,678,4.154,701,2.604,1491,5.204,1492,4.154,1493,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.08,17,1.405,18,1.414,35,0.478,40,3.428,132,4.535,181,1.555,240,1.457,244,4.753,286,3.387,318,2.53,366,1.66,460,2.907,1472,4.219,1473,5.251,1474,4.67]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.299,263,3.844,749,3.194,1238,5.277]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.896,61,0.742,240,0.567,241,1.058,276,2.099,749,1.825,875,2.63,1494,4.126,1495,4.126,1496,3.422,1497,3.799,1498,4.126]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.271,5,1.67,9,0.076,16,2.043,17,1.597,18,1.607,29,1.029,35,0.522,181,1.767,192,3.185,240,1.271,241,1.761,366,1.886,673,3.303]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.555,101,3.421,102,5.417,368,2.508]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.947,841,4.271,901,4.178,906,3.512,1499,5.512,1500,5.512]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.07,35,0.481,74,4.199,101,5.045,364,5.953,906,5.004,1501,6.809,1502,7.853]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.041,89,1.888,101,2.927,102,4.635,368,2.146,901,4.312]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.741,841,3.972,872,4.618,901,3.886,906,3.266,1499,5.126,1500,5.126]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.051,11,0.932,35,0.347,61,1.543,74,3.028,101,4.679,117,1.916,164,2.432,189,2.574,364,4.293,473,3.861,906,3.609,1132,2.782,1308,4.482,1501,4.91,1502,5.663,1503,5.307]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.293,61,1.197,63,4.554,452,3.48,1188,3.545]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.081,61,1.001,452,2.909,1189,3.351,1504,3.886,1505,3.444,1506,5.126]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.359,9,0.088,17,1.455,18,1.465,31,1.686,45,2.787,46,2.751,47,2.203,80,2.59,180,3.546,281,2.787,311,2.287,318,2.62,452,3.271,460,4.176,699,4.918,1188,4.623]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.936,89,2.035,90,2.004,142,3.73,1507,5.784]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.7,89,1.406,90,1.385,129,3.033,240,0.632,247,2.7,452,2.405,665,3.997,1507,3.997,1508,4.238]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.076,16,2.043,29,1.029,35,0.522,49,1.094,89,2.099,148,2.107,240,0.943,427,4.03,508,3.848,637,4.081,696,2.059,758,5.484,1507,8.036,1508,6.325,1509,5.966]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[901,6.063,1510,7.206]],["keywords//docs/platform/kvm-reference/",[901,4.517,1511,6.473,1512,6.473,1513,6.473,1514,5.621]],["toc//docs/platform/kvm-reference/",[34,4.369,35,0.353,74,3.081,99,3.469,117,1.95,164,1.775,226,3.185,229,3.93,311,2.287,346,4.369,366,1.719,433,3.93,575,3.93,637,3.719,780,3.057,867,5.437,901,4.369,916,4.369,1013,2.635,1308,3.271,1402,4.835,1514,5.437,1515,6.26,1516,4.696]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.567,9,0.059,61,1.299,263,3.844]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.337,4,0.896,5,1.003,61,0.742,117,1.285,238,2.552,875,2.63,1457,2.719,1458,3.294,1459,3.294,1460,3.422,1461,2.944]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.047,11,0.626,31,1.119,35,0.325,62,2.814,241,1.477,1160,2.222]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1160,2.717]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.055,17,1.566,18,1.576,31,1.773,35,0.38,60,2.035,65,2.035,181,1.733,241,2.656,243,2.497,286,3.775,303,1.649,342,6.204,366,1.85,603,4.44,1160,2.598,1517,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.723,31,1.293,241,1.707,764,3.691,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.605,31,1.081,241,1.427,1160,2.147,1518,5.568,1519,3.266,1520,3.735]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.547,42,1.968,60,1.795,65,1.795,80,2.459,126,5.518,167,2.795,181,1.529,241,1.524,243,2.202,303,1.455,311,2.171,366,1.632,399,1.459,603,3.916,1160,2.292,1415,3.731,1517,3.731,1521,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1153,5.916,1522,7.262,1523,5.627]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.866,741,3.773,1312,4.498,1523,3.485,1524,4.885,1525,4.498,1526,4.885,1527,3.773,1528,4.498]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.033,135,5.976,136,3.247,142,3.636,148,1.991,190,3.676,368,2.254,473,4.074,509,3.906,629,5.637,743,4.631,1099,5.384,1523,7.25,1527,5.013,1529,6.491,1530,5.637,1531,6.491,1532,6.491,1533,6.491,1534,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.449,789,5.152,1523,5.152,1527,5.578]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.053,741,4.02,749,2.302,1488,4.154,1523,3.713,1527,4.02,1528,4.791,1535,5.204]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.764,4,2.355,9,0.052,16,1.896,29,0.955,35,0.496,64,2.47,181,1.639,219,3.943,240,1.208,241,1.634,311,2.328,366,1.75,942,2.875,1527,4.922,1534,5.868,1536,6.373]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.051,11,0.671,49,0.984,764,3.424,1099,5.125,1523,4.408]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[740,4.243,741,3.773,1203,3.773,1523,3.485,1525,4.498,1537,4.885,1538,4.885,1539,4.885,1540,4.498]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.192,9,0.049,16,1.768,29,0.89,49,1.333,64,2.304,118,3.531,155,3.445,190,3.366,233,2.736,318,2.488,324,2.083,464,2.816,507,5.162,519,3.626,696,1.781,751,2.974,951,4.745,1099,6.947,1523,5.975,1527,4.591,1540,5.473,1541,5.944]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.047,49,0.917,117,1.795,303,1.41,639,2.234,721,2.907,884,3.673]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.605,61,1.001,164,1.579,447,2.883,650,2.33,721,2.809,1132,1.806]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.072,29,0.955,35,0.359,49,1.015,90,1.917,117,1.985,119,3.694,123,3.243,136,4.399,324,2.233,336,3.835,513,4.129,639,2.47,721,5.744,779,1.84,1542,6.373,1543,6.373]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.206,1415,4.533,1544,5.152,1545,5.277]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[303,1.584,309,3.112,1546,6.473,1547,6.473,1548,5.621]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.267,19,3.487,255,3.52,422,3.044,546,4.615,676,2.906,958,6.088,984,5.742,1415,6.441,1545,7.498,1549,6.088,1550,6.612,1551,6.612,1552,6.088,1553,6.612,1554,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.299,263,3.844,1023,3.499,1238,5.277]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1023,3.414,1238,5.148,1555,4.24]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,263,3.587,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.626,49,0.917,368,2.001,764,3.194,1273,3.423,1435,4.6,1557,5.763]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1273,5.084,1435,6.832]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.526,9,0.063,35,0.429,49,1.211,80,3.148,99,4.217,141,2.766,324,2.666,427,4.464,566,7.007,637,4.521,1273,4.521,1558,9.903]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.044,11,0.586,49,0.859,764,2.992,1038,3.768,1070,4.689,1559,5.399,1560,4.971]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,799,3.409,1038,3.409,1139,3.773,1192,3.277,1229,3.773,1251,4.498,1561,4.885,1562,4.885]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.055,17,1.566,18,1.576,35,0.38,49,1.454,80,2.788,320,3.554,696,2.02,965,5.589,1070,8.999,1139,5.204,1560,9.54,1563,6.738,1564,9.134]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.586,61,0.971,74,2.658,99,2.992,550,2.796,837,2.468,906,3.167,1565,3.852]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.565,61,0.936,838,4.02,839,4.02,840,3.904,841,3.713,1566,4.154,1567,4.154]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[829,0.474]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.936,531,3.73,682,4.751,709,5.144,1568,6.66]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.703,61,1.164,531,3.626,682,4.618,709,4.999]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.801,8,2.787,9,0.085,12,2.05,15,2.403,16,1.188,24,2.756,35,0.529,42,1.322,44,5.737,60,1.882,64,1.548,96,1.998,148,1.225,207,2.372,318,1.671,324,2.183,335,2.315,427,3.655,433,2.507,465,2.262,511,3.084,623,2.343,682,5.466,696,1.197,709,7.682,770,3.677,1061,2.731,1071,2.996,1569,3.993,1570,8.656]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.15,61,1.299,189,3.022,1571,6.272]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1273,4.591,1571,6.712]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.087,49,1.695,131,3.679,368,2.962,427,5.004,696,2.557,1571,7.408]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,2.681,355,2.632,674,5.125,1510,5.125,1572,6.179,1573,6.179]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.057,355,3.001,1574,7.045,1575,7.045]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.614,112,5.585,372,1.198,422,3.834,458,6.434,664,7.668,755,7.668]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.499,164,1.752,189,2.586,756,2.205,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[756,2.309,881,4.517,1577,6.473,1578,6.473,1579,4.618]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.633,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.341,164,1.752,756,2.205,1013,2.601,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[756,2.309,1015,5.167,1579,4.618,1582,6.473,1583,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.175,49,0.984,110,2.681,143,1.765,177,4.312,803,5.125]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.565,61,0.936,110,2.258,112,2.771,177,3.632,190,2.948,701,2.604,1584,4.791]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.064,49,1.599,64,3.015,110,4.827,112,4.141,143,2.221,177,7.009,368,2.701,458,4.357]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.723,61,1.197,304,3.388,1585,5.144,1586,6.131]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.703,61,1.164,802,4.73,1587,6.473,1588,6.473]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.051,14,0.865,17,1.43,18,1.439,35,0.347,40,2.488,49,0.979,224,4.751,304,5.026,355,2.621,696,1.844,1071,4.614,1211,5.663,1231,7.898,1263,3.524,1585,7.629,1586,9.095,1589,5.663]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.445,14,0.936,334,4.554,515,4.751,1461,4.751]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.529,1461,5.026,1590,7.045,1591,6.486]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.18,319,4.811,334,5.318,909,5.428,945,6.755,1461,5.549,1592,7.778,1593,7.778,1594,7.778,1595,7.778,1596,7.778,1597,7.778]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.763,1035,7.262,1153,5.916]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.148,1598,7.045,1599,7.045,1600,7.045]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.421,11,0.635,15,4.981,16,2.462,42,1.936,60,1.765,61,1.051,95,6.048,148,1.793,164,2.347,175,4.17,189,2.446,300,4.08,309,2.811,310,3.566,486,4.385,603,3.852,675,2.187,804,5.077,1013,2.461,1601,5.845,1602,5.845,1603,5.845]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.255,240,1.083,319,4.879]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.397,240,0.968,701,3.525,1591,6.486]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[132,5.153,240,0.943,244,4.146,286,3.848,385,5.484,822,5.966,909,4.794,1472,4.794,1473,5.966,1604,6.325,1605,6.87,1606,6.87,1607,6.87,1608,6.87,1609,6.87,1610,6.87,1611,6.87,1612,6.87]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.055,47,2.344,110,2.89,258,3.815,749,2.945]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.703,61,1.164,110,2.809,749,3.93]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.583,9,0.079,29,1.093,35,0.411,64,2.828,110,4.679,112,3.884,240,1.002,368,2.533,458,4.087,640,4.58,696,2.187,749,3.226]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[829,0.474]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.936,49,1.06,184,1.923,515,4.751,538,5.316]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[184,1.869,538,5.167,1613,5.621,1614,5.959,1615,5.167]],["toc//docs/uptime/monitoring/top-htop-iotop/",[156,3.556,274,5.683,318,3.255,355,4.739,376,4.681,538,6.209,731,7.161,732,5.125,1549,7.161,1613,6.755,1614,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.06,60,2.011,143,1.902,300,4.648,1616,5.784]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1616,6.712,1617,7.728,1618,7.728]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.595,35,0.574,64,3.083,148,2.439,273,6.349,355,4.341,368,2.762,375,4.61,1616,8.848]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.264,11,0.626,16,1.714,29,0.863,61,1.036,312,2.532,1078,4.6]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.948,4,1.13,11,0.565,61,0.936,312,2.287,488,3.904,1078,4.154,1619,4.791]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.025,9,0.068,29,1.248,35,0.469,60,2.515,65,2.515,243,3.086,309,4.005,1065,4.665,1078,6.649]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.263,469,5.197,1151,5.291]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[487,7.467,488,4.177,1151,5.363,1619,5.126]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.429,156,3.479,181,1.957,204,5.429,366,2.09,572,6.609,631,6.312,672,4.051,877,5.561,1151,7.384,1620,4.708,1621,7.61]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.055,116,3.418,265,3.066,888,5.524,1074,4.866]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[116,3.072,888,4.965,1622,5.199,1623,4.779,1624,4.779,1625,4.965]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.742,9,0.051,35,0.353,60,2.623,116,3.213,202,3.333,265,2.882,442,5.193,465,3.546,754,5.764,888,7.203,1074,6.346,1530,8.66,1626,8.684,1627,6.26,1628,6.26,1629,6.26]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.055,35,0.375,61,1.197,189,2.787,552,5.524]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.88,1630,8.559]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.043,29,0.785,35,0.431,64,2.03,96,3.827,99,2.903,148,2.771,167,3.597,184,1.512,214,3.514,310,3.195,346,3.656,391,6.794,525,3.393,552,8.765,601,4.823,696,1.57,756,1.869,827,3.828,886,3.073,1342,3.656,1427,4.823,1631,4.823]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.059,61,1.299,1273,4.29,1632,6.272]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,875,3.114,876,4.243,1238,3.57,1273,2.902,1555,2.94,1632,4.243,1633,4.243,1634,3.409]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.083,17,1.808,18,1.82,35,0.438,49,1.238,80,3.218,90,2.34,309,3.74,696,2.331,779,2.246,1273,4.62,1632,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.065,61,1.418,1635,6.092]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-debian/",[829,0.474]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.065,11,0.857,1635,6.092]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.839,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.039,11,0.521,49,0.763,61,0.862,89,1.465,308,3.01,895,3.503,1093,4.164,1636,4.164,1637,4.414]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1636,6.712,1637,7.116,1638,7.728]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.074,14,1.26,35,0.505,141,3.258,323,2.47,1636,9.536]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[276,4.013,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.845,341,4.193,1095,5.348,1639,5.959]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.42,155,4.252,241,2.086,308,6.489,752,5.361,786,4.176,1095,4.897,1584,7.491,1640,5.361]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[531,4.418,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.556,341,3.878,531,3.353,1095,5.065,1639,5.512]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.967,28,5.278,155,3.709,308,5.66,427,3.879,752,7.6,786,3.394,1095,6.941,1195,5.742,1199,5.107,1641,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.417,393,5.578,1023,3.499,1642,6.649]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,393,3.773,856,3.665,1023,2.367,1132,1.584]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.075,11,0.992,60,2.035,61,1.642,103,5.852,118,4.003,164,2.59,189,2.82,1006,3.458,1013,2.837,1023,3.265,1132,2.185,1264,4.924,1642,6.204,1643,6.738,1644,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.671,16,1.838,29,0.926,49,0.984,61,1.111,1273,3.67]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.839,61,1.39,1273,4.591]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.072,49,1.391,131,3.77,368,3.035,696,2.62,1273,6.974]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.857,749,3.488,764,4.371]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.13,240,0.715,241,1.334,1192,3.491,1645,4.791,1646,5.204,1647,5.204,1648,4.02]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.494,4,2.119,5,1.811,9,0.08,17,1.732,18,1.743,35,0.614,181,1.916,240,1.023,241,1.91,366,2.045]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.048,189,3.022,1474,5.578,1649,7.222]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.191,881,5.394,1650,7.728]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.05,14,0.85,17,1.405,18,1.414,35,0.341,40,3.428,49,1.558,95,4.418,100,1.812,148,1.854,296,3.591,569,5.015,696,1.812,1071,6.358,1474,7.559,1651,9.787,1652,6.046,1653,6.046]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.445,174,5.504,478,2.788]],["keywords//docs/networking/dns/common-dns-configurations/",[1484,6.712,1654,7.116,1655,7.116]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.83,29,0.922,35,0.347,42,2.037,49,1.366,169,4.442,181,1.582,213,3.985,217,4.293,378,4.679,477,3.752,478,2.175,479,4.614,756,2.195,757,2.605,1554,5.342,1656,5.663,1657,4.91,1658,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.059,31,1.402,61,1.299,177,5.04]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,276,2.486,1659,3.9,1660,4.243,1661,4.885,1662,4.885,1663,4.243,1664,4.885,1665,4.885]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.932,9,0.079,31,1.416,35,0.411,49,1.161,143,2.084,148,2.954,167,3.431,177,5.092,291,4.807,358,6.717,1666,6.717,1667,7.296]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.051,117,1.925,301,4.932,650,2.586,1668,5.366,1669,5.366]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[301,5.624,650,2.949,908,5.624,1668,6.118]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.053,11,0.705,14,0.912,49,1.417,60,1.96,61,1.167,117,2.022,136,4.454,318,2.716,1264,6.506,1308,3.391,1415,4.074,1503,4.015,1668,7.732,1670,6.491,1671,5.384,1672,5.976,1673,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[181,1.857,510,4.603,531,4.045,1077,5.277]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.405,488,4.855,531,3.626,1065,3.626,1674,5.959]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.153,5,1.398,9,0.067,16,1.71,29,0.861,35,0.618,65,1.737,191,4.534,240,0.79,243,2.131,255,3.061,324,2.015,531,3.221,696,1.723,779,1.66,1065,5.334,1151,3.858,1509,4.994,1675,4.314,1676,4.994,1677,5.75]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.341,5,1.502,35,0.348,191,4.769,1065,3.461]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[488,5.285,1065,3.946,1674,6.486,1678,7.045]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.494,4,2.119,5,1.811,9,0.061,35,0.55,191,5.412,255,3.966,324,2.61,1065,6.103,1675,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.071,177,6.063]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.058,65,2.832,90,3.18,118,4.162,150,3.596,190,5.31,330,3.079,542,6.084,608,4.998,674,5.811,718,5.811,1680,7.006,1681,7.006,1682,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.051,164,1.752,189,2.586,258,3.539,1160,2.383,1169,3.144]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.081,117,1.735,164,1.579,241,1.427,1160,2.147,1169,2.833,1683,2.618]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.072,29,0.955,31,2.106,35,0.567,41,4.547,42,2.11,47,2.243,80,2.637,181,1.639,241,2.254,366,1.75,399,1.565,1160,3.39,1684,4.781]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[650,3.636,921,6.935]],["keywords//docs/platform/network-helper/",[550,2.883,623,3.266,642,4.445,650,3.346,1685,5.568,1686,5.568]],["toc//docs/platform/network-helper/",[11,0.668,29,0.922,35,0.347,61,1.106,103,5.342,148,1.887,164,1.744,283,4.614,368,2.136,391,4.206,513,3.985,650,3.59,921,6.848,1132,1.995,1264,6.269,1308,3.214,1406,5.663,1430,5.663,1503,3.805,1671,5.102,1687,5.342,1688,6.151]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.874,61,0.971,189,2.26,244,2.419,550,2.796,667,3.293,1199,4.17,1689,4.31]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,531,2.915,667,3.174,668,3.132,669,3.803,1162,3.429,1689,4.154,1690,4.791]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.059,9,0.078,20,4.193,45,3.182,46,3.141,89,2.184,244,3.203,532,3.805,667,4.36,696,2.142,1199,5.521,1689,9.082]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.047,14,0.81,61,1.036,189,2.412,550,2.984,667,3.515,1689,4.6]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,531,2.915,550,2.695,667,3.174,668,3.132,669,3.803,1162,3.429,1690,4.791]],["toc//docs/websites/cms/drush-drupal/",[0,1.1,9,0.076,14,0.771,29,0.821,49,1.259,114,4.006,116,2.814,148,1.681,156,2.506,276,2.789,303,1.342,318,2.294,324,2.77,392,4.823,532,2.919,667,3.344,696,1.643,827,4.006,1005,6.311,1264,4.006,1472,3.826,1689,8.102,1691,5.482]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[164,1.888,189,2.787,240,0.915,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-apache2-centos/",[240,0.715,675,1.947,1132,1.688,1692,3.559,1693,4.791,1694,4.52,1695,5.204,1696,3.429]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.671,61,1.111,240,0.849,550,3.199,675,2.312,766,2.323]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.565,61,0.936,240,0.715,675,1.947,701,2.604,1692,3.559,1697,4.791,1698,4.791]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.784,764,4.002,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.839,1023,3.745,1192,5.185]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.055,11,0.992,15,4.055,16,2.004,42,2.231,74,3.317,89,2.059,100,2.02,141,2.45,510,4.295,571,4.23,967,5.589,1006,3.458,1023,5.021,1176,3.317,1177,5.589,1699,2.906]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.047,31,1.119,61,1.036,189,2.412,766,2.167,1336,4.451,1555,3.468]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.893,1133,3.453,1135,3.555,1336,3.555,1555,2.77,1634,3.212,1663,3.997,1700,4.603,1701,4.238,1702,3.818]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.061,16,1.492,31,1.438,60,1.515,61,0.902,65,1.515,89,1.532,148,1.538,155,2.063,156,2.293,202,3.944,233,2.309,243,1.858,265,2.309,330,2.204,378,2.376,519,3.059,549,4.16,613,4.16,673,2.411,696,1.503,751,2.509,766,3.659,786,4.521,886,2.942,1135,3.873,1336,7.515]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1018,3.828]],["title//docs/websites/cms/cms-overview/",[90,2.173,323,1.99,702,3.555,877,5.277]],["keywords//docs/websites/cms/cms-overview/",[531,3.119,550,2.883,667,3.396,668,3.351,669,4.069,1162,3.669,1703,5.126]],["toc//docs/websites/cms/cms-overview/",[45,3.387,46,3.344,89,2.325,90,2.29,323,2.097,531,5.547,629,6.609,667,6.04,669,7.236,702,3.746,1199,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[397,5.028,1704,6.85,1705,7.262]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1704,4.52,1705,4.791]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.387,60,2.159,240,1.305,397,6.057,485,5.521,721,3.606,1045,2.688,1047,5.223,1576,3.769,1704,9.271,1706,7.148,1707,6.581,1708,7.148]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[148,2.419,1022,5.393,1709,6.092]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.078,14,1.327,696,2.83,1709,8.754]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.047,11,0.626,62,2.814,244,2.582,464,2.73,734,3.565,1715,5.005]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[464,3.337,734,4.358,1715,6.118,1716,7.045]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.079,17,1.359,18,1.368,35,0.329,90,1.759,148,1.793,232,4.515,244,4.305,399,1.435,464,2.769,643,2.619,676,2.569,734,3.616,1006,3,1264,4.271,1657,4.666,1658,4.666,1715,9.946,1717,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.047,11,0.626,49,0.917,171,3.797,330,2.532,757,2.44,1718,5.005]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[756,2.758,757,3.273,1718,6.712]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.044,49,0.859,60,1.63,155,2.221,183,4.908,240,0.741,320,2.847,324,1.891,364,3.768,368,1.875,380,3.768,477,3.293,696,1.618,757,2.286,766,2.94,936,3.557,961,4.05,1253,7.1,1254,7.338,1481,8.463,1718,4.688,1719,4.478,1720,5.398,1721,5.398,1722,5.398]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.417,856,5.417,1023,3.499,1723,6.649]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,856,3.665,1023,2.367,1132,1.584,1723,4.498]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.041,11,0.545,61,0.902,73,3.762,117,1.562,164,1.422,856,7.787,1006,2.574,1023,2.43,1132,1.626,1308,2.62,1503,3.102,1671,4.16,1687,4.355,1724,10.381,1725,10.381,1726,5.015,1727,5.015,1728,5.015,1729,5.015,1730,5.015,1731,5.015,1732,5.015,1733,5.015,1734,5.015,1735,5.015]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.654,458,4.867]],["keywords//docs/platform/linode-images/",[458,4.794,1736,8.559]],["toc//docs/platform/linode-images/",[47,3.155,90,2.697,458,6.65,1470,7.155,1737,8.963]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.341,31,1.199,61,1.111,189,2.586,1555,3.718,1738,5.366]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.529,31,1.368,1634,4.917,1738,6.118]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.583,9,0.079,14,1.026,31,1.87,35,0.411,47,2.568,65,2.203,141,2.652,243,2.703,422,3.359,696,2.187,1738,9.365]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.051,11,0.671,764,3.424,1202,4.772,1298,5.689,1299,5.366]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.13,30,2.244,31,1.01,116,2.671,452,2.719,1189,3.132,1202,4.02,1203,4.02]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.445,9,0.08,16,1.768,29,0.89,30,2.563,31,1.154,47,2.092,65,1.795,141,2.161,171,3.916,181,1.529,243,2.202,281,2.646,303,1.455,323,2.308,366,1.632,416,4.745,452,3.106,647,3.33,1202,8.572]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.936,638,5.524,1050,5.524,1479,5.144,1739,5.784]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1479,4.999,1739,5.621,1740,4.517,1741,5.621,1742,5.621]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.049,11,0.406,14,0.832,17,0.869,18,0.875,29,0.887,35,0.211,43,2.167,49,0.595,61,0.672,117,1.165,119,3.43,121,3.443,122,3.443,123,1.903,131,1.613,164,1.06,336,3.561,355,1.593,368,1.299,427,2.194,433,2.347,456,3.899,508,2.095,519,2.281,550,1.936,618,3.515,639,1.449,661,3.102,672,1.991,673,1.798,708,2.985,732,2.464,1048,2.985,1132,1.213,1263,2.142,1308,1.954,1739,8.8,1740,2.61,1743,2.557,1744,3.443,1745,3.74,1746,5.448,1747,3.74,1748,5.448,1749,3.74,1750,3.74]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.059,61,1.299,330,3.173,1751,6.272]],["keywords//docs/applications/messaging/install-znc-debian/",[1751,5.621,1752,6.473,1753,6.473,1754,6.473,1755,6.473]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.061,17,1.732,18,1.743,35,0.42,131,3.213,136,3.727,219,4.608,318,3.118,675,2.787,766,2.801,786,3.823,1751,8.481,1756,7.45,1757,7.45]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.015,180,4.09,752,4.758,756,2.577]],["keywords//docs/email/using-google-apps-for-email/",[1758,7.728,1759,7.728,1760,7.728]],["toc//docs/email/using-google-apps-for-email/",[0,1.845,378,4.357,477,5.61,886,5.395,1005,7.342,1719,7.628]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.407,117,2.25,623,4.237,1417,4.29]],["keywords//docs/networking/linux-static-ip-configuration/",[207,4.591,642,6.17,1417,4.591]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.335,60,1.795,61,1.069,112,3.164,117,1.852,131,2.563,164,2.375,189,2.488,207,3.531,372,0.855,397,3.789,433,3.731,650,2.488,751,2.974,918,4.241,921,4.745,1013,2.502,1132,1.928,1308,3.106,1355,5.162,1417,3.531,1503,3.677,1671,4.93,1761,5.944]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.626,42,1.908,47,2.028,1317,4.6,1373,4.211,1699,2.485,1762,4.451]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[240,0.632,241,1.18,906,2.7,1317,3.674,1373,3.363,1377,3.997,1488,3.674,1762,3.555,1763,3.033,1764,4.603]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.683,9,0.087,16,1.375,29,0.692,35,0.565,64,1.791,65,1.396,74,2.275,100,1.385,231,3.297,243,1.712,244,2.07,255,2.46,258,2.647,323,1.273,324,1.619,357,3.689,513,2.993,523,3.689,696,1.385,749,2.044,752,3.045,780,2.257,886,2.711,906,2.711,1373,5.093,1762,6.481,1765,4.621,1766,4.254,1767,4.621]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.971,189,2.26,240,0.741,241,1.384,368,1.875,1237,4.478,1555,3.249,1768,4.478]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[240,0.889,241,1.659,1069,5.621,1160,2.496,1242,5.959]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.065,35,0.574,240,1.092,241,2.882,318,3.329,496,6.143,1237,8.451,1768,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.772,16,1.981,29,0.998,61,1.197,63,4.554]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.666,4,1.405,5,1.574,61,1.164,1506,5.959]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.818,9,0.056,14,0.966,35,0.387,49,1.094,131,2.963,185,3.303,303,1.681,319,4.25,324,2.407,940,4.25,941,3.657,942,3.098,1769,6.87]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.055,35,0.375,61,1.197,834,5.144,1770,6.66]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.529,61,1.267,834,5.441,1321,6.118]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.808,9,0.086,35,0.591,372,1.198,696,2.496,834,8.103,1344,1.233]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.304,43,3.129,49,0.859,757,2.286,1045,2.03,1047,3.945,1640,3.557]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[756,2.309,757,2.741,1045,2.434,1047,4.73,1634,4.517]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.354,9,0.046,19,2.937,29,1.198,35,0.527,49,0.886,60,1.682,100,1.669,148,1.708,180,3.154,303,1.363,473,3.496,696,1.669,752,3.669,942,3.606,1045,3.517,1046,4.619,1047,4.069,1048,4.446,1049,5.127,1050,4.619,1153,4.177,1771,4.301,1772,5.569,1773,5.569]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.065,35,0.445,1774,6.85]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.565,61,0.936,158,3.219,164,1.476,587,4.791,1132,1.688,1321,4.52,1774,4.52]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.078,35,0.532,60,2.852,671,6.9,1774,8.201]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.278,117,2.075,708,5.316,1775,5.784,1776,5.524]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[226,3.293,1516,4.855,1777,6.473,1778,6.473,1779,6.473]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.864,61,1.43,74,3.915,117,2.478,164,2.255,708,6.349,1132,2.579,1308,4.156,1503,4.92,1517,4.993,1775,6.907,1776,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1018,3.828]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.15,749,3.194,1132,2.342,1780,6.649]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[749,2.647,1132,1.941,1781,5.986,1782,4.374,1783,4.491,1784,5.986]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[829,0.474]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.761,368,2.001,618,3.423,779,1.664,1087,3.468,1456,4.6]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,643,2.495,875,3.549,1785,4.618,1786,5.568,1787,5.126,1788,5.126]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.586,89,1.649,368,1.875,618,3.207,779,1.559,1087,3.249,1456,4.31,1699,2.328]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.65,643,2.682,1763,3.944,1785,4.965,1787,5.512,1788,5.512]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.671,14,0.869,68,4.515,411,4.515,1091,4.635,1699,2.665]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.765,408,6.118,411,5.148,1699,3.038]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.048,35,0.329,49,0.931,68,7.022,80,2.418,89,1.786,117,2.578,119,4.797,123,4.211,131,3.569,303,1.431,336,4.981,411,8.059,618,4.917,620,4.271,637,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.239,29,0.926,164,1.752,697,2.927,1065,3.461,1789,5.366]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.156,29,0.863,61,1.036,189,2.412,697,2.73,1065,3.228,1555,3.468]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.156,11,0.626,29,0.863,697,2.73,1065,3.228,1699,2.485,1794,2.958]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.417,86,5.277,1280,5.152,1795,6.649]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1280,3.713,1795,4.791]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.065,11,0.864,46,3.495,61,1.43,86,5.811,118,4.725,156,3.636,164,2.255,303,1.946,766,2.991,1132,2.579,1796,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.055,11,0.723,757,2.82,971,4.245,1699,2.872]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,0.999,11,0.5,482,3.555,756,1.642,757,1.949,1045,1.731,1371,3.997,1576,2.427,1699,1.985,1797,2.847]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.063,29,1.14,35,0.429,60,2.991,311,2.78,318,3.185,345,5.429,482,7.648,696,2.281,1371,6.609,1797,6.126]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[829,0.474]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.809,100,1.618,181,1.389,240,1.074,366,1.482,1297,4.971,1798,5.399]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.5,61,0.828,100,1.38,164,1.305,1023,2.23,1132,1.493,1308,2.405,1497,4.238,1503,2.847,1799,4.603]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.27,35,0.341,61,1.087,100,2.54,101,2.864,181,2.18,198,3.984,231,4.313,240,0.83,244,2.709,287,4.67,366,2.327,392,3.688,456,3.984,608,4.313,672,3.219,869,4.67,1023,2.93,1792,5.015,1800,5.566]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.156,14,0.81,33,2.412,164,1.634,199,2.653,1789,5.005,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.709,164,1.835,199,2.98,1789,5.621,1801,4.999]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.156,11,0.626,14,0.81,33,2.412,199,2.653,1699,2.485,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.65,33,2.505,199,2.756,550,3.1,1699,2.582,1801,4.624]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[829,0.474]],["title//docs/platform/billing-and-payments/",[1025,6.348,1027,6.517]],["keywords//docs/platform/billing-and-payments/",[1025,6.254,1027,6.42]],["toc//docs/platform/billing-and-payments/",[2,2.367,22,2.712,42,2.241,84,3.335,89,2.504,100,1.333,133,3.688,156,2.033,181,1.144,238,2.75,372,0.974,377,2.676,398,2.414,422,2.047,465,2.518,486,3.335,608,3.172,639,1.723,748,5.878,1022,4.628,1024,3.861,1025,6.695,1027,5.078,1077,3.249,1111,3.861,1344,0.658,1717,3.688,1803,4.446,1804,4.446,1805,3.434,1806,4.094,1807,4.446,1808,3.434,1809,3.861,1810,5.878,1811,3.688]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.554,236,5.524,633,4.468,1812,5.784]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1812,7.433,1813,8.559]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.395,49,1.493,136,4.691,148,2.149,318,3.924,323,1.93,475,4.216,647,5.252,650,2.932,696,2.1,1812,9.178]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.714,29,0.863,89,1.761,588,5.306,643,2.582,1086,3.301,1814,5.763]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.709,1086,5.091,1815,5.959,1816,6.473]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.314,29,1.165,49,1.238,117,2.423,119,4.508,123,3.957,336,4.681,396,5.835,416,6.209,618,4.62,696,2.331,1517,4.882,1815,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.624,494,6.935]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.475,89,1.492,164,1.385,264,3.773,265,2.249,494,3.9,1817,4.498]],["toc//docs/platform/package-mirrors/",[11,0.864,29,1.776,61,1.43,65,2.402,164,2.255,323,3.098,494,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.199,61,1.111,189,2.586,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.551,9,0.088,29,1.071,31,1.845,65,2.159,80,2.957,243,2.649,311,2.611,318,2.991,399,1.755,460,4.569,699,5.382]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.876,9,0.042,31,0.986,61,0.913,117,1.582,241,1.302,258,2.909,263,2.704,1169,2.584]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.583,5,1.774,9,0.079,17,1.696,18,1.707,31,1.416,35,0.411,47,2.568,49,1.717,143,2.084,241,1.87,346,5.092,1160,2.813]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,1169,3.388,1555,4.008]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.491,5,1.67,9,0.086,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,399,1.687,696,2.059,1160,2.649]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.988,469,4.758,819,4.533,1067,5.578]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.703,61,1.164,550,3.352,819,4.063,1067,4.999]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.888,18,0.894,35,0.55,41,2.726,60,1.154,89,1.167,92,3.318,99,2.117,143,1.091,204,4.294,214,2.563,307,2.563,309,1.837,310,2.33,318,1.599,391,2.612,475,2.299,510,2.435,702,2.962,819,6.645,1067,8.413,1068,4.398,1077,2.792,1340,3.05,1820,3.821,1821,4.992,1822,3.169,1823,3.821,1824,3.821,1825,3.821,1826,4.398,1827,3.318,1828,3.821]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[164,1.888,184,1.923,1013,2.804,1045,2.504,1829,5.784]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[184,2.034,1045,2.649,1364,4.422,1829,6.118]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.07,21,4.944,60,2.576,274,6.233,297,6.588,565,7.075,696,2.557,1829,7.408,1830,6.086]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,1699,2.485,1794,2.958]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.652,9,0.081,17,1.769,18,1.78,31,1.922,80,3.148,311,2.78,318,3.185,460,4.762,699,5.609]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.055,35,0.375,164,1.888,1013,2.804,1831,3.48]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.529,164,1.997,215,5.026,1831,3.681]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.085,17,1.891,18,1.904,35,0.459,60,2.457,306,5.679,675,3.044,1831,5.937]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[110,4.196]],["keywords//docs/applications/containers/what-is-docker/",[11,0.703,110,2.809,112,3.446,164,1.835,1699,2.791]],["toc//docs/applications/containers/what-is-docker/",[9,0.061,11,0.809,31,1.446,110,3.233,164,2.112,178,5.315,179,5.199,291,4.908,372,1.072,830,5.443,1013,3.136,1344,1.103,1699,3.213,1832,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[829,0.474]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.055,31,1.293,61,1.197,189,2.787,1555,4.008]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.01,61,0.936,199,2.396,701,2.604,1633,4.52,1634,3.632,1663,4.52,1833,5.204]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.213,9,0.08,29,0.906,31,2.059,40,2.446,61,1.087,64,2.343,90,1.819,100,1.812,101,2.864,184,1.746,265,2.783,303,1.48,330,2.657,399,1.484,696,1.812,779,1.746,837,3.875,1028,2.285,1834,3.13]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,1780,5.689]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1835,7.728,1836,5.969,1837,6.41]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[829,0.474]],["title//docs/platform/api/api-key/",[129,5.724,233,3.999]],["keywords//docs/platform/api/api-key/",[233,3.558,1838,7.728,1839,7.116]],["toc//docs/platform/api/api-key/",[377,6.179,751,5.136]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.654,470,6.198]],["keywords//docs/platform/linode-cli/",[1839,6.486,1840,7.045,1841,7.045,1842,7.045]],["toc//docs/platform/linode-cli/",[9,0.062,11,0.813,14,0.715,61,1.346,89,1.554,100,1.525,117,1.585,119,4.339,129,3.352,169,2.634,233,2.342,318,3.718,324,1.782,336,4.506,378,2.41,424,3.147,465,2.881,470,6.338,527,4.22,618,4.447,647,2.85,1132,1.65,1151,3.413,1800,4.684,1843,5.087,1844,5.087,1845,5.087]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.567,9,0.059,164,2.048,1013,3.04]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.7,4,2.513,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[232,5.578,276,3.674,478,2.553,1846,6.649]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[276,3.932,478,2.732,1846,7.116]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.159,100,2.142,117,2.227,119,4.143,123,3.637,148,3.274,181,2.746,207,4.246,336,4.302,618,4.246,623,4.193,640,5.965]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.567,9,0.059,61,1.299,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.222,4,0.851,5,0.954,61,0.705,117,1.222,238,2.427,1457,2.585,1458,3.132,1459,3.132,1460,3.254,1461,2.799,1633,3.407,1634,2.738]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.051,11,0.671,61,1.111,62,3.017,263,3.289,1847,4.408]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.605,61,1.001,875,3.549,1847,3.972,1848,5.568,1849,4.836,1850,5.568]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.059,61,1.299,189,3.022,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1634,4.917,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[829,0.474]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.059,11,0.784,1699,3.114,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.765,1699,3.038,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[164,1.752,240,0.849,241,1.584,368,2.146,1013,2.601,1240,3.424]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[199,2.396,240,0.715,241,1.334,1240,2.884,1683,2.447,1851,3.559,1852,3.559,1853,4.52]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.07,17,1.983,18,1.996,35,0.481,240,1.463,241,2.73,1240,4.727]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,189,2.412,240,0.791,241,1.477,368,2.001,1240,3.194,1555,3.468]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.445,9,0.055,61,1.197,189,2.787,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.208,61,1.001,215,3.972,1831,2.909,1856,4.618,1857,4.618,1858,4.618]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.055,35,0.375,61,1.197,263,3.545,1831,3.48]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,0.999,61,0.828,215,3.284,241,1.18,875,2.934,1831,2.405,1856,3.818,1857,3.818,1858,3.818,1859,4.603]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.15,749,3.194,1132,2.342,1860,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1782,5.148,1783,5.285,1861,7.045,1862,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.06,143,1.902,164,1.888,240,0.915,1013,2.804]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[164,1.697,240,0.822,1015,4.779,1696,3.944,1863,3.878,1864,5.512]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,3.203,366,1.963,460,3.437,1474,5.521]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.712,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.677,51,4.591,910,5.285]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.765,5,1.63,9,0.036,11,0.477,22,2.678,35,0.458,51,2.608,61,0.79,85,3.133,101,2.08,131,3.926,226,2.234,286,2.46,296,3.983,372,0.632,398,2.384,424,2.716,780,2.144,819,2.756,1033,3.505,1059,6.101,1275,3.505,1278,3.133,1426,3.642,1443,7.55,1865,4.043,1866,3.813,1867,4.391,1868,4.391,1869,3.505,1870,3.642,1871,4.043,1872,4.391,1873,3.642]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.531,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.368,51,4.185,910,4.817,1874,7.045]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.043,11,0.569,22,3.195,31,1.754,35,0.431,49,0.834,51,3.112,61,0.942,85,5.457,101,2.481,131,2.259,202,2.789,226,2.665,286,2.934,296,3.112,385,4.182,398,2.844,424,3.24,626,5.457,639,2.03,780,2.558,1275,4.182,1426,4.345,1443,4.345,1869,4.182,1870,4.345,1873,4.345,1875,4.549,1876,4.549,1877,4.345]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[180,4.467,240,1.083,910,5.393]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.185,240,0.968,910,4.817,1878,7.045]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.038,11,0.508,22,2.856,35,0.397,49,0.745,51,2.781,61,0.842,85,5.022,101,2.218,197,2.493,202,2.493,226,2.382,240,1.162,286,2.623,296,2.781,311,1.71,385,3.738,398,2.542,424,2.896,626,3.341,639,1.815,780,2.287,1275,3.738,1426,5.838,1443,3.884,1604,4.311,1707,4.311,1865,4.311,1869,3.738,1870,3.884,1871,4.311,1873,3.884,1875,4.066,1876,4.066,1877,3.884,1879,4.682,1880,4.066,1881,4.682]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.255,749,3.488,1503,4.879]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[829,0.474]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.206,181,1.857,236,5.99,1516,5.417]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1516,5.797,1884,7.728,1885,7.728]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.051,15,3.767,16,1.862,17,1.455,18,1.465,38,2.213,45,2.787,46,2.751,49,0.997,89,1.913,141,2.276,143,1.788,258,3.586,276,4.418,378,4.114,574,7.203,673,3.01,749,2.769,756,2.234,1620,3.873,1821,5.193]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,749,2.945,1555,4.008]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.944,61,0.782,240,0.598,241,1.115,749,1.924,1496,3.609,1634,3.037,1782,3.18,1886,4.351,1887,3.779,1888,4.351]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.055,117,2.075,258,3.815,749,2.945,1308,3.48]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.896,240,0.567,241,1.058,749,1.825,1308,2.156,1488,3.294,1889,4.126,1890,4.126,1891,4.126,1892,4.126,1893,4.126,1894,3.583]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.213,4,1.84,5,1.47,9,0.08,17,1.405,18,1.414,35,0.552,49,0.962,117,2.64,155,2.487,181,1.555,192,2.803,240,1.164,241,2.173,366,1.66,673,2.907,749,2.674,1308,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.784,89,2.206,1273,4.29,1699,3.114]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.765,1273,4.185,1699,3.038,1895,6.486]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.072,16,1.896,29,0.955,35,0.567,49,1.015,100,1.91,136,3.188,141,2.317,148,1.955,167,2.997,255,3.393,323,1.756,372,0.917,927,5.088,929,3.943,1273,5.98,1344,0.944,1896,6.373]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[829,0.474]],["title//docs/development/version-control/introduction-to-version-control/",[118,4.685,124,4.627,464,3.736]],["keywords//docs/development/version-control/introduction-to-version-control/",[116,3.616,1203,5.441,1897,7.045,1898,7.045]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.055,14,0.947,16,2.004,19,3.554,29,1.009,80,2.788,116,3.458,118,6.155,142,3.775,323,1.857,464,4.908,469,4.44,1899,6.738,1900,7.932,1901,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,189,2.586,240,0.849,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.445,9,0.055,11,0.723,1699,2.872,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1763,2.867,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.445,9,0.055,11,0.723,764,3.691,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1192,2.919,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.671,49,0.984,143,1.765,1155,3.769,1699,2.665,1794,3.171]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.035,9,0.042,11,0.561,29,0.773,35,0.505,40,2.088,145,3.987,146,3.772,154,6.392,156,2.36,181,2.538,244,2.313,366,2.709,368,1.792,399,1.267,647,4.239,1155,4.616,1158,7.78,1159,4.483,1501,4.12,1768,4.281,1905,4.752]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.984,61,1.111,143,1.765,189,2.586,240,0.849,1555,3.718]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,240,0.822,1555,3.603,1634,4.178,1864,5.512,1906,5.199]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,4.258,366,1.963,460,3.437]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.586,61,0.971,189,2.26,303,1.321,721,2.724,884,3.442,1699,2.328,1794,2.771]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.565,61,0.936,447,2.695,650,2.178,721,2.625,1634,3.632,1699,2.244,1895,4.791]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.059,29,0.721,35,0.271,49,0.766,89,1.469,98,3.357,131,3.097,136,4.3,233,3.957,303,1.177,308,3.019,415,2.895,422,2.214,447,4.451,519,2.934,639,1.864,721,3.623,751,3.593,766,2.701,779,1.389,938,3.357,980,3.432,981,3.432,988,3.432,1084,3.116,1086,2.755,1279,4.428,1314,3.432,1907,3.515,1908,3.608]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[829,0.474]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.445,780,3.252,1045,2.504,1556,5.784,1576,3.512]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.677,1045,2.906,1576,4.076]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.887,16,1.215,29,0.612,35,0.23,38,2.243,46,2.787,89,1.248,119,2.368,197,2.175,219,2.528,311,1.492,320,2.155,324,2.222,335,2.368,366,1.742,368,1.419,378,3.005,510,2.605,675,1.529,676,2.787,681,3.548,773,2.986,780,1.995,886,2.397,936,2.692,1006,4.869,1045,3.295,1047,2.986,1278,2.915,1576,4.621,1580,2.492,1909,3.548,1910,3.762,1911,4.086,1912,4.086,1913,4.086,1914,4.086,1915,4.086]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.051,61,1.111,240,0.849,263,3.289,452,3.228,1188,3.289]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.064,17,1.808,18,1.82,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[219,4.879,226,4.013,620,5.763]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,219,3.444,226,2.833,303,1.363,620,4.069,1555,3.351,1916,5.568]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.378,9,0.056,16,2.043,35,0.522,61,1.664,80,2.842,219,4.25,226,4.708,311,2.509,469,4.526,513,4.45,620,5.02,633,4.608,1917,6.325,1918,6.325,1919,6.87]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[829,0.474]],["title//docs/platform/automating-server-builds/",[20,4.627,49,1.255,150,4.048]],["keywords//docs/platform/automating-server-builds/",[226,3.293,737,4.855,1523,4.618,1920,6.473,1921,6.473]],["toc//docs/platform/automating-server-builds/",[2,3.657,20,4.03,42,2.275,49,1.094,89,3.197,100,2.059,150,3.526,207,4.081,226,3.495,399,1.687,604,5.02,623,4.03,797,4.697,909,4.794,1657,5.484,1658,5.484,1922,6.87]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.255,368,2.739,757,3.34]],["keywords//docs/email/running-a-mail-server/",[1364,4.422,1659,5.624,1923,7.045,1924,7.045]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.435,35,0.215,42,1.265,49,1.626,136,3.011,150,1.961,188,4.515,205,2.563,214,2.563,266,2.726,286,2.14,368,1.327,406,3.169,422,1.759,477,4.542,478,2.128,675,1.43,757,4.722,766,1.437,773,2.792,779,1.103,1022,2.612,1253,2.951,1267,3.518,1344,0.566,1544,4.294,1640,2.517,1719,3.169,1821,3.169,1822,3.169,1918,3.518,1925,2.866,1926,3.518,1927,6.019,1928,6.019,1929,3.821]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.567,756,2.577,1045,2.715,1576,3.808]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.06,11,0.531,49,0.778,61,0.878,756,1.743,757,2.069,1045,1.837,1576,2.576,1930,4.885]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.29,9,0.069,17,1.382,18,1.391,24,2.629,35,0.335,60,2.529,65,1.795,96,2.974,207,4.975,378,3.967,478,2.101,672,4.459,675,2.224,756,3.46,766,2.235,1045,2.235,1576,3.135,1580,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.299,189,3.022,1023,3.499,1555,4.346]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1555,4.24,1931,6.486,1932,6.486,1933,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,189,2.82,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[829,0.474]],["title//docs/security/linode-manager-security-controls/",[89,2.206,90,2.173,303,1.767,464,3.421]],["keywords//docs/security/linode-manager-security-controls/",[303,1.584,934,4.73,942,2.919,1139,4.999,1934,6.473]],["toc//docs/security/linode-manager-security-controls/",[35,0.236,45,1.862,46,1.838,96,2.093,129,2.756,132,3.138,151,1.63,152,3.851,155,1.721,156,1.912,182,5.271,185,2.011,207,3.837,233,1.926,303,1.024,306,2.919,311,2.359,320,4.68,324,1.466,331,3.339,345,2.984,397,4.117,465,2.369,623,3.789,639,1.621,676,1.838,751,2.093,756,1.492,775,6.854,923,2.984,942,1.887,983,3.469,1007,3.056,1098,6.545,1139,3.231,1935,4.183,1936,4.183]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.746,16,2.346,24,3.488]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.731,21,3.751,1937,5.167,1938,6.473]],["toc//docs/security/backups/backing-up-your-data/",[2,5.932,4,0.771,8,2.479,15,3.418,16,2.412,21,2.058,29,0.851,42,1.176,49,0.904,68,2.595,69,2.835,117,1.769,119,2.058,120,2.301,123,1.807,205,2.382,226,1.807,235,1.909,296,3.374,316,2.34,330,1.561,336,2.137,355,1.513,424,2.197,511,5.482,528,2.946,591,2.835,618,2.11,805,2.743,1771,2.743,1877,2.946,1937,7.079,1939,3.27,1940,2.743,1941,4.932,1942,2.946,1943,3.27,1944,2.946,1945,3.551,1946,3.551,1947,3.551,1948,3.551]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.221,910,5.941]],["keywords//docs/platform/longview/longview/",[910,5.285,1949,7.728,1950,7.728]],["toc//docs/platform/longview/longview/",[9,0.056,24,3.022,38,1.592,100,1.35,129,2.967,136,4.132,180,2.55,226,2.291,229,2.827,233,3.146,264,3.478,286,2.522,309,2.165,310,2.747,323,1.241,424,2.786,460,2.165,650,1.885,680,3.478,780,2.199,877,3.29,886,2.642,908,3.595,910,7.136,1074,3.29,1455,3.911,1880,3.911,1951,4.503,1952,4.503,1953,4.503,1954,4.503,1955,4.503,1956,4.503,1957,4.503,1958,3.735,1959,3.911]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.654,90,2.614]],["keywords//docs/platform/linode-managed/",[934,6.254,1960,8.559]],["toc//docs/platform/linode-managed/",[9,0.061,19,2.645,29,0.751,35,0.283,42,3.722,80,2.075,89,1.532,96,2.509,184,1.448,196,4.355,233,2.309,324,1.757,377,3.018,397,4.722,415,3.018,469,3.304,643,2.247,672,4.69,941,2.67,1084,3.249,1278,5.285,1827,4.355,1876,4.355,1909,4.355,1958,4.16,1961,5.015,1962,5.015]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.051,49,0.984,117,1.925,607,3.822,643,2.768,1963,5.366]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[550,4.002,643,3.463,1963,6.712]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.071,11,0.68,61,1.126,68,4.574,89,1.913,101,2.966,117,2.705,119,3.628,123,3.185,131,2.7,141,2.276,309,3.01,336,3.767,406,5.193,528,5.193,618,3.719,643,2.805,1308,3.271,1963,9.353]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,1164,3.461,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.322,1965,6.473,1966,6.473,1967,5.959,1968,5.167]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.074,14,1.26,60,2.707,240,1.231,696,2.686,1164,6.151]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.051,11,0.671,1263,3.539,1699,2.665,1969,3.67,1970,4.003]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[550,2.383,927,3.674,1763,3.033,1969,2.734,1971,3.363,1972,3.033,1973,3.033,1974,2.982,1975,2.982,1976,4.603]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.072,29,1.31,35,0.493,57,5.26,309,4.203,696,2.62,1969,6.423]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[829,0.474]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.586,14,0.759,31,1.048,39,2.149,47,1.9,180,3.058,1296,2.796,1699,2.328]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.565,31,1.01,39,2.071,792,2.671,1296,2.695,1977,5.204,1978,5.204,1979,4.791]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.065,31,1.544,35,0.574,49,1.266,151,3.099,156,3.636,372,1.144,696,2.384,1296,5.276,1344,1.178]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.626,43,3.34,47,2.028,49,0.917,757,2.44,1699,2.485,1980,3.423]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1364,3.758,1763,3.944,1980,3.556,1981,5.986,1982,4.491,1983,4.491]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.064,29,1.165,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,399,1.91,757,4.253,1980,4.62]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.586,396,4.05,1699,2.328,1794,2.771,1964,3.093,1984,3.768,1985,3.692,1986,3.293]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[241,1.535,1683,2.815,1763,3.944,1986,3.652,1987,4.374,1988,4.965]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.081,35,0.347,64,2.384,65,1.858,100,1.844,118,3.654,184,1.776,303,1.505,330,2.703,561,4.389,639,2.384,696,1.844,779,1.776,837,2.812,1028,2.324,1986,7.101,1989,5.663,1990,6.151]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,169,2.984,1699,2.485,1991,3.194]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[240,0.889,1155,3.948,1991,3.587,1992,4.73,1993,4.618]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.723,42,2.205,184,1.923,1183,3.956,1699,2.872]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[199,2.003,345,3.105,550,2.253,643,1.95,1047,3.18,1183,2.585,1342,3.037,1763,2.867,1926,4.006,1994,4.351,1995,4.006]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.059,35,0.403,45,3.182,46,3.141,143,2.041,302,3.88,345,6.78,355,3.045,639,2.77,756,2.55,1183,5.645,1342,4.988,1640,4.71,1740,4.988,1996,6.581]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.626,756,2.056,1176,2.837,1699,2.485,1794,2.958,1964,3.301,1997,3.423]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1997,3.845,1998,6.473,1999,6.473,2000,4.426,2001,4.855]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.058,29,1.05,311,2.559,368,3.256,372,1.008,399,1.72,696,2.1,923,4.998,942,3.16,971,4.466,1344,1.037,1620,4.334,1797,4.334,1997,6.278,2002,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.626,756,2.056,764,3.194,1176,2.837,1299,5.005,1997,3.423,2003,5.763]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1997,3.845,2000,4.426,2001,4.855,2004,6.473,2005,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.06,29,1.093,311,2.665,368,3.345,399,1.791,696,2.187,923,5.205,942,3.291,971,4.651,1620,4.513,1797,4.513,1997,6.406,2002,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.586,31,1.048,1160,2.082,1176,2.658,1699,2.328,1794,2.771,1819,2.658,1964,3.093]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.256,1519,3.797,2006,4.999,2007,5.621,2008,4.517]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.234,9,0.051,19,4.524,29,0.922,35,0.602,60,1.858,65,1.858,126,5.652,167,2.893,181,1.582,243,2.279,311,2.247,366,1.689,399,1.51,478,2.175,532,3.275,1160,2.372,1415,3.861,1521,3.805,1819,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,240,0.697,241,1.302,368,1.764,1176,2.5,1240,2.815,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.626,14,0.81,245,3.565,1263,3.301,1970,3.733,2009,3.381,2010,5.763]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1971,3.015,1973,2.719,1974,2.673,1975,2.673,2009,2.421,2011,4.126,2012,4.126,2013,3.095,2014,2.719,2015,2.218,2016,4.126,2017,4.126]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.054,14,0.929,35,0.373,38,2.338,156,3.023,181,1.701,290,3.879,324,2.317,335,3.832,366,1.815,399,1.624,478,2.338,713,3.832,780,3.229,2009,6.02,2015,3.554,2018,4.96,2019,4.615,2020,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.723,140,3.512,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.574,883,3.265,2021,6.473,2022,6.473,2023,4.618]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.07,24,2.72,35,0.347,64,2.384,90,2.581,101,2.914,140,6.139,141,2.236,157,3.805,191,3.409,235,3.306,323,1.695,368,2.136,404,3.921,508,3.446,1065,3.446,2024,6.12]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1301,3.86,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.047,11,0.626,31,1.119,1176,2.837,1699,2.485,1794,2.958,1964,3.301]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.605,31,1.081,199,2.563,701,2.786,2007,4.836,2027,5.568,2028,5.568]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.097,17,1.629,18,1.639,31,2.191,60,2.116,101,3.319,265,4.316,330,3.079,2029,7.006,2030,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2031,3.815]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.962,11,0.521,14,0.674,394,3.346,1699,2.068,1794,2.461,1964,2.746,2035,3.159,2036,3.106,2037,4.414]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.586,184,1.559,323,1.488,676,2.373,1465,3.093,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2038,3.652]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.605,116,2.858,454,3.351,1819,2.741,1988,4.618,2032,3.351,2038,3.054]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.126,42,1.682,240,0.697,312,2.232,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.626,14,0.81,184,1.664,743,4.111,1699,2.485,1940,4.451,2045,4.111]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.65,1763,3.944,2045,4.271,2046,5.199,2047,4.965,2048,5.986]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.076,14,0.966,29,1.029,35,0.522,136,3.437,265,3.162,281,3.058,311,2.509,386,4.901,575,4.312,696,2.059,1340,5.484,2045,6.602,2047,5.698,2049,5.306,2050,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.586,49,0.859,143,1.542,240,0.741,1176,2.658,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.565,240,0.715,550,2.695,701,2.604,1763,3.429,1794,2.671,1906,4.52,2051,5.204]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.089,17,1.696,18,1.707,35,0.411,40,3.896,181,1.876,240,1.481,244,3.269,366,2.003,460,3.508,1474,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,276,2.932,1699,2.485,2052,3.16]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1763,4.265,1863,4.193,1988,5.369,2052,3.55,2053,6.473]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2054,3.772]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2056,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.671,14,0.869,49,0.984,143,1.765,1699,2.665,2052,3.389]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[643,2.189,1763,3.219,1863,3.165,1988,4.052,2052,2.679,2057,4.885,2058,3.9,2059,4.885,2060,3.57]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.042,11,0.552,31,0.986,120,3.29,241,1.302,1160,1.958,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.01,241,1.334,1160,2.007,1519,3.053,1520,3.491,2007,4.52,2061,5.204,2062,5.204]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,1169,3.144,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.19,5,1.333,9,0.065,11,0.595,29,0.821,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,399,1.346,779,1.583,837,2.506,1028,2.072,1160,2.114]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.528,509,3.056,756,1.812,1699,2.19,1743,3.473,1794,2.607,1964,2.909,2063,3.098]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.626,42,1.908,473,3.617,478,2.037,1699,2.485,2065,4.111,2066,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.65,478,2.116,650,2.505,2066,3.283,2067,5.986,2068,5.986]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.326,9,0.054,29,0.991,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,398,3.59,399,1.624,779,1.909,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.586,14,0.759,24,2.388,158,3.34,192,2.503,1699,2.328,2071,2.902,2072,3.852]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.703,883,3.265,2071,3.479,2073,4.618,2074,5.369]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,197,2.552,478,1.695,1176,2.36,1699,2.068,1794,2.461,1964,2.746,2075,2.552,2076,3.278]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.172,5,1.313,11,0.586,47,1.9,1053,2.931,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.405,1457,4.265,1763,4.265,2080,4.999,2081,4.73]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.742,4,2.541,5,1.522,9,0.051,47,2.203,49,0.997,96,3.132,195,4.055,319,3.873,324,2.193,696,1.876,936,4.125,940,3.873,941,4.623,942,2.824,977,4.369,1056,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.567,9,0.059,11,0.784,764,4.002]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.896,11,0.448,117,1.285,1192,2.768,1457,2.719,1459,3.294,1461,2.944,2082,4.126,2083,4.126,2084,4.126,2085,4.126,2086,4.126]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,1699,2.328,1794,2.771]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.063,35,0.429,49,1.576,80,3.148,156,3.479,290,4.464,372,1.095,571,4.777,697,5.523,1344,1.127]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.502,11,0.671,14,0.869,30,2.665,1053,3.354,1699,2.665]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.791,1054,5.167,1055,3.948,1152,4.342,1763,4.265]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.038,5,2.165,9,0.073,29,0.972,30,4.383,35,0.366,185,3.121,209,4.205,303,1.589,324,2.274,639,2.516,942,2.927,1056,3.718,1060,4.277,2087,5.013,2088,5.013]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.044,11,0.586,49,0.859,1699,2.328,1794,2.771,1964,3.093,2015,2.902,2089,3.167]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2015,3.218,2089,3.512,2090,5.986,2091,4.491,2092,4.491,2093,4.491]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.061,14,1.047,35,0.42,49,1.186,265,3.429,266,5.315,311,2.721,478,2.634,672,3.966,779,2.151,2015,4.004,2020,4.826,2089,5.729,2094,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,749,2.733,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.06,11,0.531,240,0.671,241,1.252,749,2.16,1488,3.9,2095,3.773,2096,4.885,2097,4.885]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.255,184,2.277,1944,6.542]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.369,184,2.566,872,5.369,1944,5.369]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.037,14,0.961,35,0.385,65,1.36,69,3.595,74,2.216,80,1.863,89,2.523,90,2.485,96,2.253,100,2.476,184,2.385,323,1.241,469,2.967,510,2.87,515,3.213,640,2.827,676,3.63,756,1.607,779,1.3,805,3.478,909,4.77,910,3.079,1023,2.182,1177,3.735,1334,4.146,1342,3.143,1355,3.911,1657,3.595,1658,3.595,1877,3.735,1939,4.146,2098,4.503]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.255,184,2.277,2099,6.85]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[184,2.034,1615,7.513,2099,6.118]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.187,4,1.284,9,0.086,14,0.526,29,0.56,35,0.513,49,0.595,64,1.449,65,1.129,80,3.038,88,2.668,96,2.961,143,1.068,148,1.815,181,0.962,184,1.08,188,4.439,240,0.514,241,1.517,296,2.221,302,2.03,324,2.073,330,1.643,372,0.538,561,2.668,637,2.221,672,1.991,676,1.643,696,1.121,837,3.357,885,2.423,1344,0.554,1880,3.248,1989,3.443,2099,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[829,0.474]],["title//docs/applications/social-networking/dolphin/",[2100,8.397]],["keywords//docs/applications/social-networking/dolphin/",[2100,6.712,2101,6.17,2102,7.116]],["toc//docs/applications/social-networking/dolphin/",[4,1.073,5,1.202,9,0.089,16,1.471,29,0.741,35,0.413,40,2,49,0.787,64,1.916,100,1.482,231,3.528,241,2.24,244,2.215,324,1.732,368,1.717,392,4.472,672,2.632,676,2.173,696,1.482,734,3.059,756,1.764,793,3.381,895,3.613,927,3.947,2100,8.962,2103,4.945]],["deprecated//docs/applications/social-networking/dolphin/",[597,0.698,826,0.639,829,0.087,2102,2.151,2104,0.875,2105,0.875,2106,0.875]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.619,14,0.936,90,2.004,378,3.155,1120,4.062]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,0.999,5,1.119,479,3.453,1120,2.808,1831,2.405,2107,4.603,2108,4.603,2109,4.603,2110,4.603,2111,4.603]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.56,4,1.688,5,2.442,90,3.022,155,3.199,324,2.725,378,5.269,479,5.835,2112,7.778]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.055,49,1.06,117,2.075,2113,5.784,2114,6.131]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2113,6.118,2115,7.045,2116,7.045,2117,7.045]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.07,35,0.484,64,3.325,80,3.549,330,2.703,779,1.776,2113,10.75,2114,5.663,2118,10.688,2119,6.151]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.674,643,3.236,885,4.678,938,5.04]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.932,643,3.463,885,5.007]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.234,80,2.545,89,1.879,123,3.13,141,2.236,226,5.923,229,3.861,234,4.495,337,4.389,528,5.102,637,3.654,690,4.389,885,3.985,886,5.033,1101,5.663,1117,4.495,1744,5.663,2120,5.342,2121,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.674,465,4.09,885,4.678,1771,5.578]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.932,1516,5.797,2122,7.728]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.742,35,0.353,89,3.046,96,3.132,141,3.157,226,5.479,229,3.93,330,2.751,513,4.055,637,5.923,885,4.055,886,3.673,1117,4.574,2120,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.784,1023,3.499,1699,3.114,1794,3.706]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.839,1023,3.745,1794,3.967]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.05,11,1.063,15,3.638,16,1.798,42,2.002,74,2.976,80,2.501,89,1.847,100,1.812,141,2.198,354,4.313,510,3.854,571,3.795,732,3.984,967,5.015,1006,3.103,1023,5.14,1176,2.976,1177,5.015,2123,2.691,2124,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[829,0.474]],["title//docs/troubleshooting/rescue-and-rebuild/",[1117,6.348,2125,7.206]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1117,6.254,2125,7.099]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.965,8,3.887,9,0.046,65,1.682,80,3.308,89,1.701,131,2.402,148,1.708,226,2.833,229,5.019,323,2.203,368,1.934,433,3.496,515,3.973,633,3.736,637,3.308,643,2.495,938,3.887,941,2.965,1006,2.858,1117,6.835,1552,5.127,2125,4.619,2126,4.836,2127,5.127,2128,5.569]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.255,89,2.41,1516,5.916]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2129,7.728,2130,7.728,2131,7.728]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.518,29,0.773,34,3.602,35,0.556,42,1.709,89,2.312,96,2.582,120,3.344,141,1.876,148,1.583,157,3.193,190,2.923,207,3.066,226,4.558,229,3.24,310,3.148,415,3.106,513,3.344,571,3.24,623,3.028,633,3.463,637,4.495,885,3.344,961,3.872,986,4.752,1022,3.529,1117,3.772,1327,4.752]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[829,0.474]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.445,226,4.013,513,5.109]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[226,4.355,2132,8.559]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.724,9,0.04,14,1.01,35,0.603,80,1.99,101,2.279,117,1.498,226,5.642,255,2.561,377,4.322,469,3.169,513,6.932,568,4.177,640,3.019,896,3.608,960,3.99,983,3.99,1074,3.515,1917,4.428,2133,4.428,2134,4.81]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1014,6.649,1025,5.277,1026,5.99,1027,5.417]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1025,4.374,1026,4.965,1027,4.491,1809,5.199,1810,5.199,2135,5.986]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.073,100,1.876,133,5.193,372,0.901,377,3.767,422,2.882,465,3.546,608,4.466,639,2.426,1025,6.346,1026,5.193,1027,6.514,1111,5.437,1806,5.764,1808,4.835,1809,5.437,1810,7.542,1811,5.193,2136,6.26,2137,6.26,2138,6.26]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[829,0.474]],["title//docs/troubleshooting/troubleshooting/",[780,4.722]],["keywords//docs/troubleshooting/troubleshooting/",[780,4.683]],["toc//docs/troubleshooting/troubleshooting/",[5,0.777,14,0.449,35,0.18,49,0.509,89,2.905,90,1.57,96,1.6,120,2.071,131,1.379,143,0.913,148,1.6,155,2.146,156,1.462,158,1.978,167,1.504,173,2.145,175,2.281,181,0.822,207,1.899,226,2.655,276,1.627,300,2.232,324,1.12,335,3.024,346,3.641,366,0.878,368,1.812,372,0.46,398,1.736,433,2.007,448,2.944,465,1.811,477,1.95,478,1.13,620,2.336,623,1.876,643,1.433,650,1.338,672,1.702,676,1.405,905,2.281,942,2.353,1048,2.553,1389,2.777,1444,2.777,1710,4.165,1805,2.47,1866,2.777,2139,3.197,2140,3.197,2141,2.777,2142,3.197,2143,3.197,2144,3.197,2145,3.197,2146,3.197,2147,3.197,2148,3.197,2149,2.944,2150,3.197,2151,3.197,2152,3.197,2153,3.197]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[465,4.92,942,3.919]],["keywords//docs/platform/accounts-and-passwords/",[90,2.12,465,3.99,934,5.148,942,3.178]],["toc//docs/platform/accounts-and-passwords/",[29,0.785,45,2.332,46,2.302,89,2.337,90,2.301,100,1.57,207,4.544,324,3.166,372,1.1,377,3.152,392,4.666,433,4.802,672,2.789,756,2.729,940,4.732,941,2.789,942,4.481,1048,4.182,1958,6.344,2002,3.828,2126,4.549]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[460,4.65]],["keywords//docs/platform/support/",[460,3.388,2154,7.045,2155,7.045,2156,7.045]],["toc//docs/platform/support/",[89,2.81,297,7.103,460,4.422,696,2.756,1958,7.628,2157,9.197]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.068,14,0.81,24,2.549,42,1.908,89,1.761,303,1.41,1544,4.111]],["keywords//docs/platform/linode-backup-service/",[2158,4.885,2159,4.885,2160,4.885,2161,4.885,2162,4.885,2163,4.885,2164,4.885,2165,4.885,2166,4.885]],["toc//docs/platform/linode-backup-service/",[2,6.123,8,6.415,42,2.589,89,2.808,90,1.624,92,4.688,96,2.701,311,1.972,379,3.851,398,2.931,422,2.485,424,3.339,502,4.97,565,4.478,604,3.945,637,3.207,748,6.79,1077,3.945,1717,4.478,1811,4.478,2167,5.398]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[181,2.235,276,4.42]],["keywords//docs/websites/hosting-a-website/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/websites/hosting-a-website/",[0,0.965,4,1.559,5,2.09,9,0.071,29,0.721,32,3.066,35,0.271,49,0.766,60,1.453,89,2.626,143,1.374,148,1.475,155,1.979,181,1.237,192,2.23,240,0.986,241,2.203,276,2.447,334,5.877,366,1.321,477,2.934,478,2.539,567,7.913,603,3.169,673,2.313,690,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.383,303,2.126]],["keywords//docs/security/securing-your-server/",[303,2.06,309,2.879,643,2.682,2168,5.986,2169,5.986]],["toc//docs/security/securing-your-server/",[0,0.87,11,0.471,14,0.61,35,0.244,42,2.995,45,1.93,46,1.906,61,0.78,100,1.991,155,1.784,164,1.23,233,1.997,296,2.576,303,1.061,309,2.085,318,1.815,320,2.287,324,1.52,368,1.506,377,3.997,379,3.094,386,3.094,465,2.456,550,2.246,560,3.597,639,1.681,643,3.616,650,1.815,936,2.858,977,3.027,1132,1.407,1345,2.858,1415,2.723,1544,3.094,1672,3.993,1959,3.767,2019,3.027,2170,4.337,2171,3.993,2172,4.337,2173,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.981,29,0.998,49,1.06,749,2.945,1503,4.12]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.671,49,0.984,184,1.784,2174,4.408,2175,4.408,2176,4.312]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.65,184,1.728,2174,4.271,2176,4.178,2177,5.986,2178,5.512]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,1.193,2179,7.545]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,0.968,2179,6.118,2180,7.045,2181,7.045]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.058,35,0.395,207,4.162,318,2.932,623,4.11,696,2.1,1098,5.811,2179,8.143,2182,7.006,2183,7.006,2184,7.006,2185,7.006,2186,7.006,2187,7.006,2188,7.006,2189,7.006,2190,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.445,240,1.083,2191,7.262]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[240,1.175,2192,8.559]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.063,29,1.14,45,3.387,46,3.344,60,2.298,124,4.464,164,2.158,310,4.642,937,6.075,2191,10.135,2193,7.61,2194,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,756,2.376,1013,2.804,1997,3.956,2195,3.202]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2000,4.426,2001,4.855,2196,6.473,2197,6.473,2198,5.959]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.052,29,0.955,35,0.359,311,2.328,368,2.213,372,0.917,399,1.565,675,2.385,766,3.306,785,3.888,786,3.271,923,4.547,942,2.875,971,4.063,1131,4.001,1344,0.944,1797,3.943,1997,5.223,2002,4.657,2121,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[829,0.474]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,117,1.925,355,2.632,598,4.312,599,4.932,943,4.635]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[599,6.832,943,6.42]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.455,2,2.596,16,1.45,29,0.731,35,0.275,38,1.724,54,3.017,148,3.147,171,5.71,255,2.596,355,2.077,376,4.367,598,6.698,635,3.658,640,3.061,682,5.177,943,3.658,969,6.301,1006,2.503,1354,4.49,1470,6.918,2199,4.876,2200,4.876,2201,4.235,2202,4.876]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,1169,3.388,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.981,29,0.998,42,2.205,478,2.355,1120,4.062]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[478,3.026,1120,5.221]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.566,404,5.437,477,5.203,478,3.016,983,7.075,1124,9.805,1941,7.408]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1153,6.517,2204,7.206]],["keywords//docs/websites/cms/kloxo-guides/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.15,164,2.048,1013,3.04,1169,3.674]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.209,5,1.354,9,0.066,29,0.834,31,1.816,35,0.314,47,3.292,49,1.273,65,1.682,100,1.669,141,2.024,143,1.59,181,1.432,184,1.608,241,1.428,303,1.363,323,1.534,330,2.447,366,1.529,399,1.367,779,1.608,837,2.546,1028,2.104,1160,2.147,1684,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.582,465,4.467,2207,6.542]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[465,4.377,2207,6.41,2208,7.116]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.338,65,2.991,324,3.47,372,1.095,465,5.609,1344,1.127,2208,9.117]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[829,0.474]],["title//docs/websites/cms/directadmin/",[2207,8.02]],["keywords//docs/websites/cms/directadmin/",[2207,7.953]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,749,2.945,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1648,4.999,2095,4.999,2209,6.473,2210,6.473,2211,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.059,164,2.048,2204,5.99,2212,2.53]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.082,415,6.004,647,5.588]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.784,1023,3.499,2124,5.99,2203,6.272]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2213,7.045,2214,7.045,2215,5.843,2216,5.843]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.051,14,0.869,675,2.312,766,2.323,1120,3.769,1131,3.879]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[623,4.534,675,2.892,1120,4.714]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.632,9,0.067,17,1.891,18,1.904,202,4.332,675,3.044,766,3.887,780,3.973,786,4.176,1131,5.108]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[954,5.291,1132,2.558,2217,6.542]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[235,3.479,769,4.517,954,4.342,955,5.369,1132,2.099]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[829,0.474]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[164,2.236,954,5.291,1013,3.32]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.299,954,4.845,1013,3.04,2195,3.473]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,235,3.218,769,4.178,954,4.016,955,4.965,2195,2.879]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.15,749,3.194,1132,2.342,2217,5.99]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1782,5.148,1783,5.285,2218,7.045,2219,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[164,2.236,749,3.488,1013,3.32]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,1015,4.445,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.378,4,2.008,5,1.67,9,0.086,17,1.597,18,1.607,35,0.631,143,1.962,181,1.767,240,1.271,241,1.761,366,1.886]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1151,5.291,1153,5.916,1510,6.542]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[487,6.832,1151,5.742]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.809,31,1.048,35,0.304,85,3.851,190,5.206,200,4.688,203,4.478,207,3.207,229,3.389,233,2.485,240,0.741,305,3.945,335,3.129,354,3.851,519,3.293,618,3.207,623,3.167,672,2.874,766,2.03,827,3.945,982,4.97,1006,2.771,1087,3.249,1151,5.245,2220,5.398,2221,5.398,2222,5.398,2223,5.398,2224,5.398,2225,4.97]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.251,61,1.036,756,2.056,1013,2.426,1045,2.167,1576,3.039,2195,2.771]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,756,1.987,1576,2.936,2195,2.677,2198,5.126,2226,5.568,2227,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.341,164,1.752,756,2.205,1045,2.323,1576,3.258,2212,2.165]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[756,2.309,1579,4.618,2229,6.473,2230,6.473,2231,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.15,1132,2.342,1169,3.674,2217,5.99]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.228,5,1.376,9,0.078,29,0.848,31,1.57,35,0.532,49,1.287,65,1.709,100,1.696,143,1.616,181,1.455,184,1.634,241,1.45,303,1.979,366,1.554,372,0.814,399,1.389,603,3.728,779,1.634,1028,2.138,1160,2.182,1344,0.838,1517,3.552]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,1013,2.804,1169,3.388,2195,3.202]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,61,0.956,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,372,0.765,399,1.306,779,1.535,837,2.431,1003,4.618,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2175,4.111,2176,4.022]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2232,5.568,2233,4.836,2234,4.618]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.191,35,0.574,42,2.633,60,2.402,197,4.234,372,1.144,399,1.953,757,4.315,1344,1.178,1980,4.725]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.723,49,1.06,749,2.945,2175,4.751,2176,4.648]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1648,4.999,2095,4.999,2178,5.959,2235,6.473,2236,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.788,61,0.971,473,3.389,478,1.909,1013,2.273,2065,3.852,2066,2.961,2195,2.596]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2217,4.78]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.671,90,1.859,367,4.003,698,3.769,2175,4.408,2176,4.312]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[698,3.948,2238,6.473,2239,5.167,2240,5.167,2241,5.167]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.859,367,4.003,698,3.769,1013,2.601,2195,2.971]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2243,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,241,1.584,1013,2.601,1160,2.383,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.368,1519,4.133,1520,4.726,2244,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,241,1.584,1160,2.383,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.368,1519,4.133,1520,4.726,2245,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.41,877,5.763,1088,5.916]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2246,8.559,2247,8.559]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.42,156,3.406,207,5.801,456,4.908,496,5.754,640,4.676,1087,4.483,1088,9.005,2248,7.45,2249,7.45]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2006,4.999,2250,6.473,2251,5.959,2252,6.473,2253,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.981,29,0.998,89,2.035,1086,3.815,1088,4.996]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[650,2.949,1086,4.036,1088,5.285,2254,7.045]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.629,18,1.639,35,0.395,61,1.26,117,2.921,164,2.658,189,2.932,424,4.334,647,3.924,751,3.505,1013,2.949,1132,2.272,1308,3.661,1503,4.334,2149,6.45]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.784,1023,3.499,2175,5.152,2176,5.04]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2215,5.843,2216,5.843,2255,7.045,2256,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[829,0.474]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,169,2.984,1013,2.426,1991,3.194,2195,2.771]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,240,0.915,585,4.12,1013,2.804,2195,3.202]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[240,0.992,585,4.467,1132,2.342,2257,3.961]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,585,4.12,2123,2.964,2258,2.872]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/platform/stackscripts/",[20,4.627,47,2.776,527,6.542]],["keywords//docs/platform/stackscripts/",[20,3.797,238,4.004,257,4.855,2259,6.473,2260,6.473]],["toc//docs/platform/stackscripts/",[0,1.083,14,1.292,47,2.752,59,3.691,89,1.649,96,2.701,101,2.557,124,3.167,129,3.557,247,3.167,312,2.372,507,4.688,508,3.024,527,9.77,779,1.559,884,3.441,2040,3.621,2261,5.398,2262,4.97,2263,5.398,2264,5.398,2265,5.398,2266,5.398]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1013,2.601,1984,4.312,1985,4.225,1986,3.769,2195,2.971]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1132,2.16,1984,4.648,1985,4.554,1986,4.062,2257,3.652]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[240,0.915,585,4.12,1132,2.16,1295,3.066,2257,3.652]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.078,29,1.071,35,0.536,47,2.516,151,3.702,240,1.305,281,3.182,372,1.028,399,1.755,792,3.668,1295,4.375,1344,1.059]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2038,3.961,2195,3.473]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2267,5.204,2268,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.784,2038,3.961,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.784,2038,3.961,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.734,454,3.468,702,2.837,1013,2.426,2195,2.771,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.859,454,3.718,702,3.041,1132,2.004,2257,3.389,2271,4.515]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.626,90,1.734,454,3.468,702,2.837,2269,2.814,2270,2.792,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.734,164,1.634,247,3.381,2212,2.019,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.085,35,0.459,100,2.439,184,2.349,303,1.991,696,2.439,779,2.349,1028,3.075,2273,7.375]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.734,247,3.381,1132,1.869,2257,3.16,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.971,90,1.624,509,3.249,756,1.926,1013,2.273,1743,3.692,2063,3.293,2195,2.596]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.059,29,1.071,35,0.602,372,1.028,376,4.302,391,4.888,399,1.755,604,5.223,607,4.422,757,3.027,1344,1.059,2063,6.511,2279,6.208]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,1013,2.601,2195,2.971,2280,3.625]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2257,3.652,2280,3.907]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,1.618,141,1.962,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2257,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2269,2.814,2270,2.792]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.984,61,1.111,184,1.784,1013,2.601,2174,4.408,2195,2.971]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.626,255,3.068,929,3.565,2269,2.814,2270,2.792,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1055,2.98,2292,4.885,2293,4.885,2294,4.885,2295,4.243,2296,3.9,2297,3.9,2298,3.773,2299,3.9]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.299,140,3.808,1013,3.04,2195,3.473]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.713,140,3.715,883,3.554,2023,5.026]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,240,0.849,452,3.228,1013,2.601,1188,3.289,2195,2.971]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[240,0.849,304,3.144,675,2.312,766,2.323,1132,2.004,2257,3.389]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[701,3.525,1692,4.817,1694,6.118,2302,5.843]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,303,1.512,721,3.117,884,3.939,1013,2.601,2195,2.971]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2303,7.728,2304,7.728,2305,7.728]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.293,1132,2.16,2257,3.652,2306,4.751,2307,5.524]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/twiki-on-centos-5/",[164,2.236,2031,4.518,2212,2.763]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2031,4.137,2195,3.473]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1132,2.558,2031,4.518,2257,4.326]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[829,0.474]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.936,233,3.066,320,3.512,643,2.984,1084,4.314]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[447,3.1,643,2.682,978,5.512,1086,3.429,1108,5.512,1907,4.374]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.333,117,1.852,123,3.024,131,3.612,185,4.027,197,3.164,219,3.677,233,4.847,320,3.135,323,2.308,643,2.663,690,4.241,751,4.19,1091,6.283,1521,3.677,2060,4.343,2309,8.375]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.341,5,1.502,14,0.869,117,1.925,1053,3.354,1308,3.228]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1836,5.969,1894,6.712,2310,7.728]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[829,0.474]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,585,4.12,2269,3.252,2270,3.227]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.908,61,1.036,1013,2.426,1263,3.301,1969,3.423,1970,3.733,2195,2.771]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1971,3.57,1972,3.219,1974,3.165,1975,3.165,2014,3.219,2311,4.885,2312,4.885,2313,4.052,2314,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.083,29,1.505,35,0.438,57,4.681,309,3.74,372,1.119,399,1.91,696,2.331,1344,1.152,1969,5.966]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,1013,2.426,2195,2.771]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[678,5.167,1492,5.167,2315,6.473,2316,6.473,2317,6.473]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.08,17,1.405,18,1.414,35,0.478,40,2.446,181,1.555,192,2.803,240,1.344,244,3.798,286,3.387,304,3.076,318,3.547,366,1.66,372,0.87,460,2.907,673,2.907,1344,0.895,1472,4.219,2318,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[117,2.457,1308,4.121,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.095,31,1.446,35,0.42,49,1.186,143,2.128,240,1.023,372,1.072,713,4.318,1344,1.103,1620,4.608,2038,5.356]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2269,2.814,2270,2.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,749,2.945,1013,2.804,2195,3.202]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1496,6.41,1887,6.712,2320,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.984,143,1.765,169,3.199,1132,2.004,1991,3.424,2257,3.389]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,255,3.068,929,3.565,1013,2.426,2195,2.771,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1055,2.98,2296,3.9,2297,3.9,2298,3.773,2299,3.9,2322,4.885,2323,4.885,2324,4.885,2325,4.498]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,1013,2.138,2071,2.73,2072,3.623,2195,2.442]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.412,42,1.908,240,0.791,312,2.532,1132,1.869,2257,3.16]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.119,61,1.036,792,2.958,1013,2.426,1296,2.984,2195,2.771]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.293,61,1.197,276,3.388,1013,2.804,2195,3.202]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.162,61,1.076,199,2.756,701,2.995,2326,5.512,2327,5.986]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.401,14,0.81,30,2.485,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1055,4.297,1152,4.726,2328,7.045,2329,7.045]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,240,0.915,1013,2.804,1164,3.73,2195,3.202]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,240,0.915,585,4.12,2212,2.333,2334,2.679]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.037,61,1.036,720,4.323,756,2.056,1013,2.426,1045,2.167,2195,2.771]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,240,0.849,585,3.822,1013,2.601,1295,2.844,2195,2.971]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,1160,2.383,1819,3.041,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2006,4.999,2251,5.959,2337,6.473,2338,6.473,2339,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.971,323,1.488,324,1.892,465,3.058,1045,2.03,1576,2.847,2212,1.892,2334,2.172]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[756,2.514,1045,2.649,1576,3.715,2340,7.045]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.05,29,0.906,35,0.598,42,2.806,185,2.907,320,3.188,372,0.87,399,1.484,639,2.343,675,2.262,757,4.492,773,4.418,779,1.746,951,4.826,1045,2.273,1344,0.895,1576,3.188,2341,6.046,2342,6.046]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,2195,2.971,2306,4.408,2307,5.125]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.058,29,1.05,31,1.82,35,0.528,49,1.493,151,2.73,156,3.203,372,1.008,399,1.72,460,3.369,837,3.203,1296,5.472,1344,1.037]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.299,1013,3.04,1301,4.186,2195,3.473]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,756,2.056,1013,3.449,1362,3.797,2195,2.771,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1579,4.271,2344,5.986,2345,5.986,2346,5.512,2347,4.779,2348,4.779]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.08,35,0.42,38,2.634,65,2.25,100,2.233,184,2.151,303,1.823,323,2.053,372,1.072,696,2.233,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.734,454,3.468,702,2.837,2212,2.019,2271,4.211,2334,2.318]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.34,49,0.917,61,1.036,757,2.44,1013,2.426,1980,3.423,2195,2.771]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1364,3.495,1982,4.177,1983,4.177,2326,5.126,2349,5.568,2350,5.568,2351,5.126]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.784,2031,4.137,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.784,2031,4.137,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.971,197,2.874,478,1.909,1013,2.273,2075,2.874,2076,3.692,2195,2.596]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,478,1.84,819,3.267,2075,2.771,2079,2.797,2352,5.204,2353,5.204,2354,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.723,31,1.293,276,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.65,31,1.162,199,2.756,701,2.995,2355,5.199,2356,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.299,1013,3.04,1023,3.499,2195,3.473]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1931,6.486,1932,6.486,2195,3.388,2357,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[141,3.433,287,7.293,323,2.602,1023,5.492]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.293,117,2.075,1160,2.568,1308,3.48,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1160,2.496,2008,4.517,2358,6.473,2359,5.621,2360,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.293,117,2.075,241,1.707,1160,2.568,1308,3.48]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1519,4.133,1520,4.726,2359,6.118,2360,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.065,29,1.191,35,0.448,60,2.402,181,2.046,241,2.039,366,2.184,372,1.144,399,1.953,779,2.296,1160,3.067,1344,1.178]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2257,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.402,117,2.25,276,3.674,1308,3.773]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.256,701,3.238,2359,5.621,2360,5.621,2361,6.473]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.076,29,1.378,31,1.785,372,1.323,399,2.258,1344,1.362]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.299,2038,3.961,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2362,5.204,2363,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/phpfox/",[2364,7.719]],["keywords//docs/applications/social-networking/phpfox/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.299,2031,4.137,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.251,5,1.401,14,0.81,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1836,4.999,2365,6.473,2366,5.959,2367,6.473,2368,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.784,2054,4.09,2269,3.527,2270,3.499]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2369,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2257,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2302,5.369]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.784,1301,4.186,2269,3.527,2270,3.499]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,2212,2.165,2306,4.408,2307,5.125,2334,2.486]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.445,5,1.619,14,0.936,1053,3.615,1503,4.12]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.529,5,1.713,1503,4.358,2298,5.441]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.617,9,0.068,14,1.171,35,0.469,319,5.152,372,1.198,1344,1.233]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.341,11,0.671,90,1.859,1831,3.228,2269,3.017,2270,2.994]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.368,1519,4.133,1520,4.726,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.368,1519,4.133,2008,4.917,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,243,2.76,372,1.072,399,1.829,532,3.966,1160,3.766,1344,1.103,1545,5.443,1819,3.667]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.784,1301,4.186,2123,3.214,2258,3.114]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1132,2.558,2054,4.467,2372,4.326]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2373,5.568]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.199,117,1.925,792,3.171,1296,3.199,1308,3.228]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.256,39,2.576,792,3.322,1296,3.352,1894,5.621]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.463,9,0.06,29,1.093,31,1.416,35,0.411,40,2.951,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08,1834,3.778]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2257,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.08,29,1.116,31,1.896,35,0.55,49,1.186,151,2.902,156,3.406,372,1.072,399,1.829,1296,5.057,1344,1.103]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2257,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[678,6.17,2374,7.728,2375,7.116]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[240,0.992,1132,2.342,1164,4.045,2257,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.322,2377,6.473,2378,6.473,2379,6.473,2380,5.621]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.068,14,1.171,29,1.248,60,2.515,240,1.144,372,1.198,399,2.045,1164,5.877,1344,1.233]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,1164,3.73,2269,3.252,2270,3.227]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.322,1968,5.167,2381,6.473,2382,6.473,2383,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2269,2.814,2270,2.792]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.65,1692,4.093,1863,3.878,2356,4.965,2384,5.512,2385,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2257,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1836,5.969,1837,6.41,2386,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.402,276,3.674,1132,2.342,2257,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.162,199,2.756,701,2.995,2302,4.965,2370,5.199,2387,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.213,9,0.07,29,0.906,31,2.059,40,2.446,64,2.343,65,1.826,90,1.819,100,1.812,101,2.864,184,1.746,303,1.48,330,2.657,372,0.87,399,1.484,696,1.812,779,1.746,837,2.764,1028,2.285,1344,0.895,1684,4.535,1834,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[240,0.822,701,2.995,1992,4.374,2388,5.986,2389,5.986,2390,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2123,2.565,2258,2.485]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2269,2.637,2270,2.616]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.784,2054,4.09,2123,3.214,2258,3.114]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2391,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2123,2.403,2258,2.328]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-14/",[140,4.159,1132,2.558,2257,4.326]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.574,140,3.413,883,3.265,2023,4.618,2392,6.473]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2269,2.48,2270,2.461,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1683,2.618,1851,3.807,1852,3.807,2394,5.568,2395,5.568,2396,4.069,2397,4.069]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2269,2.814,2270,2.792]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2398,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2257,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2269,2.48,2270,2.461]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.087,14,1.199,372,1.227,779,2.463,1344,1.263,2071,6.242]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2269,2.637,2270,2.616]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.15,1132,2.342,1169,3.674,2257,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1132,1.724,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,1169,3.388,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.19,5,1.333,9,0.065,11,0.595,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.15,749,3.194,1132,2.342,2257,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1782,5.148,1783,5.285,2401,7.045,2402,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.255,184,2.277,1183,4.685]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1183,4.591,1615,6.17,2403,7.728]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[509,4.346,2404,5.417,2405,6.272,2406,6.272]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[117,1.865,369,3.878,856,4.491,2405,5.199,2406,5.199,2407,4.965]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,147,3.828,376,5.979,377,4.603,509,4.603,568,8.628,1468,4.549,1631,7.042,1771,4.046,1870,4.345,2040,5.131,2201,4.549,2318,4.549,2405,8.628,2406,9.177,2408,7.649,2409,5.238]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.671,303,1.512,721,3.117,884,3.939,2269,3.017,2270,2.994]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.65,447,3.1,650,2.505,721,3.02,2356,4.965,2385,5.512]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,117,1.795,286,3.228,355,2.455,571,3.617,2410,5.005,2411,5.005]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[117,2.195,2410,6.118,2411,6.118,2412,7.045]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[147,5.945,286,5.791,323,2.242,349,5.458,368,2.825,373,7.491,640,5.108,886,4.773,2410,7.066,2411,7.066]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.769,148,1.895,598,4.312,974,4.932,2279,5.366,2413,4.772]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[117,1.865,470,4.271,974,4.779,1521,3.703,2407,4.965,2414,5.512]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,376,4.58,464,3.605,676,4.351,892,5.429,971,4.851,974,8.787,1830,5.429,2279,8.6,2415,7.007]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2257,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,1169,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.205,117,2.075,184,1.923,1183,3.956,1503,4.12]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.081,35,0.602,38,2.175,43,3.565,141,2.236,240,0.845,345,4.389,368,2.136,372,0.885,696,1.844,757,2.605,1183,6.677,1342,5.987,1344,0.911,1740,4.293]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.671,42,2.046,184,1.784,1183,3.67,2269,3.017,2270,2.994]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.199,164,1.752,792,3.171,1296,3.199,2212,2.165]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.079,29,1.093,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2372,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2399,2.71,2400,2.672]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2123,2.565,2258,2.485]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.293,35,0.375,199,3.066,311,2.432,675,2.492]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.01,199,2.396,305,3.803,675,1.947,1701,4.791,2416,5.204,2417,5.204,2418,5.204]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.87,9,0.036,14,0.934,31,1.756,35,0.374,38,1.533,90,1.305,118,3.945,169,2.246,181,1.708,199,3.057,202,2.309,217,3.027,334,2.966,366,1.824,460,2.085,532,2.309,624,2.909,675,4.131,751,3.323,766,3.666,785,2.645,786,3.409,1131,2.723,2419,4.337,2420,6.641]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.119,61,1.036,792,2.958,1296,2.984,2212,2.019,2334,2.318]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2269,2.814,2270,2.792]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2269,3.017,2270,2.994,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.784,140,3.808,2269,3.527,2270,3.499]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.574,883,3.265,2023,4.618,2421,6.473,2422,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.915,9,0.037,24,2.017,35,0.469,40,1.845,64,3.227,90,2.076,100,1.367,101,2.161,140,5.744,141,1.658,157,2.822,184,1.317,191,2.528,235,2.452,303,1.116,323,1.257,368,1.584,372,0.656,404,2.908,508,2.555,779,2.68,837,3.806,1028,1.724,1065,2.555,1344,0.675,1834,2.362,2024,4.924]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,585,3.822,1295,2.844,2269,3.017,2270,2.994]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.581,355,2.837,376,4.008,743,4.751,890,5.144]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[890,5.969,944,6.17,2423,7.728]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.293,64,4.145,97,4.97,102,4.05,148,1.656,199,3.599,203,4.478,379,3.851,492,4.31,702,2.657,743,5.578,766,2.03,785,3.293,786,2.771,890,6.039,1091,4.05,1278,3.851,1717,4.478,1830,3.851,1996,4.97,2262,4.97,2424,4.97,2425,4.97,2426,4.97]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,117,1.925,148,1.895,355,2.632,376,3.718,640,3.879]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[117,2.408,944,6.17,2427,7.728]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.683,38,1.799,117,2.767,148,3.203,149,3.55,173,3.413,174,3.55,192,2.358,214,3.413,231,3.629,286,2.85,318,2.129,334,3.479,355,3.785,376,3.061,640,7.273,673,2.446,702,2.504,892,3.629,1414,4.418]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2280,3.907,2372,3.652]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2372,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2428,5.986,2429,5.986]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.558,22,4.062,148,2.042,598,4.648,972,5.316]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[117,2.195,470,5.026,972,5.624,2407,5.843]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.78,22,4.642,148,2.334,169,3.941,355,3.242,464,3.605,972,9.307,1083,6.609,1830,5.429,2415,7.007]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1457,4.265,2080,4.999,2081,4.73,2430,6.473,2431,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2355,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.784,1023,3.499,2269,3.527,2270,3.499]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2215,5.843,2216,5.843,2432,7.045,2433,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,749,2.945,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1648,4.999,2095,4.999,2356,5.369,2435,6.473,2436,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,424,3.822,478,2.185,515,4.408,1059,4.635,2437,5.366]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[478,2.491,780,3.44,1702,5.843,2437,6.118]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.049,14,1.56,49,0.946,284,4.745,477,3.626,478,2.961,591,4.745,745,3.916,751,2.974,1059,4.459,1230,4.591,1771,4.591,1830,4.241,2437,10.275,2438,5.944,2439,5.944]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.936,184,1.923,323,1.835,515,4.751,2440,5.784]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[117,1.865,147,4.374,398,3.25,780,2.923,2441,5.986,2442,5.986]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,234,5.561,323,2.097,355,3.242,398,4.132,1830,5.429,1869,6.075,2141,6.609,2440,10.125,2443,7.61,2444,7.61]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1132,2.558,2372,4.326,2445,6.092]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[235,3.787,769,4.917,1132,2.285,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.605,756,1.987,1576,2.936,2270,2.698,2446,5.568,2447,5.568,2448,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,241,1.584,1160,2.383,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.368,1519,4.133,1520,4.726,2355,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2269,2.637,2270,2.616]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.336,148,2.042,323,1.835,671,4.866,2450,6.131]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[117,2.016,490,5.959,944,5.167,1521,4.004,2407,5.369]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.927,14,0.822,19,3.083,58,7.188,148,1.793,303,1.431,323,1.611,355,2.49,671,8.369,2040,3.921,2450,5.382,2451,9.076,2452,8.277,2453,5.845,2454,5.845,2455,5.845]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.936,90,2.004,148,2.042,676,2.926,2456,5.784]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2456,6.712,2457,7.728,2458,7.728]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.532,148,2.895,231,4.037,316,3.728,355,2.411,368,2.808,392,3.451,464,2.68,676,4.787,805,6.246,991,5.209,1089,6.456,1944,4.693,2456,8.196,2459,5.658,2460,5.658]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.756,150,3.706,312,3.173,697,3.421]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.713,312,3.096,697,3.337,883,3.554]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.952,5,1.154,16,1.411,17,1.103,18,1.11,29,0.711,35,0.481,45,2.112,46,2.085,49,0.755,60,1.433,148,2.181,155,1.952,181,1.22,233,2.184,311,2.597,312,3.746,320,2.502,324,1.663,415,2.856,474,4.121,569,3.936,697,2.248,713,2.75,751,2.374,820,8.808,922,4.121,1033,3.788,1059,3.56,2461,4.369,2462,7.11]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.671,1984,4.312,1985,4.225,1986,3.769,2123,2.75,2258,2.665]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[143,1.646,180,3.264,241,1.477,1132,1.869,1160,2.222,2052,3.16,2372,3.16]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2052,3.55,2463,5.959,2464,5.959,2465,5.959,2466,6.473]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.07,35,0.6,60,2.576,65,2.576,243,3.161,372,1.227,532,4.541,1344,1.263]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1132,2.004,1585,4.772,1805,4.772,2372,3.389,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[756,2.514,1132,2.285,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1132,2.558,2038,4.326,2372,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.046,1132,2.004,1263,3.539,1970,4.003,2009,3.625,2372,3.389]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.051,14,0.865,29,0.922,35,0.347,38,2.175,156,2.812,181,1.582,290,3.609,324,2.155,335,3.565,366,1.689,372,0.885,399,2.106,478,2.175,713,3.565,780,3.004,1344,0.911,2009,5.795,2015,3.306,2018,4.614,2019,4.293,2020,3.985]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,184,1.664,323,1.588,676,2.532,1465,3.301,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[184,2.277,676,3.466,1465,4.518]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[829,0.474]],["title//docs/websites/wikis/confluence-on-centos-5/",[164,2.236,2212,2.763,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2471,4.491,2472,7.045,2473,5.624,2474,5.624]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.906,5,1.738,9,0.078,10,5.1,12,3.668,29,1.071,35,0.403,181,1.838,366,1.963,399,1.755,1013,3.009,2471,7.252]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1132,2.558,2372,4.326,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2471,4.491,2473,5.624,2474,5.624,2475,7.045]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.856,5,1.67,9,0.076,10,4.901,12,3.526,29,1.029,35,0.387,181,1.767,366,1.886,372,0.988,399,1.687,1013,2.892,1344,1.017,2471,7.137]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2372,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2476,5.621]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.326,9,0.054,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,372,0.951,398,3.59,779,1.909,1344,0.979,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2372,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2471,4.491,2473,5.624,2474,5.624,2477,7.045]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2471,4.491,2473,5.624,2474,5.624,2478,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.784,2123,3.214,2258,3.114,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2471,4.491,2473,5.624,2474,5.624,2479,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2480,5.167]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.302,9,0.053,35,0.366,57,3.906,148,1.991,181,1.669,243,2.405,265,2.988,311,2.371,372,0.934,386,4.631,398,3.524,779,1.874,1344,0.961,1396,5.866,2050,4.354,2066,5.574,2069,4.53,2070,4.631]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.015,117,2.25,355,3.077,869,5.578]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[214,4.342,369,4.193,869,4.999,2414,5.959,2481,6.473]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.821,40,2.218,117,2.463,318,2.294,349,3.678,355,3.368,424,3.391,473,3.441,570,4.547,869,8.311,1589,5.048,2049,4.234,2173,4.547,2482,5.482,2483,7.279,2484,9.273,2485,5.482,2486,5.482,2487,5.482,2488,5.482]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2364,4.932,2489,5.689]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.076,64,3.565,372,1.323,696,2.756,1344,1.362,2364,7.342]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.019,11,0.552,14,0.714,394,3.544,2035,3.346,2036,3.29,2037,4.676,2123,2.261,2258,2.19]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.083,11,0.586,14,0.759,394,3.768,2035,3.557,2036,3.498,2399,2.539,2400,2.503]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.061,35,0.614,38,2.634,265,3.429,311,2.721,368,2.587,779,2.151,2035,4.908,2036,7.49,2050,4.997]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2123,2.565,2258,2.485]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.65,1692,4.093,1863,3.878,2384,5.512,2490,4.624,2491,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.971,150,2.771,151,2.104,240,0.741,2212,1.892,2334,2.172,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.7,4,1.84,5,1.47,9,0.087,29,0.906,35,0.341,60,1.826,151,2.355,154,4.313,240,1.164,243,2.24,372,0.87,399,1.484,779,1.746,1344,0.895,2493,4.67,2496,6.546,2498,5.251,2499,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.586,150,2.771,151,2.104,240,0.741,2123,2.403,2258,2.328,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1969,3.67,1970,4.003,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2500,4.885,2501,4.498]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.087,29,1.278,35,0.481,57,5.133,309,4.102,696,2.557,1969,6.326]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2123,2.403,2258,2.328]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1012,6.092,2035,5.197,2036,5.109]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2036,5.544,2101,6.832]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[829,0.474]],["title//docs/databases/redis/redis-on-centos-5/",[140,4.159,164,2.236,2212,2.763]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.574,140,3.413,883,3.265,2023,4.618,2502,6.473]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.044,24,2.387,35,0.304,40,2.184,47,1.9,64,2.092,90,2.352,100,1.618,101,2.557,140,5.64,141,1.962,157,3.339,184,1.559,191,2.992,235,2.902,303,1.321,323,1.487,368,1.875,404,3.441,508,3.024,779,2.258,837,2.468,1028,2.04,1065,3.024,1834,2.795,2024,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-13/",[140,4.159,1132,2.558,2372,4.326]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.574,140,3.413,883,3.265,2023,4.618,2503,6.473]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.784,140,3.808,2399,3.396,2400,3.348]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.574,883,3.265,2023,4.618,2504,6.473,2505,5.959]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[151,2.104,240,0.741,241,1.384,368,1.875,1132,1.751,1240,2.992,2372,2.961,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.586,150,2.771,151,2.104,240,0.741,2399,2.539,2400,2.503,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[307,4.845,464,3.421,611,4.758,650,3.022]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[309,3.388,611,4.642,650,2.949,971,4.491]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.021,11,0.275,14,0.787,15,1.524,16,0.753,22,1.545,35,0.242,38,1.979,47,0.891,61,0.455,84,1.9,90,1.293,95,3.14,117,1.339,124,1.486,149,1.767,157,4.964,164,0.718,173,1.699,198,1.668,207,1.504,243,0.938,307,5.383,308,1.59,309,1.218,310,4.895,318,1.06,335,2.49,346,2.999,355,1.079,456,1.668,543,2.199,546,1.767,550,2.225,611,7.254,623,1.486,635,1.9,650,1.06,780,1.237,886,1.486,1056,1.451,1088,4.946,1132,0.821,1281,3.956,1308,1.323,1314,1.807,1389,2.199,1400,5.153,1417,1.504,1424,2.331,1470,2.021,1875,2.199,2201,2.199,2506,2.331,2507,2.532,2508,2.532,2509,2.532,2510,2.532,2511,2.532]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.06,35,0.411,47,2.568,151,2.842,169,3.778,180,4.132,240,1.002,281,3.247,391,4.989,422,4.434,699,6.108,1188,5.128]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.671,31,1.199,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.784,140,3.808,2123,3.214,2258,3.114]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.574,883,3.265,2023,4.618,2505,5.959,2512,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[148,1.767,1089,4.6,1743,5.603,1942,4.78,2513,5.306,2514,5.763]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1419,5.199,1942,4.965,2515,5.986,2516,5.986,2517,5.986,2518,5.986]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.02,14,1.249,148,2.725,192,2.358,231,3.629,296,3.022,355,3.19,357,4.061,676,2.235,702,2.504,1089,8.718,1419,7.715,1942,7.368,2173,4.22,2513,10.055,2519,5.087,2520,5.087,2521,5.087]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.065,35,0.445,531,4.418]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[533,5.621,534,5.621,536,5.621,2522,6.473,2523,6.473]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.076,17,2.138,18,2.152,35,0.518,531,6.248]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.15,164,2.048,1169,3.674,2212,2.53]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.172,5,1.313,9,0.064,29,0.809,31,1.784,35,0.304,47,3.235,49,1.245,65,1.63,100,1.618,141,1.962,143,1.542,181,1.388,184,1.559,241,1.384,303,1.321,323,1.487,330,2.372,366,1.482,372,0.777,399,1.326,779,1.559,837,2.468,1028,2.04,1160,2.082,1344,0.799,1684,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.299,140,3.808,2212,2.53,2334,2.905]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.574,883,3.265,2023,4.618,2524,6.473,2525,6.473]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[240,0.992,245,4.467,1132,2.342,1164,4.045]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.322,2380,5.621,2526,6.473,2527,6.473,2528,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[240,0.992,1132,2.342,1164,4.045,2372,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.322,2380,5.621,2529,6.473,2530,6.473,2531,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,1164,3.73,2123,2.964,2258,2.872]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.322,1967,5.959,1968,5.167,2532,6.473,2533,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.723,240,0.915,1164,3.73,2399,3.132,2400,3.087]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.322,1968,5.167,2534,6.473,2535,6.473,2536,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.837,99,3.194,117,1.795,837,2.635,906,3.381,1308,3.011,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[838,4.3,839,4.3,840,4.177,841,3.972,1308,2.909,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.837,99,3.194,164,1.634,189,2.412,837,2.635,906,3.381,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[164,1.579,838,4.3,839,4.3,840,4.177,841,3.972,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.041,99,3.424,368,2.146,837,2.825,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[838,4.624,839,4.624,840,4.491,841,4.271,1566,4.779,1567,4.779]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.15,117,2.25,1169,3.674,1308,3.773]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.491,5,1.67,9,0.076,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,372,0.988,399,1.687,1160,2.649,1344,1.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[355,2.837,376,4.008,598,4.648,2404,4.996,2537,5.784]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1521,4.358,2537,6.118,2538,7.045,2539,6.486]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,148,3.117,173,4.354,231,4.631,355,2.765,376,3.906,433,4.074,635,4.869,640,4.074,803,5.384,2537,10.28,2540,6.491,2541,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[148,2.215,391,4.938,392,4.405,2542,5.99]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[355,3.001,1510,5.843,2543,7.045,2544,7.045]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.602,14,1.064,38,1.825,117,2.357,148,3.222,149,3.602,179,3.602,274,3.772,291,3.401,318,2.16,355,2.199,377,3.106,392,6.407,433,3.24,456,3.401,608,3.682,622,4.483,639,2.001,844,4.483,1061,3.529,2542,7.431,2545,5.162,2546,4.752,2547,5.162]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,2.419,598,5.504,892,5.627]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,1.985,682,4.618,892,4.618,971,4.126,2539,5.959]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,148,2.192,355,4.048,676,3.141,877,5.223,892,8.45,971,6.057,1089,5.706,2291,5.362,2548,6.208,2549,7.148]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.15,1132,2.342,1169,3.674,2372,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.19,5,1.333,9,0.065,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1132,1.778,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.723,49,1.06,1169,3.388,2123,2.964,2258,2.872]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.037,61,1.036,720,4.323,756,2.056,1045,2.167,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.971,116,2.771,192,2.503,247,3.167,650,2.26,2212,1.892,2334,2.172,2550,4.689]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[116,3.322,1625,5.369,2550,5.621,2551,6.473,2552,6.473]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.08,35,0.598,40,2.446,49,0.962,143,1.727,148,1.854,150,3.103,218,4.313,323,1.666,368,2.099,372,0.87,465,3.424,696,1.812,921,4.826,1023,2.93,1344,0.895,2548,5.251,2550,9.212]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.06,61,1.197,1169,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.088,5,1.219,9,0.061,29,0.751,31,1.71,35,0.283,47,3.424,49,1.179,61,1.332,65,2.237,100,1.503,141,1.823,143,1.432,181,1.29,184,1.448,241,1.286,303,1.227,323,1.382,330,2.204,366,1.377,372,0.721,399,1.231,779,1.448,837,2.293,1003,4.355,1028,1.895,1160,1.934,1344,0.743,2553,5.015]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,143,1.45,180,2.876,241,1.302,1160,1.958,1176,2.5,2052,2.785,2123,2.261,2258,2.19]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1863,3.878,2463,5.512,2464,5.512,2490,4.624,2554,5.512,2555,5.512]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.068,35,0.591,60,2.515,65,2.515,243,3.086,372,1.198,532,4.434,696,2.496,1344,1.233]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.341,756,2.205,1045,2.323,1132,2.004,2282,3.461,2372,3.389]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2556,4.885,2557,3.773,2558,3.773,2559,3.773,2560,3.773]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2372,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[678,6.17,2375,7.116,2561,7.728]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1836,5.969,1837,6.41,2562,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/fedora-13/",[5,1.502,14,0.869,30,2.665,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/postgresql/fedora-13/",[1055,4.714,1152,5.185,2563,7.728]],["toc//docs/databases/postgresql/fedora-13/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.368,1519,4.133,1520,4.726,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.368,1519,4.133,2008,4.917,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2372,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2372,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2372,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2052,3.864,2465,6.486,2476,6.118,2565,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2257,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2052,3.864,2302,5.843,2565,6.486,2566,7.045]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2567,6.272]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2567,5.621,2568,6.473,2569,6.473,2570,6.473]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.076,60,2.777,144,7.103,372,1.323,1344,1.362,2567,7.987]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.341,245,3.822,756,2.205,1045,2.323,1132,2.004,2282,3.461]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2571,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.671,42,2.046,184,1.784,1183,3.67,2123,2.75,2258,2.665]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.15,749,3.194,1132,2.342,2372,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1782,5.148,1783,5.285,2572,7.045,2573,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.402,276,3.674,1132,2.342,2372,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.162,199,2.756,701,2.995,2387,5.199,2476,5.199,2564,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.671,49,0.984,184,1.784,2123,2.75,2174,4.408,2258,2.665]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2123,2.75,2258,2.665,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[164,1.888,240,0.915,585,4.12,1295,3.066,2212,2.333]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.08,29,1.116,35,0.55,47,2.622,151,3.805,240,1.341,281,3.316,399,1.829,792,3.823,1295,4.496]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,585,3.822,1295,2.844,2123,2.75,2258,2.665]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,585,3.822,1295,2.844,2399,2.906,2400,2.864]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.084,35,0.574,151,3.099,240,1.092,281,3.54,372,1.144,792,4.082,1295,4.69,1344,1.178]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,743,4.111,1940,4.451,2045,4.111,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.703,2045,4.618,2046,5.621,2258,2.791,2490,4.999]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.072,14,0.896,29,0.955,35,0.567,136,3.188,265,2.934,281,2.837,311,2.328,372,0.917,386,4.547,575,4.001,696,1.91,1340,5.088,1344,0.944,2045,6.273,2047,5.286,2049,4.922,2050,4.275,2574,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,1295,2.844,2123,2.75,2258,2.665,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.605,39,2.216,240,0.765,1295,2.563,2258,2.401,2491,5.126,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.054,14,0.929,29,0.991,35,0.373,39,2.631,141,2.404,151,2.576,169,3.424,181,2.319,240,0.908,281,2.943,323,1.822,372,0.951,399,1.624,702,3.255,1295,4.724,1344,0.979,1417,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,240,0.849,585,3.822,1295,2.844,2212,2.165,2334,2.486]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.048,33,2.26,300,3.768,486,4.05,779,1.559,2413,4.17,2577,4.689]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.845,33,1.821,199,2.003,240,0.598,312,1.912,487,5.315,701,2.177,2578,4.351,2579,4.351,2580,4.351]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.308,33,2.82,35,0.38,38,2.382,42,2.231,199,3.102,240,0.925,300,6.374,312,2.961,335,3.905,422,3.102,475,4.055,486,6.852,696,2.02,779,1.946,2019,4.703,2413,5.204,2577,5.852]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,884,3.673,2212,2.019,2334,2.318,2581,5.763,2582,5.763,2583,5.306]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2584,7.045,2585,7.045,2586,7.045,2587,5.441]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.078,35,0.403,47,2.516,64,2.77,100,2.142,151,2.785,184,2.064,303,1.749,372,1.028,696,2.142,779,2.744,1028,2.701,1344,1.059,2583,8.749]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.671,303,1.512,721,3.117,884,3.939,2123,2.75,2258,2.665]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.65,447,3.1,650,2.505,721,3.02,2490,4.624,2588,5.986]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.671,756,2.205,1176,3.041,1997,3.67,2123,2.75,2258,2.665]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1997,3.845,2000,4.426,2001,4.855,2589,6.473,2590,5.959]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.172,11,0.586,756,1.926,1045,2.03,1176,2.658,1576,2.847,2123,2.403,2258,2.328]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.605,756,1.987,1576,2.936,2258,2.401,2590,5.126,2591,5.568,2592,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.626,255,3.068,929,3.565,2290,4.6,2291,4.323,2399,2.71,2400,2.672]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2593,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.586,255,2.874,929,3.34,1176,2.658,2123,2.403,2258,2.328,2290,4.31,2291,4.05]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2594,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2123,2.403,2258,2.328]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1984,5.504,1985,5.393,2595,6.85]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1985,4.817,2595,6.118,2596,7.045,2597,6.486]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2595,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1386,5.99,1984,5.04,1985,6.542]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[749,2.863,1386,5.369,2597,5.959,2598,6.473,2599,6.473]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.092,372,1.323,696,2.756,1344,1.362,1386,7.628]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.586,756,1.926,1013,2.273,1176,2.658,1362,3.557,2123,2.403,2258,2.328,2343,4.31]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1579,4.271,2347,4.779,2348,4.779,2600,5.986,2601,5.986,2602,5.512]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.586,42,1.788,1176,2.658,1263,3.093,1969,3.207,1970,3.498,2123,2.403,2258,2.328]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2603,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.173,143,2.062,702,3.555,2604,6.272]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[241,1.659,665,5.621,668,3.895,1162,4.265,2604,5.621]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2604,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2123,2.565,2258,2.485]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,1160,2.222,1176,2.837,1819,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2605,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.965,9,0.078,11,0.78,19,3.787,29,0.721,31,0.934,35,0.537,60,1.453,65,1.453,126,4.732,167,2.262,181,1.237,243,1.782,311,1.757,366,1.321,372,0.692,399,1.181,478,1.701,532,2.561,1160,1.855,1344,0.712,1415,3.019,1521,2.975,1775,4.177,1776,5.957,1819,2.368,2284,3.116,2371,3.608,2606,7.182,2607,4.81]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,151,1.868,240,0.658,241,1.229,368,1.665,1176,2.36,1240,2.657,2123,2.134,2258,2.068,2393,3.42]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1683,2.618,1851,3.807,1852,3.807,2396,4.069,2397,4.069,2608,5.568,2609,5.568]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.056,29,1.029,35,0.387,201,5.306,240,1.271,241,2.372,244,3.078,265,3.162,311,3.38,372,0.988,399,1.687,1240,3.807,1263,3.935,1344,1.017,1854,5.153,2050,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.586,43,3.129,49,0.859,757,2.286,1176,2.658,1980,3.207,2123,2.403,2258,2.328]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2610,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.859,247,3.625,341,4.003,2274,6.647,2611,5.689]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2278,5.167,2612,6.473,2613,5.959,2614,6.473,2615,6.473]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.084,100,2.384,184,2.296,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2274,6.143,2611,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.004,247,3.907,341,4.314,2274,5.144,2616,5.784]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2278,5.624,2613,6.486,2616,6.118,2617,7.045]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2616,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2123,2.261,2258,2.19]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2123,2.403,2258,2.328]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,197,2.704,478,1.796,1176,2.5,2075,2.704,2076,3.473,2123,2.261,2258,2.19]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,276,2.747,1176,2.658,2052,2.961,2123,2.403,2258,2.328]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1863,4.193,2052,3.55,2490,4.999,2554,5.959,2555,5.959]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.19,49,0.808,90,1.528,119,2.944,185,2.442,303,1.243,336,3.056,618,3.017,2618,3.923]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2058,5.167,2618,4.999,2619,6.473,2620,5.959,2621,5.959]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.172,5,1.313,11,0.586,14,0.759,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1457,4.642,2080,5.441,2081,5.148,2622,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[240,0.822,701,2.995,1992,4.374,2623,5.986,2624,5.986,2625,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.723,1023,3.227,1176,3.278,2123,2.964,2258,2.872]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2215,6.41,2216,6.41,2626,7.728]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.626,90,1.734,367,3.733,698,3.515,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2627,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.313,11,0.586,14,0.759,30,2.328,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2628,5.986,2629,5.986]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.671,31,1.199,276,3.144,1176,3.041,2123,2.75,2258,2.665]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.605,31,1.081,199,2.563,701,2.786,2490,4.3,2605,4.836,2630,5.568]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[175,5.152,650,3.022,1669,6.272,2631,5.99]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2631,5.843,2632,6.486,2633,6.486,2634,6.486]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.067,14,0.805,35,0.323,117,1.118,119,2.079,123,2.913,174,2.504,175,2.56,181,0.923,192,1.663,274,2.621,297,6.884,316,2.364,323,1.578,336,2.159,379,2.56,475,2.159,618,2.131,650,3.413,681,3.116,751,1.795,886,2.105,904,3.303,908,2.864,990,3.116,1423,3.303,1521,2.219,1656,3.303,1995,3.303,2079,1.928,2425,3.303,2426,3.303,2461,5.272,2631,8.853,2633,3.303,2634,3.303,2635,3.588,2636,3.588,2637,3.588,2638,3.588,2639,3.588,2640,3.588,2641,3.588]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.401,14,0.81,30,2.485,123,2.932,185,2.771,639,2.234,2618,4.451]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2058,4.779,2618,4.624,2620,5.512,2621,5.512,2642,5.986,2643,5.986]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,756,2.056,1013,2.426,1362,3.797,2212,2.019,2334,2.318,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1579,4.271,2346,5.512,2347,4.779,2348,4.779,2644,5.986,2645,5.986]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.004,101,3.155,118,3.956,464,3.155,2646,5.784]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1203,4.02,1623,4.154,1624,4.154,2646,4.52,2647,5.204,2648,4.791,2649,4.791,2650,5.204]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.876,9,0.046,22,3.397,86,4.069,101,2.638,148,2.452,185,2.678,197,2.965,265,3.681,284,4.446,432,4.619,672,2.965,702,3.936,1414,4.836,1808,6.175,1900,6.944,2404,4.177,2467,3.973,2506,5.127,2646,8.878,2651,5.127]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,47,1.9,1317,4.31,1373,3.945,1762,4.17,2399,2.539,2400,2.503]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1317,4.445,1373,4.069,1377,4.836,1762,4.3,2652,5.568,2653,5.568,2654,5.568]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.534,9,0.082,16,1.558,29,0.785,35,0.56,64,2.03,74,2.578,244,2.347,255,4.072,258,3.001,324,1.835,330,2.302,357,4.182,372,0.754,509,3.152,513,3.393,696,1.57,749,2.317,780,2.558,906,3.073,1344,0.776,1373,5.589,1385,4.823,1762,5.908,1766,4.823]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.046,61,1.111,184,1.784,1183,3.67,2212,2.165,2334,2.486]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.087,35,0.509,38,1.852,43,3.036,64,2.03,141,1.904,150,3.926,345,3.737,368,1.819,372,0.754,427,3.073,696,1.57,757,2.218,779,1.512,937,6.106,1183,6.939,1342,5.338,1344,0.776,1740,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,241,1.477,1160,2.222,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.368,1519,4.133,1520,4.726,2605,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[148,2.419,2655,7.262,2656,6.85]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.446,61,1.164,2587,4.999,2656,5.621,2657,6.473]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.077,11,0.761,61,1.26,89,2.14,117,2.183,164,1.986,197,3.73,575,4.398,1132,2.272,1308,3.661,2123,3.118,2212,3.285,2258,3.021,2334,2.818,2656,8.143]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[829,0.474]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.567,5,1.756,15,4.346,16,2.148]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.114,4,1.677,7,6.17]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.865,2,5.591,4,1.642,5,1.492,7,4.898,8,5.657,14,1.204,24,2.282,90,1.178,136,2.582,148,0.697,167,1.841,217,5.976,304,3.122,318,3.584,323,1.079,431,6.965,885,2.536,922,1.973,1056,4.334,1517,1.426,1675,1.704,1940,3.024,2658,2.271,2659,6.92,2660,6.135,2661,3.915,2662,3.915,2663,2.271,2664,2.091,2665,2.271]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,2212,2.165,2280,3.625,2334,2.486]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2280,3.625,2399,2.906,2400,2.864]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/wikis/dokuwiki-engine/",[395,7.999,2666,7.999]],["keywords//docs/websites/wikis/dokuwiki-engine/",[241,1.981,2032,4.651,2667,7.728]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.087,100,2.557,184,2.463,303,2.088,696,2.557,779,2.463,1028,3.223,2666,7.853]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.341,11,0.671,90,1.859,1831,3.228,2399,2.906,2400,2.864]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.076,35,0.522,60,2.075,141,2.497,148,2.107,240,0.943,265,3.162,303,1.681,306,4.794,311,2.509,621,4.312,675,2.57,1831,5.85,2668,6.325]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.004,143,1.902,241,1.707,702,3.278,2669,6.131]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[668,4.24,749,3.116,2670,7.045,2671,7.045]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.084,100,2.384,184,2.296,241,2.039,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2669,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[164,2.236,2212,2.763,2289,5.197]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.556,164,1.697,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.173,9,0.079,21,3.388,29,0.876,35,0.467,40,2.365,60,1.765,167,2.749,181,1.503,240,0.803,243,2.166,303,1.431,366,1.605,380,4.08,399,1.435,564,3.852,779,1.688,1517,3.669,1830,4.17,2289,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.299,1301,4.186,2212,2.53,2334,2.905]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[829,0.474]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.173,244,3.236,2673,6.649,2674,6.649]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1819,3.804,2673,7.116,2675,7.728]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.095,14,1.047,38,2.634,65,2.25,147,5.443,185,3.582,281,3.316,372,1.072,375,4.318,2674,8.991,2676,7.45]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.083,14,0.759,61,0.971,394,3.768,2035,3.557,2036,3.498,2212,1.892,2334,2.172]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[164,1.888,1984,4.648,1985,4.554,1986,4.062,2212,2.333]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.469,64,3.228,100,2.496,184,2.405,303,2.038,561,5.942,696,2.496,779,2.405,1028,3.147,1986,5.08]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[829,0.474]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.734,157,3.565,349,3.866,354,4.111,732,3.797,1743,3.94]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[117,2.016,349,4.342,732,4.265,916,4.517,2677,6.473]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.054,14,0.929,38,2.338,90,1.989,99,3.664,351,5.484,354,4.717,355,2.817,433,4.151,456,4.357,643,2.963,732,8.026,1743,4.521,2404,4.96,2678,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2031,5.539]],["keywords//docs/websites/wikis/twiki/",[454,4.24,1819,3.468,2031,4.036,2032,4.24]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[829,0.474]],["title//docs/applications/messaging/advanced-irssi-usage/",[147,5.763,475,4.746,2679,6.296]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,206,7.075,233,3.927,372,1.227,427,5.004,1344,1.263,1470,6.809,1486,6.809,1580,5.203]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.936,638,5.524,1050,5.524,1479,5.144,2679,5.316]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.04,35,0.484,38,1.701,43,2.788,80,1.99,90,2.161,123,3.654,147,3.515,160,3.99,324,1.685,355,2.049,427,2.822,456,4.732,650,3.006,661,5.957,672,2.561,696,1.442,969,4.177,1263,2.755,1740,5.012,1746,4.428,1748,6.612,2404,3.608,2679,8.143,2681,4.81,2682,4.81,2683,4.81,2684,4.81]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.549,151,2.245,164,1.634,235,3.098,697,2.73,2212,2.019]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2399,2.539,2400,2.503]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.26,42,1.788,61,0.971,240,0.741,312,2.373,2212,1.892,2334,2.172]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.133,42,1.684,47,1.79,49,0.81,182,3.022,198,3.352,202,2.708,213,3.295,240,0.699,312,2.235,372,0.732,575,3.193,607,3.147,628,3.55,653,3.629,702,4.373,1087,3.061,1344,0.753,1417,4.447,1640,3.352,1991,2.819,2040,7.005,2041,3.629,2042,3.717,2043,3.717,2044,3.717,2413,3.929]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2399,2.539,2400,2.503]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[245,4.879,1132,2.558,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.784,2038,3.961,2399,3.396,2400,3.348]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2400,2.581]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.549,151,2.245,235,3.098,245,3.565,697,2.73,1132,1.869]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.412,42,1.908,164,1.634,240,0.791,312,2.532,2212,2.019]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.201,42,1.734,47,1.844,49,0.834,182,3.112,198,3.451,202,2.789,213,3.393,240,0.719,312,2.302,575,3.288,607,3.24,628,3.656,653,3.737,702,4.447,1087,3.152,1417,4.544,1640,3.451,1991,2.903,2040,7.089,2041,3.737,2042,3.828,2043,3.828,2044,3.828,2413,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2399,2.539,2400,2.503]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.063,35,0.657,181,1.957,366,2.09,372,1.095,607,4.708,757,3.223,1344,1.127,2063,6.715]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1984,5.504,1985,5.393,2685,6.85]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[241,1.806,1683,3.313,1987,5.148,2685,6.118]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.068,100,2.496,184,2.405,303,2.038,372,1.198,696,2.496,779,2.405,1028,3.147,1344,1.233,2685,7.233]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[829,0.474]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.047,117,1.795,154,4.111,575,3.617,1984,4.022,1985,3.94,2686,5.005]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[241,1.806,1683,3.313,1987,5.148,2686,6.118]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.082,696,2.99,2686,8.664]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.293,241,1.707,245,4.12,1132,2.16,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.368,1519,4.133,1520,4.726,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.293,245,4.12,1132,2.16,1160,2.568,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.368,1519,4.133,2008,4.917,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.059,35,0.602,38,2.527,60,2.159,65,2.159,181,1.838,243,2.649,323,1.97,366,1.963,372,1.028,1160,3.664,1344,1.059,1545,5.223,1819,3.518]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.412,42,1.908,240,0.791,245,3.565,312,2.532,1132,1.869]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1579,4.618,2688,5.959,2689,6.473,2690,6.473,2691,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.965,4,1.865,9,0.04,14,0.676,16,2.136,29,1.076,35,0.575,38,1.701,60,2.169,65,1.453,243,1.782,323,1.325,324,2.516,366,1.321,372,0.692,378,3.402,422,2.214,675,1.8,676,2.114,757,2.037,766,1.809,1006,2.469,1045,3.232,1344,0.712,1576,2.536,1580,2.934,1581,3.515,2228,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[164,1.888,240,0.915,304,3.388,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[701,2.995,881,4.178,1015,4.779,1692,4.093,1693,5.512,2692,4.965]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[240,0.849,245,3.822,304,3.144,675,2.312,766,2.323,1132,2.004]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[701,3.525,1692,4.817,1694,6.118,2469,5.624]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2399,2.71,2400,2.672]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.605,675,2.083,1692,3.807,1698,5.126,1863,3.607,2480,4.445,2693,4.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.888,303,1.63,721,3.36,884,4.245,1013,2.804]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.997,447,3.648,650,2.949,721,3.554]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.038,14,0.658,35,0.397,59,3.202,98,4.912,131,3.647,136,2.342,185,2.251,233,4.33,303,1.723,308,2.939,366,1.286,415,2.818,447,3.645,519,4.294,650,2.946,721,4.267,751,3.521,766,2.647,980,3.341,981,3.341,988,3.341,1084,4.56,1086,2.682,1314,3.341,1907,3.421,1908,3.512]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.402,164,2.048,276,3.674,2212,2.53]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.162,164,2.386,199,2.756,701,2.995,2692,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1684,4.459,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.445,240,1.083,430,6.092]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.436,240,1.061,1696,5.092]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[148,2.334,167,3.579,318,4.879,511,5.878,621,4.777,1402,5.878,2291,5.709,2318,6.609,2548,6.609,2694,7.61,2695,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.173,240,0.992,743,5.152,2696,6.272]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.675,148,1.708,199,2.563,240,0.765,706,5.126,743,3.972,2696,4.836]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.059,1580,6.263]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,303,1.512,721,3.117,884,3.939,2212,2.165,2334,2.486]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,447,3.352,650,2.709,721,3.265,2334,2.604]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.671,303,1.512,721,3.117,884,3.939,2399,2.906,2400,2.864]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.65,447,3.1,650,2.505,721,3.02,2480,4.779,2693,4.965]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.293,61,1.197,276,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.162,61,1.076,199,2.756,701,2.995,2587,4.624,2697,5.512]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.402,245,4.467,276,3.674,1132,2.342]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.162,199,2.756,701,2.995,2387,5.199,2469,4.779,2687,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-centos-5/",[164,2.236,2054,4.467,2212,2.763]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2698,5.568]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2699,3.407,2700,3.346]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.063,35,0.429,201,5.878,240,1.36,241,2.538,244,3.41,311,2.78,372,1.095,1240,4.217,1263,4.359,1344,1.127,1854,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.388,158,3.34,164,1.531,192,2.503,2071,2.902,2072,3.852,2212,1.892]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2399,2.388,2400,2.354]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.084,14,1.118,265,3.661,311,2.905,372,1.144,779,2.296,1344,1.178,2050,5.335,2071,6.043]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2399,2.388,2400,2.354]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.059,35,0.403,201,5.521,240,1.305,241,2.436,244,3.203,265,3.291,311,3.471,372,1.028,1240,3.961,1263,4.095,1344,1.059,1854,5.362,2050,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.971,90,1.624,247,3.167,2212,1.892,2273,3.852,2274,4.17,2275,4.689,2334,2.172]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[247,3.797,2273,4.618,2277,5.621,2278,5.167,2701,6.473]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.971,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2212,1.892,2334,2.172]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,1576,3.039,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,756,2.309,1045,2.434,1576,3.413,2334,2.604]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,2071,2.73,2072,3.623,2212,1.779,2334,2.043]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,2445,4.624,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,1295,2.844,2399,2.906,2400,2.864,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.605,39,2.216,240,0.765,1295,2.563,2400,2.581,2480,4.445,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.387,39,2.734,151,2.676,169,3.557,181,2.38,240,0.943,265,3.162,281,3.058,311,2.509,372,0.988,702,3.381,1295,4.26,1344,1.017,1417,4.081,2668,6.325]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.784,1040,4.845,2399,3.396,2400,3.348]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,1040,4.016,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[639,2.395,643,2.768,938,4.312,2071,3.321,2074,5.125,2704,5.689]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[123,2.648,240,0.715,643,2.332,1276,4.791,2060,3.803,2071,2.797,2074,4.317,2705,5.204]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[131,3.865,143,2.56,416,7.155,639,3.474,643,4.016,2074,7.434,2706,8.963]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.984,143,1.765,164,1.752,169,3.199,1991,3.424,2212,2.165]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[240,0.968,1991,3.904,1993,5.026,2707,7.045]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.984,143,1.765,169,3.199,245,3.822,1132,2.004,1991,3.424]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[164,1.888,240,0.915,1295,3.066,2212,2.333,2575,5.316]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.576,164,1.835,240,0.889,1295,2.98,2576,5.167]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.638,9,0.075,14,0.947,29,1.009,35,0.38,151,2.625,169,3.489,181,2.349,240,0.925,372,0.969,399,1.655,460,3.24,702,3.317,1295,4.77,1344,0.998,1417,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.752,1585,4.772,1805,4.772,2212,2.165,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.997,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.074,35,0.619,639,3.474,2468,8.675]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[151,2.104,164,1.531,240,0.741,241,1.384,368,1.875,1240,2.992,2212,1.892,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[151,2.104,240,0.741,241,1.384,245,3.34,368,1.875,1132,1.751,1240,2.992,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.07,35,0.481,240,1.463,241,2.73,372,1.227,1240,4.727,1344,1.263]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.388,61,0.971,151,2.104,235,2.902,697,2.558,2212,1.892,2334,2.172]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.626,1585,4.451,1805,4.451,2399,2.71,2400,2.672,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.703,756,2.309,2000,4.426,2400,3.001,2467,4.618]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.015,284,5.765,756,2.577,2708,6.272]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[756,2.758,2708,6.712,2709,7.116]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.054,14,1.267,21,3.832,35,0.508,38,2.338,169,3.424,465,3.745,475,3.979,756,3.217,971,4.215,987,6.088,1006,4.628,1640,4.357,1940,5.107,2708,8.911]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2710,7.545,2711,7.999]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1683,3.634,2710,6.712,2712,7.728]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.066,16,1.683,29,0.848,35,0.456,47,1.991,49,0.901,141,2.057,151,2.204,156,2.587,181,1.455,240,1.414,281,2.519,323,1.559,366,1.554,372,0.814,702,2.785,1068,4.134,1344,0.838,1417,3.361,2664,5.209,2710,8.196,2711,7.446]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.734,143,1.646,702,2.837,2212,2.019,2334,2.318,2713,5.005]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.216,61,1.001,668,3.351,1162,3.669,2025,4.177,2713,4.836,2714,5.568]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.058,14,0.985,31,1.36,33,3.924,35,0.528,142,3.924,144,5.411,240,0.962,372,1.008,1344,1.037,2413,7.242,2577,8.143,2713,8.143]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.341,61,1.111,90,1.859,1831,3.228,2212,2.165,2334,2.486]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.529,61,1.267,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,255,3.068,929,3.565,2212,2.019,2290,4.6,2291,4.323,2334,2.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1055,3.396,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2325,5.126,2715,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[303,1.512,643,2.768,929,3.822,1086,3.539,2300,4.772,2704,5.689]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2058,6.17,2716,7.728,2717,7.728]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.906,16,2.126,29,1.071,89,2.184,117,2.227,119,4.143,123,3.637,131,3.083,336,4.302,618,4.246,929,4.422,1086,6.517,2060,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.299,2212,2.53,2289,4.758,2334,2.905]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.556,61,1.076,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.067,9,0.075,21,3.082,29,0.797,35,0.436,40,2.151,60,1.606,167,2.5,181,1.368,240,1.062,303,1.301,366,1.46,372,0.765,380,3.711,397,3.389,399,1.306,532,2.831,564,3.503,779,1.535,1344,0.787,1517,3.338,1830,3.793,2171,4.895,2289,7.543]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1585,4.451,1805,4.451,2212,2.019,2334,2.318,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2718,4.795]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.788,61,0.971,473,3.389,478,1.909,2065,3.852,2066,2.961,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.173,143,2.062,669,5.277,702,3.555]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[668,4.651,669,5.647,1162,5.092]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.084,35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,669,7.445,696,2.384,779,2.296,1028,3.005]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.971,197,2.874,478,1.909,2075,2.874,2076,3.692,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,478,2.288,819,4.063,2075,3.446,2079,3.479]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.686,35,0.49]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.058,31,1.368,701,3.525,1433,6.486]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.134,31,0.947,35,0.541,49,0.776,80,3.002,124,2.861,145,3.766,146,3.563,148,1.496,149,3.403,153,4.235,181,1.254,192,2.261,199,2.245,316,3.213,335,2.826,366,1.992,378,2.31,422,3.34,511,5.604,571,3.061,639,1.89,673,2.345,676,2.143,696,1.462,941,2.596,1402,3.766,1666,4.49,1676,4.235,2019,3.403,2050,3.271,2719,4.49,2720,4.49]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.299,1040,4.845,2212,2.53,2334,2.905]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,1040,4.726]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.004,101,3.155,330,2.926,437,5.524,2721,5.784]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1623,5.167,1624,5.167,2648,5.959,2721,5.621,2722,6.473]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.494,9,0.061,14,1.047,90,2.241,174,5.199,355,3.174,367,6.326,415,4.483,432,6.179,437,6.179,2651,6.859,2721,9.461]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,184,1.664,743,4.111,1940,4.451,2045,4.111,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2045,5.026,2046,6.118,2334,2.834]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.084,14,0.929,29,0.991,35,0.578,136,3.308,281,2.943,372,0.951,386,4.717,575,4.151,696,1.982,1340,5.278,1344,0.979,2045,6.433,2047,5.484,2049,5.107,2574,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.542,151,2.814,2723,6.272,2724,6.272]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[240,0.822,2307,4.965,2723,5.199,2724,5.199,2725,5.986,2726,5.986]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.042,33,3.167,35,0.556,142,2.891,181,1.946,182,3.066,202,2.748,213,4.902,240,1.355,312,2.268,366,2.078,372,0.743,702,3.725,1068,5.529,1344,0.764,1417,4.495,2040,5.076,2041,5.399,2723,4.483,2724,4.483,2727,5.162]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[829,0.474]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.015,284,5.765,756,2.577,2728,6.272]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[757,2.741,1521,4.004,2709,5.959,2728,5.621,2729,6.473]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.046,14,0.783,29,0.834,124,3.267,133,4.619,149,5.58,156,3.655,200,4.836,213,3.607,229,3.496,283,4.177,290,3.267,320,2.937,324,1.951,368,1.934,386,3.973,607,4.946,676,2.447,757,2.358,1900,4.836,2728,8.878,2730,5.569,2731,5.127,2732,5.569,2733,5.569]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[829,0.474]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.239,4,1.341,185,2.971,639,2.395,643,2.768,1086,3.539]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2058,6.17,2734,7.728,2735,7.728]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.786,4,1.932,16,1.931,29,0.972,117,2.022,119,3.762,131,2.799,157,4.015,185,3.121,336,3.906,618,3.856,639,2.516,643,3.989,696,1.945,1086,6.265,2060,4.743]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.671,61,1.111,379,4.408,639,2.395,1352,5.689,1712,4.635]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[976,6.118,1712,5.285,2736,7.045,2737,7.045]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.505,324,3.14,391,6.129,465,5.076,976,7.784,1712,6.724]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.784,2054,4.09,2738,4.758,2739,4.758]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2740,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.784,2054,4.09,2399,3.396,2400,3.348]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2741,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.061,29,1.116,35,0.55,49,1.186,143,2.128,181,1.916,241,1.91,366,2.045,398,4.044,525,4.826,696,2.233,797,5.094,2054,5.531]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2212,1.779,2334,2.043,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.34,49,0.917,61,1.036,757,2.44,1980,3.423,2212,2.019,2334,2.318]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2351,5.512,2587,4.624]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2399,2.71,2400,2.672]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2234,4.965,2480,4.779]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.064,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,372,1.119,757,4.253,1344,1.152,1980,4.62]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.293,164,1.888,1160,2.568,1819,3.278,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.368,1519,4.133,2008,4.917,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.063,29,1.14,35,0.558,60,2.298,65,2.298,181,1.957,243,2.82,366,2.09,399,1.869,1160,3.818,1545,5.561,1819,3.746]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,1160,2.383,1819,3.041,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.256,1519,3.797,2008,4.517,2339,5.621,2743,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2399,2.906,2400,2.864]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2744,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,1819,3.591,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.004,118,3.956,330,2.926,331,5.316,2745,5.784]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1203,5.441,2649,6.486,2745,6.118,2746,7.045]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.849,9,0.054,14,0.595,15,2.547,16,1.259,17,0.984,18,0.99,35,0.367,49,0.674,90,2.392,118,2.515,143,1.209,155,1.741,169,2.192,174,2.954,199,1.949,217,2.954,240,0.895,265,4.885,274,3.093,324,1.483,355,1.803,392,2.582,464,2.005,473,2.657,523,3.379,639,2.527,886,2.483,938,2.954,1023,2.051,1061,2.894,1288,3.897,2745,8.846,2747,4.233]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[829,0.474]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.571,218,5.627,565,6.542]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.053,21,3.016,117,1.621,323,1.434,713,3.016,2748,5.204,2749,4.791,2750,5.204]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.473,38,2.137,149,4.219,196,5.251,324,2.118,368,2.099,475,3.638,564,5.585,624,4.056,707,5.566,869,4.67,1091,4.535,1830,4.313,2731,7.803,2749,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.293,164,1.888,241,1.707,1160,2.568,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.368,1519,4.133,1520,4.726,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.063,35,0.62,38,2.691,60,2.298,65,2.298,241,1.951,243,2.82,323,2.097,532,4.051,1160,2.934,2284,4.93,2371,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,241,1.584,1160,2.383,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.368,1519,4.133,1520,4.726,2339,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.08,29,1.116,35,0.42,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.553,117,2.25,323,1.99,713,4.186]],["keywords//docs/tools-reference/linux-system-administration-basics/",[117,1.621,199,2.396,757,2.204,780,2.541,793,3.559,2751,5.204,2752,4.791,2753,5.204]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.019,11,0.247,16,0.676,29,1.133,35,0.221,38,0.803,43,1.317,49,1.29,61,0.408,65,1.558,84,1.704,90,1.552,117,1.608,143,1.118,147,3.771,148,2.486,164,0.644,175,2.793,184,1.131,185,1.883,189,0.951,199,1.046,205,2.627,214,4.116,240,0.312,255,1.209,276,1.156,286,1.272,323,1.907,355,2.198,372,0.327,378,1.076,398,2.126,399,0.558,424,1.405,478,1.384,479,1.704,598,2.733,624,1.524,635,1.704,640,2.458,650,0.951,671,1.66,673,1.883,676,0.998,682,2.793,690,1.621,756,1.841,892,1.621,908,3.126,1006,1.166,1047,1.66,1059,1.704,1061,1.553,1068,1.66,1308,1.187,1396,4.043,1444,1.973,1544,1.621,1613,1.973,1869,1.813,1883,1.973,2141,1.973,2404,1.704,2440,1.973,2451,1.973,2541,2.091,2631,1.884,2632,2.091,2754,2.091,2755,2.271]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.984,143,1.765,240,0.849,245,3.822,304,3.144,1132,2.004]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[240,1.061,1863,5.007,2469,6.17]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.299,2054,4.09,2212,2.53,2334,2.905]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.556,1095,3.603,2054,3.39,2055,4.374,2756,5.986,2757,5.986]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1970,4.003,2009,3.625,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.052,14,0.896,29,0.955,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,399,2.159,478,2.253,713,3.694,780,3.112,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[829,0.474]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2489,5.689,2758,5.366]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[749,3.116,2101,5.624,2758,6.118,2759,7.045]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.087,14,0.985,35,0.395,100,2.1,184,2.023,286,3.924,303,1.715,372,1.008,696,2.1,779,2.023,1028,2.647,1344,1.037,2758,9.801]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/apache-access-control/",[240,1.083,464,3.736,639,3.057]],["keywords//docs/web-servers/apache/apache-access-control/",[199,2.563,240,0.765,303,1.363,701,2.786,1548,4.836,2760,5.568,2761,5.568]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.696,18,1.707,199,4.434,240,1.002,320,3.847,464,4.563,509,4.39,639,3.733,751,3.65,942,3.291,1061,4.989,1501,5.824,2424,6.717]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[192,3.087,240,0.915,310,4.062,464,3.155,639,2.581]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[199,2.98,240,0.889,303,1.584,701,3.238,1548,5.621]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.847,156,3.335,192,3.382,310,5.875,464,5.433,475,4.39,623,4.28,639,4.445,2225,6.717]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.859,367,4.003,698,3.769,2212,2.165,2334,2.486]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[698,3.652,2239,6.719,2240,4.779,2241,4.779,2762,5.986]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.006,5,1.219,9,0.08,31,1.71,33,2.099,35,0.634,38,1.773,42,1.661,60,1.515,65,1.515,100,1.503,184,1.448,240,0.689,303,1.227,323,1.382,372,0.721,380,3.5,696,1.503,698,5.374,699,2.84,756,1.789,779,1.448,1028,1.895,1130,3.5,1344,0.743]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,169,2.984,1991,3.194,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.671,90,1.859,367,4.003,698,3.769,2399,2.906,2400,2.864]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2763,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.978,5,1.186,9,0.079,29,0.731,31,1.682,33,2.041,35,0.606,42,1.615,60,1.473,65,2.191,100,1.462,184,1.408,240,0.67,265,2.245,303,1.193,311,1.781,372,0.702,380,3.403,399,1.197,696,1.462,698,5.286,699,2.762,756,1.74,779,1.408,1028,1.843,1130,3.403,1344,0.722]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.239,164,1.752,766,2.323,785,3.769,786,3.171,1132,2.004]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[164,1.835,1132,2.099,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.239,11,0.671,61,1.111,766,2.323,785,3.769,786,3.171]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.703,61,1.164,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[608,4.751,675,2.492,766,2.504,785,4.062,786,3.418]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1133,4.855,1134,5.167,2765,6.473,2766,5.621,2767,6.473]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.753,9,0.072,45,3.891,46,3.841,766,3.287,785,5.332,786,4.486,1280,6.236]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[829,0.474]],["title//docs/platform/linode-beginners-guide/",[89,2.41,1153,5.916,1522,7.262]],["keywords//docs/platform/linode-beginners-guide/",[1659,5.624,2752,6.486,2768,7.045,2769,7.045]],["toc//docs/platform/linode-beginners-guide/",[2,2.126,9,0.033,29,0.598,32,2.546,38,1.412,43,2.315,60,1.206,64,2.415,89,3.515,117,1.244,131,1.722,148,1.225,155,1.643,181,1.027,207,3.701,246,2.731,276,2.032,301,3.188,464,1.892,478,1.412,518,2.996,576,3.188,623,3.655,676,1.755,690,2.849,734,2.47,756,1.425,779,1.153,945,3.468,1022,2.731,1023,1.935,1771,3.084,1827,5.411,1866,3.468,2120,3.468,2434,3.468,2770,3.993,2771,3.993,2772,6.231,2773,3.993,2774,3.993]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[675,2.702,766,2.715,1130,5.04,1131,4.533]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1280,5.026,1692,4.817,2766,6.118,2775,7.045]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.711,9,0.07,202,4.541,766,4.004,786,4.378,941,4.541,1136,5.953,1280,6.086]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[829,0.474]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,169,3.199,378,2.927,532,3.289,2776,6.179,2777,5.689]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1280,5.026,1692,4.817,2766,6.118,2777,6.486]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.08,751,4.854,766,3.648,1280,6.922]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[119,3.581,148,1.895,336,3.718,618,3.67,1022,4.225,2778,5.366]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1710,4.779,1712,4.491,2778,5.199,2779,5.986,2780,5.986,2781,5.986]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.063,14,1.07,131,4.271,232,5.878,233,3.503,372,1.095,643,3.41,942,3.432,1130,5.311,1344,1.127,2778,8.6,2782,7.61]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.671,68,4.515,148,1.895,1022,4.225,1709,4.772,2399,2.906]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.067,14,1.144,131,3.509,232,6.284,233,3.746,372,1.171,643,3.646,942,3.67,1344,1.205,1709,7.984]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,756,2.376,1997,3.956,2212,2.333,2334,2.679]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1997,3.845,2000,4.426,2001,4.855,2783,6.473,2784,5.621]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.723,756,2.376,1997,3.956,2738,4.388,2739,4.388]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2785,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.723,756,2.376,1997,3.956,2399,3.132,2400,3.087]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2786,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2787,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1972,3.219,1973,3.219,1974,3.165,1975,3.165,2009,2.866,2013,3.665,2014,3.219,2788,4.885,2789,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.445,38,2.788,240,1.083]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.365,199,2.98,240,0.889,701,3.238,1979,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.526,35,0.429,38,2.691,61,1.368,148,3.037,181,1.957,217,5.311,240,1.045,366,2.09,671,5.561,951,6.075,960,6.312,2451,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.992,375,4.186,903,5.417,2376,5.417]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.822,375,3.47,624,4.016,1696,3.944,2376,4.491,2790,5.512]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.849,18,1.861,331,6.349,375,5.905,624,5.335,745,5.24,903,7.643,1429,7.322,2376,5.966,2393,5.674]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[174,5.04,175,5.152,240,0.992,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[240,0.968,780,3.44,1696,4.642,2791,7.045]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.353,149,4.369,181,1.61,240,1.479,273,4.998,311,2.287,366,1.719,368,2.174,525,4.055,676,3.816,780,4.241,1006,5.118,1402,4.835,1910,5.764,2720,5.764,2792,6.26,2793,6.26]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[240,0.822,701,2.995,1992,4.374,2794,5.986,2795,5.986,2796,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1045,1.636,1364,2.732,1925,3.264,2282,2.438,2557,3.361,2558,3.361,2559,3.361,2560,3.361,2688,4.006,2797,4.351,2798,4.006]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2799,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,749,2.945,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1648,4.999,2095,4.999,2693,5.369,2800,6.473,2801,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1457,4.642,2080,5.441,2081,5.148,2802,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.582,1055,3.652,1152,4.016,2803,5.986,2804,5.986,2805,5.986]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2399,2.71,2400,2.672]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1863,4.193,2052,3.55,2693,5.369,2806,6.473,2807,6.473]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.936,167,3.132,185,3.202,633,4.468,2808,5.144]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2808,5.441,2809,7.045,2810,7.045,2811,7.045]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.053,14,0.912,16,1.931,29,0.972,45,2.889,46,2.852,65,1.96,117,2.022,136,3.247,148,1.991,157,4.015,167,3.052,185,4.281,233,2.988,323,1.788,633,6.817,643,2.908,696,1.945,2808,5.013]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.15,164,2.048,749,3.194,2212,2.53]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[164,2.191,749,3.418,2692,6.41]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[123,3.674,148,2.215,1022,4.938,2812,6.272]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1710,5.167,1712,4.855,2812,5.621,2813,6.473,2814,6.473]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.074,14,1.26,372,1.289,1130,6.255,1344,1.327,2812,9.536]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.047,49,0.917,61,1.036,2015,3.098,2089,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2815,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2816,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2817,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2818,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2819,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.06,143,1.902,240,0.915,375,3.86,624,4.468]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[240,0.889,375,3.751,624,4.342,2696,5.621,2790,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.084,18,2.097,375,5.195,624,7.366,1402,6.923,2820,8.963]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1970,3.733,2009,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1984,4.312,1985,4.225,1986,3.769,2212,2.165,2334,2.486]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.459,64,3.154,100,2.439,184,2.349,303,1.991,372,1.171,561,5.805,779,2.349,1028,3.075,1344,1.205,1986,4.963]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.059,11,0.784,62,3.527,2821,6.272]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2032,4.651,2821,6.712,2822,7.728]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.851,35,0.6,64,3.306,561,6.086,1023,4.133,2821,10.084]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.065,189,3.301,667,4.811]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[241,1.427,667,3.396,668,3.351,1162,3.669,1683,2.618,1703,5.126,2025,4.177]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.068,14,1.171,29,1.248,35,0.469,64,3.228,189,3.486,667,7.006,696,2.496]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.15,749,3.194,1132,2.342,2823,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1782,5.148,1783,5.285,2824,7.045,2825,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.15,245,4.467,749,3.194,1132,2.342]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1782,5.148,1783,5.285,2826,7.045,2827,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,240,0.915,1164,3.73,2212,2.333,2334,2.679]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.077,12,3.596,14,0.985,29,1.05,60,2.116,80,2.898,205,4.7,240,0.962,296,4.162,311,2.559,372,1.008,399,1.72,1164,5.92,1344,1.037,2333,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.047,11,0.626,240,0.791,1164,3.228,1176,2.837,2699,3.866,2700,3.797]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.616,1968,5.624,2330,5.843,2828,7.045]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.079,12,3.744,14,1.026,60,2.203,80,3.018,205,4.894,240,1.002,296,4.334,311,2.665,372,1.05,1164,6.041,1344,1.08,2333,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2699,3.866,2700,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2829,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.936,123,3.388,131,2.872,643,2.984,2060,4.866]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2060,5.647,2830,7.728,2831,7.728]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.06,131,3.146,151,2.842,181,1.876,185,4.632,335,4.228,368,2.533,643,4.316,938,5.092,1086,4.179,1087,4.39,1456,5.824,2060,7.038]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2832,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1969,3.423,1970,3.733,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1969,3.092,1971,3.803,1972,3.429,1973,3.429,1974,3.371,1975,3.371,2014,3.429,2501,4.791]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.626,756,2.056,1013,2.426,1362,3.797,2343,4.6,2699,3.866,2700,3.797]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1579,5.026,2347,5.624,2348,5.624,2602,6.486]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2738,3.797,2739,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2798,4.498]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.844,14,1.015,1943,6.649,2808,5.578]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2808,5.441,2833,7.045,2834,7.045,2835,7.045]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.8,8,5.199,20,4.37,35,0.614,49,1.186,337,5.315,633,4.997,639,2.887,643,3.338,2808,5.754,2836,7.45]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2738,3.797,2739,3.797]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1863,4.564,2052,3.864,2837,7.045,2838,6.118]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.056,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,372,0.988,639,3.587,734,5.724,793,6.327,1006,3.526,1344,1.017,2052,5.075]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[164,1.752,756,2.205,1013,2.601,1362,4.071,2212,2.165,2343,4.932]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1579,5.026,2347,5.624,2348,5.624,2839,7.045]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.083,65,2.349,100,2.331,148,2.385,184,2.246,303,1.904,323,2.143,696,3.01,779,2.246,1028,2.939,1362,5.125]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[829,0.474]],["title//docs/databases/postgresql/centos-5/",[5,1.502,14,0.869,30,2.665,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/postgresql/centos-5/",[30,3.038,1055,4.297,1152,4.726,2840,7.045]],["toc//docs/databases/postgresql/centos-5/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/centos-5/",[829,0.474]],["title//docs/databases/postgresql/fedora-12/",[5,1.502,14,0.869,30,2.665,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/postgresql/fedora-12/",[1055,4.714,1152,5.185,2841,7.728]],["toc//docs/databases/postgresql/fedora-12/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-12/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.163,5,1.774,9,0.06,30,4.65,35,0.411,324,2.556,372,1.386,1056,4.179,1060,4.807,1344,1.426]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.208,5,1.85,9,0.063,30,4.747,35,0.429,324,2.666,372,1.095,1056,4.359,1060,5.014,1344,1.127]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,2212,2.019,2282,3.228,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2843,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.006,4,2.112,9,0.041,14,1.041,16,2.204,29,1.32,35,0.548,60,1.515,65,1.515,243,1.858,324,2.596,366,1.377,372,0.721,378,3.509,399,1.231,422,2.309,675,1.876,757,2.124,766,1.886,1045,3.313,1344,0.743,1580,3.059,2228,3.429,2282,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,240,0.849,1295,2.844,2212,2.165,2334,2.486,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,2576,5.624]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.058,14,0.985,29,1.05,35,0.395,39,2.788,151,2.73,169,3.628,181,2.412,240,0.962,281,3.118,372,1.008,399,1.72,702,3.448,1295,4.316,1344,1.037,1417,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.671,240,0.849,1295,2.844,2575,4.932,2699,4.145,2700,4.071]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.605,39,2.216,240,0.765,1295,2.563,2576,4.445,2700,3.669,2844,5.568]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.076,14,0.966,35,0.387,39,2.734,64,2.663,151,2.676,169,3.557,181,2.38,240,0.943,281,3.058,372,0.988,702,3.381,1295,4.817,1344,1.017,1417,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,276,2.932,2052,3.16,2212,2.019,2334,2.318]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1863,4.564,2052,3.864,2587,5.441,2697,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.06,35,0.411,123,3.712,183,4.58,303,2.357,372,1.05,639,3.733,734,5.959,793,6.586,1344,1.08,2052,5.283]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.041,101,2.927,102,4.635,368,2.146,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[840,5.285,841,5.026,1566,5.624,1567,5.624]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.053,61,1.744,164,2.375,189,2.488,263,3.164,550,3.078,1013,3.526,1132,1.928,1176,2.926,1238,4.343,1555,3.577,1699,2.563,1794,3.051,2123,2.646,2195,2.858,2212,2.083,2258,2.563,2845,5.944,2846,5.944,2847,5.944,2848,5.944]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[829,0.474]],["title//docs/tools-reference/tools/introduction-to-rsync/",[124,5.097,1937,6.935]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.964,6,4.836,885,3.607,1509,4.836,1937,4.445,2655,5.126,2849,5.568]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[422,3.927,938,5.953,1937,9.269,2850,8.53,2851,8.53,2852,8.53,2853,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.401,14,0.81,30,2.485,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.038,1055,4.297,1152,4.726,2854,7.045]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/how-to-configure-git/",[80,3.263,116,4.048,469,5.197]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.5,61,0.828,116,2.362,1308,2.405,1503,2.847,1622,3.997,1623,3.674,1624,3.674,1625,3.818,2855,4.603]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.42,38,2.634,116,5.591,185,3.582,197,3.966,265,4.496,355,3.174,422,4.496,437,6.179,604,5.443,1530,6.47]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.055,116,3.418,117,2.075,119,3.86,123,3.388]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[116,3.322,1622,5.621,1623,5.167,1624,5.167,1625,5.369]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.076,80,3.805,116,6.162,124,5.395]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[117,2.457,124,4.627,593,6.092]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[117,2.408,1808,5.969,2856,7.728]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.069,22,2.281,49,0.595,80,2.448,84,2.805,89,1.808,100,1.121,101,1.772,117,2.834,131,1.613,148,1.815,160,3.102,167,4.278,264,2.888,303,0.915,324,1.31,368,1.299,369,2.423,392,3.61,422,1.722,433,2.347,469,2.464,509,2.251,576,2.985,640,2.347,680,2.888,690,2.668,779,2.626,960,3.102,1344,0.554,1455,3.248,1468,3.248,1676,3.248,1776,4.908,1808,2.888,1959,3.248,2133,3.443,2857,5.918,2858,3.74,2859,3.74,2860,3.74]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[117,2.457,324,2.763,1061,5.393]],["keywords//docs/tools-reference/linux-users-and-groups/",[117,1.865,324,2.097,392,3.652,2542,4.965,2861,5.986,2862,5.986]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.398,22,2.819,148,2.866,156,2.113,167,3.946,173,3.1,274,3.377,291,3.045,316,3.045,324,3.274,355,1.969,377,2.781,392,6.116,422,3.208,433,4.375,465,2.617,570,3.833,844,4.013,968,4.254,1005,3.689,1061,6.389,1264,3.377,2542,5.781,2546,4.254,2863,4.621]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[323,2.173,2126,6.85,2127,7.262]],["keywords//docs/security/recovering-from-a-system-compromise/",[2864,7.045,2865,8.665,2866,6.486]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.538,35,0.373,89,2.755,207,3.928,234,4.832,623,3.879,885,5.841,1466,4.717,1811,5.484,2125,7.479,2483,6.088,2719,6.088,2867,6.612,2868,6.612,2869,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,240,0.791,304,2.932,675,2.156,766,2.167,2212,2.019,2334,2.318]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1692,4.817,1697,6.486,1863,4.564,2587,5.441]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.293,164,1.888,452,3.48,1188,3.545,2212,2.333]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1189,4.24,1504,4.917,1505,4.358,2870,7.045]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,452,3.228,1188,3.289,2212,2.165,2334,2.486]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1189,4.24,1504,4.917,1505,4.358,1902,6.118]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,2699,3.866,2700,3.797]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1189,4.24,1504,4.917,1505,4.358,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.671,31,1.199,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.055,89,2.035,99,3.691,101,3.155,1514,5.784]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[899,6.41,900,6.712,1019,7.116]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.302,16,1.931,29,0.972,35,0.366,80,2.685,89,2.72,226,3.302,366,2.79,513,4.205,575,6.379,637,3.856,643,2.908,885,4.205,1269,8.197,1516,4.869,2871,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.671,240,0.849,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.064,35,0.438,47,2.737,156,3.556,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,909,5.428,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2699,3.622,2700,3.557]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[240,0.822,701,2.995,1992,4.374,2872,5.986,2873,5.986,2874,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.341,5,1.502,14,0.869,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1457,5.092,2081,5.647,2875,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.341,5,1.502,14,0.869,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1836,5.969,1837,6.41,2876,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1457,4.642,2080,5.441,2081,5.148,2877,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1457,4.642,2080,5.441,2081,5.148,2878,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.251,5,1.401,14,0.81,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1457,4.642,2081,5.148,2366,6.486,2879,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[829,0.474]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.325,61,1.036,309,2.771,611,3.797,2212,2.019,2334,2.318,2880,5.763]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[650,2.949,2881,7.045,2882,7.045,2883,7.045]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.076,35,0.518,309,5.364,372,1.323,1344,1.362]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.051,11,0.671,240,0.849,1164,3.461,2738,4.071,2739,4.071]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.072,1164,3.353,2330,4.965,2838,5.199,2884,5.986,2885,5.986]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.984,61,1.111,143,1.765,1155,3.769,2212,2.165,2334,2.486]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[701,3.238,2886,6.473,2887,6.473,2888,6.473,2889,6.473]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.046,29,0.848,35,0.456,40,2.289,61,1.017,145,4.37,146,4.134,154,4.037,156,2.587,181,2.427,366,2.591,368,1.965,372,0.814,399,1.389,647,4.53,1155,4.933,1158,7.023,1159,4.914,1344,0.838,1501,4.517,1768,4.693,1905,5.209]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[175,5.152,398,3.921,650,3.022,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2865,9.209,2866,7.116]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.335,29,1.285,175,6.12,234,4.495,240,0.845,304,3.13,398,6.102,650,2.574,780,3.004,827,4.495,961,4.614,989,5.663,1669,5.342,1797,3.805,2069,5.987,2173,5.102,2890,6.151,2891,6.151]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.015,89,2.206,369,4.678,905,5.152]],["keywords//docs/networking/using-the-linode-shell-lish/",[369,4.564,905,5.026,916,4.917,1117,5.148]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,131,2.44,143,1.616,151,2.204,155,2.327,233,2.605,304,2.879,316,3.728,349,3.796,355,2.411,416,4.517,475,3.405,720,4.244,736,4.914,905,7.347,1084,3.665,2892,5.658,2893,5.658,2894,5.658,2895,5.658,2896,5.658,2897,5.658,2898,5.658,2899,5.658,2900,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.221,349,5.828]],["keywords//docs/networking/ssh/using-the-terminal/",[2901,7.728,2902,7.728,2903,7.728]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.32,22,2.613,88,3.057,90,1.289,142,2.4,148,2.756,160,5.457,167,4.226,184,1.237,206,3.554,218,3.057,233,1.972,323,1.813,349,2.874,355,3.412,377,3.96,430,3.309,509,2.578,574,3.554,598,6.272,599,3.42,624,2.874,682,3.057,732,2.823,885,2.775,917,3.945,943,3.214,1093,3.721,1743,2.93,1808,3.309,1873,3.554,2404,3.214,2904,4.284,2905,4.284,2906,4.284]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[124,4.627,477,4.811,478,2.788]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1702,5.843,2907,7.045,2908,7.045,2909,7.045]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.946,148,1.823,378,2.816,422,2.736,476,4.93,477,5.109,478,3.722,673,4.027,767,5.473,1230,4.591,1253,4.591,1254,4.745,1396,3.916,1719,4.93,2076,4.064,2754,5.473,2910,5.944,2911,5.473,2912,5.944,2913,5.944,2914,5.944,2915,5.944]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.984,143,1.765,164,1.752,240,0.849,304,3.144,2212,2.165]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[240,1.061,1863,5.007,2692,6.41]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[701,2.995,1492,4.779,1906,5.199,2916,5.986,2917,5.986,2918,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.004,143,1.902,702,3.278,1230,5.144,2919,6.131]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2920,8.559,2921,8.559]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.302,5,1.578,9,0.073,64,2.516,100,1.945,184,1.874,244,2.908,303,1.589,422,2.988,460,3.121,608,4.631,779,1.874,1028,2.453,1230,7.849,2919,9.357,2922,6.491,2923,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[829,0.474]],["title//docs/networking/dns/dns-manager-overview/",[90,2.373,478,2.788,877,5.763]],["keywords//docs/networking/dns/dns-manager-overview/",[1483,5.126,1484,4.836,1654,5.126,1655,5.126,1702,4.618,1822,4.618,2924,5.568]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.568,16,1.201,22,2.464,29,1.156,45,1.798,46,1.775,49,0.643,80,1.671,84,3.03,90,1.215,155,2.586,214,2.71,255,2.15,372,0.581,377,2.431,378,5.111,469,2.661,477,3.835,478,2.729,479,3.03,603,2.661,640,2.536,673,3.023,780,1.972,1006,2.073,1074,2.951,1396,6.874,1554,3.508,1821,3.35,1822,3.35,1909,3.508,1941,3.508,2911,3.719,2925,4.039,2926,4.039]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.06,61,1.197,749,2.945,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1496,6.41,1887,6.712,2927,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.671,49,0.984,749,2.733,1176,3.041,2699,4.145,2700,4.071]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1645,7.116,2928,7.728,2929,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.251,5,1.989,9,0.085,16,1.71,29,0.861,35,0.661,49,1.302,143,1.642,181,2.104,240,0.79,241,1.474,323,1.584,366,2.246]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.723,49,1.06,749,2.945,2738,4.388,2739,4.388]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1648,5.969,2095,5.969,2838,6.712]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/linux-package-management/",[65,2.382,90,2.373,117,2.457]],["keywords//docs/tools-reference/linux-package-management/",[264,4.02,680,4.02,1817,4.791,2930,5.204,2931,4.791,2932,4.791,2933,5.204,2934,4.791]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.192,61,0.614,65,3.327,90,2.94,100,1.023,117,1.714,150,1.752,164,0.968,185,1.642,197,1.817,264,4.25,318,1.429,323,0.941,355,1.454,372,0.491,391,2.334,422,2.533,475,2.055,593,2.637,680,2.637,909,2.383,1132,1.107,1308,2.875,1344,0.506,1503,2.112,1657,2.725,1658,2.725,1687,2.965,2931,5.066,2932,3.143,2934,6.364,2935,3.414,2936,3.414,2937,3.414,2938,3.414,2939,3.414,2940,3.414,2941,3.414,2942,3.414,2943,3.414,2944,3.414,2945,5.502,2946,3.414,2947,3.414]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":550,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2420,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2010,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2660,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":996,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2123,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2269,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2290,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2823,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2175,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2124,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":245,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1699,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2372,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2257,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":764,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1557,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2217,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":824,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2848,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":911,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1761,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1860,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":304,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":777,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1798,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1297,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1780,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1437,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":776,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":106,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2607,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1184,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2212,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1013,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1789,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1730,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1775,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1778,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":189,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":259,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1175,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1770,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":263,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2699,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2738,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2399,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":639,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1548,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2861,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2458,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":465,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":897,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1547,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1215,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":516,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":827,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":672,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":155,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2168,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2108,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1653,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":207,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":793,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2704,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1284,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":713,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2087,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1262,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":475,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":900,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1627,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2035,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":747,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1342,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":982,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":706,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1113,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1114,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1116,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":607,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2283,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2259,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1264,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":784,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1095,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1271,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":681,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1277,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1802,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":725,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1449,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1446,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1450,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1448,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1447,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1451,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1453,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2582,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":484,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":240,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1864,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1799,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1497,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":912,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2916,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2315,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":677,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1491,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2917,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2374,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":409,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2874,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1171,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1493,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2796,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2918,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2625,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2707,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1492,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2321,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1992,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1692,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2330,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2529,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2532,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2381,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1965,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1165,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2623,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2872,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2794,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2873,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2624,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2389,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1906,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":880,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":782,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":129,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1839,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":180,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":870,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":602,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1355,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":151,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":250,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1052,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":680,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2933,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1817,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1308,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1890,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1892,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":474,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2513,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1034,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1037,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2880,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2881,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":790,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2496,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2492,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1939,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":867,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":421,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1373,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1374,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2653,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1378,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2652,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":340,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":384,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2893,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":351,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1638,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1466,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":320,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1261,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2065,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":161,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":804,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":510,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1665,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":204,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2158,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":486,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":192,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":856,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1197,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2721,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2598,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":277,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":279,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1522,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2678,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":781,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1618,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":145,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2820,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1673,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1092,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":579,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1025,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":206,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1776,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1206,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1208,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":346,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":894,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":394,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2782,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":851,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2102,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":758,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1326,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1320,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":437,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2254,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":588,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1194,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2274,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2614,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2278,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":150,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1436,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2596,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1434,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2638,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2519,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2722,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":476,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":819,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2045,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":700,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":703,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2567,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2568,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":761,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2343,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2261,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2264,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1292,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":762,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2702,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":879,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2710,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1356,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":459,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":111,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":382,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":164,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2692,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1015,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":881,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1395,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1392,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1393,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1394,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1293,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2231,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":655,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":766,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1701,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1240,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":433,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1479,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1974,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1572,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1575,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1006,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1523,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1537,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1525,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1538,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1539,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2052,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2059,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2464,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2566,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2837,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2463,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2565,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2053,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":168,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2542,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":205,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2862,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":412,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":986,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":419,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2221,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1997,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2196,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2197,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2589,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1998,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2004,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":482,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2732,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1313,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":470,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":136,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2048,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1243,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1074,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1425,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":238,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1458,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1321,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":836,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":809,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":312,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":668,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":331,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2467,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1973,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1033,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1057,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":355,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1841,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":162,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":955,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1131,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2775,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":174,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2407,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2412,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":884,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":837,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":838,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":517,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":114,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1089,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2127,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":593,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2453,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":183,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2439,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":522,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2132,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1212,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":740,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1312,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1976,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":315,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1755,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2793,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2471,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2472,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2477,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2475,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2474,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2478,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2473,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":131,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1517,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":916,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1128,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":112,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":176,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":935,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":702,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":665,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1690,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1703,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1162,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2671,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":850,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":109,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1695,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":464,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2205,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2486,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1527,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":885,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":937,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":918,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":498,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2071,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1219,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1223,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2282,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2774,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2673,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1120,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1123,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2675,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2674,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2770,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":360,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2110,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":889,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":664,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1810,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":998,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2750,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2748,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2749,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":221,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1916,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1222,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1226,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1227,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1135,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1019,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":899,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2260,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1016,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":841,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1499,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":840,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2778,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2894,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2940,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":818,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":313,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":314,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2772,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":501,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2024,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":869,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2485,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1324,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1325,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2648,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1233,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":796,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1786,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2697,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2350,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2320,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2198,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2349,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1634,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1886,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":875,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1494,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1506,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2351,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2882,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":876,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1495,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1887,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2927,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2587,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2783,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2326,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1931,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2305,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1633,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1957,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1989,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":797,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":578,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1536,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2792,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2042,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":773,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2263,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":281,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":717,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1978,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1102,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1896,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2635,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":352,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":247,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2570,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1669,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":908,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1771,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2207,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2664,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":167,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":397,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2164,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2682,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2521,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1984,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2597,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":226,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":448,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2650,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2215,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1295,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1254,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":220,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":222,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1256,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":478,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2114,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1484,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2354,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1483,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2907,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2908,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2909,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":110,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":113,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":115,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":405,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":658,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":753,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":830,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2072,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2667,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2666,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2100,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":378,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1702,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1563,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1561,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1562,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1559,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1564,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2182,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2185,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1576,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1930,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2230,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1583,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2227,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2592,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1913,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2771,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1599,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2932,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1118,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1774,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":667,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1163,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1689,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":868,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1622,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2041,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2712,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1041,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":959,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1282,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":769,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":255,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":599,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2663,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2468,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2009,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2013,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2011,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2012,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2789,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2818,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2819,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":257,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":679,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":267,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2758,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2759,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":553,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":554,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":756,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2784,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2001,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":311,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2161,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":219,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1216,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2417,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2413,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":395,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":965,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":710,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2034,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":142,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2484,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2017,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1332,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2729,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2706,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2181,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":132,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1259,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1036,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1823,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1980,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2232,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1101,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":601,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1455,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2291,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1881,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":231,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1640,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1213,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":357,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":775,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1345,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1129,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1353,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1018,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":605,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":746,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1160,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2743,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":159,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2006,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1600,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2284,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2606,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":631,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2613,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1132,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2825,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2824,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2827,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2826,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2476,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2466,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2302,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2219,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1862,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1861,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1784,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1781,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2237,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2375,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1012,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2728,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2730,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":148,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2518,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":728,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2544,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":931,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1322,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":490,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2849,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":337,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1709,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":971,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":640,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2538,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2427,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1269,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":309,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1307,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1075,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":789,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":973,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":853,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":854,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2044,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":138,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2604,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2595,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2616,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1676,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2279,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2869,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":663,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":570,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1586,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1985,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1987,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2106,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1087,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2043,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2599,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1237,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2307,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2895,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1193,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2680,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1762,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2654,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2684,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2577,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2580,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1664,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1021,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1710,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":620,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1090,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":128,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1260,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2336,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1390,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2669,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2074,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1078,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1038,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1229,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1649,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1650,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":720,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":751,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1337,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2611,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1503,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":469,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2708,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1938,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":849,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":393,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":715,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2550,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":116,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":888,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1202,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2855,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2470,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1625,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1642,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":939,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":283,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1046,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1743,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2677,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2515,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2516,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1361,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1921,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":752,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1639,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1759,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1760,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1085,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1758,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1764,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":914,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1106,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1290,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1456,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1289,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":693,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":695,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":692,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":892,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1061,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2000,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":906,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1500,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1017,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":407,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2281,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1153,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":139,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1419,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1619,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":539,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":794,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":798,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":130,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":485,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":977,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2084,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2700,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":541,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":972,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":203,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":587,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":589,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2223,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1795,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":178,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2156,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":921,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2647,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1708,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":738,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":744,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1077,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":488,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":644,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1808,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":800,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1258,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":181,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1660,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":399,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":705,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1024,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":891,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":536,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2523,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1205,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1440,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":887,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":621,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":358,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1613,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":199,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1858,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2361,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1140,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1696,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1874,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":186,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":187,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1995,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":904,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2038,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2363,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2268,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2362,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2267,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":458,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1925,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1244,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1706,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2333,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2636,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":299,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":372,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":339,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":365,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1115,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":860,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":714,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1204,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":694,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1170,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":759,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1463,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1459,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2082,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1185,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1663,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1833,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1662,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1030,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":835,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":949,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1403,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":864,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":808,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1977,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":533,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1196,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1363,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1752,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1339,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1970,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1971,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2121,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":523,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":731,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":652,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":656,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":302,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":638,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2115,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2309,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":124,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1898,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1897,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":127,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1630,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1454,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2135,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1275,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1614,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":623,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":642,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2247,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1126,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1346,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2508,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1668,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":611,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1088,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2246,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1740,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1753,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1718,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2679,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2639,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2280,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":175,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2617,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2612,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2016,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1347,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2739,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2331,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2380,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2527,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2530,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2378,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2828,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":925,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":924,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2332,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2528,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2531,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2379,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1967,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2383,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1968,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2382,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1966,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1167,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":562,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1584,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1249,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1408,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":451,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":417,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1238,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":661,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":669,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":927,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2073,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":449,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":783,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1357,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1248,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2400,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":518,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":580,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":839,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":233,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1031,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2023,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":270,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2411,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2410,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":612,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":928,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2204,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1540,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":958,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2584,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":402,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":390,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":901,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1513,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1511,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":723,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":521,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":749,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1498,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2929,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1496,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1647,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1891,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1782,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1488,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":388,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":662,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":670,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1104,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":964,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":975,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2633,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1990,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":396,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1854,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1051,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2694,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":576,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1232,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1014,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1247,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1169,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2334,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1818,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2545,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1217,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1214,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":791,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1534,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":795,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1155,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2887,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2886,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":379,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":376,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":671,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1439,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1838,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2160,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2769,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2768,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1840,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1121,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1654,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1659,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1736,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":934,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1655,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2130,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2159,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1661,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2903,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2865,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":641,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":117,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2835,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2752,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2423,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2866,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":919,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2883,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1714,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1975,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1777,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1783,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1982,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2930,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1711,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1713,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2901,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2751,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1304,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2216,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1888,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":678,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2314,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":905,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":509,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2064,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1821,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2450,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":300,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":487,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1617,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":197,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1856,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":676,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2457,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":370,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":936,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2456,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":558,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1465,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":910,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2634,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2002,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2069,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1176,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2093,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":711,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2258,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":223,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1246,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":119,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2781,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2779,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2780,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":575,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":581,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":165,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":122,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1040,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1042,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1044,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":757,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1849,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1364,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1367,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2063,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":294,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1944,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":608,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":483,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1842,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2162,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2111,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2621,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2107,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":871,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2271,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":742,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2404,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2273,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2701,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2276,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2277,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":424,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":224,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1462,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1769,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":454,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2105,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":191,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1674,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":461,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2270,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2436,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1868,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1608,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1632,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2287,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2709,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":895,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2821,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":398,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2646,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1207,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1263,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":371,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1210,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1950,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":137,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":726,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":727,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1516,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2131,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1273,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1438,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":107,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":687,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":845,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":494,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1474,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2497,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1878,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1300,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2696,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2761,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2747,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2179,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1768,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2493,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2711,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1241,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2575,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2376,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2192,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":585,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":229,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":577,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2180,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":391,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2191,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":244,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2449,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1791,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":697,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1032,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1338,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":184,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1994,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":810,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1291,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2494,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1804,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1963,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":633,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2919,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2920,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":574,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2921,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2335,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2631,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1635,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":169,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1234,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":801,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1358,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1993,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":535,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":350,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1315,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2174,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1316,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1637,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2685,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2310,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2875,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2366,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2365,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2367,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1837,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2876,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2562,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1835,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2877,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1172,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2878,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2802,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2879,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2081,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1836,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2368,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1859,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2431,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1457,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2735,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":833,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2083,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2734,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2622,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2430,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2560,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":832,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1675,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1461,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1183,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2403,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":563,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":943,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2176,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2236,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":160,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1843,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2248,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":595,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2495,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":650,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2834,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1813,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1685,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":874,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":582,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2847,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":237,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1812,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2359,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2742,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":852,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2339,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2244,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1519,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2687,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2370,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2008,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2337,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2250,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1520,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1700,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2253,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2605,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2355,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2007,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1518,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2744,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1433,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1330,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2681,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1748,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":586,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":898,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":190,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":177,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1151,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":423,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1319,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":883,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":450,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1028,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":345,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":718,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2066,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":873,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":600,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":134,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1130,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1141,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2546,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":995,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1000,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":997,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1221,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1741,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1201,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":213,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2203,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2210,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":171,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1375,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2055,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1054,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2078,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1368,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":239,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":954,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":724,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1255,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":999,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1969,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2500,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2311,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2313,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2501,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2603,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2799,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":262,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":976,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1280,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2776,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1029,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":721,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2304,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2303,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":627,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1091,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1535,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":334,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":929,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2323,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2293,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2325,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2324,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2715,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2322,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1250,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2296,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2717,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2716,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2295,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2594,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2294,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2593,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2292,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2318,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":336,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1276,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2445,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2583,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":552,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2705,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":778,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2342,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2661,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":938,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1806,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2482,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":877,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1270,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":834,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1005,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":686,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1423,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2934,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2104,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1331,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":353,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":734,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1964,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1314,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2109,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1658,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":227,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":201,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2224,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":689,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":942,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":645,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1027,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1377,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1911,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2286,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":649,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":515,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1819,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2358,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2923,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1103,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":392,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":157,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1829,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":211,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":321,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":325,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2618,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2642,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2725,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":241,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1173,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2569,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2670,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1857,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1242,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2609,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1069,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1569,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1239,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1986,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2364,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1831,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2242,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":683,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":418,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2054,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2698,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2373,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2391,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2369,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2056,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2740,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2741,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1384,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1907,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":228,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2272,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":748,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2036,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1445,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2206,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":947,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":950,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":948,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":953,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2713,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":597,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":427,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1571,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1705,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":496,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1926,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":335,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":248,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2057,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":530,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1826,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1045,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2229,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1577,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2226,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2690,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2689,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2843,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2571,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2556,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2557,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2798,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2446,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2829,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2688,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2797,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2558,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2559,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":209,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2629,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1152,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2328,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2841,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2620,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2840,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2854,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2842,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2803,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2804,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2805,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2643,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":317,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2733,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1805,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":146,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2695,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1794,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1988,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1473,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1026,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":141,"title":{},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":696,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2719,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":768,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1846,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2167,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1468,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2419,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1475,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":519,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1376,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1285,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1956,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1556,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":286,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":342,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":144,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":513,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":367,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2551,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2240,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2640,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":566,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2089,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2090,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2816,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2817,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2787,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2091,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1544,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":200,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":473,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":251,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2039,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1991,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":212,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1485,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1084,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":442,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":737,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1311,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":739,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1310,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":172,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2060,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2830,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1565,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1566,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1567,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":338,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":684,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":688,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":108,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":825,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2586,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1059,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2581,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2585,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":381,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":674,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2169,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":963,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":383,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":495,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1188,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1903,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1505,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2870,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1902,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2301,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2442,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":389,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2225,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2846,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2298,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1943,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2833,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1481,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1008,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":862,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1750,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2092,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2014,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2125,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2120,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1533,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":477,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2126,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":923,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2262,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":140,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":624,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1181,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":817,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2524,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2503,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2392,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2525,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2505,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2422,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2022,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1179,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2421,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2021,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1178,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1180,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2504,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":698,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2762,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2243,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2239,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2241,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2627,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2238,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2763,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":492,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1510,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1809,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":859,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1354,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2539,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2454,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1053,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1055,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1050,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1177,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2720,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":185,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1125,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":408,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1218,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2408,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1065,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1063,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1064,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1790,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":265,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":202,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1117,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2208,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":940,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2637,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":896,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2076,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2079,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":743,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1591,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2790,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":284,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1482,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":194,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":903,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2103,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":941,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2864,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2085,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":843,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":805,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1266,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":295,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2931,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1007,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1937,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":452,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1504,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1189,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1191,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":310,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":368,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1923,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":926,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1814,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":504,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1404,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1405,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1489,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1487,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":506,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":842,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":505,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2086,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2341,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":480,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":592,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":565,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2163,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1288,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1624,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":275,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":356,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":732,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":930,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":682,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2724,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2483,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":303,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2416,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1464,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1460,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":848,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":978,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":847,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2537,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":983,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":785,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2764,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2765,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1924,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":846,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2233,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1981,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1467,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":628,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1068,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":741,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1920,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1615,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":260,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1211,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1960,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":354,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1380,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1678,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":647,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":691,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1712,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2736,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":327,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":328,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":820,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":236,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1884,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1573,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":369,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1723,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2703,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2113,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1279,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1616,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":786,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":373,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":497,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":493,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":154,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2306,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":217,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1379,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1381,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":532,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2070,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2676,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2723,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1107,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2686,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1047,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1983,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2046,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2574,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2489,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2552,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2101,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1815,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":126,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1816,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":326,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":779,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":709,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2755,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2405,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":278,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":330,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2649,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1209,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1927,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1797,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":537,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2371,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2731,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":745,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":196,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":301,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":893,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1253,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":361,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1435,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2047,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":215,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2297,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":210,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2726,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2195,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2357,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1801,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1848,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1847,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":643,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2809,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2737,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1108,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1105,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2808,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2810,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2811,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":675,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1134,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2767,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1133,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2418,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1693,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1697,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1694,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1698,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2384,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1704,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":258,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":261,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":527,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1142,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1336,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1560,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2672,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1486,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2662,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1417,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1686,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":802,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1251,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1228,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":799,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1252,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2220,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":571,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":158,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":235,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1094,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":922,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1093,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2117,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2116,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":719,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1220,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2541,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":985,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":329,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":430,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2033,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":479,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2777,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1636,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2540,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2745,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2285,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2222,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":915,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":460,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1035,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2746,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1127,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":657,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":659,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":660,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":708,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1779,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1509,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2655,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2657,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":149,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":323,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1949,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2340,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2170,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":704,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1056,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":359,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2543,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":520,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1299,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":974,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1942,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2517,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":218,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1174,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":863,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":865,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":866,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1415,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2062,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1546,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1585,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1588,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1587,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1477,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":410,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2154,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":349,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2902,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":472,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1272,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":598,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":729,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2615,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":858,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1199,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":308,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2155,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":214,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2481,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":648,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1009,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":280,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":735,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":305,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":763,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":772,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":348,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1070,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1139,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1164,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1166,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2885,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1168,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":909,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":538,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":722,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1081,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2438,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2632,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":341,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2275,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":307,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1022,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":736,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":780,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":829,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2718,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2003,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1298,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1471,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1011,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1822,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1010,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":730,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":319,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1590,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1086,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1568,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":807,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2031,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":182,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1080,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1934,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1230,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2491,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2590,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2435,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2448,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2432,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2588,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2177,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2255,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2213,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1763,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2096,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1999,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1192,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1646,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1850,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":882,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":913,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2928,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2884,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2785,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2480,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2800,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2786,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2077,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2234,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1306,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2838,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2693,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2027,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1645,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2095,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1904,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2490,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2691,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2356,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2433,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2178,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2256,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2211,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2214,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1895,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2028,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2097,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1303,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2626,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1648,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2029,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2266,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":616,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1305,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1309,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2075,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2352,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2353,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1200,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1302,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2393,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1187,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1190,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2406,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2656,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":414,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1521,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2061,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1328,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2171,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1023,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1932,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":690,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1598,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":375,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":147,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2579,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2578,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":324,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1940,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1296,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1507,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1508,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1386,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1067,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1623,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":499,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2037,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1910,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":886,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":118,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1203,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":120,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":596,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":787,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":366,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1979,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1478,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1512,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2441,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2871,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":685,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1928,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":271,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2288,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2440,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":411,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1767,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1318,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1317,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":253,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":491,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":447,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1476,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1274,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":230,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":481,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2925,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2098,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":960,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":551,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":143,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1683,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2025,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1157,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1370,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":362,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":712,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":701,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1863,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2822,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":666,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1301,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2289,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1323,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1267,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":760,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1715,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2791,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":619,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":276,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1885,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":125,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1739,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2487,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":462,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":890,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1515,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1555,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1933,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2507,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":363,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2032,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1554,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1245,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":123,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2813,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2814,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2831,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2812,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":446,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":803,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":232,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":531,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2522,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":534,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":422,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":831,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1099,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":179,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1195,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1198,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1545,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":291,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":792,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":618,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1788,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1787,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1785,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2300,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1514,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1154,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1156,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":413,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2015,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1972,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2018,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2520,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":540,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1738,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":774,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":264,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":500,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2099,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":489,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2549,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1362,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2644,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2344,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1365,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1366,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2347,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2645,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2601,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2348,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2839,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2346,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2602,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1369,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2345,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2514,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":590,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1751,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1754,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1096,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2714,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr.json b/themes/docsmith/static/build/lunr.json index 12226620d30..dfe34aec8f5 100644 --- a/themes/docsmith/static/build/lunr.json +++ b/themes/docsmith/static/build/lunr.json @@ -1 +1 @@ -{"store":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[0,2.033,1,5.003,2,0.912,3,0.812,4,1.124,5,3.73,6,2.422]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[7,5.838,8,4.179,9,6.48,10,6.48]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[1,8.971,2,1.636,5,5.266,6,3.42,11,1.897,12,1.909,13,0.066,14,1.215,15,2.441]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[7,5.986,13,0.058,16,0.785,17,1.292]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[7,5.838,8,4.179,9,6.48,10,6.48]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[1,6.752,7,8.325,13,0.063,16,0.845,17,1.392,18,3.793,19,5.315,20,3.009,21,2.343,22,7.776,23,7.159,24,5.68]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[25,5.761,26,7.218,27,6.268,28,6.268]],["keywords//docs/platform/meltdown_statement/",[27,6.112,28,6.112,29,5.279,30,3.461]],["toc//docs/platform/meltdown_statement/",[25,3.226,27,5.46,28,3.51,29,3.031,30,3.795,31,4.042,32,4.042,33,7.222,34,4.042,35,4.042,36,1.67,37,4.042,38,4.042,39,6.288,40,3.031,41,4.485,42,4.593,43,6.288,44,2.883,45,2.876,46,1.213,47,6.288,48,1.809,49,3.51,50,4.042,51,4.042,52,4.593,53,2.02,54,3.721,55,2.82,56,2.238,57,2.308,58,1.913,59,3.031,60,3.51,61,4.042,62,4.042]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[13,0.058,63,2.884,64,5.573,65,6.645]],["keywords//docs/development/python/install_python_miniconda/",[65,7.109,66,7.722,67,7.722]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[13,0.064,68,3.482,69,6.086]],["keywords//docs/applications/containers/install_docker_ce/",[68,3.411,70,4.147,71,7.722]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[13,0.064,68,3.482,72,5.911]],["keywords//docs/applications/containers/install_docker_compose/",[68,3.411,70,4.147,73,7.722]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[13,0.064,74,4.042,75,2.45]],["keywords//docs/development/version-control/how-to-install-git-linux/",[74,3.959,75,2.4,76,4.584]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[13,0.064,74,4.042,77,4.565]],["keywords//docs/development/version-control/how-to-install-git-mac/",[74,3.959,76,4.584,77,4.472]],["toc//docs/development/version-control/how-to-install-git-mac/",[13,0.095,21,2.343,74,5.7,78,7.197,79,7.159,80,7.159]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[13,0.064,74,4.042,81,4.007]],["keywords//docs/development/version-control/how-to-install-git-windows/",[74,3.959,76,4.584,81,3.925]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[82,5.09,83,7.2]],["keywords//docs/development/introduction-to-websockets/",[83,5.838,84,4.636,85,7.039,86,7.039]],["toc//docs/development/introduction-to-websockets/",[2,1.109,83,10.412,87,4.614,88,7.006,89,1.412,90,3.017,91,5.253,92,5.81,93,6.449,94,6.449,95,3.501]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[3,1.111,68,3.482,72,5.911]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[68,3.777,72,6.412]],["toc//docs/applications/containers/how-to-use-docker-compose/",[4,1.07,11,1.279,12,1.287,13,0.064,48,2.454,68,4.095,69,4.234,72,6.952,96,1.944,97,4.006,98,1.678,99,3.826,100,2.812,101,2.133,102,5.049,103,4.762,104,3.911,105,3.076,106,3.247,107,2.504,108,3.39,109,2.454,110,3.39,111,2.422]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[98,2.209,112,7.218,113,5.986,114,6.268]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[63,3.085,114,6.705,115,7.722]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[3,1.14,13,0.066,46,1.699,63,2.261,78,3.664,98,1.732,114,9.454,116,5.66,117,1.601,118,4.914,119,9.435,120,4.432,121,5.66,122,2.928,123,5.66,124,3.727,125,5.66,126,3.795,127,3.948,128,4.036]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[68,3.482,70,4.234,90,3.395]],["keywords//docs/applications/containers/docker-container-communication/",[68,3.109,70,3.781,129,1.718,130,7.039]],["toc//docs/applications/containers/docker-container-communication/",[3,0.761,11,1.259,12,1.267,13,0.063,14,0.807,15,1.621,68,4.449,69,4.17,70,5.41,72,4.05,89,1.089,90,3.958,101,2.101,129,1.318,131,2.872,132,3.767,133,0.301,134,2.37,135,3.851,136,3.767,137,3.056,138,1.385,139,3.206,140,3.388]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[138,1.851,141,2.079,142,3.467,143,5.986]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[17,1.26,141,2.028,143,5.838,144,5.618]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[11,1.32,12,1.328,14,0.846,15,1.699,78,5.236,95,2.829,104,4.036,117,1.601,133,0.315,138,2.42,141,3.136,142,3.884,144,7.53,145,6.064,146,2.365,147,3.203,148,3.134,149,2.621,150,5.21]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[3,1.017,4,1.408,5,4.673,6,3.035]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[4,1.506,6,3.246,151,7.109]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[2,1.238,4,1.053,5,5.062,6,3.287,11,1.259,12,1.267,13,0.063,63,3.123,89,1.576,133,0.301,137,3.056,138,1.385,152,1.64,153,3.496,154,4.689,155,2.872,156,3.556,157,2.483,158,4.689,159,4.17,160,2.872,161,4.478,162,3.851,163,3.621,164,4.478,165,3.206,166,4.972]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[15,2.167,129,1.761,134,3.168,167,4.462]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[134,2.625,168,3.873,169,3.348,170,5.982,171,5.982,172,5.982]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[11,1.667,12,1.677,48,3.198,111,3.157,129,2.603,142,3.433,169,4,173,4.627,174,4.792,175,5.097,176,7.147,177,4.986,178,4.243,179,4.19,180,5.097]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[109,3.23,181,4.462,182,6.645,183,6.645]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[181,5.813,184,7.039,185,5.618]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[3,1.067,11,1.204,12,1.212,46,1.55,98,1.58,161,4.282,169,2.89,181,3.192,182,9.08,183,9.08,185,8.38,186,3.987,187,5.164,188,2.625,189,4.754,190,7.567,191,4.747,192,4.484,193,3.682,194,3.987,195,3.772,196,2.374,197,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[98,1.89,117,1.747,146,2.581,198,3.317,199,5.122,200,5.363]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[200,6.705,201,4.774,202,7.722]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[2,1.446,11,1.571,12,1.581,13,0.09,129,1.644,200,5.851,203,4,204,0.92,205,1.927,206,1.722,207,6.738,208,2.493,209,3.015,210,4.166,211,4.363,212,4.606]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,0.871,45,1.883,142,2.967,205,1.766,213,3.621,214,4.405]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[45,1.823,68,2.642,70,3.213,142,2.873,214,4.266,215,5.507]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[3,1.173,4,0.89,13,0.067,14,0.682,15,1.37,45,1.391,46,1.37,48,2.042,68,2.016,70,4.471,90,2.973,98,1.397,111,2.016,120,2.144,138,1.17,142,3.998,155,2.427,164,3.785,213,4.88,214,3.255,215,6.354,216,4.711,217,4.564,218,4.564,219,4.564,220,3.963,221,4.564,222,3.785,223,4.564,224,2.427,225,4.564]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[2,0.804,3,0.716,4,0.99,117,1.436,141,1.463,146,2.122,205,1.452,226,3.808,227,2.907]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[4,1.085,117,1.574,205,1.591,227,3.185,228,5.564,229,5.564,230,5.564]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[3,0.75,4,1.037,11,1.24,12,1.248,13,0.074,89,1.072,133,0.296,226,5.799,227,5.215,231,4.411,232,2.829,233,4.107,234,2.446,235,3.793,236,6.171,237,9.111,238,9.111,239,6.413,240,4.245,241,4.411,242,5.319,243,4.245,244,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[245,6.268,246,3.669,247,6.645,248,6.645]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[63,2.584,109,2.894,245,5.616,249,6.468,250,6.468]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[13,0.069,14,0.709,15,1.425,63,1.897,93,4.371,100,2.434,106,1.95,109,2.125,179,2.783,205,1.357,208,1.756,209,2.125,245,4.122,247,7.848,248,8.715,251,2.111,252,4.748,253,3.56,254,3.312,255,5.675,256,4.748,257,2.657,258,3.666,259,3.937,260,4.748,261,2.783,262,3.127,263,7.111,264,4.748,265,4.371,266,4.748,267,2.818,268,3.666]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[13,0.054,17,1.192,19,4.55,141,1.917,144,5.313]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[17,1.26,141,2.028,143,5.838,144,5.618]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[3,0.688,11,1.138,12,1.145,13,0.059,78,4.698,89,0.984,129,1.19,133,0.404,143,4.046,144,8.185,150,4.491,157,3.337,205,2.477,269,4.879,270,4.491,271,3.403,272,3.894,273,4.7,274,1.19,275,2.48,276,3.564,277,3.403,278,4.866,279,3.061,280,2.343,281,2.974,282,1.779]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[133,0.483,134,3.81]],["keywords//docs/databases/postgresql/configure-postgresql/",[129,1.358,134,2.442,168,3.602,283,2.442,284,5.564,285,5.564,286,5.564]],["toc//docs/databases/postgresql/configure-postgresql/",[11,1.486,12,1.496,98,1.95,127,4.447,129,1.555,133,0.489,134,3.858,168,4.127,279,3.999,287,4.198,288,6.374,289,3.674,290,3.941,291,3.358,292,6.374,293,6.374,294,1.752,295,3.074,296,6.374]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[2,0.855,6,2.269,16,0.587,89,1.088,117,1.527,146,2.256,297,5.398,298,4.687]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[6,2.515,16,0.65,117,1.692,298,5.194,299,5.982,300,5.982]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[2,1.186,11,1.187,12,1.194,13,0.072,20,1.969,77,2.948,81,2.587,89,1.026,95,4.895,105,1.689,124,3.352,133,0.283,211,3.295,212,3.478,251,2.263,280,2.445,298,9.799,301,2.234,302,4.062,303,5.089,304,4.685,305,3.478,306,3.717,307,2.948,308,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[91,5.413,141,2.079,309,5.148,310,6.268]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[63,2.584,141,1.863,310,5.616,311,6.468,312,6.468]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[13,0.067,14,0.874,15,1.755,36,2.415,46,1.755,63,2.336,64,4.515,89,1.937,91,6.206,106,2.402,152,1.775,156,3.85,309,4.17,310,5.077,313,3.786,314,5.383,315,9.606,316,5.847,317,4.17,318,2.375,319,4.079,320,5.847]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[3,1.017,321,6.268,322,4.84,323,6.645]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[321,4.831,322,3.731,323,5.122,324,4.614,325,4.831,326,5.122,327,3.968]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[13,0.053,46,3.049,81,3.299,89,1.309,98,1.986,133,0.361,321,10.712,324,5.383,325,5.636,326,5.976,327,6.348,328,2.762]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[3,0.871,109,2.764,329,5.363,330,4.93,331,5.686,332,5.363]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[63,2.584,329,5.616,333,5.954,334,5.954,335,6.468]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[3,0.533,11,0.882,12,0.888,13,0.068,14,1.105,17,0.677,19,2.585,36,1.563,41,2.697,63,1.511,64,2.921,76,2.245,89,0.763,106,1.554,117,1.07,141,1.089,146,1.581,157,1.739,160,2.012,216,3.379,224,2.012,259,3.137,262,2.491,294,2.032,328,1.609,329,7.292,333,3.482,334,6.808,336,3.482,337,2.639,338,3.782,339,1.036,340,3.865,341,2.069,342,2.449,343,3.782,344,3.782,345,0.541,346,3.482,347,2.763,348,2.191,349,2.275,350,2.275,351,1.79,352,2.697,353,2.639]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[14,0.923,15,1.854,180,4.405,354,5.686,355,5.363,356,5.686]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[63,2.584,180,4.612,283,2.838,355,5.616,357,6.468]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[11,1.204,12,1.212,13,0.085,36,3.7,63,3.023,64,3.987,101,2.009,141,2.18,180,3.682,216,4.283,262,3.401,283,3.321,294,1.419,336,4.754,339,1.414,355,9.117,356,4.754,358,6.039,359,3.682,360,5.164,361,5.164]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[0,2.782,137,4.461,362,6.845]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[68,3.109,70,3.781,362,6.112,363,5.838]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[0,2.291,13,0.082,68,2.867,69,5.012,105,2.154,106,2.666,137,3.674,138,1.665,216,3.674,362,9.491,364,2.367,365,4.436,366,3.957,367,5.012,368,4.528,369,5.976,370,4.868]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,2.18,4,1.205,13,0.05,133,0.344,283,2.711,363,5.122]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,2.282,4,1.262,68,2.857,70,3.474,363,5.363]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[0,1.698,4,0.939,11,1.122,12,1.129,13,0.07,14,0.719,45,2.189,68,3.173,106,1.977,133,0.268,138,1.234,147,4.864,148,3.977,197,3.515,283,3.152,363,9.447,364,1.755,371,3.066,372,2.61,373,1.758,374,3.991,375,4.812,376,4.812,377,4.812,378,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[3,1.224,68,3.835]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[68,3.411,70,4.147,379,7.722]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[3,1.547,68,5.24,140,5.62,380,7.429]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[3,0.871,24,4.512,201,3.819,204,0.843,339,1.691,381,5.686]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[382,4.831,383,5.564,384,5.564,385,4.064,386,5.564,387,5.564,388,5.564]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[2,1.205,13,0.062,45,2.319,53,3.803,68,3.361,90,3.277,291,4.009,381,10.128,385,5.558,389,4.576,390,1.666,391,6.072]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[16,0.785,100,3.701,178,4.285,392,6.268]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[178,4.179,392,6.112,393,6.48,394,7.039]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[0,1.183,11,0.782,12,0.787,13,0.044,14,0.501,15,1.006,36,1.385,99,2.338,100,1.719,101,2.109,131,1.783,133,0.187,145,2.514,152,1.646,160,1.783,178,1.99,192,2.911,241,2.78,254,2.338,257,1.876,262,2.207,267,1.99,268,2.588,287,2.207,318,1.361,341,1.162,392,7.474,393,7.217,395,3.352,396,3.352,397,3.138,398,2.911,399,2.072,400,5.421,401,5.421,402,1.965,403,3.352,404,3.352,405,2.588,406,3.086,407,2.78,408,2.103,409,3.352,410,8.608,411,3.352,412,2.78,413,3.352,414,5.421,415,3.352,416,3.352,417,2.78,418,3.352,419,3.352,420,3.352]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[14,0.995,15,1.998,16,0.724,421,5.52,422,3.444]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[421,7.091,422,4.424]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[2,1.392,13,0.052,14,0.952,15,1.913,30,3.134,36,2.633,48,2.852,57,1.906,90,3.786,95,4.393,105,2.115,111,2.815,133,0.355,152,1.935,280,3.062,281,3.886,421,8.994]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[423,6.645,424,5.761,425,5.986,426,6.268]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[63,2.812,424,5.618,426,6.112,427,3.675]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[3,0.824,11,1.363,12,1.372,13,0.047,53,2.922,89,1.179,98,1.789,106,2.402,133,0.325,365,3.996,368,4.079,424,6.605,425,6.863,426,7.186,427,3.052,428,5.077,429,4.977,430,5.847,431,3.85,432,5.847,433,3.273,434,5.847,435,2.808,436,5.847]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[0,2.349,3,0.938,101,2.59,213,3.902,437,5.78]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[68,3.411,213,4.527,437,6.705]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[11,1.122,12,1.129,14,1.073,15,2.156,36,1.988,48,2.153,76,2.857,101,3.343,106,1.977,111,2.126,131,5.895,133,0.4,437,8.854,438,4.812,439,2.277,440,2.723,441,4.812,442,3.609,443,4.812,444,7.183,445,3.169,446,4.179,447,5.123,448,4.812]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[3,0.938,45,2.029,216,3.767,220,5.78,449,5.78]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[45,2.146,55,4.911,402,4.127,449,6.112]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[0,1.698,2,1.361,11,1.122,12,1.129,13,0.07,16,0.523,18,2.348,45,2.905,46,1.444,55,5.011,96,2.547,100,2.467,131,2.56,133,0.53,139,2.857,152,1.461,177,3.357,209,3.214,402,2.821,405,3.716,446,4.179,449,7.463,450,3.019,451,2.933,452,4.179,453,2.894]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[45,2.029,46,1.998,106,2.734,454,5.52,455,4.058]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[351,3.06,454,5.363,455,3.943,456,2.282,457,4.85]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[106,4.439,122,4.52,177,6.095,454,8.961,455,6.587]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[458,6.537,459,7.882,460,6.086]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[29,4.85,458,5.363,460,4.994,461,6.468,462,6.468]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[11,2.089,12,2.102,13,0.073,82,5.252,294,2.462,458,7.429,460,6.917]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[3,1.017,271,5.035,463,5.573,464,5.413]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[463,5.962,465,6.163,466,5.791]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[11,1.897,12,1.909,13,0.066,133,0.575,141,2.343,271,5.674,341,2.819,389,4.892,463,6.28,464,6.1]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[3,1.017,16,0.785,18,3.521,467,6.268]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[467,4.516,468,4.788,469,5.2,470,4.15,471,5.2,472,4.15,473,4.788,474,4.015]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,1.107,12,1.114,13,0.038,15,1.425,89,0.957,109,2.125,156,3.127,177,3.312,188,2.413,272,3.789,337,3.312,397,2.183,405,3.666,467,9.58,470,3.789,472,5.675,473,7.848,474,7.828,475,4.748,476,4.748,477,8.525,478,8.525,479,4.748,480,4.371,481,4.748]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,0.761,133,0.3,186,4.168,201,4.832,220,4.687,294,1.483,482,3.555]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[482,5.085,483,7.109,484,7.722]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[3,0.506,11,0.837,12,0.843,13,0.029,14,0.856,15,1.719,45,1.094,46,1.078,53,1.794,78,2.325,89,1.441,98,1.753,126,2.407,133,0.454,186,5.518,201,6.762,216,2.032,273,1.948,318,1.458,341,1.244,345,0.513,433,2.01,450,2.252,482,6.816,485,3.118,486,5.316,487,2.159,488,2.287,489,2.772,490,3.118,491,2.325,492,3.305,493,2.56,494,3.305,495,3.59]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[109,2.764,201,3.819,496,4.632,497,3.765,498,5.686,499,5.686]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[110,3.44,181,3.44,309,3.968,470,4.44,497,3.392,500,5.564,501,4.44]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[2,0.679,3,0.928,11,1,12,1.006,13,0.035,14,0.983,15,1.975,45,1.307,46,1.287,48,1.918,95,2.143,106,1.761,110,4.069,111,1.894,133,0.239,147,3.725,155,2.28,205,1.226,208,1.586,267,2.545,273,3.57,328,1.824,337,2.991,349,2.578,498,9.419,499,8.272,502,6.581,503,2.776,504,6.581,505,3.555,506,3.555,507,6.581,508,3.723]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[14,0.759,15,1.524,45,1.548,122,2.627,177,3.542,204,0.693,341,1.76,509,2.842,510,2.701]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[511,6.112,512,6.112,513,7.039,514,6.112]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[11,1.813,12,1.825,13,0.063,122,4.023,133,0.559,138,1.994,204,1.061,339,2.129,486,4.352,509,6.222]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[13,0.044,133,0.3,283,2.369,341,1.871,515,4.687,516,4.308,517,4.308,518,4.308]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[515,6.112,517,5.618,518,5.618,519,6.112]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[11,0.921,12,0.927,13,0.032,20,1.529,48,1.768,70,2.122,95,3.088,101,2.959,133,0.479,141,1.138,148,2.188,191,4.773,211,2.558,283,3.339,287,2.602,341,1.37,342,2.558,372,5.064,501,3.154,515,9.552,518,6.072,520,3.431,521,7.47,522,3.638,523,3.638,524,2.757,525,3.638,526,3.952,527,3.277,528,2.044]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[2,0.855,117,1.527,146,2.256,226,4.048,227,3.09,240,4.308,274,1.317,529,4.969]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[530,6.404,531,7.109,532,7.722]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[2,0.633,4,0.779,5,4.036,6,2.62,11,0.932,12,0.938,13,0.081,14,0.597,15,1.2,46,1.2,57,1.195,87,2.632,90,1.721,106,1.642,124,2.632,133,0.347,138,1.025,204,0.545,211,2.587,212,2.731,226,4.674,227,4.386,236,6.116,239,7.783,294,1.098,307,2.314,456,1.41,457,4.674,529,7.968,530,3.314,533,3.996,534,3.996,535,3.996,536,5.412]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[13,0.047,14,0.861,15,1.729,64,4.448,147,3.26,283,2.528,517,4.598]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[517,6.163,518,6.163,519,6.705]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[11,0.69,12,0.694,14,1.204,20,1.145,36,2.022,48,1.324,58,1.4,89,0.597,98,1.498,109,1.324,111,1.307,133,0.483,138,0.759,141,1.803,147,4.117,148,1.639,153,1.916,196,1.361,216,1.675,254,2.064,283,2.148,291,1.559,294,0.813,295,1.035,341,1.697,372,2.655,378,1.885,452,2.57,489,2.285,517,5.806,518,6.929,519,7.539,520,2.57,521,4.251,527,2.454,537,4.251,538,2.454,539,2.11,540,2.959,541,2.959,542,2.724,543,3.224,544,2.454,545,2.724,546,2.724,547,2.57,548,2.454,549,2.454,550,3.071,551,2.57,552,2.959]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[553,5.52,554,4.176,555,5.313,556,6.128,557,5.313]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[63,2.223,558,5.564,559,5.122,560,5.122,561,5.122,562,5.564,563,5.564]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[11,1.32,12,1.328,13,0.046,14,1.208,15,2.427,48,2.533,63,2.261,87,6.214,89,1.141,111,2.5,129,1.381,138,1.451,152,1.719,216,3.203,339,2.214,364,2.064,555,4.517,556,7.445,560,5.21,561,7.445,564,5.66,565,5.66,566,3.499]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[3,0.938,178,3.952,567,5.78,568,6.128,569,6.128]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[132,4.911,178,4.179,567,6.112,570,7.039]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[11,1.701,12,1.712,13,0.078,89,1.471,106,2.996,132,5.089,178,5.716,179,4.276,318,3.911,341,3.337,543,4.804,567,6.334]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,0.978,3,0.871,68,2.728,133,0.344,390,1.352,571,4.769]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[68,3.411,313,5,571,5.962]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,1.468,11,1.279,12,1.287,13,0.044,21,1.652,68,3.492,72,4.112,105,1.82,109,2.454,129,1.338,133,0.516,152,1.665,169,5.189,251,2.438,280,3.797,390,1.201,571,7.834,572,4.377,573,5.049,574,4.234,575,5.484]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[13,0.054,402,3.902,576,5.78,577,5.14,578,5.313]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[402,3.507,576,5.194,577,4.619,579,4.173,580,4.774,581,5.507]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[11,1.24,12,1.248,13,0.074,44,3.793,46,2.321,133,0.296,289,2.223,341,1.844,402,5.864,576,9.227,577,5.971,578,4.245,581,4.897,582,4.897,583,5.319,584,3.503,585,3.885,586,5.319,587,5.319,588,3.288,589,3.793,590,5.319,591,5.319]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[133,0.402,422,3.734,592,4.753,593,7.218]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[274,2.086,422,4.424]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[3,1.239,11,1.486,12,1.496,95,4.393,118,5.535,133,0.355,214,4.546,280,4.222,308,3.833,345,0.912,422,4.547,528,3.297,592,4.198,594,5.286,595,6.374,596,6.374,597,4.78,598,6.374,599,3.784]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[2,1.143,14,1.078,15,2.167,571,5.573]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[313,5.536,571,6.603]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[2,1.683,11,1.24,12,1.248,13,0.063,21,2.33,133,0.591,152,1.615,153,3.444,205,2.211,251,3.438,280,3.714,294,1.462,373,1.302,571,7.723,572,4.245,573,4.897,600,5.319,601,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[14,0.995,15,1.998,98,2.037,204,0.909,602,4.176]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[204,1.167,602,5.365]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[11,1.486,12,1.496,14,0.952,82,3.737,89,1.285,120,2.994,258,4.922,259,5.286,282,2.324,319,4.447,487,3.833,524,4.447,602,6.312,603,7.633,604,5.899,605,4.274,606,6.374,607,4.546]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[13,0.058,17,1.292,19,4.933,608,6.268]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[68,3.411,339,2.115,608,6.705]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,1.477,11,0.976,12,0.982,13,0.034,20,1.62,21,1.261,30,2.058,70,4.238,89,0.844,106,1.719,133,0.439,189,5.948,211,2.71,212,2.861,222,5.358,234,1.925,289,1.749,306,3.057,308,2.517,350,3.886,549,3.471,608,8.326,609,2.92,610,5.61,611,6.461,612,3.471,613,5.948,614,2.806,615,3.853,616,3.139,617,4.185,618,2.485,619,6.544,620,3.054]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[165,4.285,604,4.231,621,4.528,622,7.218]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[165,5.582,623,7.505]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[45,2.955,46,2.91,327,6.914,624,4.339]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[3,0.761,89,1.088,134,2.369,283,2.369,463,4.168,488,3.439,625,5.398,626,4.969]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[129,1.884,134,3.389,283,3.389]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[11,1.46,12,1.469,13,0.087,40,4.695,41,4.465,48,2.802,111,2.765,133,0.555,134,3.81,152,1.901,463,6.704,508,5.437,626,7.993,627,8.682,628,3.504]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[14,0.923,15,1.854,422,3.195,629,5.363,630,7.918]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,0.703,117,1.829,274,1.578,422,3.346,629,5.616]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.531,3,0.612,11,1.012,12,1.018,13,0.035,16,0.472,18,2.117,44,3.095,89,1.823,96,1.539,98,2.47,120,2.038,133,0.37,138,1.113,139,2.576,147,3.759,152,1.318,201,2.683,318,1.763,345,0.621,397,1.995,422,4.678,439,2.053,594,3.599,628,2.429,629,9.291,631,1.814,632,3.995,633,4.34,634,3.095,635,4.34,636,4.34,637,4.34]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[45,1.883,46,1.854,68,2.728,89,1.245,147,3.496,638,5.363]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[68,2.857,70,3.474,639,6.468,640,6.468,641,6.468]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,2.744,11,1.813,12,1.825,46,3.013,68,4.434,89,1.568,105,2.581,147,4.401,638,8.717,642,6.448]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[2,0.855,3,0.761,45,1.645,178,3.204,205,1.543,643,4.687,644,4.969,645,4.969]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[206,1.248,509,2.732,643,4.239,646,4.239,647,4.882,648,2.976,649,2.936,650,3.566,651,4.882]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,2.134,2,0.958,11,1.41,12,1.419,45,1.843,87,3.982,89,1.219,105,2.007,106,3.481,196,2.78,234,2.78,301,2.654,351,4.01,439,2.861,643,5.251,644,7.802,652,4.417,653,4.507,654,4.071,655,5.015,656,2.259]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[2,0.759,3,0.676,17,0.858,204,0.654,205,1.371,226,3.595,227,2.744,232,2.55,240,3.826,657,2.104]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[236,4.44,239,4.614,531,5.122,536,4.831,658,5.122,659,4.44,660,5.564]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[11,1.259,12,1.267,13,0.074,109,3.499,133,0.301,226,7.554,227,5.26,231,4.478,232,2.872,234,2.483,236,6.24,239,6.484,243,4.31,244,3.945,536,6.789,657,3.431,661,4.17,662,3.388,663,6.789,664,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[21,2.006,63,2.659,89,1.342,234,3.061,497,4.058]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[63,2.584,665,6.468,666,6.468,667,5.616,668,6.468]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[2,1.047,3,0.932,11,1.542,12,1.552,13,0.054,20,2.559,21,2.716,46,1.985,63,3.601,95,3.305,142,3.176,204,0.902,259,5.484,291,3.484,669,6.612,670,6.612,671,6.612,672,4.716,673,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[13,0.054,17,1.192,19,4.55,133,0.371,674,6.657]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[675,7.109,676,7.722,677,7.722]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[2,1.088,11,1.602,12,1.612,13,0.091,48,3.074,111,3.034,133,0.515,236,5.482,620,2.658,675,9.628,678,2.054,679,3.554,680,3.251]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,133,0.371,681,4.058]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.506,16,0.839,681,4.707]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.34,11,1.602,12,1.612,13,0.095,48,3.074,111,3.034,133,0.382,251,3.054,390,1.504,427,3.586,578,5.482,681,6.376,682,3.888]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[13,0.054,117,1.883,133,0.371,146,2.782,683,5.78]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[683,7.425,684,4.274]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[11,1.854,12,1.866,13,0.064,105,2.639,106,3.266,133,0.443,205,2.273,282,2.899,683,8.842,685,3.91,686,7.951]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[3,1.017,98,2.209,138,1.851,687,7.218]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[138,1.805,373,1.723,688,7.039,689,6.48]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[105,3.05,131,4.889,138,2.357,654,4.415,690,8.462,691,7.335]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[56,3.686,106,2.734,510,3.541,664,4.747,692,5.14]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[692,5.435,693,7.039,694,7.039,695,7.039]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[11,1.514,12,1.523,13,0.072,20,2.512,89,1.309,204,0.886,211,4.203,212,4.436,274,1.584,280,3.118,281,3.957,607,6.348,620,2.512,679,3.358,692,8.439,696,5.155]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,367,5.14,649,4.004]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[367,4.994,697,6.468,698,6.468,699,6.468,700,6.468]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.423,11,1.701,12,1.712,13,0.097,44,5.202,132,5.089,367,7.434,390,1.597,447,5.202,628,4.083,701,6.049]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[14,1.078,15,2.167,702,6.268,703,5.413]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[274,1.269,421,4.313,422,2.69,702,4.516,704,2.621,705,5.2,706,5.2,707,5.2]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[3,1.05,11,1.737,12,1.748,13,0.079,48,3.333,90,3.208,111,3.29,251,3.311,341,2.582,422,3.853,702,8.476,703,5.585,708,6.177]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,0.871,46,1.854,98,1.89,240,4.93,328,2.628,709,5.686]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[710,7.039,711,7.039,712,7.039,713,7.039]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[3,1.255,11,1.514,12,1.523,13,0.053,82,3.805,98,1.986,120,3.049,139,3.853,140,4.072,328,3.787,370,4.868,397,2.985,709,8.194,714,5.976,715,4.275,716,5.976,717,4.013,718,5.383,719,5.636]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[13,0.044,16,0.587,18,2.633,46,1.62,129,1.317,390,1.182,720,4.048,721,4.476]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[129,1.459,390,1.31,721,4.96,722,5.507,723,5.194,724,4.619]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[11,1.341,12,1.35,13,0.084,21,1.733,103,4.994,106,2.363,133,0.53,209,2.574,216,3.255,389,3.459,390,2.084,720,8.215,721,6.784,725,5.752,726,4.102,727,5.752,728,3.788]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[13,0.039,46,1.439,133,0.267,137,2.713,205,1.371,455,2.922,496,3.595,729,4.162,730,4.793,731,4.162]],["keywords//docs/applications/project-management/install-farmos/",[648,4.707,729,6.705,732,3.411]],["toc//docs/applications/project-management/install-farmos/",[11,1.486,12,1.496,13,0.052,48,2.852,87,4.198,106,2.618,111,2.815,133,0.355,196,2.931,206,1.629,295,2.229,305,4.356,351,3.016,390,1.396,628,3.568,654,3.062,729,9.418,733,6.374,734,3.186,735,4.198]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[68,2.94,89,1.342,332,5.78,433,3.726,672,4.747]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[433,4.786,736,8.551]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[68,4.372,76,4.517,89,1.534,332,6.607,407,6.31,408,4.773,433,6.521,439,3.6,737,7.005,738,7.005]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[2,1.054,89,1.342,739,2.371,740,2.815,741,5.313]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[742,6.468,743,6.468,744,6.468,745,6.468,746,6.468]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[2,1.028,11,1.514,12,1.523,13,0.082,16,0.706,106,2.666,111,2.867,133,0.361,140,4.072,276,4.741,351,3.072,370,4.868,455,3.957,654,3.118,740,2.745,741,5.18,747,3.594,748,6.491,749,2.437,750,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,751,6.268]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[649,4.644,751,6.705,752,5.387]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[2,0.704,3,0.627,11,1.037,12,1.044,13,0.08,14,0.665,15,1.335,20,1.722,48,1.991,98,2.072,111,1.965,133,0.377,181,2.75,203,2.641,204,0.924,208,1.646,216,2.518,246,2.261,251,3.01,276,3.25,278,2.983,282,1.622,305,3.041,364,1.622,524,3.104,602,2.791,656,1.662,740,1.881,749,1.67,751,9.014,753,4.096,754,4.449,755,4.449,756,3.25]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[3,0.812,139,3.42,274,1.406,291,3.035,342,3.73,757,4.598,758,4.448]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[624,2.894,757,5.162,759,5.954,760,6.468,761,6.468]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[11,1.813,12,1.825,13,0.063,25,6.206,133,0.433,167,4.807,291,4.097,657,3.413,757,8.872,762,2.24,763,3.793]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[2,0.804,5,3.288,6,2.135,13,0.041,45,1.548,204,0.693,424,4.053,425,4.211,764,5.078]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[83,5.838,656,2.629,765,7.039,766,7.039]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[5,4.363,6,2.833,11,1.571,12,1.581,13,0.055,21,2.03,46,2.023,89,1.358,133,0.508,204,0.92,341,2.336,424,7.287,425,7.572,749,2.53,767,6.738,768,4.108,769,3.455]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[56,4.365,82,4.621,577,6.086]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[577,6.603,580,6.825]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[11,1.299,12,1.307,13,0.065,46,1.672,56,5.179,89,1.123,98,2.447,155,2.963,211,3.607,212,3.807,253,4.177,486,3.118,501,4.446,577,7.89,578,8.636,770,9.352,771,5.57,772,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[13,0.047,16,0.626,18,2.81,341,1.997,656,2.152,773,5.003,774,5.003]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[63,2.584,773,5.616,774,5.616,775,6.468,776,3.316]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,2.291,11,1.514,12,1.523,13,0.072,14,0.97,15,1.948,48,2.905,89,1.309,111,2.867,129,1.584,133,0.361,251,2.886,440,3.674,656,2.425,773,9.944,774,5.636,777,4.436]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[2,0.804,13,0.041,16,0.552,17,0.909,275,2.581,778,4.675,779,4.675,780,4.675,781,3.471]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[138,1.534,780,5.507,782,5.982,783,4.173,784,5.982,785,5.982]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[2,1.737,3,0.728,11,1.204,12,1.212,13,0.042,56,2.859,84,3.401,133,0.287,186,5.843,275,4.553,318,2.097,341,2.623,550,3.24,715,4.983,778,8.246,779,8.246,783,3.602,786,3.772,787,4.282,788,4.484,789,3.987,790,5.164]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[2,1.143,13,0.058,16,0.785,791,6.645]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[16,0.765,792,7.039,793,7.039,794,7.039]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,1.542,12,1.552,13,0.073,48,2.959,111,2.921,127,6.289,251,2.94,791,6.088,795,9.014,796,9.014,797,9.014,798,9.014,799,9.014,800,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[13,0.05,16,0.671,18,3.013,133,0.344,283,2.711,801,3.285]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[802,7.039,803,7.039,804,4.416,805,6.112]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[3,0.838,13,0.048,45,1.812,89,1.199,90,2.561,106,3.44,133,0.331,147,3.365,148,5.368,196,2.734,283,2.609,318,2.415,378,6.704,427,3.104,537,5.162,538,4.93,801,3.162,805,5.162,806,5.945,807,5.162,808,5.945]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[16,0.671,63,2.468,89,1.245,216,3.496,339,1.691,809,5.686]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[63,3.085,667,6.705,810,7.722]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[11,1.542,12,1.552,13,0.054,53,3.305,63,4.097,64,5.106,89,1.817,120,3.106,216,6.234,339,2.469,667,5.742,811,4.83,812,4.83,813,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[814,0.472]],["title//docs/applications/containers/how-to-use-dockerfiles/",[3,1.224,815,6.342]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[68,3.411,70,4.147,815,5.64]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[68,3.766,89,1.719,96,3.773,100,4.372,433,4.772,815,8.475]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[13,0.05,16,0.671,18,3.013,133,0.344,390,1.352,816,4.93]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[390,1.691,817,7.109,818,7.722]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[2,1.132,11,1.667,12,1.677,13,0.058,129,1.744,133,0.398,153,4.627,271,4.986,289,2.987,341,2.477,390,2.489,816,8.515]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,133,0.371,819,5.14]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[819,5.962,820,7.722,821,7.722]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[11,1.737,12,1.748,13,0.079,89,1.502,133,0.543,274,1.817,294,2.047,390,1.631,440,4.215,460,5.751,696,4.314,819,7.537]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[16,0.671,17,1.106,30,3.037,56,3.42,528,3.195,822,2.821]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[16,0.65,17,1.071,823,4.619,824,4.619,825,4.486,826,4.266]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[13,0.062,20,2.944,30,5.729,45,2.319,133,0.551,294,2.091,301,3.339,364,2.774,822,4.52]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[3,0.871,45,1.883,46,1.854,133,0.344,482,4.068,624,2.764]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[482,5.085,483,7.109,827,7.722]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[11,1.486,12,1.496,13,0.052,14,0.952,15,1.913,78,5.691,82,3.737,98,1.95,142,4.222,328,2.712,482,7.493,624,4.503,828,6.374,829,5.535,830,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[36,3.256,445,5.191,831,5.758]],["keywords//docs/security/getting-started-with-selinux/",[280,3.107,831,4.724,832,6.468,833,6.468,834,6.468]],["toc//docs/security/getting-started-with-selinux/",[11,1.854,12,1.866,13,0.064,48,3.558,111,3.512,191,4.988,831,8.653,835,7.951,836,7.951]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[0,2.349,4,1.298,45,2.029,68,2.94,70,3.575]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[68,3.109,70,3.781,815,5.142,837,7.039]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[0,2.938,68,4.631,70,6.164,99,5.808,126,5.582,328,3.542,550,5.223]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[13,0.054,133,0.371,341,2.307,342,4.31,838,5.78]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[838,5.194,839,5.982,840,5.982,841,4.486,842,5.982,843,5.982]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[3,1.146,13,0.066,48,3.64,56,4.504,111,3.593,261,4.768,838,10.373,844,8.134]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[0,2.18,13,0.05,68,2.728,70,3.317,417,5.122,433,3.457]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[68,3.109,70,3.781,815,5.142,845,7.039]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[4,1.394,11,1.667,12,1.677,13,0.058,36,2.953,68,4.712,211,4.627,282,2.606,417,5.927,433,5.317,496,5.36,621,4.484,846,7.147,847,6.58]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[13,0.058,16,0.785,809,6.645,848,6.645]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[849,7.722,850,7.722,851,7.722]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[11,1.542,12,1.552,13,0.054,44,4.716,46,1.985,48,2.959,106,2.716,111,2.921,180,8.22,240,5.277,350,3.977,848,9.442,852,5.742,853,6.612,854,5.106]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[814,0.472]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[13,0.064,16,0.857,831,5.758]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[75,2.01,831,4.724,855,5.954,856,6.468,857,5.363]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[11,2.037,12,2.05,13,0.071,48,3.91,111,3.859,350,5.254,831,6.382,855,8.043]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[68,3.835,82,5.09]],["keywords//docs/applications/containers/introduction-to-docker/",[68,3.411,70,4.147,815,5.64]],["toc//docs/applications/containers/introduction-to-docker/",[48,3.91,68,5.182,111,3.859,433,4.89,638,7.587,815,6.382]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[13,0.05,17,1.106,141,1.779,232,3.285,631,2.581,858,5.363]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[858,6.112,859,7.039,860,4.485,861,6.112]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[11,1.138,12,1.145,13,0.04,48,2.183,57,1.459,89,0.984,98,1.493,106,2.981,111,2.155,124,3.213,133,0.404,138,1.251,141,1.405,205,1.395,234,2.243,273,2.646,274,1.19,282,1.779,294,2.381,295,1.706,304,4.491,307,2.826,474,3.767,592,3.213,597,3.658,620,1.888,631,2.039,858,9.667,862,3.564,863,4.879]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[14,0.678,15,1.363,16,0.493,18,2.214,117,1.284,146,1.897,147,2.569,283,1.992,557,3.623,847,4.179,864,3.505]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[129,1.459,864,4.619,865,5.982,866,4.173,867,4.486,868,3.015]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,1.078,12,1.085,14,1.041,98,2.133,124,3.045,133,0.257,147,5.287,152,1.404,178,2.745,181,4.309,204,0.631,211,2.993,212,3.16,224,2.459,280,2.221,282,1.686,283,3.682,307,2.678,364,1.686,537,4.015,618,2.745,628,3.901,656,3.134,734,3.484,749,1.736,864,7.213,869,2.945,870,2.993,871,2.71]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[191,4.945,408,4.945,831,5.758]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[831,6.998]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[3,0.938,74,3.413,76,3.952,294,1.829,439,3.15]],["keywords//docs/quick-answers/linux/how-to-use-git/",[75,2.188,872,7.039,873,5.838,874,7.039]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[3,1.224,875,6.703]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[75,2.188,875,5.435,876,5.838,877,5.02]],["toc//docs/quick-answers/linux/how-to-use-wget/",[3,1.33,20,3.652,98,2.888,875,7.286,878,9.437]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[3,1.017,45,2.2,110,4.462,319,5.035]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[110,3.698,188,3.041,222,4.96,879,5.982,880,4.369,881,4.486]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[45,2.902,106,3.91,110,6.41,126,3.857,211,3.724,212,3.931,222,9.713,241,4.77,319,7.233,325,4.994,487,3.459,881,4.313,882,5.752]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[13,0.058,45,2.2,133,0.402,883,6.268]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[883,6.112,884,5.838,885,6.112,886,4.911]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[11,0.932,12,0.938,13,0.084,14,0.597,15,1.2,45,1.9,89,1.545,126,2.68,133,0.522,145,2.997,188,3.168,214,2.85,216,2.262,224,2.126,273,2.168,282,2.273,289,1.67,341,1.385,359,2.85,364,2.273,371,2.546,433,2.237,491,4.036,618,2.372,624,1.788,654,1.92,883,7.516,887,3.996,888,2.997,889,3.679,890,2.85,891,2.343,892,3.996,893,3.189,894,2.788,895,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[13,0.047,16,0.626,117,1.629,146,2.408,204,0.786,864,4.448,896,5.761]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[129,1.459,864,4.619,866,4.173,868,3.015,897,5.982,898,5.982]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[11,1.259,12,1.267,13,0.063,82,3.166,98,1.653,101,2.101,106,3.212,133,0.435,196,2.483,204,0.737,211,3.496,212,3.691,224,2.872,234,2.483,274,1.318,282,1.969,283,2.37,435,2.594,612,4.478,696,3.128,812,3.945,864,8.254,899,3.851,900,4.972,901,3.767,902,4.972]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[3,0.938,45,2.029,70,3.575,75,2.069,903,4.747]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[68,3.411,903,5.507,904,7.722]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[14,0.988,52,4.83,57,1.977,70,5.508,75,3.188,133,0.368,191,4.148,214,4.716,319,4.613,491,4.281,618,3.925,657,2.902,852,5.742,905,6.612,906,5.277,907,5.742,908,4.716]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[13,0.058,117,2.041,146,3.017,679,3.734]],["keywords//docs/development/java/install-java-on-centos/",[117,2.511,909,5.616,910,6.468,911,5.954]],["toc//docs/development/java/install-java-on-centos/",[11,1.774,12,1.786,13,0.08,213,4.46,216,4.306,679,6.027,912,7.005,913,6.072,914,7.005,915,5.706]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[13,0.058,17,1.292,232,3.839,679,3.734]],["keywords//docs/development/java/install-java-on-debian/",[17,1.26,231,5.838,909,6.112,911,6.48]],["toc//docs/development/java/install-java-on-debian/",[11,1.774,12,1.786,13,0.08,213,4.46,216,4.306,679,6.027,912,7.005,913,6.072,914,7.005,915,5.706]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,679,3.734]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[16,0.703,679,3.346,909,5.616,915,4.85,916,3.998]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[11,1.941,12,1.954,13,0.067,14,1.244,216,4.712,231,6.904,679,4.307,811,6.081,915,6.243,916,5.147]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[4,1.298,13,0.054,16,0.724,18,3.247,917,5.78]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[4,1.167,199,4.96,867,4.486,880,4.369,917,5.194,918,5.982]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[3,0.898,4,1.715,13,0.082,16,0.693,36,2.633,57,1.906,89,1.285,133,0.56,267,3.784,276,4.656,364,2.324,390,1.396,749,2.393,917,8.737,919,6.374,920,6.374]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[0,2.782,45,2.403,433,4.412]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[45,2.403,169,4.412,282,2.874]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[70,3.877,75,2.244,657,3.168,903,5.148]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[903,5.02,922,7.039,923,4.636,924,5.618]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[279,5.223,624,3.726,657,4.602,890,5.937,901,5.808,903,7.477,925,5.808,926,6.904]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[45,2.2,927,4.462,928,3.839,929,3.252]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[45,2.403,188,4.007,881,5.911]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[75,2.4,433,4.322,921,5.64]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,0.938,75,2.069,98,2.037,224,3.541,930,4.992]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[322,4.72,342,4.558,930,5.279,931,5.618]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[3,1.231,98,2.674,124,5.754,294,2.401,930,8.103,932,7.587,933,8.737]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[2,0.978,13,0.05,117,1.747,146,2.581,880,4.512,934,5.122]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[935,7.109,936,7.109,937,7.722]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[2,1.132,11,1.667,12,1.677,13,0.058,90,3.078,106,2.936,133,0.398,337,4.986,371,4.553,389,4.298,628,4,880,5.221,934,8.848,938,5.704,939,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[2,0.978,13,0.05,16,0.671,18,3.013,880,4.512,934,5.122]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[935,7.109,936,7.109,940,7.722]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[2,1.132,11,1.667,12,1.677,13,0.058,90,3.078,106,2.936,133,0.398,337,4.986,371,4.553,389,4.298,628,4,880,5.221,934,8.848,938,5.704,939,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[13,0.058,117,2.041,146,3.017,941,4.84]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[117,1.829,198,3.474,752,4.512,941,4.337,942,5.363]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[11,1.571,12,1.581,13,0.074,20,2.608,48,3.015,89,1.358,111,2.976,129,1.644,133,0.375,206,1.722,295,2.357,337,4.701,341,2.336,366,4.108,628,3.772,941,7.444]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[75,2.244,328,3.071,349,4.341,718,5.986]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[322,3.731,342,3.602,447,3.968,718,4.614,719,4.831,931,4.44,943,5.564]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[75,1.946,96,2.22,322,5.822,328,3.694,579,4.368,616,4.695,621,3.928,787,5.192,944,5.764,945,5.764,946,6.261,947,5.192,948,4.695,949,6.261,950,6.261,951,6.261,952,5.192,953,6.261,954,5.192,955,5.764,956,5.437,957,6.261]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[3,1.111,328,3.354,877,5.621]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[75,2.188,876,5.838,877,5.02,958,4.485]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[3,1.111,328,3.354,959,6.291]],["keywords//docs/quick-answers/linux/how-to-use-head/",[75,2.01,98,1.979,876,5.363,959,5.162,960,6.468]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[3,1.111,328,3.354,961,6.291]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[75,2.01,98,1.979,876,5.363,961,5.162,962,6.468]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[3,0.812,45,1.756,453,3.465,612,4.778,620,2.229,963,5.003,964,4.019]],["keywords//docs/security/advanced-ssh-server-security/",[2,0.823,16,0.565,75,1.617,117,1.471,274,1.269,624,2.327,759,4.788,965,4.788]],["toc//docs/security/advanced-ssh-server-security/",[3,1.192,11,1.092,12,1.099,56,2.594,57,1.401,131,2.492,174,3.141,196,3.889,281,2.856,289,1.958,295,2.958,439,2.217,487,2.817,524,3.268,538,3.885,620,1.813,624,2.096,734,2.341,923,3.085,929,2.11,966,4.685,967,3.341,968,3.341,969,4.313,970,5.838,971,4.068,972,4.685,973,4.313,974,4.313,975,3.341,976,4.313,977,4.068,978,4.313,979,4.685,980,4.685,981,4.685]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,982,5.14,983,6.657]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[16,0.565,649,3.128,867,3.9,982,4.015,984,4.788,985,4.788,986,4.788,987,5.2]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[2,0.957,11,0.657,12,0.661,13,0.073,48,1.261,57,1.405,63,1.126,76,1.673,78,1.824,89,1.581,98,1.438,101,1.096,105,1.56,111,1.245,129,1.147,133,0.472,134,2.063,152,2.729,216,3.422,251,2.688,280,2.258,282,1.027,294,1.292,295,2.468,364,1.027,366,2.865,398,2.447,408,2.949,557,3.751,597,3.524,609,1.966,657,2.063,701,2.337,982,8.003,988,2.594,989,2.594,990,2.447,991,2.594,992,3.751,993,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[117,1.527,138,1.384,146,2.256,994,5.709,995,4.969,996,7.195]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[117,1.692,204,0.816,994,4.369,995,5.507,997,5.982,998,5.982]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[3,0.987,11,1.634,12,1.644,13,0.057,57,2.095,101,2.725,133,0.39,204,0.956,364,3.417,390,1.534,994,6.846,996,10.383,999,5.409]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[3,0.761,30,2.654,58,2.554,59,4.048,117,1.527,891,3.164,1000,2.269,1001,4.969]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1002,6.163,1003,7.722,1004,7.722]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[13,0.079,30,4.767,133,0.54,891,5.684]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1005,3.832]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[13,0.058,45,2.2,56,3.997,58,3.416]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[884,5.838,885,6.112,886,4.911,1006,6.48]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[13,0.066,20,2.226,45,3.161,46,1.726,56,3.185,57,1.72,58,2.722,133,0.455,188,2.924,309,4.102,364,2.983,433,3.219,613,5.295,615,5.295,620,2.226,886,4.012,890,4.102,891,4.795,928,3.059,1007,5.752,1008,5.752,1009,3.931]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1010,3.815,1011,6.845,1012,5.758]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1011,6.112,1012,5.142,1013,5.838,1014,5.279]],["toc//docs/platform/upgrade-to-hourly-billing/",[508,8.656,1010,4.825,1015,3.761]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[45,2.646,881,6.51]],["keywords//docs/platform/disk-images/resizing-a-linode/",[881,6.412,1010,4.139]],["toc//docs/platform/disk-images/resizing-a-linode/",[45,3.127,881,7.693]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,232,3.541,1016,5.78]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[16,0.839,1016,6.705,1017,7.722]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,1.737,12,1.748,13,0.06,133,0.415,142,3.578,291,3.924,294,2.047,295,2.605,458,6.177,620,2.882,763,3.634,1016,10.034]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[13,0.058,117,2.041,146,3.017,680,3.416]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[16,0.65,129,1.459,680,2.831,868,3.015,1018,4.088,1019,5.507]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[11,1.46,12,1.469,13,0.051,36,2.587,46,1.879,89,1.262,106,2.572,107,2.859,109,2.802,129,1.528,133,0.349,234,2.879,261,3.67,270,5.764,295,3.036,352,4.465,550,3.928,680,5.35,1020,4.997]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,0.912,16,0.626,18,2.81,89,1.161,1021,5.304,1022,5.304,1023,5.761]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,1.223,16,0.839,1024,7.722]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[2,1.822,11,1.386,12,1.395,13,0.048,14,0.888,89,1.199,90,2.561,95,2.971,133,0.331,294,1.634,306,4.343,451,3.624,487,3.576,632,5.473,786,4.343,1021,9.688,1025,5.842,1026,5.945]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[13,0.058,117,2.041,146,3.017,1027,4.84]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[117,1.991,1027,4.72,1028,6.48,1029,7.039]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[2,0.723,11,1.064,12,1.071,13,0.075,14,1.031,20,1.766,48,2.042,69,3.524,89,0.92,111,2.016,120,2.144,129,1.114,133,0.555,146,1.907,179,2.675,204,0.623,206,1.166,224,2.427,274,1.114,289,1.907,295,2.414,364,1.664,366,4.208,390,0.999,510,2.427,543,3.005,599,2.709,656,1.705,869,2.907,1027,6.683,1030,4.201]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,1027,4.84]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[16,0.765,1027,4.72,1028,6.48,1031,7.039]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[2,0.752,11,1.107,12,1.114,13,0.058,14,1.062,20,1.837,48,2.125,69,3.666,89,0.957,111,2.097,120,2.23,129,1.158,133,0.564,179,2.783,204,0.648,206,1.213,224,2.525,274,1.158,289,1.984,295,2.487,364,1.731,366,4.335,390,1.04,510,2.525,543,3.127,599,2.818,656,1.773,869,3.025,1027,6.798,1030,4.371]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[3,0.676,16,0.521,17,0.858,133,0.267,137,2.713,735,3.157,740,2.027,1032,1.799,1033,2.81,1034,3.975]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[16,0.703,17,1.158,1032,2.428,1034,5.363,1035,4.724]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[2,0.868,11,1.279,12,1.287,13,0.044,98,1.678,106,2.253,129,1.338,133,0.305,137,3.104,152,1.665,274,1.929,282,2,620,2.122,734,2.741,739,1.953,763,2.675,929,4.176,1032,4.206,1034,4.548,1036,4.377,1037,5.049,1038,4.548,1039,5.484,1040,5.484]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[13,0.05,117,1.747,129,1.507,134,2.711,146,2.581,1041,3.35]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[134,3.089,866,4.911,1042,5.618,1043,4.291]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[11,0.76,12,0.765,13,0.054,57,0.975,89,1.35,90,1.404,106,2.177,117,0.922,126,4.489,129,2.338,133,0.181,134,3.384,142,1.566,155,1.734,168,3.431,234,2.436,274,1.881,291,1.717,295,1.14,342,2.11,350,1.96,397,3.079,487,4.027,522,3.001,620,2.984,630,3.001,662,2.045,685,1.603,1044,5.204,1045,5.299,1046,5.299,1047,2.444,1048,6.309,1049,2.228,1050,3.259]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[14,1.078,89,1.455,680,3.416,1051,7.218]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[283,3.089,680,3.331,868,3.548,1052,7.039]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[11,1.386,12,1.395,14,0.888,15,1.785,36,2.456,48,2.661,89,1.199,98,2.562,106,2.442,111,2.626,133,0.54,138,1.525,152,1.805,196,2.734,291,3.132,295,2.079,631,2.485,680,3.962,696,3.443,734,2.971,1053,4.687,1054,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[3,0.608,4,0.841,17,0.772,157,1.982,232,2.293,509,2.413,528,3.419,656,1.61,925,3.007,1055,3.329,1056,3.149]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[4,1.167,509,3.348,656,2.234,804,3.753,1055,4.619,1057,5.194]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[4,1.525,11,1.259,12,1.267,13,0.074,48,2.417,56,2.99,89,1.089,98,1.653,111,2.385,133,0.595,152,1.64,157,2.483,206,1.38,224,2.872,397,2.483,402,3.166,509,3.023,628,3.023,1055,7.778,1058,4.689,1059,4.05,1060,5.4,1061,5.4]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[45,2.646,1062,6.342]],["keywords//docs/platform/disk-images/clone-your-linode/",[921,5.64,1062,7.299]],["toc//docs/platform/disk-images/clone-your-linode/",[45,3.127,1062,7.493]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[13,0.058,117,2.041,146,3.017,204,0.985]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[117,2.184,204,1.054,866,5.387]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[11,1.222,12,1.23,13,0.073,48,2.345,106,2.153,111,2.315,133,0.553,138,1.344,149,2.427,204,1.044,205,1.498,274,1.866,278,3.514,339,1.435,488,4.873,510,2.787,524,3.656,654,2.517,656,2.857,1063,4.182,1064,7.042,1065,5.587,1066,4.182,1067,4.824]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[3,0.676,117,1.356,139,2.846,146,2.003,173,3.104,174,3.214,291,2.526,624,2.145,758,3.701,929,2.159]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[624,3.456,1068,7.109,1069,7.722]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[11,1.634,12,1.644,13,0.057,14,1.047,21,2.111,48,3.135,111,3.094,133,0.39,139,4.159,196,4.31,291,4.938,734,3.501,758,5.409,1070,7.006,1071,6.083,1072,4.536]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[3,0.608,16,0.469,17,0.772,18,2.103,139,2.559,173,2.791,174,2.89,232,2.293,291,2.271,624,1.929,758,3.329,929,1.942]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[16,0.703,17,1.158,624,2.894,1068,5.954,1073,6.468]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,1.634,12,1.644,13,0.057,14,1.047,48,3.135,111,3.094,133,0.39,139,4.159,196,4.31,291,5.565,734,3.501,735,4.614,758,5.409,1071,6.083,1072,4.536]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[2,0.978,133,0.344,278,4.142,620,2.39,704,3.113,1074,3.536]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[422,3.642,631,2.942,704,3.548,1074,4.029]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[2,1.155,11,1.701,12,1.712,14,1.09,15,2.19,152,2.215,282,2.66,371,4.647,604,4.276,620,2.823,704,3.676,763,3.559,1074,4.176,1075,4.387,1076,5.47,1077,5.822]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[3,0.871,75,1.92,181,3.819,185,4.93,188,3.14,601,4.512]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[17,1.26,185,5.618,857,5.838,1078,7.039]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[3,0.898,11,1.486,12,1.496,13,0.071,17,1.573,45,1.943,89,1.285,133,0.355,181,6.22,185,5.087,188,4.468,232,3.39,274,1.555,294,1.752,364,2.324,374,5.286,891,3.737,1079,4.78]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[45,1.548,109,3.345,201,3.139,204,0.693,257,2.842,1080,5.078,1081,4.409,1082,4.409]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[559,6.48,1082,6.112,1083,4.234,1084,6.48]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[11,0.627,12,0.631,14,0.402,15,0.807,36,1.867,45,0.82,46,0.807,53,2.259,87,1.771,89,1.54,98,1.383,126,3.03,141,1.302,147,3.878,152,0.817,196,1.236,208,0.995,283,5.164,308,1.617,328,1.923,341,1.567,433,3.835,492,4.161,550,2.836,654,1.292,870,2.926,1079,3.389,1082,9.572,1084,8.843,1085,2.689,1086,2.23,1087,2.23,1088,2.689,1089,2.476,1090,4.52]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,509,4.04]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[511,6.112,512,6.112,514,6.112,1091,6.48]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[4,1.053,11,1.259,12,1.267,13,0.063,14,0.807,89,1.089,98,2.392,133,0.561,193,3.851,204,0.737,206,1.38,289,3.268,490,4.689,509,5.984,523,4.972,524,6.411,672,3.851,1091,8.46,1092,5.4]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[3,0.938,196,3.061,291,3.507,624,2.979,899,4.747]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[291,2.74,624,2.327,757,4.15,899,3.709,1093,5.2,1094,5.2,1095,4.788,1096,4.788]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[11,1.259,12,1.267,45,1.646,53,2.699,106,2.218,196,5.125,274,1.908,289,2.257,291,2.845,428,4.689,553,4.478,624,2.417,734,3.908,757,4.31,899,6.554,1009,3.691,1056,3.945,1072,3.496,1095,4.972,1097,5.4,1098,7.818,1099,4.689,1100,5.4]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[13,0.058,45,2.2,75,2.244,1101,6.268]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[56,3.312,884,4.96,1101,5.194,1102,5.982,1103,5.982,1104,5.982]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[2,0.83,11,1.222,12,1.23,13,0.073,20,2.028,21,1.579,30,2.577,45,1.597,48,2.345,52,3.828,75,2.378,111,2.315,133,0.553,188,2.664,191,3.288,274,1.279,294,1.44,364,1.911,433,2.933,491,3.393,614,3.514,618,3.111,894,3.656,1101,7.844,1105,3.828,1106,4.182,1107,5.24]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[13,0.064,117,2.229,1108,4.805]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1108,4.291,1109,7.039,1110,7.039,1111,7.039]],["toc//docs/websites/cms/install-cpanel-on-centos/",[3,1.321,13,0.057,30,3.445,45,2.135,46,2.103,105,2.325,133,0.522,456,3.728,678,2.803,768,4.271,1108,5.714,1112,6.449]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[142,4.17,620,3.36]],["keywords//docs/networking/remote-access/",[623,5.162,1113,6.468,1114,6.468,1115,6.468,1116,6.468]],["toc//docs/networking/remote-access/",[3,1.127,5,5.176,14,0.832,133,0.31,165,5.552,197,4.069,456,2.822,497,3.396,603,4.837,604,5.991,620,3.094,624,2.493,631,3.341,653,4.253,890,3.973,901,5.577,927,3.444,1072,3.607,1117,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[117,1.629,656,2.152,749,2.163,769,2.954,1118,4.019,1119,3.614,1120,1.865]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[117,1.692,1119,3.753,1120,1.936,1121,4.486,1122,4.774,1123,4.619]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[11,1.634,12,1.644,89,1.412,106,2.878,160,3.726,364,2.554,656,2.617,749,4.234,769,3.592,928,4.985,1124,6.539,1125,6.449,1126,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[16,0.587,17,0.966,528,2.792,656,2.016,749,2.026,769,2.768,1118,3.766,1119,3.386]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[16,0.65,17,1.071,1119,3.753,1121,4.486,1122,4.774,1123,4.619]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,1.634,12,1.644,89,1.412,106,2.878,160,3.726,364,2.554,656,2.617,749,4.234,769,3.592,928,4.985,1124,6.539,1125,6.449,1126,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,2.18,4,1.205,276,4.512,442,4.632,656,2.307,1127,4.93]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[4,1.506,276,5.64,656,2.884]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[2,0.842,4,1.037,11,1.24,12,1.248,56,2.945,89,1.072,133,0.296,152,1.615,157,4.189,196,2.446,274,1.298,278,3.566,282,1.939,352,3.793,371,5.804,435,2.555,605,3.566,685,2.615,967,3.793,968,3.793,1128,4.107,1129,5.319,1130,5.319,1131,5.319,1132,5.319,1133,5.319,1134,5.319,1135,5.319,1136,5.319,1137,5.319]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[30,3.273,56,3.686,117,1.883,146,2.782,822,3.04]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[117,1.829,823,4.994,824,4.994,825,4.85,826,4.612]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[13,0.062,20,2.944,30,5.729,45,2.319,133,0.551,294,2.091,301,3.339,364,2.774,822,4.52]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[138,1.851,246,3.669,488,4.598,1065,5.272]],["keywords//docs/websites/host-a-website-with-high-availability/",[466,5.279,528,3.642,684,3.518,1117,5.618]],["toc//docs/websites/host-a-website-with-high-availability/",[2,0.619,11,0.911,12,0.917,13,0.061,46,1.173,106,3.103,129,0.953,133,0.548,147,2.212,152,2.294,204,0.836,274,0.953,278,2.62,280,3.628,281,4.605,283,1.715,289,1.633,309,2.787,390,0.856,455,2.382,456,1.379,497,2.382,509,2.187,524,2.726,604,2.291,614,2.62,1053,3.428,1064,7.872,1066,6.028,1067,5.639,1117,3.119,1138,3.908,1139,6.125,1140,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[82,4.621,488,5.022,1065,5.758]],["keywords//docs/websites/introduction-to-high-availability/",[138,1.805,246,3.578,466,5.279,1117,5.618]],["toc//docs/websites/introduction-to-high-availability/",[2,1.028,98,1.986,129,1.584,141,1.87,205,1.856,271,4.528,294,1.784,397,2.985,464,4.868,470,5.18,488,6.963,716,5.976,862,4.741,1065,7.984,1117,7.104]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,385,5.272]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[16,0.765,18,3.434,382,6.112,385,5.142]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[2,1.266,11,1.299,12,1.307,13,0.045,24,6.831,36,2.301,45,1.698,75,2.485,77,4.631,81,4.064,90,3.443,133,0.31,274,1.359,308,4.808,385,7.904,599,4.746,601,4.069,618,3.307]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[13,0.058,16,0.785,18,3.521,134,3.168]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[134,2.838,867,4.85,1042,5.162,1043,3.943,1141,4.337]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[11,1.299,12,1.307,13,0.065,16,0.606,18,2.717,89,1.885,129,1.951,133,0.31,134,4.943,142,2.676,155,2.963,168,3.607,274,1.951,295,1.948,365,3.807,620,3.094,1041,3.022,1044,3.189,1048,3.668,1142,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,680,3.15,1143,6.128]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[16,0.65,129,1.459,680,2.831,868,3.015,1018,4.088,1019,5.507]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[11,1.542,12,1.552,13,0.054,36,2.732,46,1.985,89,1.333,106,2.716,107,3.02,109,2.959,129,1.613,133,0.368,234,3.041,261,3.876,295,2.313,550,4.148,680,5.454,1020,5.277]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[2,0.855,3,0.761,16,0.587,18,2.633,205,1.543,1143,4.969,1144,3.29,1145,5.398]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[684,3.859,1144,4.707,1146,7.109]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,1.204,12,1.212,13,0.042,78,3.343,89,1.041,104,3.682,120,2.426,133,0.287,138,2.529,209,2.311,282,1.883,318,2.097,328,2.197,339,2.701,341,1.79,349,3.105,371,3.29,442,3.872,496,3.872,628,4.236,944,4.754,1127,4.121,1144,4.613,1147,6.571,1148,4.484,1149,1.988,1150,5.164]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[16,0.671,17,1.106,57,1.847,232,3.285,274,1.507,648,3.765]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[57,1.664,204,0.759,206,1.422,648,3.392,649,3.346,1151,3.664,1152,5.122]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,1.667,12,1.677,20,2.766,33,5.927,57,2.137,89,1.441,98,2.187,107,3.264,169,4,191,4.484,274,1.744,294,1.964,510,5.052,551,6.206,616,5.36,1010,3.46]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,204,0.909,1153,3.726]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1154,7.039,1155,7.039,1156,7.039,1157,7.039]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[3,1.231,11,2.037,12,2.05,13,0.071,152,2.653,204,1.192,1153,6.048]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,0.99,13,0.041,16,0.552,18,2.477,75,1.578,206,1.298,227,2.907,390,1.112,1158,2.581]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.373,206,1.799,867,5.279,1158,3.578]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[0,2.21,2,1.375,4,1.944,11,1.46,12,1.469,13,0.07,129,1.528,133,0.349,138,1.606,152,1.901,205,1.79,206,1.6,227,3.584,289,2.617,339,1.715,390,1.371,763,4.236,1149,2.41,1158,3.183]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[13,0.054,16,0.724,18,3.247,227,3.81,732,2.94]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[867,4.85,1159,6.468,1160,6.468,1161,6.468,1162,6.468]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[3,0.838,11,1.386,12,1.395,13,0.079,89,1.199,129,1.451,133,0.466,138,1.525,152,1.805,204,1.143,206,1.52,227,3.403,289,2.485,339,1.628,390,2.123,655,4.93,732,2.626,763,4.085,1163,5.945,1164,5.945]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[16,0.785,18,3.521,1010,3.494,1165,3.549]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[16,0.839,18,3.767,1010,3.738]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[13,0.052,15,1.913,16,1.094,18,3.109,30,3.134,45,1.943,57,1.906,105,2.115,167,3.941,364,2.324,488,4.061,550,3.999,747,3.53,954,5.286,993,3.268,1010,4.87,1165,4.322,1166,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[2,0.978,13,0.05,16,0.671,17,1.106,232,3.285,801,3.285]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[801,3.182,860,3.811,1167,5.982,1168,5.982,1169,5.982,1170,5.507]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[11,1.17,12,1.177,13,0.079,14,0.75,15,1.506,16,0.545,17,0.898,45,2.685,57,1.5,58,2.374,96,1.779,108,3.102,133,0.541,139,2.978,148,2.778,274,1.224,289,2.097,290,3.102,294,1.379,364,1.829,374,4.161,378,3.196,801,5.174,871,2.941,1053,4.147,1171,4.619]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[13,0.054,117,1.883,133,0.371,146,2.782,801,3.541]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[117,1.991,801,3.744,866,4.911,1170,6.48]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[3,0.707,11,1.17,12,1.177,13,0.071,14,0.75,15,1.506,45,2.685,58,2.374,96,1.779,107,2.291,108,3.102,133,0.49,148,2.778,197,3.665,274,1.224,289,2.097,290,3.102,291,2.643,294,1.379,364,1.829,374,4.161,378,3.196,801,5.519,871,2.941,929,2.26,1053,4.147,1171,4.619]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[13,0.05,16,0.671,17,1.106,232,3.285,1172,3.667,1173,5.122]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[16,0.65,141,1.723,860,3.811,1172,3.551,1174,5.982,1175,5.982]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,1.363,12,1.372,13,0.067,48,2.616,89,1.179,100,2.998,111,2.583,133,0.325,204,0.798,205,2.366,273,4.489,295,2.045,301,2.566,302,4.666,306,4.271,364,2.132,402,3.428,620,2.263,1049,3.996,1172,6.544,1173,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[3,0.716,4,0.99,16,0.552,101,1.975,133,0.283,427,2.651,747,2.812,1176,4.675,1177,2.701]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[4,1.167,151,5.507,1178,3.597,1179,5.982,1180,5.982,1181,4.011]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[4,1.423,11,1.701,12,1.712,13,0.093,36,3.014,89,1.471,101,2.838,133,0.536,427,3.808,1176,8.864,1177,3.88]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[13,0.064,45,2.403,1182,6.845]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1182,7.425,1183,8.551]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[13,0.069,45,2.599,75,2.65,82,4.998,192,7.404,364,3.109,1182,10.075]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[3,0.812,13,0.047,16,0.626,447,4.109,509,3.225,747,3.19,1184,5.003]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[16,0.565,204,0.71,402,3.049,509,2.911,1185,5.2,1186,5.2,1187,5.2,1188,4.015]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[13,0.089,14,0.874,15,1.755,44,4.17,57,2.872,96,2.073,127,4.079,129,1.427,140,3.668,265,5.383,328,2.488,402,3.428,447,5.902,509,4.632,678,1.748,812,4.271,841,4.385,1184,7.186,1188,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[4,1.124,122,2.98,246,2.928,1056,4.208,1189,5.304,1190,5.304,1191,4.448]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[74,3.316,1191,4.994,1192,4.994,1193,6.468,1194,6.468]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[4,1.853,11,1.667,12,1.677,13,0.077,53,3.572,89,1.441,138,1.833,339,1.957,427,3.731,682,4.045,1189,6.58,1190,8.745,1191,7.334]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[13,0.054,16,0.724,17,1.192,1195,6.128,1196,6.128]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[783,4.512,786,4.724,1197,6.468,1198,5.954,1199,5.954]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[2,1.573,11,1.222,12,1.23,13,0.042,56,2.902,90,2.257,133,0.292,186,6.975,318,2.128,341,1.816,678,1.567,715,3.451,781,6.174,788,4.55,789,4.046,1195,9.144,1196,9.144,1198,4.824,1199,4.824,1200,4.824,1201,5.24,1202,5.24]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[13,0.05,89,1.245,181,3.819,656,2.307,749,2.319,1203,6.177]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[749,2.899,1204,7.722,1205,7.722]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[11,1.279,12,1.287,13,0.044,20,2.122,33,4.548,57,2.364,89,1.106,120,2.576,140,3.441,181,6.272,267,4.693,289,3.304,405,4.234,656,3.463,749,3.809,1206,10.146,1207,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[2,0.804,16,0.552,253,3.808,370,3.808,747,2.812,1208,4.675,1209,4.675,1210,4.675,1211,4.675]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[16,0.473,1025,3.033,1181,2.916,1211,4.003,1212,4.348,1213,4.348,1214,4.348,1215,4.348,1216,4.348,1217,4.003,1218,3.358]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[2,1.521,11,1.363,12,1.372,13,0.047,14,0.874,36,2.415,133,0.325,191,3.668,253,6.206,642,4.849,678,1.748,923,3.85,1025,7.287,1128,4.515,1208,7.619,1209,7.619,1210,7.619,1219,4.515,1220,5.383]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[2,0.912,13,0.047,275,2.928,1173,4.778,1221,5.304,1222,5.304,1223,5.003]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[783,4.911,1218,5.435,1224,7.039,1225,7.039]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[2,1.465,3,0.968,11,1.602,12,1.612,13,0.056,45,2.094,133,0.382,275,4.702,364,2.505,783,4.792,952,5.697,1173,7.671,1221,8.516,1222,8.516]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[13,0.047,17,1.031,204,0.786,206,1.473,232,3.064,1226,4.778,1227,4.208]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[204,0.666,206,1.248,860,3.11,1057,4.239,1149,1.879,1228,4.882,1229,2.703,1230,4.494,1231,4.494]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[11,1.737,12,1.748,13,0.06,133,0.543,204,1.017,206,2.783,380,6.177,474,5.751,925,5.196,1226,8.095,1230,6.857]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,2.18,16,0.671,747,3.42,1232,5.686,1233,5.363,1234,4.769]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1232,4.788,1233,4.516,1234,4.015,1235,5.2,1236,4.788,1237,5.2,1238,4.516,1239,5.2]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,2.249,2,1.009,4,1.243,6,2.68,11,1.486,12,1.496,13,0.082,89,1.285,101,3.914,153,5.691,232,3.39,915,4.78,916,3.941,1233,5.535,1234,6.787,1236,5.868,1238,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[2,1.054,13,0.054,783,4.644,786,4.862,1025,4.644]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[783,3.881,786,4.064,1025,3.881,1217,5.122,1218,4.296,1240,5.122,1241,5.564]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[2,1.109,11,1.634,13,0.076,21,2.111,48,3.135,106,2.878,111,3.094,234,3.221,258,5.409,274,1.709,337,4.887,341,2.428,399,4.331,783,6.539,948,5.253,1025,4.887]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[17,1.106,133,0.344,232,3.285,1032,2.319,1242,4.769,1243,4.93]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[456,1.835,739,1.852,860,3.313,1032,1.952,1242,4.015,1243,4.15,1244,4.516,1245,4.788]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[13,0.034,14,1.425,15,2.863,106,2.63,133,0.356,145,3.102,152,1.256,196,1.902,268,3.194,289,2.676,291,2.179,351,3.03,442,3.102,455,2.522,456,2.259,769,2.121,789,3.194,871,2.425,1032,2.94,1079,3.102,1242,6.808,1243,5.11,1244,5.559,1245,3.808,1246,4.136,1247,4.136,1248,4.136,1249,4.136,1250,3.592,1251,4.136,1252,2.368,1253,3.021,1254,4.136]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[13,0.058,16,0.785,18,3.521,1255,6.268]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[16,0.765,739,2.507,1255,6.112,1256,6.48]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[11,1.064,12,1.071,13,0.075,20,1.766,21,1.375,57,1.365,75,1.419,89,1.392,120,2.144,129,1.114,133,0.254,138,1.77,140,2.863,204,1.136,206,1.166,227,3.951,282,1.664,295,1.596,339,1.89,350,2.745,353,3.184,364,1.664,390,1.511,496,3.422,656,1.705,732,3.049,871,2.675,1255,9.104,1257,4.564]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[13,0.064,45,2.403,903,5.621]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[56,3.581,886,4.512,890,4.612,903,4.612,1258,5.954]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[11,1.602,12,1.612,13,0.075,45,2.82,98,2.831,133,0.382,188,3.492,201,4.247,364,2.505,548,5.697,618,4.078,657,3.015,903,7.459,1020,5.482]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[814,0.472]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[2,0.855,13,0.044,124,3.555,205,1.543,370,4.048,528,2.792,1083,3.246,1259,4.969]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[124,5.085,205,2.208,1260,7.722]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[3,1.173,11,1.941,12,1.954,13,0.067,14,1.244,15,2.499,133,0.463,390,1.823,1259,9.653]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[2,1.143,75,2.244,628,4.04,1261,6.268]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[786,5.142,1025,4.911,1261,6.112,1262,4.179]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[2,1.455,11,1.259,12,1.267,13,0.044,36,2.231,41,3.851,46,1.621,89,1.089,96,1.915,105,1.792,133,0.435,280,2.594,282,1.969,306,3.945,318,2.193,324,4.478,341,1.872,550,3.388,592,3.556,597,4.05,696,3.128,715,3.556,901,3.767,1063,4.31,1261,9.678]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[95,3.608,133,0.402,214,5.148,704,3.638]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[77,3.012,81,2.643,422,2.69,704,2.621,1263,4.516,1264,4.15,1265,4.788,1266,4.788]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[11,1.571,12,1.581,75,2.095,81,3.425,90,2.902,95,5.176,133,0.375,152,2.046,308,4.053,422,3.486,599,4,749,2.53,975,4.806,1009,4.606,1264,5.378,1266,6.204,1267,4.806,1268,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[2,0.912,14,0.861,15,1.729,17,1.031,19,3.938,704,2.904,964,4.019]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[422,3.642,704,3.548,1263,6.112,1269,5.02]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[2,1.126,11,1.107,12,1.669,13,0.038,46,1.425,48,2.125,58,2.247,95,3.554,98,2.609,111,2.097,133,0.592,141,1.367,216,2.687,280,2.28,281,2.894,371,3.025,389,2.855,422,2.456,631,1.984,657,2.084,704,4.297,749,1.782,1059,3.56,1076,3.56,1250,4.122,1267,6.08,1270,4.371,1271,4.748]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[2,0.978,278,4.142,279,3.875,619,5.122,704,3.113,1074,3.536]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[422,3.642,704,3.548,1263,6.112,1269,5.02]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[11,1.988,12,2.001,48,3.816,111,3.766,133,0.475,281,5.198,631,3.563,704,4.297,1272,8.526]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[13,0.054,129,1.624,390,1.458,696,3.855,816,5.313]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[390,1.541,816,5.618,817,6.48,1273,7.039]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[2,0.783,11,1.154,12,1.161,13,0.04,14,0.739,89,0.997,90,2.131,106,4.237,109,3.909,129,1.789,133,0.275,295,1.73,341,1.715,390,2.115,397,2.275,428,6.366,528,2.559,584,4.828,816,5.851,1044,4.197,1047,3.71,1274,4.947,1275,4.947,1276,4.947,1277,4.554]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,2.349,16,0.724,747,3.686,1278,5.78,1279,5.78]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[141,2.422,1083,3.597,1278,5.194,1279,5.194,1280,5.982]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,1.222,12,1.23,13,0.073,14,0.783,15,1.573,16,0.57,63,2.093,89,1.056,106,2.153,109,3.423,133,0.588,134,2.3,141,1.509,153,3.393,204,1.044,301,2.3,762,1.509,894,3.656,1278,9.172,1279,7.844,1281,5.24]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[117,2.229,146,3.294,732,3.482]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[117,1.574,204,0.759,206,1.422,390,1.218,732,2.457,866,3.881,1282,5.122]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[11,1.542,12,1.552,13,0.083,89,1.333,129,1.613,133,0.613,138,1.696,149,3.062,203,3.925,204,0.902,206,1.69,339,1.811,390,1.448,528,3.421,654,3.176,1283,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[0,1.905,3,0.761,4,1.053,16,0.587,101,2.1,747,2.989,1284,2.482,1285,2.792]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[4,1.373,63,2.812,1284,3.237,1285,3.642]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[4,1.878,11,1.701,12,1.712,13,0.059,14,1.09,15,2.19,63,2.914,101,2.838,133,0.536,153,4.723,894,5.089,1284,3.354,1285,4.981]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[13,0.058,133,0.402,232,3.839,648,4.4]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[204,0.816,206,1.529,648,3.646,649,3.597,1151,3.939,1152,5.507]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[11,1.774,12,1.786,20,2.944,36,3.143,133,0.424,204,1.038,211,4.926,212,5.2,232,4.047,364,2.774,648,6.034,772,5.426,1286,7.005]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[16,0.671,204,0.843,566,3.819,747,3.42,1287,5.686,1288,5.363]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,1.571,12,1.581,13,0.055,96,2.389,133,0.646,135,4.806,136,4.701,204,0.92,251,2.996,347,4.922,776,5.692,1284,3.098,1290,3.903]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[133,0.439,280,3.786,597,5.911]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[16,0.406,17,0.669,280,1.795,592,2.461,597,2.802,631,1.562,958,2.38,1291,3.736,1292,3.736,1293,3.736,1294,3.736,1295,3.736,1296,3.736,1297,1.95]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[3,0.761,11,1.259,12,1.267,13,0.044,14,0.807,16,0.587,17,0.967,41,3.851,46,1.621,75,1.679,98,1.653,106,2.218,133,0.301,224,2.872,280,3.755,281,6.517,282,1.969,350,3.248,431,3.556,453,3.248,528,2.794,597,7.554,657,2.37,1297,2.819,1298,5.4]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,0.871,89,1.245,209,2.764,227,3.536,720,4.632,732,2.728]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[178,3.303,209,2.49,720,4.172,724,4.296,1299,5.564,1300,5.564,1301,5.122]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[3,1.166,46,1.755,89,2.222,98,2.532,129,1.427,133,0.325,138,1.5,152,1.775,204,1.129,206,1.494,209,4.674,339,1.601,341,2.027,389,3.516,390,1.28,721,4.849,1302,5.383,1303,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[13,0.058,17,1.292,133,0.402,1304,6.268]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[17,1.071,1025,4.173,1304,5.194,1305,5.982,1306,4.774,1307,5.982]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[2,1.504,11,1.667,12,1.677,13,0.077,14,1.068,90,4.091,95,3.572,133,0.398,295,2.5,900,6.58,1304,9.264,1308,7.147]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[45,2.2,440,4.085,620,2.793,1309,6.645]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[98,1.494,201,3.018,741,3.896,1309,4.494,1310,4.239,1311,4.882,1312,4.494,1313,4.882,1314,4.882]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[11,1.701,12,1.712,14,1.09,15,2.19,133,0.406,295,2.551,366,4.447,614,6.456,741,5.822,1106,5.822,1312,6.716,1315,7.295,1316,6.716,1317,7.295,1318,7.295]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,1.205,13,0.05,16,0.671,18,3.013,209,2.764,1319,5.122]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,1.506,16,0.839,1320,6.404]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[4,2.146,11,1.774,12,1.786,13,0.08,20,2.944,36,3.143,100,3.901,133,0.424,993,3.901,1319,8.208]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[13,0.05,16,0.671,19,4.222,747,3.42,982,4.769,1321,6.177]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[16,0.65,649,3.597,982,4.619,984,5.507,985,5.507,986,5.507]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[2,1.448,11,0.882,12,0.888,13,0.074,57,1.131,63,1.511,76,2.245,78,2.449,89,1.204,98,1.827,101,1.471,120,1.777,124,2.491,129,0.923,133,0.211,134,1.66,152,1.813,251,3.288,280,1.817,295,2.088,301,1.66,307,2.191,318,2.425,341,1.311,366,2.306,398,3.284,618,3.544,657,1.66,701,3.137,728,2.491,982,7.854,988,3.482,989,3.482,991,3.482,992,3.019,1059,2.836,1322,3.782,1323,3.482,1324,3.782]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.205,14,0.923,15,1.854,16,0.671,747,3.42,1320,5.122]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.085,16,0.605,528,2.878,1181,3.731,1319,4.614,1320,6.624]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[4,1.981,13,0.053,14,0.97,20,3.445,21,1.956,36,2.682,100,3.328,133,0.361,208,2.401,209,3.983,294,1.784,373,1.589,397,2.985,628,3.633,993,3.328,1319,7.381,1320,5.383]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.124,13,0.047,17,1.031,232,3.064,749,2.163,1227,4.208,1325,4.448]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.262,860,4.12,1121,4.85,1325,4.994,1326,6.468]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[4,1.46,11,1.187,12,1.194,13,0.072,15,1.528,98,1.557,107,2.324,133,0.283,152,1.545,160,3.982,196,2.34,208,1.883,301,2.234,351,2.408,497,3.102,527,4.22,594,4.22,654,2.445,734,2.544,749,3.677,769,4.554,822,2.324,871,2.984,1123,3.93,1325,7.563]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[2,1.143,13,0.058,141,2.079,1327,6.645]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1328,9.58]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[13,0.046,16,0.615,17,1.013,105,1.878,117,1.601,133,0.45,138,1.451,142,2.719,205,1.618,257,3.168,294,1.555,309,4.036,359,4.036,494,5.21,503,3.664,528,2.928,807,4.914,993,2.902,1120,1.832,1297,2.955,1327,9.476,1329,4.517,1330,5.66,1331,3.948,1332,5.66,1333,0.833]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[2,1.143,3,1.017,274,1.761,1334,4.753]],["keywords//docs/security/using-fail2ban-for-security/",[1334,5.085,1335,7.722,1336,7.109]],["toc//docs/security/using-fail2ban-for-security/",[3,0.75,13,0.043,14,0.795,16,0.578,17,0.952,95,2.658,117,1.504,133,0.557,146,2.223,174,3.566,262,3.503,604,3.118,739,1.894,1086,4.411,1120,1.721,1331,3.711,1334,6.998,1336,4.897,1337,5.319,1338,5.319,1339,5.319,1340,5.319,1341,4.897,1342,7.733,1343,4.897,1344,4.619]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[0,2.033,2,0.912,16,0.626,275,2.928,747,3.19,1223,5.003,1345,5.304]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[16,0.605,783,3.881,786,4.064,1181,3.731,1218,4.296,1346,5.564,1347,5.564]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[2,1.484,11,1.634,12,1.644,13,0.057,36,2.894,133,0.39,275,5.369,678,2.095,952,5.81,1223,6.083,1345,9.724,1348,7.006,1349,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[4,1.205,13,0.05,17,1.106,19,4.222,134,2.711,1350,5.363]],["keywords//docs/development/version-control/install-gogs-on-debian/",[4,1.262,74,3.316,134,2.838,446,5.616,1350,5.616]],["toc//docs/development/version-control/install-gogs-on-debian/",[3,0.898,4,1.243,11,1.486,13,0.095,133,0.355,134,2.797,157,2.931,205,1.822,211,4.127,267,3.784,306,4.656,371,4.061,620,2.467,1059,4.78,1350,9.418]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[13,0.047,16,0.626,124,3.794,224,3.064,301,2.528,747,3.19,1351,3.794]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[16,0.388,1032,1.34,1181,2.393,1244,3.099,1351,2.35,1352,3.569,1353,2.239,1354,3.569,1355,3.569,1356,3.569,1357,3.569,1358,3.569,1359,3.569,1360,3.099,1361,3.569]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[2,0.882,13,0.076,14,1.194,15,1.672,20,2.156,45,1.698,46,1.672,89,1.612,105,1.849,133,0.31,160,2.963,253,4.177,295,1.948,440,5.293,656,2.081,749,3.511,769,2.856,1123,4.301,1302,5.128,1351,6.73]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[13,0.058,117,2.041,146,3.017,1362,5.272]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[117,1.166,866,2.876,1363,4.123,1364,4.123,1365,4.123,1366,3.58,1367,4.123,1368,4.123,1369,4.123,1370,4.123,1371,4.123,1372,4.123]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[11,1.204,12,1.212,13,0.089,30,2.539,36,2.133,48,2.311,100,3.88,111,2.281,117,1.46,133,0.421,251,2.296,280,2.48,282,1.883,289,2.158,301,2.266,435,2.48,592,3.401,618,3.065,1362,7.204,1373,5.164,1374,6.967,1375,4.282,1376,5.164,1377,5.164,1378,4.484]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[16,0.671,45,1.883,620,2.39,735,4.068,747,3.42,1106,4.93]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[16,0.65,661,4.619,735,3.939,901,4.173,1106,4.774,1379,5.982]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[13,0.062,87,5.011,163,5.102,614,5.102,620,3.83,735,6.518,762,2.192,763,3.712,1106,7.899,1250,6.607,1380,7.609]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[82,4.621,117,2.229,1063,6.291]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[45,1.195,75,1.219,117,1.109,201,2.424,274,0.957,280,1.883,592,2.582,1063,3.129,1120,1.269,1381,3.92,1382,3.92,1383,3.92,1384,3.92]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[13,0.048,14,0.888,46,1.785,105,1.973,133,0.54,273,3.225,280,2.856,281,3.624,307,3.443,397,2.734,453,3.576,524,4.147,592,3.915,971,5.162,1063,7.737,1075,3.576,1385,3.915,1386,5.945,1387,5.945,1388,5.945,1389,5.473,1390,5.945,1391,4.59]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[2,0.978,13,0.05,133,0.344,148,3.42,482,4.068,830,4.769]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1392,7.722,1393,7.722,1394,7.722]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[0,2.291,11,1.514,12,1.523,13,0.072,21,1.956,106,2.666,133,0.565,148,3.594,234,2.985,482,7.79,772,4.629,830,5.012,1395,5.976,1396,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[117,1.883,146,2.782,213,3.902,679,3.444,1234,5.14]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[203,3.303,204,0.759,390,1.218,679,2.878,1234,4.296,1238,4.831,1397,5.564]],["toc//docs/development/java/java-development-wildfly-centos-7/",[2,0.882,3,0.785,5,3.607,6,2.342,11,1.299,12,1.307,13,0.076,106,2.288,133,0.445,157,3.676,204,1.091,232,2.963,390,1.22,525,5.128,572,4.446,679,2.882,916,3.444,1234,7.221,1253,4.069,1398,5.57,1399,5.57,1400,5.57,1401,5.57,1402,5.57]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[13,0.064,133,0.439,720,5.911]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[722,7.109,723,6.705,724,5.962]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[11,1.154,12,1.161,13,0.059,14,0.739,106,3.968,133,0.538,145,7.736,147,4.149,148,4.837,209,3.281,224,2.631,295,1.73,352,3.528,592,3.258,624,2.214,720,8.102,734,2.472,749,1.857,769,2.536]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[4,1.408,133,0.402,305,4.933,493,5.148]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[4,1.262,290,3.998,305,4.42,493,4.612,684,3.232]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[11,0.965,44,2.95,81,2.103,90,3.373,95,2.067,98,1.959,131,2.2,141,1.191,157,1.902,166,3.808,257,2.315,258,3.194,305,4.376,307,2.396,309,2.95,354,3.808,358,6.251,490,3.592,496,3.102,657,3.437,685,2.034,812,3.021,977,3.592,1056,3.021,1403,3.592,1404,4.017,1405,4.136,1406,2.456,1407,4.136,1408,3.592,1409,4.136,1410,4.136,1411,4.136,1412,3.808,1413,3.808,1414,4.136,1415,3.43,1416,3.808,1417,4.136,1418,3.808,1419,3.808,1420,4.136,1421,4.136,1422,3.808]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[2,0.978,14,0.923,15,1.854,652,4.512,1423,5.363,1424,4.93]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[652,3.566,1262,2.898,1423,4.239,1424,3.896,1425,4.882,1426,4.882,1427,4.882,1428,4.882,1429,4.882]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[2,1.372,13,0.059,14,1.084,15,2.178,45,2.212,57,1.459,90,2.101,133,0.482,147,2.761,194,3.767,280,3.486,341,1.691,678,1.459,691,3.894,762,1.405,763,2.38,993,2.501,1262,2.896,1423,8.906,1424,5.791,1430,4.879,1431,4.879,1432,6.018,1433,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[13,0.054,341,2.307,555,5.313,708,5.52,1434,6.128]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[708,4.313,1435,7.607,1436,5.2,1437,5.2,1438,5.2,1439,5.2,1440,5.2]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[2,0.762,3,0.678,13,0.058,16,0.523,78,4.651,89,0.97,96,1.706,98,1.473,111,2.126,118,4.179,133,0.478,149,2.228,180,3.432,205,1.376,227,2.755,243,3.841,294,1.974,295,1.683,341,2.49,628,2.693,678,1.439,708,8.456,772,3.432,1219,3.716,1434,7.912,1441,4.812,1442,4.812,1443,4.812,1444,4.179]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[133,0.439,656,2.944,1140,5.285]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[13,0.042,45,1.585,133,0.289,465,4.15,605,3.487,656,1.943,749,1.952,1140,3.487]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[2,1.484,4,1.366,11,1.634,12,1.644,13,0.057,133,0.522,196,3.221,204,0.956,205,2.68,497,4.271,656,2.617,718,5.81,749,2.63,763,3.418,1140,4.697]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[3,0.938,45,2.029,342,4.31,926,5.52,1445,5.313]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[342,4.558,901,4.911,926,5.838,1445,5.618]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[45,2.731,59,6.718,282,3.266,433,5.014,620,3.467,926,9.1]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[13,0.058,117,2.041,146,3.017,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1446,2.864,1447,3.47,1448,3.47,1449,3.606,1450,3.101]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[13,0.058,117,2.041,146,3.017,203,4.285]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1447,3.47,1450,3.101,1451,4.348,1452,4.348,1453,4.348]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[2,0.958,3,0.852,11,1.41,12,1.419,13,0.049,36,2.498,53,3.022,89,1.708,129,1.475,153,3.915,203,6.869,290,3.738,295,2.115,923,3.982,927,3.738,928,4.507,929,2.724,964,4.218,1044,3.461]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[141,2.079,294,1.984,657,3.168,1454,4.132]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[274,1.578,657,3.897,1454,3.702,1455,4.612]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[13,0.043,16,0.578,17,0.952,75,1.653,98,1.628,117,1.504,120,2.499,133,0.296,146,2.223,179,3.118,279,3.337,341,3.158,399,3.288,657,2.334,739,1.894,901,3.711,1120,1.721,1297,2.777,1454,6.71,1456,5.319,1457,4.619,1458,9.111,1459,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[2,0.978,16,0.671,204,0.843,205,1.766,747,3.42,1165,3.037]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[16,0.65,157,2.751,204,0.816,684,2.99,1181,4.011,1460,5.982]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,1.435,12,1.444,13,0.08,91,4.613,133,0.477,138,1.578,204,1.348,209,4.78,257,3.443,289,2.571,318,3.484,339,1.685,435,2.955,1461,4.292,1462,5.342,1463,4.75]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[2,0.912,16,0.626,46,1.729,422,2.98,717,3.562,747,3.19,1464,5.003]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[16,0.703,422,3.346,1181,4.337,1464,5.616,1465,6.468]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[2,1.383,11,2.037,12,2.05,13,0.071,90,3.763,133,0.486,1464,9.383]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[2,1.143,13,0.058,45,2.2,1466,6.268]],["keywords//docs/game-servers/install-teamspeak/",[1218,5.435,1466,6.112,1467,7.039,1468,5.435]],["toc//docs/game-servers/install-teamspeak/",[11,1.634,12,1.644,13,0.057,20,2.711,36,2.894,133,0.39,267,4.159,280,3.365,330,5.591,341,2.428,445,4.614,589,4.996,1466,10.209,1469,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[5,4.31,45,2.029,133,0.371,456,2.349,1470,6.128]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[623,5.162,1471,6.468,1472,5.954,1473,5.616,1474,6.468]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[5,6.454,14,1.489,456,3.518]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[2,0.978,4,1.205,13,0.05,17,1.106,205,1.766,232,3.285]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[4,1.167,17,1.071,157,2.751,684,2.99,860,3.811,861,5.194]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[4,2.045,11,1.941,12,1.954,13,0.067,17,1.49,21,2.509,234,4.821,301,3.654]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[3,0.812,133,0.321,227,3.298,482,3.794,732,2.545,830,4.448,1475,4.598]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[75,1.729,204,0.759,206,1.422,390,1.218,482,3.664,860,3.545,1476,5.122]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[89,2.178,98,2.674,133,0.486,138,2.241,339,2.393,732,3.859,1475,6.973]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[3,0.716,89,1.024,227,2.907,482,4.922,732,2.243,830,3.921,1334,3.344,1475,4.053]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[204,0.666,206,1.248,390,1.069,482,3.215,860,3.11,1334,3.215,1476,4.494,1477,3.896,1478,4.882]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[89,2.053,98,2.433,107,3.631,133,0.443,148,4.403,482,6.706,516,6.346,830,6.139,1475,6.346,1479,7.951]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[2,0.978,17,1.106,204,0.843,205,1.766,232,3.285,1227,4.512]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[17,0.931,204,0.71,658,4.788,659,4.15,684,2.599,1480,5.2,1481,4.15,1482,5.2]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[11,1.41,12,1.419,13,0.079,91,4.535,133,0.472,138,1.551,204,1.447,209,4.745,257,3.385,289,2.527,318,3.442,339,1.656,435,2.905,1461,4.218,1462,5.251,1463,4.669]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[17,1.292,232,3.839,732,3.188,1227,5.272]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[17,0.738,204,0.563,206,1.054,246,2.096,390,0.903,732,1.821,860,2.627,1483,4.123,1484,4.123,1485,3.419,1486,3.796,1487,4.123]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[11,1.602,12,1.612,13,0.075,14,1.026,15,2.062,129,1.676,133,0.515,138,1.762,149,3.181,204,1.262,206,1.756,339,1.881,390,2.29,654,3.3]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[30,3.549,58,3.416,59,5.413,341,2.502]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[30,2.941,826,4.266,886,4.173,891,3.507,1488,5.507,1489,5.507]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[13,0.069,30,4.192,58,5.036,133,0.475,337,5.948,891,4.998,1490,6.805,1491,7.849]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[30,3.037,45,1.883,58,2.923,59,4.632,341,2.141,886,4.309]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[30,2.736,826,3.968,857,4.614,886,3.881,891,3.262,1488,5.122,1489,5.122]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[13,0.05,16,0.932,17,1.535,30,3.025,58,4.673,75,1.912,117,2.426,133,0.342,146,2.571,337,4.292,450,3.86,891,3.607,1120,2.776,1297,4.477,1490,4.91,1491,5.664,1492,5.303]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.298,17,1.192,19,4.55,427,3.475,1177,3.541]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.085,17,0.996,427,2.904,1178,3.346,1493,3.881,1494,3.44,1495,5.122]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[0,2.21,4,1.694,11,1.46,12,1.469,13,0.087,36,2.587,48,2.802,111,2.765,137,3.543,251,2.784,282,2.283,289,2.617,390,1.371,427,3.268,435,4.17,682,4.914,1177,4.618]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[3,0.938,45,2.029,46,1.998,216,3.767,1496,5.78]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[45,1.402,46,1.381,87,3.029,178,2.731,204,0.628,213,2.696,427,2.401,646,3.994,1496,3.994,1497,4.234]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[2,1.088,13,0.075,14,1.026,15,2.062,45,2.094,98,2.102,133,0.515,204,0.938,402,4.027,486,3.845,618,4.078,678,2.054,741,5.482,1496,8.032,1497,6.324,1498,5.965]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[886,6.056,1499,7.2]],["keywords//docs/platform/kvm-reference/",[886,4.512,1500,6.468,1501,6.468,1502,6.468,1503,5.616]],["toc//docs/platform/kvm-reference/",[30,3.079,56,3.467,75,1.946,117,1.771,133,0.349,188,3.183,191,3.928,214,4.465,282,2.283,319,4.368,339,1.715,408,3.928,554,3.928,618,3.717,763,3.054,852,5.437,886,4.368,901,4.368,1000,2.632,1297,3.268,1391,4.834,1503,5.437,1504,6.261,1505,4.695]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[13,0.058,17,1.292,232,3.839,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[17,0.738,75,1.282,129,1.006,201,2.549,203,2.448,390,0.903,860,2.627,1446,2.715,1447,3.291,1448,3.291,1449,3.419,1450,2.941]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.124,13,0.047,16,0.626,18,2.81,133,0.321,206,1.473,1149,2.218]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.373,206,1.799,867,5.279,1149,2.71]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[4,1.781,11,1.571,12,1.581,13,0.055,21,2.03,133,0.375,138,1.728,152,2.046,206,2.647,208,2.493,257,3.772,274,1.644,314,6.204,339,1.845,584,4.438,1149,2.594,1506,4.228]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[4,1.298,16,0.724,206,1.701,747,3.686,1149,2.563]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[4,1.085,16,0.605,206,1.422,1149,2.142,1507,5.564,1508,3.262,1509,3.731]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[13,0.048,14,0.888,21,1.791,36,2.456,84,5.515,89,1.199,105,1.973,120,2.793,131,4.454,133,0.54,138,1.525,152,1.805,206,1.52,208,2.199,274,1.451,282,2.168,339,1.628,373,1.455,584,3.915,1149,2.289,1404,3.73,1506,3.73,1510,3.675]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1142,5.911,1511,7.257,1512,5.621]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[178,2.898,724,3.769,1301,4.494,1512,3.481,1513,4.882,1514,4.494,1515,4.882,1516,3.769,1517,4.494]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[2,1.028,94,5.976,95,3.244,98,1.986,147,3.674,216,3.674,341,2.25,450,4.072,487,3.904,610,5.636,726,4.629,1087,5.383,1512,7.244,1516,5.012,1518,6.491,1519,5.636,1520,6.491,1521,6.491,1522,6.491,1523,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[89,1.455,772,5.148,1512,5.148,1516,5.573]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[178,3.087,724,4.015,732,2.297,1477,4.15,1512,3.709,1516,4.015,1517,4.788,1524,5.2]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[13,0.052,14,0.952,15,1.913,20,2.467,89,1.772,133,0.489,138,1.635,181,3.941,204,1.2,206,1.629,282,2.324,339,1.746,390,2.375,929,2.871,1516,4.922,1523,5.868,1525,6.374]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[2,0.978,13,0.05,16,0.671,747,3.42,1087,5.122,1512,4.405]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[723,4.239,724,3.769,1192,3.769,1512,3.481,1514,4.494,1526,4.882,1527,4.882,1528,4.882,1529,4.494]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[2,1.326,13,0.048,14,0.888,15,1.785,20,2.301,76,3.529,89,1.199,106,3.44,147,3.365,196,2.734,289,2.485,295,2.079,439,2.813,485,5.162,497,3.624,678,1.778,734,2.971,938,4.745,1087,6.944,1512,5.972,1516,4.59,1529,5.473,1530,5.945]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[2,0.912,13,0.047,75,1.791,274,1.406,620,2.229,704,2.904,869,3.67]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[16,0.605,17,0.996,117,1.574,422,2.878,631,2.325,704,2.804,1120,1.801]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[2,1.009,13,0.071,14,0.952,46,1.913,75,1.981,77,3.692,81,3.24,95,4.393,133,0.355,295,2.229,308,3.833,491,4.127,620,2.467,704,5.735,762,1.836,1531,6.374,1532,6.374]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[45,2.2,1404,4.528,1533,5.148,1534,5.272]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[274,1.578,280,3.107,1535,6.468,1536,6.468,1537,5.616]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[3,1.271,131,3.517,224,3.517,397,3.041,524,4.613,657,2.902,945,6.088,971,5.742,1404,6.435,1534,7.492,1538,6.088,1539,6.612,1540,6.612,1541,6.088,1542,6.612,1543,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[17,1.292,232,3.839,1010,3.494,1227,5.272]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[17,1.26,1010,3.407,1227,5.142,1544,4.234]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[13,0.055,15,2.023,17,1.206,30,3.313,36,2.784,45,2.054,57,2.015,105,2.236,167,4.166,232,3.584,327,4.806,364,2.457,488,4.293,550,4.228,715,4.438,763,3.287,993,3.455,1010,4.42,1545,5.851]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[2,0.912,16,0.626,341,1.997,747,3.19,1262,3.42,1424,4.598,1546,5.761]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1262,5.076,1424,6.825]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[2,1.205,13,0.062,36,3.143,56,4.213,89,1.534,133,0.424,295,2.661,364,2.774,402,4.46,545,7.005,618,4.517,1262,4.517,1547,9.898]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[2,0.855,13,0.044,16,0.587,747,2.989,1025,3.766,1058,4.687,1548,5.398,1549,4.969]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[16,0.531,783,3.405,1025,3.405,1128,3.769,1181,3.273,1218,3.769,1240,4.494,1550,4.882,1551,4.882]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[2,1.446,11,1.571,12,1.581,13,0.055,36,2.784,133,0.375,291,3.55,678,2.015,952,5.588,1058,8.993,1128,5.203,1549,9.534,1552,6.738,1553,9.131]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[16,0.587,17,0.966,30,2.654,56,2.989,528,2.792,822,2.465,891,3.164,1554,3.85]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[16,0.565,17,0.931,823,4.015,824,4.015,825,3.9,826,3.709,1555,4.15,1556,4.15]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[814,0.472]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[3,0.938,509,3.726,664,4.747,692,5.14,1557,6.657]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[16,0.703,17,1.158,509,3.62,664,4.612,692,4.994]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[13,0.084,15,1.2,20,1.546,53,1.997,89,0.806,98,1.223,105,1.326,109,2.789,133,0.522,152,1.893,165,2.372,167,2.471,195,2.919,289,1.67,295,2.18,307,2.314,402,3.654,408,2.507,440,2.262,489,3.086,604,2.343,664,5.465,678,1.195,679,2.067,692,7.678,753,3.679,1049,2.731,1059,2.997,1558,6.233,1559,3.996,1560,8.655]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[2,1.143,17,1.292,146,3.017,1561,6.268]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[17,1.382,1262,4.584,1561,6.705]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[2,1.685,13,0.086,90,3.672,341,2.955,402,4.998,678,2.55,1561,7.404]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,2.728,328,2.628,655,5.122,1499,5.122,1562,6.177,1563,6.177]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,3.109,328,2.995,1564,7.039,1565,7.039]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[68,3.677,70,5.631,345,1.191,397,3.828,433,6.424,645,7.665,738,7.665]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[117,1.747,146,2.581,203,3.667,739,2.2,1032,2.319,1566,3.254]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[739,2.304,866,4.512,1567,6.468,1568,6.468,1569,4.612]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,203,4.856,208,2.128,295,2.861,339,1.575,351,3.871,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[117,1.747,390,1.352,739,2.2,1000,2.597,1032,2.319,1566,3.254]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[739,2.304,1002,5.162,1569,4.612,1572,6.468,1573,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,208,2.128,295,2.861,339,1.575,351,3.871,390,1.791,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[0,2.18,2,0.978,68,2.728,132,4.309,205,1.766,787,5.122]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[16,0.565,17,0.931,68,2.297,70,2.793,132,3.628,147,2.943,684,2.599,1574,4.788]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[2,1.59,13,0.063,20,3.009,68,4.91,70,4.176,132,7.003,205,2.223,341,2.695,433,4.352]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[16,0.724,17,1.192,275,3.384,1575,5.14,1576,6.128]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[16,0.703,17,1.158,786,4.724,1577,6.468,1578,6.468]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,133,0.342,186,4.75,275,5.019,318,2.499,328,2.618,678,1.84,1059,4.613,1200,5.664,1220,7.896,1252,3.522,1575,7.624,1576,9.091,1579,5.664]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[3,0.938,305,4.55,390,1.458,493,4.747,1450,4.747]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[390,1.541,1450,5.02,1580,7.039,1581,6.48]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[290,4.807,305,5.315,390,2.198,894,5.425,932,6.752,1450,5.546,1582,7.776,1583,7.776,1584,7.776,1585,7.776,1586,7.776,1587,7.776]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[52,5.758,1022,7.257,1142,5.911]],["keywords//docs/uptime/reboot-survival-guide/",[52,5.142,1588,7.039,1589,7.039,1590,7.039]],["toc//docs/uptime/reboot-survival-guide/",[15,2.484,16,0.636,17,1.047,52,6.045,98,1.789,105,1.94,117,2.341,128,4.17,129,1.427,146,2.444,152,1.775,167,5.116,169,3.273,271,4.079,280,2.808,281,3.564,464,4.385,584,3.85,656,2.184,788,5.077,1000,2.458,1591,5.847,1592,5.847,1593,5.847]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[2,1.248,204,1.076,290,4.873]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[133,0.392,204,0.961,684,3.518,1581,6.48]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[91,5.151,204,0.938,209,4.14,257,3.845,358,5.482,807,5.965,894,4.792,1461,4.792,1462,5.965,1594,6.324,1595,6.869,1596,6.869,1597,6.869,1598,6.869,1599,6.869,1600,6.869,1601,6.869,1602,6.869]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[0,2.349,13,0.054,68,2.94,227,3.81,732,2.94]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[16,0.703,17,1.158,68,2.857,732,3.922]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[13,0.078,14,1.09,20,2.823,68,4.76,70,3.918,133,0.406,204,0.996,341,2.528,390,1.597,433,4.083,621,4.576,678,2.181,732,3.222]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[814,0.472]],["title//docs/uptime/monitoring/top-htop-iotop/",[2,1.054,3,0.938,141,1.917,493,4.747,516,5.313]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[141,1.863,516,5.162,1603,5.616,1604,5.954,1605,5.162]],["toc//docs/uptime/monitoring/top-htop-iotop/",[107,3.551,244,5.68,289,3.25,328,4.73,349,4.677,516,6.206,714,7.159,715,5.121,1538,7.159,1603,6.752,1604,7.159]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[2,1.054,152,2.021,205,1.903,271,4.644,1606,5.78]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1606,6.705,1607,7.722,1608,7.722]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[20,3.077,89,1.603,98,2.433,133,0.567,243,6.346,328,4.332,341,2.756,348,4.605,1606,8.842]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[14,0.861,15,1.729,16,0.626,17,1.031,203,3.42,283,2.528,1066,4.598]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[16,0.565,17,0.931,203,3.087,283,2.282,390,1.139,466,3.9,1066,4.15,1609,4.788]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[13,0.067,14,1.244,21,2.509,129,2.031,133,0.463,152,2.528,208,3.08,280,3.999,1053,4.66,1066,6.644]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[36,3.256,445,5.191,1140,5.285]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[465,7.459,466,4.172,1140,5.356,1609,5.122]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[107,3.474,133,0.424,138,1.951,162,5.426,339,2.084,551,6.607,612,6.31,653,4.047,862,5.558,1140,7.376,1610,4.704,1611,7.609]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[13,0.054,74,3.413,234,3.061,873,5.52,1062,4.862]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[74,3.067,873,4.96,1612,5.194,1613,4.774,1614,4.774,1615,4.96]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[13,0.051,74,3.21,89,1.75,133,0.349,152,2.636,160,3.33,234,2.879,417,5.192,440,3.543,737,5.764,873,7.2,1062,6.342,1519,8.655,1616,8.682,1617,6.261,1618,6.261,1619,6.261]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[13,0.054,17,1.192,133,0.371,146,2.782,530,5.52]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[23,7.872,1620,8.551]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[13,0.042,14,0.783,20,2.028,53,3.823,56,2.902,98,2.764,120,3.593,133,0.426,141,1.509,174,3.514,281,3.194,319,3.656,365,6.788,503,3.393,530,8.759,582,4.824,678,1.567,739,1.866,812,3.828,871,3.072,1331,3.656,1416,4.824,1621,4.824]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[13,0.058,17,1.292,1262,4.285,1622,6.268]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[17,0.874,860,3.11,861,4.239,1227,3.566,1262,2.898,1544,2.936,1622,4.239,1623,4.239,1624,3.405]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[2,1.231,11,1.813,12,1.825,13,0.081,36,3.212,46,2.334,133,0.433,280,3.735,678,2.325,762,2.24,1262,4.616,1622,6.752]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[13,0.064,17,1.411,1625,6.086]],["keywords//docs/game-servers/multicraft-on-debian/",[17,1.382,1262,4.584,1625,5.962]],["toc//docs/game-servers/multicraft-on-debian/",[13,0.088,133,0.486,439,4.134,678,2.613,717,5.401,1262,5.187,1625,6.746]],["deprecated//docs/game-servers/multicraft-on-debian/",[814,0.472]],["title//docs/game-servers/multicraft-on-ubuntu/",[13,0.064,16,0.857,1625,6.086]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[16,0.839,1262,4.584,1625,5.962]],["toc//docs/game-servers/multicraft-on-ubuntu/",[13,0.088,133,0.486,439,4.134,678,2.613,717,5.401,1262,5.187,1625,6.746]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[2,0.759,13,0.039,16,0.521,17,0.858,45,1.461,279,3.007,880,3.501,1081,4.162,1626,4.162,1627,4.413]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1626,6.705,1627,7.109,1628,7.722]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[3,1.263,13,0.073,133,0.499,294,2.462,364,3.266,1626,9.528]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[246,4.007,735,5.191,1083,4.741]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[8,3.839,313,4.187,1083,5.34,1629,5.954]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[15,2.441,106,4.244,206,2.079,279,6.482,735,5.357,769,4.171,1083,4.892,1574,7.488,1630,5.357]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[509,4.412,735,5.191,1083,4.741]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[8,3.551,313,3.873,509,3.348,1083,5.058,1629,5.507]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[15,1.985,106,3.703,241,5.484,279,5.655,402,3.876,735,7.591,769,3.391,1083,6.932,1184,5.742,1188,5.106,1631,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[29,5.413,367,5.573,1010,3.494,1632,6.645]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[16,0.531,17,0.874,42,3.566,117,1.381,274,1.191,367,3.769,841,3.661,1010,2.363,1120,1.58]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[13,0.074,16,0.993,17,1.634,60,5.851,76,4,117,2.582,146,2.816,152,2.046,993,3.455,1000,2.833,1010,3.262,1120,2.181,1253,4.922,1632,6.204,1633,6.738,1634,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[2,0.978,14,0.923,15,1.854,16,0.671,17,1.106,1262,3.667]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[16,0.839,17,1.382,1262,4.584]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[2,1.383,13,0.071,90,3.763,341,3.028,678,2.613,1262,6.964]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[16,0.857,732,3.482,747,4.365]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[204,0.71,206,1.329,390,1.139,1181,3.487,1635,4.788,1636,5.2,1637,5.2,1638,4.015]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,1.737,12,1.748,13,0.079,89,1.502,129,1.817,133,0.606,138,1.91,204,1.017,206,1.904,339,2.04,390,2.137]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[117,2.041,146,3.017,1463,5.573,1639,7.218]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[117,2.184,866,5.387,1640,7.722]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[2,1.549,3,0.852,11,1.41,12,1.419,13,0.049,52,4.417,57,1.808,98,1.85,133,0.337,267,3.59,318,3.442,548,5.015,678,1.808,1059,6.355,1463,7.554,1641,9.783,1642,6.047,1643,6.047]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[127,5.499,133,0.439,456,2.782]],["keywords//docs/networking/dns/common-dns-configurations/",[1473,6.705,1644,7.109,1645,7.109]],["toc//docs/networking/dns/common-dns-configurations/",[2,1.358,3,1.209,14,0.919,15,1.847,105,2.042,122,4.437,133,0.342,138,1.578,173,3.983,177,4.292,351,4.673,455,3.75,456,2.171,457,4.613,739,2.191,740,2.602,1543,5.342,1646,5.664,1647,4.91,1648,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[4,1.408,13,0.058,17,1.292,132,5.035]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[17,0.874,246,2.481,1649,3.896,1650,4.239,1651,4.882,1652,4.882,1653,4.239,1654,4.882,1655,4.882]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[2,1.155,4,1.423,13,0.078,89,1.941,98,2.946,120,3.427,132,5.089,133,0.406,205,2.086,262,4.804,331,6.716,1656,6.716,1657,7.295]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[13,0.05,75,1.92,272,4.93,631,2.581,1658,5.363,1659,5.363]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[272,5.618,631,2.942,893,5.618,1658,6.112]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[2,1.409,3,0.915,13,0.053,16,0.706,17,1.162,75,2.018,95,4.449,152,1.971,289,2.713,1253,6.502,1297,3.388,1404,4.072,1492,4.013,1658,7.729,1660,6.491,1661,5.383,1662,5.976,1663,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[138,1.851,488,4.598,509,4.04,1065,5.272]],["keywords//docs/websites/cms/high-availability-wordpress/",[390,1.416,466,4.85,509,3.62,1053,3.62,1664,5.954]],["toc//docs/websites/cms/high-availability-wordpress/",[13,0.066,14,0.859,15,1.726,21,1.733,89,1.16,129,1.403,133,0.61,148,4.53,204,0.785,208,2.128,224,3.059,295,2.012,509,3.219,678,1.72,762,1.657,1053,5.328,1140,3.857,1498,4.994,1665,4.313,1666,4.994,1667,5.752]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[129,1.507,133,0.344,148,4.763,390,1.352,1053,3.457]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[466,5.279,1053,3.94,1664,6.48,1668,7.039]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[13,0.06,89,1.502,129,1.817,133,0.543,148,5.405,224,3.962,295,2.605,390,2.137,1053,6.094,1665,5.585]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[13,0.07,132,6.056]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[246,3.578,1649,5.618,1650,6.112,1669,6.48]],["toc//docs/development/nodejs/how-to-install-nodejs/",[13,0.057,21,2.824,46,3.171,76,4.159,100,3.592,147,5.305,301,3.075,520,6.083,589,4.996,655,5.81,701,5.81,1670,7.006,1671,7.006,1672,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[13,0.05,117,1.747,146,2.581,227,3.536,1149,2.378,1158,3.14]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[4,1.085,75,1.729,117,1.574,206,1.422,1149,2.142,1158,2.828,1673,2.614]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[0,2.249,4,2.116,13,0.071,14,0.952,36,2.633,105,2.115,133,0.56,138,1.635,203,3.784,206,2.247,306,4.656,339,1.746,373,1.56,1149,3.384,1674,4.78]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[631,3.628,906,6.929]],["keywords//docs/platform/network-helper/",[528,2.878,604,3.262,623,4.44,631,3.339,1675,5.564,1676,5.564]],["toc//docs/platform/network-helper/",[14,0.919,16,0.669,17,1.101,60,5.342,98,1.883,117,1.74,133,0.342,253,4.613,341,2.132,365,4.205,491,3.983,631,3.585,906,6.845,1120,1.991,1253,6.265,1297,3.212,1395,5.664,1419,5.664,1492,3.803,1661,5.102,1677,5.342,1678,6.152]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[17,0.966,146,2.256,169,3.021,209,2.416,528,2.792,648,3.29,1188,4.168,1679,4.308]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[17,0.931,509,2.911,648,3.17,649,3.128,650,3.799,1151,3.425,1679,4.15,1680,4.788]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[13,0.077,45,2.179,48,3.198,111,3.157,169,5.317,178,4.243,209,3.198,510,3.802,648,4.357,678,2.137,1188,5.519,1679,9.074]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[3,0.812,13,0.047,17,1.031,146,2.408,528,2.98,648,3.512,1679,4.598]],["keywords//docs/websites/cms/drush-drupal/",[17,0.931,509,2.911,528,2.69,648,3.17,649,3.128,650,3.799,1151,3.425,1680,4.788]],["toc//docs/websites/cms/drush-drupal/",[2,1.252,3,0.773,13,0.075,14,0.819,72,4.112,74,2.812,89,1.106,98,1.678,107,2.504,246,2.788,274,1.338,289,2.292,295,2.765,366,4.819,510,2.917,648,3.343,678,1.64,812,4.006,992,6.309,1253,4.006,1461,3.826,1679,8.097,1681,5.484]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[117,1.883,146,2.782,204,0.909,656,2.487,749,2.499]],["keywords//docs/security/ssl/ssl-apache2-centos/",[204,0.71,656,1.943,1120,1.683,1682,3.554,1683,4.788,1684,4.516,1685,5.2,1686,3.425]],["toc//docs/security/ssl/ssl-apache2-centos/",[3,1.202,11,1.988,12,2.001,133,0.592,152,2.589,204,1.164,656,3.185,749,3.201]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[16,0.671,17,1.106,204,0.843,528,3.195,656,2.307,749,2.319]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[16,0.565,17,0.931,204,0.71,656,1.943,684,2.599,1682,3.554,1687,4.788,1688,4.788]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[3,1.202,11,1.988,12,2.001,133,0.592,152,2.589,204,1.164,656,3.185,749,3.201]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[16,0.785,747,3.997,1010,3.494,1165,3.549]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[16,0.839,1010,3.738,1181,5.178]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[13,0.055,15,2.023,16,0.993,30,3.313,45,2.054,57,2.015,105,2.236,167,4.166,364,2.457,488,4.293,550,4.228,954,5.588,993,3.455,1010,5.013,1165,3.313,1166,5.588,1689,2.902]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[814,0.472]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,1.124,13,0.047,17,1.031,146,2.408,749,2.163,1325,4.448,1544,3.465]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,0.897,1121,3.449,1123,3.552,1325,3.552,1544,2.766,1624,3.209,1653,3.994,1690,4.6,1691,4.234,1692,3.814]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[4,1.445,13,0.06,15,1.506,17,0.898,21,1.512,45,1.529,98,1.535,106,2.061,107,2.291,152,1.523,160,3.941,196,2.307,208,1.856,234,2.307,301,2.202,351,2.374,497,3.058,527,4.161,594,4.161,654,2.41,678,1.5,734,2.507,749,3.651,769,4.516,871,2.941,1123,3.874,1325,7.511]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1005,3.832]],["title//docs/websites/cms/cms-overview/",[46,2.167,294,1.984,685,3.549,862,5.272]],["keywords//docs/websites/cms/cms-overview/",[509,3.114,528,2.878,648,3.392,649,3.346,650,4.064,1151,3.664,1693,5.122]],["toc//docs/websites/cms/cms-overview/",[45,2.319,46,2.284,48,3.405,111,3.361,294,2.091,509,5.54,610,6.607,648,6.034,650,7.23,685,3.741,1188,5.875]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[371,5.022,1694,6.845,1695,7.257]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[16,0.565,17,0.931,42,3.799,117,1.471,274,1.269,1120,1.683,1694,4.516,1695,4.788]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[4,1.394,152,2.17,204,1.296,371,6.052,463,5.519,704,3.602,1032,2.683,1035,5.221,1566,3.766,1694,9.264,1696,7.147,1697,6.58,1698,7.147]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[98,2.412,1009,5.387,1699,6.086]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1699,4.619,1700,4.774,1701,5.507,1702,4.619,1703,5.507,1704,5.507]],["toc//docs/tools-reference/file-transfer/filezilla/",[3,1.33,13,0.076,678,2.822,1699,8.744]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[13,0.047,16,0.626,18,2.81,209,2.578,439,2.726,717,3.562,1705,5.003]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[439,3.331,717,4.352,1705,6.112,1706,7.039]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[11,1.363,12,1.372,13,0.078,46,1.755,98,1.789,133,0.325,194,4.515,209,4.299,373,1.431,439,2.767,624,2.616,657,2.566,717,3.615,993,2.998,1253,4.271,1647,4.666,1648,4.666,1705,9.939,1707,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[2,0.912,13,0.047,16,0.626,124,3.794,301,2.528,740,2.436,1708,5.003]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[739,2.75,740,3.266,1708,6.705]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[2,0.855,13,0.044,106,2.218,140,4.905,152,1.64,204,0.737,291,2.845,295,1.889,337,3.767,341,1.872,353,3.767,455,3.292,678,1.615,740,2.284,749,2.935,923,3.556,948,4.05,1242,7.096,1243,7.334,1470,8.46,1708,4.689,1709,4.478,1710,5.4,1711,5.4,1712,5.4]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[29,5.413,841,5.413,1010,3.494,1713,6.645]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[16,0.531,17,0.874,42,3.566,117,1.381,274,1.191,841,3.661,1010,2.363,1120,1.58,1713,4.494]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[13,0.041,16,0.545,17,0.898,29,3.762,75,1.56,117,1.419,841,7.781,993,2.572,1010,2.428,1120,1.624,1297,2.619,1492,3.102,1661,4.161,1677,4.356,1714,10.376,1715,10.376,1716,5.017,1717,5.017,1718,5.017,1719,5.017,1720,5.017,1721,5.017,1722,5.017,1723,5.017,1724,5.017,1725,5.017]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[45,2.646,433,4.859]],["keywords//docs/platform/linode-images/",[433,4.786,1726,8.551]],["toc//docs/platform/linode-images/",[0,3.161,46,2.689,433,6.64,1459,7.15,1727,8.958]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.205,17,1.106,146,2.581,390,1.352,1544,3.715,1728,5.363]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.373,390,1.541,1624,4.911,1728,6.112]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[0,2.574,3,1.028,4,1.878,13,0.078,21,2.198,133,0.406,208,2.698,364,2.66,390,1.597,397,3.354,678,2.181,1728,9.358]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[13,0.05,16,0.671,747,3.42,1191,4.769,1287,5.686,1288,5.363]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.014,74,2.666,134,2.282,390,1.139,427,2.715,1178,3.128,1191,4.015,1192,4.015]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[0,2.098,4,1.16,13,0.079,14,0.888,15,1.785,21,1.791,124,3.915,129,1.451,134,2.609,138,1.525,208,2.199,251,2.643,274,1.451,294,2.301,339,1.628,364,2.168,391,4.745,427,3.104,628,3.328,1191,8.565]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[3,0.938,619,5.52,1038,5.52,1468,5.14,1729,5.78]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1468,4.994,1729,5.616,1730,4.512,1731,5.616,1732,5.616]],["toc//docs/applications/messaging/using-weechat-for-irc/",[2,0.593,3,0.834,11,0.873,12,0.878,13,0.048,14,0.884,16,0.407,17,0.67,75,1.163,77,3.429,79,3.445,80,3.445,81,1.902,90,1.612,117,1.058,133,0.208,308,3.56,328,1.592,341,1.297,402,2.194,408,2.348,431,3.899,486,2.095,497,2.281,528,1.936,599,3.514,620,1.448,642,3.103,653,1.991,654,1.798,691,2.987,715,2.465,1033,2.194,1036,2.987,1120,1.211,1252,2.142,1297,1.954,1729,8.796,1730,2.611,1733,2.558,1734,3.445,1735,3.742,1736,5.45,1737,3.742,1738,5.45,1739,3.742,1740,3.742]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[13,0.058,17,1.292,301,3.168,1741,6.268]],["keywords//docs/applications/messaging/install-znc-debian/",[1741,5.616,1742,6.468,1743,6.468,1744,6.468,1745,6.468]],["toc//docs/applications/messaging/install-znc-debian/",[11,1.737,12,1.748,13,0.06,90,3.208,95,3.723,133,0.415,181,4.605,289,3.113,656,2.782,749,2.796,769,3.819,1741,8.476,1746,7.448,1747,7.448]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[3,1.017,137,4.085,735,4.753,739,2.571]],["keywords//docs/email/using-google-apps-for-email/",[1748,7.722,1749,7.722,1750,7.722]],["toc//docs/email/using-google-apps-for-email/",[89,1.853,351,4.349,455,5.603,871,5.388,992,7.335,1709,7.622]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[75,2.244,133,0.402,604,4.231,1406,4.285]],["keywords//docs/networking/linux-static-ip-configuration/",[165,4.584,623,6.163,1406,4.584]],["toc//docs/networking/linux-static-ip-configuration/",[16,0.91,17,1.064,70,3.193,75,1.848,90,2.561,117,2.368,133,0.331,146,2.485,152,1.805,165,3.529,345,0.85,371,3.788,408,3.73,631,2.485,734,2.971,903,4.24,906,4.745,1000,2.499,1120,1.924,1297,3.104,1344,5.162,1406,3.529,1492,3.675,1661,4.93,1751,5.945]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,2.033,16,0.626,105,1.912,1306,4.598,1362,4.208,1689,2.481,1752,4.448]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[204,0.628,206,1.176,891,2.696,1306,3.671,1362,3.36,1366,3.994,1477,3.671,1752,3.552,1753,3.029,1754,4.6]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[13,0.085,14,0.691,15,1.388,20,1.789,21,1.393,30,2.273,57,1.382,89,1.691,133,0.558,193,3.297,208,1.71,209,2.069,224,2.459,227,2.646,294,1.271,295,1.617,330,3.69,491,2.993,501,3.69,678,1.382,732,2.042,735,3.045,763,2.255,871,2.71,891,2.71,1362,5.091,1752,6.478,1755,4.623,1756,4.256,1757,4.623]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[17,0.966,146,2.256,204,0.737,206,1.38,341,1.871,1226,4.476,1544,3.246,1758,4.476]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[204,0.883,206,1.653,1057,5.616,1149,2.49,1231,5.954]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[13,0.064,133,0.567,204,1.085,206,2.871,289,3.323,474,6.139,1226,8.444,1758,6.594]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[14,0.995,15,1.998,17,1.192,19,4.55,203,3.952]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[17,1.158,129,1.578,203,3.839,390,1.416,1495,5.954]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[2,1.088,3,0.968,13,0.056,90,2.959,133,0.382,142,3.3,203,7.142,274,1.676,290,4.247,295,2.402,927,4.247,928,3.654,929,3.095,1759,6.869]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[13,0.054,17,1.192,133,0.371,819,5.14,1760,6.657]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[17,1.26,390,1.541,819,5.435,1310,6.112]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[13,0.085,133,0.584,345,1.191,390,1.823,678,2.489,819,8.096,1333,1.226]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[2,0.855,3,0.761,133,0.3,740,2.283,1032,2.026,1033,3.164,1035,3.943,1630,3.555]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[739,2.304,740,2.735,1032,2.428,1035,4.724,1624,4.512]],["toc//docs/email/postfix/postfix-smtp-debian7/",[2,0.882,13,0.045,14,1.194,57,1.666,98,1.705,129,1.359,131,2.963,133,0.521,137,3.153,152,1.691,274,1.359,450,3.495,678,1.666,735,3.668,929,3.602,1032,3.511,1034,4.619,1035,4.069,1036,4.446,1037,5.128,1038,4.619,1142,4.177,1761,4.301,1762,5.57,1763,5.57]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[13,0.064,133,0.439,1764,6.845]],["keywords//docs/applications/cloud-storage/dropbox/",[16,0.565,17,0.931,110,3.215,117,1.471,568,4.788,1120,1.683,1310,4.516,1764,4.516]],["toc//docs/applications/cloud-storage/dropbox/",[13,0.076,133,0.525,152,2.865,652,6.893,1764,8.194]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[30,3.273,75,2.069,691,5.313,1765,5.78,1766,5.52]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[188,3.288,1505,4.85,1767,6.468,1768,6.468,1769,6.468]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[16,0.864,17,1.423,30,3.91,75,2.471,117,2.249,691,6.346,1120,2.573,1297,4.151,1492,4.915,1506,4.988,1765,6.904,1766,6.594]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1005,3.832]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[2,1.143,732,3.188,1120,2.336,1770,6.645]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[732,2.642,1120,1.936,1771,5.982,1772,4.369,1773,4.486,1774,5.982]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[814,0.472]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[17,1.031,45,1.756,341,1.997,599,3.42,762,1.659,1075,3.465,1445,4.598]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[17,0.996,624,2.49,860,3.545,1775,4.614,1776,5.564,1777,5.122,1778,5.122]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[13,0.084,45,2.479,75,2.528,77,4.711,81,4.135,90,3.503,95,4.065,152,2.47,1775,8.568]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[16,0.587,45,1.645,341,1.871,599,3.204,762,1.555,1075,3.246,1445,4.308,1689,2.325]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[16,0.65,624,2.677,1753,3.939,1775,4.96,1777,5.507,1778,5.507]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[13,0.084,45,2.479,75,2.528,77,4.711,81,4.135,90,3.503,95,4.065,152,2.47,1775,8.568]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[814,0.472]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[3,0.871,16,0.671,24,4.512,385,4.512,1079,4.632,1689,2.66]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[16,0.765,382,6.112,385,5.142,1689,3.032]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[2,0.926,13,0.047,24,7.017,36,2.415,45,1.782,75,2.572,77,4.793,81,4.207,90,3.564,133,0.325,274,1.427,308,4.977,385,8.052,599,4.913,601,4.271,618,3.471]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[14,0.923,89,1.245,117,1.747,680,2.923,1053,3.457,1779,5.363]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[14,0.861,17,1.031,89,1.161,146,2.408,680,2.726,1053,3.225,1544,3.465]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[814,0.472]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[14,0.861,16,0.626,89,1.161,680,2.726,1053,3.225,1689,2.481,1784,2.954]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[129,1.578,283,2.838,680,3.06,868,3.26,1780,4.994]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[2,0.794,13,0.041,14,1.453,53,2.507,89,1.011,96,1.779,98,2.267,105,1.665,109,2.245,129,1.224,133,0.279,138,1.287,224,2.669,273,2.721,328,3.152,574,3.874,585,3.665,631,3.096,653,2.669,680,4.168,871,2.941,1053,4.93,1054,4.161,1506,3.148,1780,3.874,1781,4.356,1782,4.161,1783,4.356]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[29,5.413,42,5.272,1269,5.148,1785,6.645]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[16,0.565,17,0.931,42,3.799,117,1.471,274,1.269,1120,1.683,1269,3.709,1785,4.788]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[13,0.064,16,0.864,17,1.423,42,5.808,76,4.72,107,3.631,111,3.512,117,2.249,274,1.94,749,2.985,1120,2.573,1786,7.951]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[13,0.054,16,0.724,740,2.815,958,4.241,1689,2.867]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[16,0.5,390,1.007,460,3.552,739,1.638,740,1.945,1032,1.727,1360,3.994,1566,2.423,1689,1.981,1787,2.844]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[13,0.062,14,1.137,133,0.424,152,3.005,282,2.774,289,3.18,317,5.426,460,7.642,678,2.275,1360,6.607,1787,6.119]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[814,0.472]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[14,0.806,57,1.614,138,1.384,204,1.067,339,1.478,1286,4.969,1788,5.398]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[16,0.5,17,0.823,57,1.375,117,1.301,1010,2.226,1120,1.489,1297,2.401,1486,4.234,1492,2.844,1789,4.6]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[14,1.266,16,0.657,17,1.082,57,2.534,58,2.861,133,0.337,138,2.173,156,3.982,169,3.385,193,4.312,204,0.825,209,2.706,258,4.669,339,2.321,366,3.686,431,3.982,589,4.312,653,3.216,854,4.669,1010,2.927,1782,5.015,1790,5.567]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[3,0.812,6,2.422,89,1.161,117,1.629,157,2.649,1779,5.003,1791,4.448]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[6,2.719,117,1.829,157,2.974,1779,5.616,1791,4.994]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[6,3.343,13,0.064,96,2.819,133,0.443,157,3.656,278,5.331,291,4.189,453,4.782,628,4.45,1791,7.863,1792,7.32]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[3,0.812,6,2.422,16,0.626,89,1.161,157,2.649,1689,2.481,1791,4.448]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[6,2.515,16,0.65,157,2.751,528,3.094,1689,2.576,1791,4.619]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[6,3.343,13,0.064,96,2.819,133,0.443,157,3.656,278,5.331,291,4.189,453,4.782,628,4.45,1791,7.863,1792,7.32]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[814,0.472]],["title//docs/platform/billing-and-payments/",[1012,6.342,1014,6.51]],["keywords//docs/platform/billing-and-payments/",[1012,6.246,1014,6.412]],["toc//docs/platform/billing-and-payments/",[40,3.336,45,2.498,57,1.33,92,3.689,105,2.247,107,2.032,138,1.141,169,2.49,201,2.75,345,0.968,350,2.676,372,2.413,397,2.046,440,2.518,464,3.336,589,3.173,620,1.722,662,2.791,731,5.879,1009,4.627,1011,3.863,1012,6.691,1014,5.077,1065,3.25,1099,3.863,1333,0.655,1707,3.689,1793,4.449,1794,4.449,1795,3.435,1796,4.096,1797,4.449,1798,3.435,1799,3.863,1800,5.879,1801,3.689]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[17,1.192,19,4.55,199,5.52,614,4.464,1802,5.78]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1802,7.425,1803,8.551]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[2,1.484,95,4.685,98,2.144,131,3.726,133,0.39,289,3.917,294,1.925,453,4.213,628,5.246,631,2.928,678,2.095,1802,9.172]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[14,0.861,15,1.729,45,1.756,569,5.304,624,2.578,1074,3.298,1804,5.761]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[6,2.719,1074,5.082,1805,5.954,1806,6.468]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[2,1.231,14,1.162,15,2.334,75,2.417,77,4.504,81,3.953,308,4.677,370,5.831,391,6.206,599,4.616,678,2.325,1506,4.878,1805,7.159]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[21,2.616,472,6.929]],["keywords//docs/platform/package-mirrors/",[16,0.531,17,0.874,21,1.471,45,1.488,117,1.381,233,3.769,234,2.245,472,3.896,1807,4.494]],["toc//docs/platform/package-mirrors/",[14,1.77,16,0.864,17,1.423,21,2.396,117,2.249,294,3.087,472,6.346]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.205,17,1.106,146,2.581,427,3.224,1177,3.285,1544,3.715]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.853,13,0.086,14,1.068,21,2.154,36,2.953,208,2.644,282,2.606,289,2.987,373,1.75,390,1.565,435,4.563,682,5.376]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,0.99,13,0.041,17,0.909,75,1.578,203,3.014,206,1.298,227,2.907,232,2.701,1158,2.581]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[0,2.574,2,1.707,4,1.423,11,1.701,12,1.712,13,0.078,129,1.78,133,0.406,205,2.086,206,1.865,319,5.089,390,1.597,1149,2.808]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[2,1.054,17,1.192,146,2.782,1158,3.384,1544,4.004]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[0,2.424,2,1.465,4,1.804,13,0.085,14,1.026,129,1.676,133,0.382,138,1.762,205,1.964,206,1.756,339,1.881,373,1.682,390,1.504,678,2.054,1149,2.645]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[36,2.982,445,4.753,804,4.528,1055,5.573]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[16,0.703,17,1.158,528,3.346,804,4.058,1055,4.994]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[3,0.539,11,0.892,12,0.897,13,0.031,45,1.165,49,3.32,56,2.117,133,0.543,152,1.161,162,4.294,174,2.564,205,1.093,278,2.564,280,1.836,281,2.331,289,1.598,306,2.793,365,2.613,453,2.299,488,2.436,685,2.96,804,6.639,1055,8.407,1056,4.398,1065,2.793,1329,3.051,1810,3.823,1811,4.993,1812,3.171,1813,3.823,1814,3.823,1815,3.823,1816,4.398,1817,3.32,1818,3.823]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[117,1.883,141,1.917,1000,2.799,1032,2.499,1819,5.78]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[141,2.028,1032,2.643,1353,4.416,1819,6.112]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[13,0.069,152,2.589,179,4.998,244,6.228,268,6.583,544,7.071,678,2.55,1819,7.404,1820,6.081]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.124,16,0.626,427,3.007,1165,2.833,1177,3.064,1689,2.481,1784,2.954]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.931,11,1.774,12,1.786,13,0.08,36,3.143,282,2.774,289,3.18,390,1.666,435,4.754,682,5.602]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[13,0.054,117,1.883,133,0.371,1000,2.799,1821,3.475]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[117,1.991,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[11,1.897,12,1.909,13,0.084,133,0.453,152,2.47,277,5.674,656,3.038,1821,5.927]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[68,4.267]],["keywords//docs/applications/containers/what-is-docker/",[16,0.703,68,2.857,70,3.474,117,1.829,1689,2.785]],["toc//docs/applications/containers/what-is-docker/",[4,1.453,13,0.06,16,0.81,68,3.29,117,2.107,135,5.312,136,5.196,262,4.905,345,1.065,815,5.441,1000,3.131,1333,1.097,1689,3.208,1822,9.761]],["deprecated//docs/applications/containers/what-is-docker/",[814,0.472]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,1.298,13,0.054,17,1.192,146,2.782,1544,4.004]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,1.014,17,0.931,157,2.391,684,2.599,1623,4.516,1624,3.628,1653,4.516,1823,5.2]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[4,2.068,13,0.079,14,0.903,17,1.082,20,2.34,46,1.815,57,1.808,58,2.861,89,1.219,141,1.742,234,2.78,274,1.475,301,2.654,318,2.456,373,1.48,678,1.808,762,1.742,822,3.87,1015,2.281,1824,3.128]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,1770,5.686]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1825,7.722,1826,5.962,1827,6.404]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[3,1.028,13,0.059,133,0.536,290,4.51,294,2.005,345,1.043,390,2.51,927,4.51,928,3.88,929,3.286,1333,1.074,1665,5.47]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[814,0.472]],["title//docs/platform/api/api-key/",[87,5.717,196,3.992]],["keywords//docs/platform/api/api-key/",[196,3.551,1828,7.722,1829,7.109]],["toc//docs/platform/api/api-key/",[350,6.169,734,5.127]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[45,2.646,447,6.191]],["keywords//docs/platform/linode-cli/",[1829,6.48,1830,7.039,1831,7.039,1832,7.039]],["toc//docs/platform/linode-cli/",[3,0.717,13,0.061,16,0.814,17,1.34,45,1.551,57,1.522,75,1.582,77,4.336,87,3.352,122,2.633,196,2.34,289,3.712,295,1.78,308,4.503,351,2.408,399,3.146,440,2.88,447,6.334,505,4.22,599,4.445,628,2.849,1120,1.647,1140,3.412,1790,4.685,1833,5.089,1834,5.089,1835,5.089]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[13,0.058,117,2.041,390,1.58,1000,3.035]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[75,1.352,117,1.23,129,1.061,201,2.688,203,2.581,390,0.952,1446,2.864,1447,3.47,1448,3.47,1449,3.606,1450,3.101]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[2,0.958,3,0.852,11,1.41,12,1.419,13,0.049,36,2.498,53,3.022,89,1.708,129,1.475,153,3.915,290,3.738,295,2.115,390,2.533,923,3.982,927,3.738,928,4.507,929,2.724,964,4.218,1044,3.461]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[194,5.573,246,3.669,456,2.547,1836,6.645]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[246,3.925,456,2.725,1836,7.109]],["toc//docs/networking/dns/previewing-websites-without-dns/",[57,2.137,75,2.222,77,4.139,81,3.633,98,3.265,138,2.736,152,2.17,165,4.243,308,4.298,599,4.243,604,4.19,621,5.959]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[13,0.058,17,1.292,146,3.017,390,1.58]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[17,0.702,75,1.219,129,0.957,201,2.424,203,2.327,390,0.858,1446,2.582,1447,3.129,1448,3.129,1449,3.251,1450,2.796,1623,3.404,1624,2.735]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[13,0.05,16,0.671,17,1.106,18,3.013,232,3.285,1837,4.405]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[16,0.605,17,0.996,860,3.545,1837,3.968,1838,5.564,1839,4.831,1840,5.564]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[13,0.058,17,1.292,146,3.017,1837,5.148]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[17,1.26,1624,4.911,1837,5.02,1839,6.112]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[814,0.472]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[13,0.058,16,0.785,1689,3.109,1837,5.148]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[16,0.765,1689,3.032,1837,5.02,1839,6.112]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[13,0.069,133,0.592,138,2.187,205,2.438,273,4.625,339,2.335,769,4.372,1837,6.081]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[117,1.747,204,0.843,206,1.579,341,2.141,1000,2.597,1229,3.42]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[157,2.391,204,0.71,206,1.329,1229,2.88,1673,2.443,1841,3.554,1842,3.554,1843,4.516]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[11,1.988,12,2.001,13,0.069,133,0.475,204,1.453,206,2.72,1229,4.721]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[17,1.031,146,2.408,204,0.786,206,1.473,341,1.997,1229,3.19,1544,3.465]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[204,0.759,206,1.422,1229,3.081,1673,2.614,1841,3.803,1842,3.803,1843,4.831]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[11,1.854,12,1.866,13,0.064,133,0.443,204,1.39,206,2.603,282,2.899,1229,4.403,1844,5.962,1845,7.32]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[814,0.472]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[13,0.054,17,1.192,146,2.782,390,1.458,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[17,0.996,175,3.968,390,1.218,1821,2.904,1846,4.614,1847,4.614,1848,4.614]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[13,0.054,17,1.192,133,0.371,232,3.541,1821,3.475]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[17,0.823,175,3.28,206,1.176,390,1.007,860,2.93,1821,2.401,1846,3.814,1847,3.814,1848,3.814,1849,4.6]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[2,1.143,732,3.188,1120,2.336,1850,7.218]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1772,5.142,1773,5.279,1851,7.039,1852,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[2,1.054,117,1.883,204,0.909,205,1.903,1000,2.799]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[117,1.692,204,0.816,1002,4.774,1686,3.939,1853,3.873,1854,5.507]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[11,1.667,12,1.677,13,0.086,133,0.398,138,1.833,204,1.552,209,3.198,318,3.858,339,1.957,435,3.433,1463,5.519]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[137,4.461,390,1.726,895,5.387]],["keywords//docs/platform/longview/longview-app-for-mysql/",[8,4.584,390,1.691,895,5.278]],["toc//docs/platform/longview/longview-app-for-mysql/",[8,2.608,13,0.036,16,0.478,17,0.786,41,3.133,58,2.079,90,3.92,129,1.636,133,0.453,188,2.233,257,2.459,267,3.981,345,0.628,372,2.383,390,1.781,399,2.716,662,2.756,763,2.143,804,2.756,1020,3.506,1047,6.099,1264,3.506,1267,3.133,1415,3.643,1432,7.547,1855,4.045,1856,3.815,1857,4.394,1858,4.394,1859,3.506,1860,3.643,1861,4.045,1862,4.394,1863,3.643]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[4,1.537,137,4.461,895,5.387]],["keywords//docs/platform/longview/longview-app-for-nginx/",[4,1.373,8,4.179,895,4.811,1864,7.039]],["toc//docs/platform/longview/longview-app-for-nginx/",[2,0.83,4,1.762,8,3.111,13,0.042,16,0.57,17,0.938,41,5.455,58,2.48,90,2.257,133,0.426,160,2.787,188,2.664,257,2.933,267,3.111,358,4.182,372,2.842,399,3.24,607,5.455,620,2.028,662,3.288,763,2.556,1264,4.182,1415,4.346,1432,4.346,1859,4.182,1860,4.346,1863,4.346,1865,4.55,1866,4.55,1867,4.346]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[137,4.461,204,1.076,895,5.387]],["keywords//docs/platform/longview/longview-app-for-apache/",[8,4.179,204,0.961,895,4.811,1868,7.039]],["toc//docs/platform/longview/longview-app-for-apache/",[2,0.742,8,2.781,13,0.038,16,0.509,17,0.839,41,5.021,58,2.217,133,0.392,155,2.492,160,2.492,188,2.381,204,1.154,257,2.622,267,2.781,282,1.708,358,3.739,372,2.541,399,2.896,607,3.341,620,1.813,662,2.939,763,2.285,1264,3.739,1415,5.838,1432,3.885,1594,4.313,1697,4.313,1855,4.313,1859,3.739,1860,3.885,1861,4.313,1863,3.885,1865,4.068,1866,4.068,1867,3.885,1869,4.685,1870,4.068,1871,4.685]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[2,1.248,732,3.482,1492,4.873]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[732,3.411,1492,4.774,1872,7.109]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.641,138,1.525,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,1873,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[814,0.472]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[45,2.2,138,1.851,199,5.986,1505,5.413]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1505,5.791,1874,7.722,1875,7.722]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[2,0.991,11,1.46,12,1.469,13,0.051,15,1.879,45,1.908,48,2.802,96,2.22,111,2.765,167,3.871,205,1.79,227,3.584,246,4.413,351,4.108,364,2.283,553,7.2,654,3.007,732,2.765,739,2.23,1610,3.871,1811,5.192]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[2,1.054,17,1.192,146,2.782,732,2.94,1544,4.004]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[17,0.778,204,0.593,206,1.111,390,0.952,732,1.921,1485,3.606,1624,3.033,1772,3.176,1876,4.348,1877,3.776,1878,4.348]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[11,1.667,12,1.677,13,0.077,89,1.441,129,1.744,133,0.594,138,1.833,149,3.31,204,0.975,206,1.827,339,1.957,390,2.08,654,3.433]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[13,0.054,75,2.069,227,3.81,732,2.94,1297,3.475]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[204,0.563,206,1.054,390,0.903,732,1.821,1297,2.152,1477,3.291,1879,4.123,1880,4.123,1881,4.123,1882,4.123,1883,4.123,1884,3.58]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[2,0.958,11,1.41,12,1.419,13,0.079,75,2.634,89,1.219,106,2.484,129,1.475,133,0.545,138,1.551,149,2.8,204,1.157,206,2.166,339,1.656,390,1.855,654,2.905,732,2.671,1297,3.157]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[16,0.785,45,2.2,1262,4.285,1689,3.109]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[16,0.765,1262,4.179,1689,3.032,1885,6.48]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[2,1.009,13,0.071,14,0.952,15,1.913,57,1.906,95,3.186,98,1.95,120,2.994,133,0.56,224,3.39,294,1.752,345,0.912,364,2.324,913,5.087,916,3.941,1262,5.973,1333,0.939,1886,6.374]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[814,0.472]],["title//docs/development/version-control/introduction-to-version-control/",[76,4.679,82,4.621,439,3.73]],["keywords//docs/development/version-control/introduction-to-version-control/",[74,3.609,1192,5.435,1887,7.039,1888,7.039]],["toc//docs/development/version-control/introduction-to-version-control/",[3,0.95,13,0.055,14,1.007,15,2.023,36,2.784,74,3.455,76,6.148,131,3.584,216,3.814,294,1.852,439,4.901,445,4.438,1889,6.738,1890,7.929,1891,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[17,1.106,146,2.581,204,0.843,427,3.224,1177,3.285,1544,3.715]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1178,4.234,1494,4.352,1892,6.112,1893,5.279]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[13,0.054,16,0.724,390,1.458,1689,2.867,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[16,0.473,175,3.101,390,0.952,1165,2.138,1753,2.864,1784,2.23,1821,2.27,1846,3.606,1847,3.606,1848,3.606,1894,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[13,0.054,16,0.724,390,1.458,747,3.686,1821,3.475]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[16,0.473,175,3.101,390,0.952,1165,2.138,1181,2.916,1784,2.23,1821,2.27,1846,3.606,1847,3.606,1848,3.606,1894,4.003]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[11,1.774,12,1.786,13,0.062,14,1.137,15,2.284,98,2.328,152,2.31,274,1.856,277,5.308,602,4.773,656,2.842,1821,5.743]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[2,0.978,16,0.671,205,1.766,1144,3.765,1689,2.66,1784,3.167]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[684,3.859,1144,4.707,1146,7.109]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[13,0.042,14,0.771,16,0.561,89,1.041,104,6.388,107,2.358,133,0.499,138,2.529,209,2.311,318,2.097,339,2.701,341,1.79,373,1.264,442,3.872,628,4.236,1127,4.121,1144,4.613,1147,7.778,1148,4.484,1490,4.121,1758,4.282,1895,4.754]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[2,0.978,17,1.106,146,2.581,204,0.843,205,1.766,1544,3.715]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[17,1.071,204,0.816,1544,3.597,1624,4.173,1854,5.507,1896,5.194]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[11,1.667,12,1.677,13,0.086,133,0.398,138,1.833,204,1.552,209,4.251,318,3.858,339,1.957,435,3.433]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[16,0.587,17,0.966,146,2.256,274,1.317,704,2.72,869,3.439,1689,2.325,1784,2.768]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[16,0.565,17,0.931,422,2.69,631,2.173,704,2.621,1624,3.628,1689,2.24,1885,4.788]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[2,0.762,13,0.058,14,0.719,45,1.467,55,3.357,90,3.094,95,4.295,133,0.268,196,3.952,274,1.174,279,3.019,389,2.894,397,2.213,422,4.446,497,2.933,620,1.862,704,3.62,734,3.59,749,2.696,762,1.386,925,3.357,967,3.432,968,3.432,975,3.432,1072,3.116,1074,2.755,1268,4.43,1303,3.432,1897,3.515,1898,3.609]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[814,0.472]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[390,1.458,763,3.247,1032,2.499,1545,5.78,1566,3.507]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[390,1.691,1032,2.899,1566,4.069]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[14,0.611,15,1.227,45,1.246,77,2.368,96,2.249,111,2.802,133,0.228,155,2.175,181,2.528,282,1.491,291,2.154,295,2.219,307,2.368,339,1.738,341,1.417,351,3.002,390,0.895,488,2.605,656,1.527,657,2.785,663,3.55,756,2.987,763,1.995,871,2.397,923,2.693,993,4.864,1032,3.289,1035,2.987,1267,2.916,1566,4.617,1570,2.492,1899,3.55,1900,3.764,1901,4.089,1902,4.089,1903,4.089,1904,4.089,1905,4.089]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[13,0.05,17,1.106,204,0.843,232,3.285,427,3.224,1177,3.285]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1178,4.234,1494,4.352,1892,6.112,1893,5.279]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[0,2.744,11,1.813,12,1.825,13,0.063,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[181,4.873,188,4.007,601,5.758]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[17,0.996,181,3.44,188,2.828,274,1.358,601,4.064,1544,3.346,1906,5.564]],["toc//docs/security/encryption/full-disk-encryption-xen/",[13,0.056,15,2.062,17,1.656,36,2.838,89,1.385,133,0.515,181,4.247,188,4.702,282,2.505,445,4.524,491,4.448,601,5.018,614,4.606,1907,6.324,1908,6.324,1909,6.869]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[814,0.472]],["title//docs/platform/automating-server-builds/",[2,1.248,100,4.042,178,4.679]],["keywords//docs/platform/automating-server-builds/",[188,3.288,720,4.85,1512,4.612,1910,6.468,1911,6.468]],["toc//docs/platform/automating-server-builds/",[2,1.088,45,3.188,57,2.054,100,3.522,105,2.28,165,4.078,169,3.845,178,4.078,188,3.492,373,1.682,585,5.018,604,4.027,781,4.695,894,4.792,1647,5.482,1648,5.482,1912,6.869]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[2,1.248,341,2.732,740,3.334]],["keywords//docs/email/running-a-mail-server/",[1353,4.416,1649,5.618,1913,7.039,1914,7.039]],["toc//docs/email/running-a-mail-server/",[2,1.617,5,2.475,13,0.031,95,3.009,100,1.96,105,1.269,133,0.213,145,4.515,163,2.564,174,2.564,235,2.727,257,2.14,341,1.325,380,3.171,397,1.758,455,4.54,456,2.125,656,1.428,740,4.713,749,1.435,756,2.793,762,1.101,1009,2.613,1242,2.952,1256,3.52,1333,0.563,1533,4.294,1630,2.518,1709,3.171,1811,3.171,1812,3.171,1908,3.52,1915,2.867,1916,3.52,1917,6.021,1918,6.021,1919,3.823]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[390,1.58,739,2.571,1032,2.71,1566,3.803]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[2,0.773,16,0.531,17,0.874,390,1.069,739,1.739,740,2.065,1032,1.833,1566,2.572,1920,4.882]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[11,1.386,12,1.395,13,0.068,21,1.791,53,2.971,109,2.661,133,0.331,152,2.543,165,4.971,351,3.962,390,1.302,456,2.098,653,4.454,656,2.221,739,3.453,749,2.232,1032,2.232,1566,3.132,1570,5.105]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[17,1.292,146,3.017,1010,3.494,1544,4.341]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1544,4.234,1921,6.48,1922,6.48,1923,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[13,0.055,15,2.023,17,1.206,30,3.313,36,2.784,45,2.054,57,2.015,105,2.236,146,2.816,167,4.166,327,4.806,364,2.457,488,4.293,550,4.228,715,4.438,763,3.287,993,3.455,1010,4.42,1545,5.851]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[814,0.472]],["title//docs/security/linode-manager-security-controls/",[45,2.2,46,2.167,274,1.761,439,3.416]],["keywords//docs/security/linode-manager-security-controls/",[274,1.578,921,4.724,929,2.914,1128,4.994,1924,6.468]],["toc//docs/security/linode-manager-security-controls/",[48,1.873,53,2.092,87,2.756,91,3.139,101,1.628,102,3.853,106,1.719,107,1.911,111,1.849,133,0.233,139,5.267,142,2.01,165,3.835,196,1.925,274,1.021,277,2.92,282,2.356,291,4.675,295,1.464,302,3.34,317,2.985,371,4.116,440,2.369,604,3.788,620,1.62,657,1.837,734,2.092,739,1.491,758,6.851,908,2.985,929,1.886,970,3.471,994,3.057,1086,6.544,1128,3.232,1925,4.185,1926,4.185]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,2.366,109,3.527,167,4.873]],["keywords//docs/security/backups/backing-up-your-data/",[169,4.97,179,3.792,1927,5.162,1928,6.468]],["toc//docs/security/backups/backing-up-your-data/",[2,0.9,14,0.849,15,2.434,24,2.596,25,2.837,75,1.766,77,2.059,78,2.301,81,1.807,105,1.179,163,2.383,167,3.513,169,6.234,179,2.084,188,1.807,195,2.596,198,1.909,267,3.373,287,2.341,301,1.56,308,2.138,328,1.512,390,0.778,399,2.197,489,5.481,506,2.947,572,2.837,599,2.11,789,2.744,1761,2.744,1867,2.947,1927,7.077,1929,3.272,1930,2.744,1931,4.934,1932,2.947,1933,3.272,1934,2.947,1935,3.554,1936,3.554,1937,3.554,1938,3.554]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[3,1.224,895,5.934]],["keywords//docs/platform/longview/longview/",[895,5.278,1939,7.722,1940,7.722]],["toc//docs/platform/longview/longview/",[13,0.055,57,1.347,87,2.967,95,4.128,96,1.597,109,3.059,137,2.55,188,2.29,191,2.827,196,3.143,233,3.479,257,2.522,280,2.164,281,2.747,294,1.238,399,2.785,435,2.164,631,1.883,661,3.479,763,2.198,862,3.291,871,2.641,893,3.596,895,7.13,1062,3.291,1444,3.912,1870,3.912,1941,4.506,1942,4.506,1943,4.506,1944,4.506,1945,4.506,1946,4.506,1947,4.506,1948,3.736,1949,3.912]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[45,2.646,46,2.606]],["keywords//docs/platform/linode-managed/",[921,6.246,1950,8.551]],["toc//docs/platform/linode-managed/",[13,0.06,14,0.75,36,2.073,45,1.529,53,2.507,105,3.728,131,2.669,133,0.279,141,1.445,154,4.356,196,2.307,295,1.755,350,3.017,371,4.72,389,3.017,445,3.304,624,2.245,653,4.685,928,2.669,1072,3.248,1267,5.284,1817,4.356,1866,4.356,1899,4.356,1948,4.161,1951,5.017,1952,5.017]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[2,0.978,13,0.05,75,1.92,588,3.819,624,2.764,1953,5.363]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[528,3.995,624,3.456,1953,6.705]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[13,0.07,16,0.681,17,1.121,24,4.573,45,1.908,58,2.963,75,2.699,77,3.626,81,3.183,90,2.697,280,3.007,308,3.765,364,2.283,380,5.192,506,5.192,599,3.717,624,2.802,1297,3.268,1953,9.346]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[16,0.671,204,0.843,1153,3.457,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[679,3.346,1955,6.468,1956,6.468,1957,5.954,1958,5.162]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[3,1.263,13,0.073,152,2.72,204,1.223,678,2.679,1153,6.142]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[13,0.05,16,0.671,1252,3.536,1689,2.66,1959,3.667,1960,3.999]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[528,2.379,913,3.671,1753,3.029,1959,2.731,1961,3.36,1962,3.029,1963,3.029,1964,2.978,1965,2.978,1966,4.6]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[13,0.071,14,1.305,133,0.486,280,4.197,451,5.326,678,2.613,1959,6.415]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[814,0.472]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[0,1.905,3,0.761,4,1.053,16,0.587,63,2.156,137,3.055,1285,2.792,1689,2.325]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[4,1.014,16,0.565,63,2.078,776,2.666,1285,2.69,1967,5.2,1968,5.2,1969,4.788]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[2,1.259,4,1.551,13,0.064,101,3.093,107,3.631,133,0.567,345,1.137,678,2.377,1285,5.268,1333,1.171]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[814,0.472]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,740,2.436,1033,3.377,1689,2.481,1970,3.42]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1353,3.753,1753,3.939,1970,3.551,1971,5.982,1972,4.486,1973,4.486]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[13,0.063,14,1.162,21,2.343,105,2.581,133,0.559,152,2.361,155,4.136,208,2.876,373,1.904,740,4.245,1970,4.616]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[16,0.587,370,4.048,1689,2.325,1784,2.768,1954,3.09,1974,3.766,1975,3.689,1976,3.29]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[206,1.529,1673,2.81,1753,3.939,1976,3.646,1977,4.369,1978,4.96]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[13,0.08,20,2.381,21,1.854,57,1.84,76,3.652,133,0.342,141,1.772,274,1.501,301,2.7,539,4.387,620,2.381,678,1.84,762,1.772,822,2.809,1015,2.321,1976,7.092,1979,5.664,1980,6.152]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[814,0.472]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,122,2.98,205,1.647,1689,2.481,1981,3.19]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[204,0.883,1144,3.943,1981,3.581,1982,4.724,1983,4.612]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[6,4.825,209,3.726,282,3.036,348,4.822,351,3.94,728,5.483,1144,6.392]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[16,0.724,105,2.209,141,1.917,1172,3.952,1689,2.867]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[157,1.999,317,3.101,528,2.25,624,1.946,1035,3.176,1172,2.581,1331,3.033,1753,2.864,1916,4.003,1984,4.348,1985,4.003]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[13,0.058,48,3.198,111,3.157,133,0.398,205,2.044,273,3.877,317,6.774,328,3.041,620,2.766,739,2.546,1172,5.639,1331,4.986,1630,4.707,1730,4.986,1986,6.58]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[16,0.626,739,2.052,1165,2.833,1689,2.481,1784,2.954,1954,3.298,1987,3.42]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1987,3.839,1988,6.468,1989,6.468,1990,4.42,1991,4.85]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[13,0.057,14,1.047,282,2.554,341,3.249,345,1.002,373,1.715,678,2.095,908,4.996,929,3.156,958,4.463,1333,1.032,1610,4.331,1787,4.331,1987,6.271,1992,5.117]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[16,0.626,739,2.052,747,3.19,1165,2.833,1288,5.003,1987,3.42,1993,5.761]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1987,3.839,1990,4.42,1991,4.85,1994,6.468,1995,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[13,0.059,14,1.09,282,2.66,341,3.337,373,1.786,678,2.181,908,5.202,929,3.286,958,4.647,1610,4.51,1787,4.51,1987,6.398,1992,5.328]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1005,3.832]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.053,16,0.587,1149,2.078,1165,2.654,1689,2.325,1784,2.768,1809,2.654,1954,3.09]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.262,1508,3.792,1996,4.994,1997,5.616,1998,4.512]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[13,0.05,14,0.919,21,1.854,84,5.648,89,1.24,120,2.89,131,4.562,133,0.595,138,1.578,152,1.868,208,2.276,282,2.243,339,1.685,373,1.506,456,2.171,510,3.272,1149,2.369,1404,3.86,1510,3.803,1809,3.025]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[16,0.552,204,0.693,206,1.298,341,1.76,1165,2.497,1229,2.812,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[204,0.759,206,1.422,1229,3.081,1673,2.614,1841,3.803,1842,3.803,1843,4.831]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,1.854,12,1.866,13,0.064,133,0.443,204,1.39,206,2.603,282,2.899,1229,4.403,1844,5.962,1845,7.32]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[814,0.472]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[3,0.812,16,0.626,210,3.562,1252,3.298,1960,3.73,1999,3.377,2000,5.761]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1961,3.012,1963,2.715,1964,2.67,1965,2.67,1999,2.417,2001,4.123,2002,4.123,2003,3.092,2004,2.715,2005,2.215,2006,4.123,2007,4.123]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[3,0.932,13,0.054,96,2.344,107,3.02,133,0.368,138,1.696,261,3.876,295,2.313,307,3.83,339,1.811,373,1.619,456,2.334,696,3.83,763,3.226,1999,6.013,2005,3.551,2008,4.959,2009,4.613,2010,4.281]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[16,0.724,801,3.541,1689,2.867,1784,3.413,1954,3.81]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[129,1.578,868,3.26,2011,6.468,2012,6.468,2013,4.612]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[13,0.069,20,2.381,46,2.575,58,2.911,108,3.803,109,2.753,133,0.342,148,3.407,198,3.304,294,1.691,341,2.132,364,2.243,378,3.919,486,3.443,801,6.188,1053,3.443,2014,6.117]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1290,3.855,1689,2.867,1784,3.413,1954,3.81]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.124,13,0.047,16,0.626,1165,2.833,1689,2.481,1784,2.954,1954,3.298]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,1.085,16,0.605,157,2.558,684,2.781,1997,4.831,2017,5.564,2018,5.564]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[4,2.2,11,1.634,12,1.644,13,0.095,58,3.315,152,2.127,234,4.31,301,3.075,2019,7.006,2020,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2021,3.81]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[3,0.676,16,0.521,89,0.966,368,3.344,1689,2.065,1784,2.458,1954,2.744,2025,3.157,2026,3.104,2027,4.413]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[16,0.587,141,1.555,294,1.483,657,2.369,1454,3.09,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[16,0.671,204,0.843,566,3.819,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[63,2.812,204,0.961,566,4.352,1284,3.237]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,1.571,12,1.581,13,0.055,96,2.389,133,0.646,135,4.806,136,4.701,204,0.92,251,2.996,347,4.922,776,5.692,1284,3.098,1290,3.903]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2028,3.648]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[16,0.605,74,2.853,429,3.346,1809,2.736,1978,4.614,2022,3.346,2028,3.049]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[3,0.716,6,2.135,16,0.552,105,1.685,204,0.693,283,2.228,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[3,0.812,16,0.626,141,1.659,726,4.109,1689,2.481,1930,4.448,2035,4.109]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[16,0.65,1753,3.939,2035,4.266,2036,5.194,2037,4.96,2038,5.982]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[3,0.968,13,0.075,14,1.026,95,3.433,133,0.515,234,3.159,251,3.054,282,2.505,359,4.899,554,4.31,678,2.054,1329,5.482,2035,6.597,2037,5.697,2039,5.304,2040,4.606]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[2,0.855,16,0.587,204,0.737,205,1.543,1165,2.654,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[16,0.565,204,0.71,528,2.69,684,2.599,1753,3.425,1784,2.666,1896,4.516,2041,5.2]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,1.701,12,1.712,13,0.087,133,0.406,138,1.871,204,1.471,209,3.264,318,3.911,339,1.998,435,3.504,1463,5.632]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[0,2.033,2,0.912,16,0.626,205,1.647,246,2.928,1689,2.481,2042,3.157]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1753,4.259,1853,4.187,1978,5.363,2042,3.544,2043,6.468]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[13,0.056,14,1.026,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,373,1.682,620,3.58,717,5.719,777,6.322,993,3.522,2042,5.069]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[16,0.724,1689,2.867,1784,3.413,1954,3.81,2044,3.767]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2046,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[2,0.978,3,0.871,16,0.671,205,1.766,1689,2.66,2042,3.385]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[624,2.185,1753,3.215,1853,3.161,1978,4.048,2042,2.675,2047,4.882,2048,3.896,2049,4.882,2050,3.566]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[13,0.056,14,1.026,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,373,1.682,620,3.58,717,5.719,777,6.322,993,3.522,2042,5.069]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[814,0.472]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[4,0.99,13,0.041,16,0.552,78,3.288,206,1.298,1149,1.955,1689,2.187,1784,2.604,1954,2.907]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[4,1.014,206,1.329,1149,2.002,1508,3.049,1509,3.487,1997,4.516,2051,5.2,2052,5.2]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.978,16,0.671,1158,3.14,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[0,3.272,2,1.252,4,1.808,13,0.064,14,0.819,16,0.596,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,364,2,373,1.342,390,1.201,762,1.58,822,2.504,1015,2.069,1149,2.111]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[16,0.552,46,1.524,487,3.054,739,1.809,1689,2.187,1733,3.471,1784,2.604,1954,2.907,2053,3.095]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[16,0.626,105,1.912,450,3.614,456,2.033,1689,2.481,2055,4.109,2056,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[16,0.65,456,2.111,631,2.5,2056,3.278,2057,5.982,2058,5.982]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[13,0.054,14,0.988,89,1.333,98,2.023,105,2.194,133,0.502,138,1.696,208,2.446,372,3.587,373,1.619,451,4.031,762,1.905,1385,5.937,2056,6.036,2059,4.613,2060,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[3,0.761,16,0.587,109,2.416,110,3.337,149,2.5,1689,2.325,2061,2.899,2062,3.85]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[16,0.703,868,3.26,2061,3.474,2063,4.612,2064,5.363]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[3,1.366,13,0.079,2061,6.181]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[3,0.676,16,0.521,155,2.55,456,1.692,1165,2.357,1689,2.065,1784,2.458,1954,2.744,2065,2.55,2066,3.276]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[814,0.472]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.905,16,0.587,129,1.317,390,1.182,1041,2.928,1689,2.325,1784,2.768,1954,3.09]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[390,1.416,1446,4.259,1753,4.259,2070,4.994,2071,4.724]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,2.21,2,0.991,13,0.051,53,3.129,89,1.75,129,1.528,153,4.054,290,3.871,295,2.19,390,2.561,678,1.872,923,4.123,927,3.871,928,4.618,929,2.821,964,4.368,1044,3.584]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[13,0.058,16,0.785,390,1.58,747,3.997]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[16,0.448,75,1.282,390,0.903,1181,2.765,1446,2.715,1448,3.291,1450,2.941,2072,4.123,2073,4.123,2074,4.123,2075,4.123,2076,4.123]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[2,0.974,3,0.867,11,1.435,12,1.444,13,0.05,53,3.075,89,1.729,129,1.501,153,3.983,290,3.803,295,2.152,390,2.547,923,4.052,927,3.803,928,4.562,929,2.771,964,4.292,1044,3.522]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,1689,2.325,1784,2.768]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[2,1.567,13,0.062,36,3.143,107,3.474,133,0.424,261,4.46,345,1.088,550,4.773,680,5.513,1333,1.12]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[814,0.472]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[3,0.871,16,0.671,129,1.507,134,2.711,1041,3.35,1689,2.66]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[134,2.838,1042,5.162,1043,3.943,1141,4.337,1753,4.259]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[13,0.072,14,0.97,89,2.048,129,2.172,133,0.361,134,4.458,142,3.118,168,4.203,274,1.584,295,2.27,620,2.512,929,2.924,1044,3.716,1048,4.275,2077,5.012,2078,5.012]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.855,13,0.044,16,0.587,1689,2.325,1784,2.768,1954,3.09,2005,2.899,2079,3.164]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2005,3.213,2079,3.507,2080,5.982,2081,4.486,2082,4.486,2083,4.486]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2,1.179,3,1.05,13,0.06,133,0.415,234,3.425,235,5.312,282,2.716,456,2.629,653,3.962,762,2.145,2005,4,2010,4.822,2079,5.722,2084,5.585]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[2,0.978,16,0.671,732,2.728,1689,2.66,1784,3.167,1954,3.536]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[16,0.531,204,0.666,206,1.248,390,1.069,732,2.156,1477,3.896,2085,3.769,2086,4.882,2087,4.882]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,1.667,12,1.677,13,0.077,89,1.441,129,1.744,133,0.594,138,1.833,149,3.31,204,0.975,206,1.827,339,1.957,390,2.08,654,3.433]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[814,0.472]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[2,1.248,141,2.27,1934,6.537]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[33,5.363,141,2.557,857,5.363,1934,5.363]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[3,0.963,13,0.037,21,1.358,25,3.596,30,2.215,36,1.861,45,2.518,46,2.479,53,2.252,57,2.47,133,0.38,141,2.379,294,1.238,445,2.967,488,2.87,493,3.213,621,2.827,657,3.625,739,1.605,762,1.298,789,3.479,894,4.769,895,3.079,1010,2.181,1166,3.736,1323,4.148,1331,3.143,1344,3.912,1647,3.596,1648,3.596,1867,3.736,1929,4.148,2088,4.506]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[2,1.248,141,2.27,2089,6.845]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[141,2.028,1605,7.505,2089,6.112]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[2,0.593,3,0.527,13,0.085,14,0.559,20,1.448,21,1.128,36,3.034,44,2.669,53,2.959,89,1.193,98,1.812,133,0.506,138,0.96,141,1.078,145,4.439,204,0.511,205,1.07,206,1.513,267,2.222,273,2.03,295,2.07,301,1.642,345,0.535,390,1.296,539,2.669,618,2.222,653,1.991,657,1.642,678,1.119,822,3.354,870,2.423,1333,0.551,1870,3.25,1979,3.445,2089,8.398]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[814,0.472]],["title//docs/applications/social-networking/dolphin/",[2090,8.389]],["keywords//docs/applications/social-networking/dolphin/",[2090,6.705,2091,6.163,2092,7.109]],["toc//docs/applications/social-networking/dolphin/",[2,0.783,13,0.088,14,0.739,15,1.485,20,1.914,57,1.479,129,1.207,133,0.408,193,3.528,206,2.233,209,2.214,295,1.73,318,2.009,341,1.715,366,4.469,390,1.083,653,2.631,657,2.171,678,1.479,717,3.058,739,1.762,777,3.381,880,3.613,913,3.948,2090,8.958,2093,4.947]],["deprecated//docs/applications/social-networking/dolphin/",[578,0.7,811,0.641,814,0.086,2092,2.156,2094,0.877,2095,0.877,2096,0.877]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[3,0.938,46,1.998,129,1.624,351,3.15,1108,4.058]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[129,1.122,390,1.007,457,3.449,1108,2.804,1821,2.401,2097,4.6,2098,4.6,2099,4.6,2100,4.6,2101,4.6]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[46,3.013,89,1.568,106,3.194,129,2.449,295,2.719,351,5.26,390,1.703,457,5.831,2102,7.776]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2,1.054,13,0.054,75,2.069,2103,5.78,2104,6.128]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2103,6.112,2105,7.039,2106,7.039,2107,7.039]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[13,0.069,20,3.319,36,3.543,133,0.477,301,2.7,762,1.772,2103,10.74,2104,5.664,2108,10.682,2109,6.152]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[188,3.669,624,3.23,870,4.673,925,5.035]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[188,3.925,624,3.456,870,5]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[36,2.542,45,1.875,81,3.127,89,1.24,188,5.914,191,3.86,197,4.494,309,4.387,364,2.243,506,5.102,618,3.652,672,4.387,870,3.983,871,5.028,1089,5.664,1105,4.494,1734,5.664,2110,5.342,2111,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[188,3.669,440,4.085,870,4.673,1761,5.573]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[188,3.925,1505,5.791,2112,7.722]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[45,3.038,53,3.129,89,1.75,133,0.349,188,5.471,191,3.928,301,2.748,364,3.166,491,4.054,618,5.917,870,4.054,871,3.67,1105,4.573,2110,7.539]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[16,0.785,1010,3.494,1689,3.109,1784,3.701]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[16,0.839,1010,3.738,1784,3.959]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[13,0.049,15,1.815,16,1.064,30,2.973,36,2.498,45,1.843,57,1.808,105,2.007,167,3.738,327,4.312,364,2.205,488,3.852,550,3.794,715,3.982,954,5.015,993,3.101,1010,5.132,1165,2.973,1166,5.015,2113,2.688,2114,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[814,0.472]],["title//docs/troubleshooting/rescue-and-rebuild/",[1105,6.342,2115,7.2]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1105,6.246,2115,7.091]],["toc//docs/troubleshooting/rescue-and-rebuild/",[13,0.045,21,1.678,36,3.303,45,1.698,90,2.399,98,1.705,169,3.118,188,2.832,191,5.016,195,4.069,294,2.197,341,1.931,408,3.495,493,3.973,614,3.735,618,3.307,624,2.493,925,3.886,928,2.963,993,2.856,1105,6.831,1541,5.128,2115,4.619,2116,4.837,2117,5.128,2118,5.57]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2,1.248,45,2.403,1505,5.911]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2119,7.722,2120,7.722,2121,7.722]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[14,0.771,45,2.307,53,2.581,78,3.343,89,1.526,98,1.58,105,1.714,108,3.192,133,0.549,147,2.922,165,3.065,188,4.553,191,3.24,214,3.682,281,3.148,364,1.883,389,3.105,491,3.343,550,3.24,604,3.027,614,3.462,618,4.492,870,3.343,948,3.872,973,4.754,1009,3.529,1105,3.772,1316,4.754]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[814,0.472]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[133,0.439,188,4.007,491,5.104]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[188,4.347,2122,8.551]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[3,1.012,13,0.039,36,1.988,58,2.277,75,1.496,89,1.733,133,0.595,188,5.633,224,2.56,350,4.32,445,3.169,491,6.925,547,4.179,621,3.019,881,3.609,947,3.991,970,3.991,1062,3.515,1907,4.43,2123,4.43,2124,4.812]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1001,6.645,1012,5.272,1013,5.986,1014,5.413]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1012,4.369,1013,4.96,1014,4.486,1799,5.194,1800,5.194,2125,5.982]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[57,1.872,92,5.192,105,2.078,345,0.895,350,3.765,397,2.879,440,3.543,589,4.465,620,2.423,1012,6.342,1013,5.192,1014,6.511,1099,5.437,1796,5.764,1798,4.834,1799,5.437,1800,7.539,1801,5.192,2126,6.261,2127,6.261,2128,6.261]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[814,0.472]],["title//docs/troubleshooting/troubleshooting/",[763,4.713]],["keywords//docs/troubleshooting/troubleshooting/",[763,4.673]],["toc//docs/troubleshooting/troubleshooting/",[2,0.507,3,0.451,45,2.898,46,1.567,53,1.599,78,2.072,90,1.378,98,1.597,106,2.144,107,1.461,110,1.979,120,1.503,126,2.146,128,2.282,129,0.781,133,0.178,138,0.821,165,1.9,188,2.654,205,0.915,246,1.627,271,2.233,295,1.119,307,3.024,319,3.642,339,0.876,341,1.809,345,0.458,372,1.736,408,2.008,423,2.946,440,1.811,455,1.951,456,1.129,601,2.338,604,1.876,624,1.432,631,1.338,653,1.702,657,1.405,890,2.282,929,2.352,1036,2.554,1378,2.779,1433,2.779,1700,4.166,1795,2.471,1856,2.779,2129,3.2,2130,3.2,2131,2.779,2132,3.2,2133,3.2,2134,3.2,2135,3.2,2136,3.2,2137,3.2,2138,3.2,2139,2.946,2140,3.2,2141,3.2,2142,3.2,2143,3.2]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[440,4.913,929,3.911]],["keywords//docs/platform/accounts-and-passwords/",[46,2.113,440,3.984,921,5.142,929,3.171]],["toc//docs/platform/accounts-and-passwords/",[14,0.783,45,2.332,46,2.296,48,2.345,57,1.567,111,2.315,165,4.541,295,3.159,345,1.094,350,3.151,366,4.663,408,4.799,653,2.787,739,2.724,927,4.729,928,2.787,929,4.474,1036,4.182,1948,6.343,1992,3.828,2116,4.55]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[435,4.641]],["keywords//docs/platform/support/",[435,3.381,2144,7.039,2145,7.039,2146,7.039]],["toc//docs/platform/support/",[45,2.802,268,7.097,435,4.415,678,2.748,1948,7.622,2147,9.191]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[3,0.812,45,1.756,105,1.912,109,2.578,169,3.225,274,1.406,1533,4.109]],["keywords//docs/platform/linode-backup-service/",[2148,4.882,2149,4.882,2150,4.882,2151,4.882,2152,4.882,2153,4.882,2154,4.882,2155,4.882,2156,4.882]],["toc//docs/platform/linode-backup-service/",[45,2.801,46,1.621,49,4.689,53,2.699,105,2.595,169,6.434,195,6.713,282,1.969,352,3.851,372,2.929,397,2.483,399,3.339,480,4.972,544,4.478,585,3.945,618,3.206,731,6.789,1065,3.945,1707,4.478,1801,4.478,2157,5.4]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[138,2.227,246,4.413]],["keywords//docs/websites/hosting-a-website/",[246,3.578,1649,5.618,1650,6.112,1669,6.48]],["toc//docs/websites/hosting-a-website/",[2,0.762,5,3.116,13,0.07,14,0.719,45,2.62,89,0.97,98,1.473,106,1.977,129,2.097,133,0.268,138,1.234,149,2.228,152,1.461,204,0.98,205,1.376,206,2.197,246,2.446,305,5.874,339,1.318,390,1.573,455,2.933,456,2.535,546,7.912,584,3.169,654,2.311,672,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[2,1.375,274,2.118]],["keywords//docs/security/securing-your-server/",[274,2.052,280,2.873,624,2.677,2158,5.982,2159,5.982]],["toc//docs/security/securing-your-server/",[3,0.612,16,0.472,17,0.777,48,1.942,57,1.986,89,0.875,105,3.001,106,1.783,111,1.917,117,1.227,133,0.242,196,1.995,267,2.576,274,1.059,280,2.084,289,1.814,291,2.286,295,1.518,341,1.504,350,3.995,352,3.095,359,3.095,440,2.456,528,2.245,538,3.599,620,1.679,624,3.612,631,1.814,923,2.858,964,3.027,1120,1.404,1334,2.858,1404,2.723,1533,3.095,1662,3.995,1949,3.768,2009,3.027,2160,4.34,2161,3.995,2162,4.34,2163,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[2,1.054,14,0.995,15,1.998,732,2.94,1492,4.115]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[732,3.411,1492,4.774,1872,7.109]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.641,138,1.525,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,1873,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[2,0.978,16,0.671,141,1.779,2164,4.405,2165,4.405,2166,4.309]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[16,0.65,141,1.723,2164,4.266,2166,4.173,2167,5.982,2168,5.507]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[204,1.185,2169,7.539]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[204,0.961,2169,6.112,2170,7.039,2171,7.039]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[13,0.057,133,0.39,165,4.159,289,2.928,604,4.107,678,2.095,1086,5.81,2169,8.139,2172,7.006,2173,7.006,2174,7.006,2175,7.006,2176,7.006,2177,7.006,2178,7.006,2179,7.006,2180,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[133,0.439,204,1.076,2181,7.257]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[204,1.167,2182,8.551]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[13,0.062,14,1.137,48,3.405,82,4.46,111,3.361,117,2.152,152,2.31,281,4.638,924,6.072,2181,10.128,2183,7.609,2184,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[17,1.192,739,2.371,1000,2.799,1987,3.952,2185,3.198]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[1990,4.42,1991,4.85,2186,6.468,2187,6.468,2188,5.954]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[13,0.052,14,0.952,133,0.355,282,2.324,341,2.209,345,0.912,373,1.56,656,2.381,749,3.3,768,3.886,769,3.268,908,4.546,929,2.871,958,4.061,1119,3.999,1333,0.939,1787,3.941,1987,5.218,1992,4.656,2111,7.29]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[814,0.472]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[3,0.871,75,1.92,328,2.628,579,4.309,580,4.93,930,4.632]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[580,6.825,930,6.412]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.729,15,1.464,89,1.463,96,1.73,98,3.138,124,5.706,133,0.272,169,2.731,211,3.159,224,2.595,328,2.076,349,4.364,579,6.694,616,3.658,621,3.061,664,5.175,930,3.658,956,6.301,993,2.501,1343,4.491,1459,6.915,2189,4.879,2190,4.879,2191,4.236,2192,4.879]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[2,1.054,16,0.724,1158,3.384,2114,5.52,2193,5.78]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,0.995,15,1.998,105,2.209,456,2.349,1108,4.058]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[456,3.018,1108,5.213]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[3,1.202,46,2.559,378,5.432,455,5.198,456,3.009,970,7.071,1112,9.798,1931,7.404]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1142,6.51,2194,7.2]],["keywords//docs/websites/cms/kloxo-guides/",[1108,4.291,2194,5.838,2195,5.02,2196,5.02]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[2,1.143,117,2.041,1000,3.035,1158,3.669]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[0,3.3,2,1.266,4,1.824,13,0.065,14,0.832,21,1.678,57,1.666,129,1.359,133,0.31,138,1.429,141,1.604,205,1.593,206,1.424,274,1.359,294,1.531,301,2.445,339,1.525,364,2.031,373,1.364,390,1.22,762,1.604,822,2.544,1015,2.102,1149,2.145,1674,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[89,1.589,440,4.461,2197,6.537]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[440,4.37,2197,6.404,2198,7.109]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[21,2.982,89,2.349,295,3.461,345,1.088,440,5.602,1333,1.12,2198,9.112]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[814,0.472]],["title//docs/websites/cms/directadmin/",[2197,8.012]],["keywords//docs/websites/cms/directadmin/",[2197,7.944]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[2,1.054,16,0.724,732,2.94,2114,5.52,2193,5.78]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1638,4.994,2085,4.994,2199,6.468,2200,6.468,2201,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[13,0.058,117,2.041,2194,5.986,2202,2.524]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1108,4.291,2194,5.838,2195,5.02,2196,5.02]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[13,0.081,389,5.995,628,5.58]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[16,0.785,1010,3.494,2114,5.986,2193,6.268]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2203,7.039,2204,7.039,2205,5.838,2206,5.838]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[364,3.635,1010,5.663]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[814,0.472]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[3,0.871,13,0.05,656,2.307,749,2.319,1108,3.765,1119,3.875]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[604,4.527,656,2.884,1108,4.707]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[11,1.897,12,1.909,13,0.066,89,1.64,160,4.326,656,3.038,749,3.878,763,3.968,769,4.171,1119,5.103]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[941,5.285,1120,2.551,2207,6.537]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[198,3.474,752,4.512,941,4.337,942,5.363,1120,2.093]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[814,0.472]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[117,2.229,941,5.285,1000,3.314]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[117,1.829,198,3.474,752,4.512,941,4.337,942,5.363]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[17,1.292,941,4.84,1000,3.035,2185,3.467]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[17,1.071,198,3.213,752,4.173,941,4.011,942,4.96,2185,2.873]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[13,0.074,14,1.373,206,2.349,390,2.012,941,6.163,1267,6.555]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[2,1.143,732,3.188,1120,2.336,2207,5.986]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1772,5.142,1773,5.279,2208,7.039,2209,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[2,1.28,13,0.083,14,1.208,15,1.699,129,1.973,133,0.606,138,1.451,149,2.621,204,1.104,205,1.618,206,1.447,339,1.55,373,1.385,390,2.254,503,3.664,654,2.719]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[814,0.472]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[117,2.229,732,3.482,1000,3.314]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[117,1.574,204,0.759,206,1.422,390,1.218,732,2.457,1002,4.44,1282,5.122]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[11,1.602,12,1.612,13,0.085,89,1.385,129,1.676,133,0.623,138,1.762,204,1.262,205,1.964,206,1.756,339,1.881,390,2.025]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1140,5.285,1142,5.911,1499,6.537]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[465,6.825,1140,5.734]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[4,1.053,14,0.807,41,3.851,133,0.301,147,5.201,158,4.689,161,4.478,165,3.206,191,3.388,196,2.483,204,0.737,276,3.945,307,3.128,327,3.851,497,3.292,599,3.206,604,3.166,653,2.872,749,2.027,812,3.945,969,4.972,993,2.769,1075,3.248,1140,5.242,2210,5.4,2211,5.4,2212,5.4,2213,5.4,2214,5.4,2215,4.972]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[17,1.031,390,1.261,739,2.052,1000,2.422,1032,2.163,1566,3.035,2185,2.767]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[17,0.996,739,1.982,1566,2.931,2185,2.673,2188,5.122,2216,5.564,2217,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[117,1.747,390,1.352,739,2.2,1032,2.319,1566,3.254,2202,2.16]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[739,2.304,1569,4.612,2219,6.468,2220,6.468,2221,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[13,0.047,14,1.222,15,2.455,21,1.733,133,0.53,152,2.891,208,2.128,295,2.861,339,1.575,351,3.871,390,1.791,397,2.645,657,2.524,740,2.433,993,2.949,1032,3.071,1566,3.031,1570,3.506,1571,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[2,1.143,1120,2.336,1158,3.669,2207,5.986]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[2,1.28,4,1.577,13,0.076,14,0.846,21,1.705,57,1.692,129,1.381,133,0.525,138,1.451,141,1.63,205,1.618,206,1.447,274,1.973,339,1.55,345,0.809,373,1.385,390,1.239,584,3.727,762,1.63,1015,2.135,1149,2.179,1333,0.833,1506,3.551]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[2,1.054,17,1.192,1000,2.799,1158,3.384,2185,3.198]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,17,0.952,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,990,4.619,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2165,4.109,2166,4.019]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2222,5.564,2223,4.831,2224,4.614]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[14,1.188,105,2.639,133,0.567,152,2.414,155,4.229,345,1.137,373,1.946,740,4.307,1333,1.171,1970,4.72]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[2,1.054,16,0.724,732,2.94,2165,4.747,2166,4.644]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1638,4.994,2085,4.994,2168,5.954,2225,6.468,2226,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[17,0.966,105,1.791,450,3.386,456,1.905,1000,2.269,2055,3.85,2056,2.958,2185,2.593]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[17,1.158,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2165,3.85,2166,3.766]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2207,4.778]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[3,0.932,13,0.054,14,0.988,133,0.571,273,3.587,294,1.817,345,0.946,373,1.619,439,3.129,456,2.334,486,3.701,620,2.559,1333,0.974,2065,6.131,2069,3.551]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2165,3.85,2166,3.766]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[16,0.671,46,1.854,340,3.999,681,3.765,2165,4.405,2166,4.309]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[681,3.943,2228,6.468,2229,5.162,2230,5.162,2231,5.162]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[17,1.106,46,1.854,340,3.999,681,3.765,1000,2.597,2185,2.967]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2233,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[4,1.205,17,1.106,206,1.579,1000,2.597,1149,2.378,2185,2.967]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[4,1.373,1508,4.127,1509,4.72,2234,7.039]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[4,1.205,16,0.671,206,1.579,1149,2.378,2165,4.405,2166,4.309]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[4,1.373,1508,4.127,1509,4.72,2235,7.039]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[45,2.403,862,5.758,1076,5.911]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2236,8.551,2237,8.551]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[107,3.401,133,0.415,165,5.795,431,4.905,474,5.751,621,4.673,1075,4.48,1076,8.996,2238,7.448,2239,7.448]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2165,4.405,2166,4.309]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[1996,4.994,2240,6.468,2241,5.954,2242,6.468,2243,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[814,0.472]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[14,0.995,15,1.998,45,2.029,1074,3.81,1076,4.992]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[631,2.942,1074,4.029,1076,5.279,2244,7.039]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,1.634,12,1.644,16,0.762,17,1.254,75,2.914,117,2.651,133,0.39,146,2.928,399,4.331,628,3.921,734,3.501,1000,2.945,1120,2.267,1297,3.657,1492,4.331,2139,6.449]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[16,0.785,1010,3.494,2165,5.148,2166,5.035]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2205,5.838,2206,5.838,2245,7.039,2246,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[364,3.635,1010,5.663]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[814,0.472]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[2,0.912,17,1.031,122,2.98,205,1.647,1000,2.422,1981,3.19,2185,2.767]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[204,0.961,1481,5.618,1981,3.898,1983,5.02]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[17,1.192,204,0.909,566,4.115,1000,2.799,2185,3.198]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[204,0.985,566,4.462,1120,2.336,2247,3.955]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[16,0.724,204,0.909,566,4.115,2113,2.959,2248,2.867]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/platform/stackscripts/",[0,2.782,178,4.679,505,6.537]],["keywords//docs/platform/stackscripts/",[178,3.839,201,3.998,226,4.85,2249,6.468,2250,6.468]],["toc//docs/platform/stackscripts/",[0,2.759,3,1.295,45,1.646,53,2.699,58,2.555,82,3.166,87,3.556,89,1.089,213,3.166,254,3.767,283,2.37,485,4.689,486,3.023,505,9.762,762,1.555,869,3.44,2030,3.621,2251,5.4,2252,4.972,2253,5.4,2254,5.4,2255,5.4,2256,5.4]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[17,1.106,1000,2.597,1974,4.309,1975,4.222,1976,3.765,2185,2.967]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1120,2.154,1974,4.644,1975,4.55,1976,4.058,2247,3.648]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[204,0.909,566,4.115,1120,2.154,1284,3.061,2247,3.648]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[63,2.812,204,0.961,566,4.352,1284,3.237]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[0,2.522,13,0.077,14,1.068,101,3.695,133,0.529,204,1.296,251,3.177,345,1.022,373,1.75,776,3.665,1284,4.368,1333,1.052]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[17,1.292,1000,3.035,2028,3.955,2185,3.467]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[17,0.931,74,2.666,429,3.128,1809,2.557,2022,3.128,2028,2.85,2257,5.2,2258,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[16,0.785,2028,3.955,2113,3.209,2248,3.109]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[16,0.785,2028,3.955,2259,3.521,2260,3.494]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[17,1.031,46,1.729,429,3.465,685,2.833,1000,2.422,2185,2.767,2261,4.208]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[46,1.854,429,3.715,685,3.037,1120,1.999,2247,3.385,2261,4.512]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[16,0.626,46,1.729,429,3.465,685,2.833,2259,2.81,2260,2.789,2261,4.208]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[46,1.729,117,1.629,213,3.377,2202,2.015,2263,4.109,2264,4.448,2265,5.003]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[213,3.792,2263,4.612,2266,5.954,2267,5.616,2268,5.162]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[13,0.084,57,2.432,133,0.453,141,2.343,274,1.985,678,2.432,762,2.343,1015,3.069,2263,7.368]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[46,1.729,213,3.377,1120,1.865,2247,3.157,2263,4.109,2264,4.448,2265,5.003]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[213,3.792,2263,4.612,2266,5.954,2267,5.616,2268,5.162]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[13,0.081,57,2.325,133,0.433,141,2.24,274,1.897,345,1.112,678,2.325,762,2.24,1015,2.934,1333,1.145,2263,7.159]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[17,0.966,46,1.62,487,3.246,739,1.923,1000,2.269,1733,3.689,2053,3.29,2185,2.593]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[13,0.058,14,1.068,133,0.594,345,1.022,349,4.298,365,4.885,373,1.75,585,5.221,588,4.419,740,3.023,1333,1.052,2053,6.504,2269,6.206]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[17,1.106,45,1.883,46,1.854,1000,2.597,2185,2.967,2270,3.621]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[45,2.029,46,1.998,1120,2.154,2247,3.648,2270,3.902]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[13,0.09,53,2.699,57,1.615,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,364,1.969,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[141,1.779,294,1.697,657,2.711,1120,1.999,1454,3.536,2247,3.385]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[16,0.626,141,1.659,294,1.583,657,2.528,1454,3.298,2259,2.81,2260,2.789]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[2,0.978,17,1.106,141,1.779,1000,2.597,2164,4.405,2185,2.967]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[141,2.463,2164,6.098]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[16,0.626,224,3.064,916,3.562,2259,2.81,2260,2.789,2280,4.598,2281,4.32]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1043,2.976,2282,4.882,2283,4.882,2284,4.882,2285,4.239,2286,3.896,2287,3.896,2288,3.769,2289,3.896]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[17,1.292,801,3.839,1000,3.035,2185,3.467]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[129,1.718,801,3.744,868,3.548,2013,5.02]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[17,1.106,204,0.843,427,3.224,1000,2.597,1177,3.285,2185,2.967]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[204,0.843,275,3.14,656,2.307,749,2.319,1120,1.999,2247,3.385]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[684,3.518,1682,4.811,1684,6.112,2292,5.838]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[17,1.106,274,1.507,704,3.113,869,3.935,1000,2.597,2185,2.967]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2293,7.722,2294,7.722,2295,7.722]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,4.306,497,4.208,631,2.885,704,3.479,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[4,1.298,1120,2.154,2247,3.648,2296,4.747,2297,5.52]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[814,0.472]],["title//docs/websites/wikis/twiki-on-centos-5/",[117,2.229,2021,4.512,2202,2.757]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-centos-5/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[814,0.472]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[17,1.292,1000,3.035,2021,4.132,2185,3.467]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1120,2.551,2021,4.512,2247,4.32]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[814,0.472]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[3,0.938,196,3.061,291,3.507,624,2.979,1072,4.31]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[422,3.094,624,2.677,965,5.507,1074,3.424,1096,5.507,1897,4.369]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[2,1.326,75,1.848,81,3.022,90,3.607,142,4.022,155,3.162,181,3.675,196,4.839,291,3.132,294,2.301,624,2.661,672,4.24,734,4.185,1079,6.28,1510,3.675,2050,4.343,2299,8.374]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[3,0.871,75,1.92,129,1.507,390,1.352,1041,3.35,1297,3.224]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1826,5.962,1884,6.705,2300,7.722]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[3,1.028,13,0.059,133,0.536,290,4.51,294,2.005,345,1.043,390,2.51,927,4.51,928,3.88,929,3.286,1333,1.074,1665,5.47]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[814,0.472]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[16,0.724,204,0.909,566,4.115,2259,3.247,2260,3.222]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[17,1.031,105,1.912,1000,2.422,1252,3.298,1959,3.42,1960,3.73,2185,2.767]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1961,3.566,1962,3.215,1964,3.161,1965,3.161,2004,3.215,2301,4.882,2302,4.882,2303,4.048,2304,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[13,0.081,14,1.5,133,0.433,280,3.735,345,1.112,373,1.904,451,4.74,678,2.325,1333,1.145,1959,5.959]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[2,0.912,17,1.031,204,0.786,205,1.647,275,2.928,1000,2.422,2185,2.767]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[659,5.162,1481,5.162,2305,6.468,2306,6.468,2307,6.468]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[11,1.41,12,1.419,13,0.079,133,0.472,138,1.551,149,2.8,204,1.335,209,3.792,257,3.385,275,3.074,289,3.542,318,2.456,339,1.656,345,0.865,435,2.905,654,2.905,1333,0.89,1461,4.218,2308,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[75,2.45,1297,4.115,2028,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2248,2.396]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[2,1.179,4,1.453,13,0.094,133,0.415,204,1.017,205,2.13,345,1.065,696,4.314,1333,1.097,1610,4.605,2028,5.349]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2259,2.81,2260,2.789]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2309,5.507]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[2,1.054,17,1.192,732,2.94,1000,2.799,2185,3.198]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1485,6.404,1877,6.705,2310,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[2,0.978,122,3.195,205,1.766,1120,1.999,1981,3.42,2247,3.385]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[204,0.961,1981,3.898,1983,5.02,2311,6.48]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[17,1.031,224,3.064,916,3.562,1000,2.422,2185,2.767,2280,4.598,2281,4.32]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1043,2.976,2286,3.896,2287,3.896,2288,3.769,2289,3.896,2312,4.882,2313,4.882,2314,4.882,2315,4.494]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[3,0.716,17,0.909,109,2.272,110,3.139,149,2.351,1000,2.135,2061,2.727,2062,3.621,2185,2.439]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[17,1.26,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[3,0.812,6,2.422,105,1.912,204,0.786,283,2.528,1120,1.865,2247,3.157]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[3,0.812,4,1.124,17,1.031,776,2.954,1000,2.422,1285,2.98,2185,2.767]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,1.298,17,1.192,246,3.384,1000,2.799,2185,3.198]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,1.167,17,1.071,157,2.751,684,2.99,2316,5.507,2317,5.982]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[4,2.053,13,0.079,14,0.888,17,1.064,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/databases/postgresql/debian-6-squeeze/",[3,0.812,17,1.031,129,1.406,134,2.528,1000,2.422,1041,3.125,2185,2.767]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1043,4.291,1141,4.72,2318,7.039,2319,7.039]],["toc//docs/databases/postgresql/debian-6-squeeze/",[13,0.074,14,1.007,89,2.088,129,1.644,133,0.375,134,4.545,168,4.363,295,2.357,345,0.964,929,3.036,1044,3.857,1048,4.438,1333,0.992,2077,5.203,2078,5.203]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[17,1.192,204,0.909,1000,2.799,1153,3.726,2185,3.198]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[679,3.642,2320,5.838,2321,6.48,2322,6.48]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[17,1.192,204,0.909,566,4.115,2202,2.328,2324,2.674]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[63,3.085,204,1.054,1289,5.178]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[13,0.053,14,0.97,96,2.301,133,0.637,135,4.629,136,4.528,204,0.886,251,2.886,345,0.928,347,4.741,373,1.589,776,5.604,1284,2.985,1290,3.759,1333,0.956]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[17,1.031,96,2.042,703,4.32,739,2.052,1000,2.422,1032,2.163,2185,2.767]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[17,1.106,204,0.843,566,3.819,1000,2.597,1284,2.84,2185,2.967]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[4,1.205,17,1.106,1000,2.597,1149,2.378,1809,3.037,2185,2.967]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[1996,4.994,2241,5.954,2327,6.468,2328,6.468,2329,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[17,0.966,294,1.483,295,1.888,440,3.055,1032,2.026,1566,2.844,2202,1.888,2324,2.168]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[739,2.507,1032,2.643,1566,3.709,2330,7.039]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[13,0.049,14,0.903,105,2.812,133,0.59,142,2.905,291,3.186,345,0.865,373,1.48,620,2.34,656,2.259,740,4.484,756,4.417,762,1.742,938,4.826,1032,2.27,1333,0.89,1566,3.186,2331,6.047,2332,6.047]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[16,0.671,204,0.843,427,3.224,1177,3.285,2259,3.013,2260,2.99]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[4,1.205,17,1.106,1000,2.597,2185,2.967,2296,4.405,2297,5.122]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[2,1.484,4,1.828,13,0.057,14,1.047,101,2.725,107,3.199,133,0.522,345,1.002,373,1.715,435,3.365,822,3.199,1285,5.464,1333,1.032]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[17,1.292,1000,3.035,1290,4.18,2185,3.467]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[17,1.031,739,2.052,1000,3.443,1351,3.794,2185,2.767,2333,4.598]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1569,4.266,2334,5.982,2335,5.982,2336,5.507,2337,4.774,2338,4.774]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[13,0.079,21,2.244,57,2.227,96,2.641,133,0.415,141,2.145,274,1.817,294,2.047,345,1.065,678,2.227,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[17,1.031,46,1.729,429,3.465,685,2.833,2202,2.015,2261,4.208,2324,2.314]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[429,4.234,649,4.234,1151,4.636,2262,5.838]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[13,0.057,14,1.047,133,0.522,204,0.956,262,4.614,294,1.925,345,1.002,364,2.554,373,1.715,510,3.726,685,3.445,772,4.996,1333,1.032,1816,5.117,2261,7.716]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[2,0.912,17,1.031,740,2.436,1000,2.422,1033,3.377,1970,3.42,2185,2.767]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1353,3.491,1972,4.172,1973,4.172,2316,5.122,2339,5.564,2340,5.564,2341,5.122]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[16,0.785,2021,4.132,2113,3.209,2248,3.109]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[16,0.785,2021,4.132,2259,3.521,2260,3.494]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[3,0.761,17,0.966,155,2.871,456,1.905,1000,2.269,2065,2.871,2066,3.689,2185,2.593]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[17,0.931,456,1.835,804,3.263,2065,2.766,2069,2.793,2342,5.2,2343,5.2,2344,5.2]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,1.298,16,0.724,246,3.384,2259,3.247,2260,3.222]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,1.167,16,0.65,157,2.751,684,2.99,2345,5.194,2346,4.96]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[4,2.053,13,0.079,14,0.888,16,0.646,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[17,1.292,1000,3.035,1010,3.494,2185,3.467]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1921,6.48,1922,6.48,2185,3.381,2347,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[258,7.286,294,2.593,364,3.441,1010,5.482]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[4,1.298,75,2.069,1149,2.563,1297,3.475,1809,3.273]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1149,2.49,1998,4.512,2348,6.468,2349,5.616,2350,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[13,0.059,14,1.09,21,2.198,133,0.536,138,1.871,152,2.215,208,2.698,339,1.998,345,1.043,373,1.786,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[4,1.298,75,2.069,206,1.701,1149,2.563,1297,3.475]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1508,4.127,1509,4.72,2349,6.112,2350,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[13,0.064,14,1.188,133,0.443,138,2.039,152,2.414,206,2.032,339,2.177,345,1.137,373,1.946,762,2.29,1149,3.061,1333,1.171]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2247,3.157]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[3,0.932,13,0.054,14,0.988,133,0.571,273,3.587,294,1.817,345,0.946,373,1.619,439,3.129,456,2.334,486,3.701,620,2.559,1333,0.974,2065,6.131,2069,3.551]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2259,2.633,2260,2.613]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.408,75,2.244,246,3.669,1297,3.768]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.262,684,3.232,2349,5.616,2350,5.616,2351,6.468]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[4,1.793,13,0.074,14,1.373,345,1.314,373,2.25,1333,1.353]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[17,1.292,2028,3.955,2202,2.524,2324,2.899]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[17,0.931,74,2.666,429,3.128,1809,2.557,2022,3.128,2028,2.85,2352,5.2,2353,5.2]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[2,1.088,4,1.34,13,0.091,96,2.435,133,0.582,204,0.938,205,1.964,294,1.888,345,0.982,696,3.979,1333,1.011,1610,4.247,2028,5.069]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/social-networking/phpfox/",[2354,7.711]],["keywords//docs/applications/social-networking/phpfox/",[869,4.92,2091,6.163,2354,6.163]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[814,0.472]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[17,1.292,2021,4.132,2202,2.524,2324,2.899]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2021,4.029,2022,4.234,2023,5.279,2024,5.279]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[2,1.067,13,0.09,133,0.576,204,0.92,205,1.927,294,1.852,345,0.964,364,2.457,678,2.015,762,1.941,1333,0.992,2021,6.355]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[3,0.812,17,1.031,129,1.406,390,1.261,1000,2.422,1041,3.125,2185,2.767]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1826,4.994,2355,6.468,2356,5.954,2357,6.468,2358,6.468]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[16,0.785,2044,4.085,2259,3.521,2260,3.494]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2359,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[105,1.912,450,3.614,456,2.033,1120,1.865,2055,4.109,2056,3.157,2247,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2292,5.363]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2259,2.633,2260,2.613]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[16,0.785,1290,4.18,2259,3.521,2260,3.494]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[4,1.205,17,1.106,2202,2.16,2296,4.405,2297,5.122,2324,2.481]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,2.282,213,3.792,427,3.376,1673,3.038,2296,4.612]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,2.424,2,1.088,4,1.34,13,0.075,14,1.026,89,1.385,96,2.435,101,3.598,133,0.382,205,1.964,345,0.982,373,1.682,762,1.979,1333,1.011,2296,6.597,2298,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[3,0.938,129,1.624,390,1.458,1041,3.611,1492,4.115]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[129,1.718,390,1.541,1492,4.352,2288,5.435]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[3,1.173,13,0.067,133,0.463,290,5.147,345,1.191,390,2.638,1333,1.226]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[814,0.472]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[16,0.671,46,1.854,390,1.352,1821,3.224,2259,3.013,2260,2.99]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[16,0.765,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[13,0.078,98,2.232,133,0.536,152,2.215,204,0.996,274,1.78,277,5.089,364,2.66,602,4.576,656,2.725,1821,5.983]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[4,1.298,206,1.701,1120,2.154,1149,2.563,2247,3.648]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[4,1.373,1508,4.127,1509,4.72,2360,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[13,0.06,14,1.113,21,2.244,133,0.543,152,2.262,206,1.904,208,2.755,345,1.065,373,1.823,510,3.962,1149,2.868,1333,1.097,2274,4.822,2361,5.585]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[4,1.298,1120,2.154,1149,2.563,1809,3.273,2247,3.648]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[4,1.373,1508,4.127,1998,4.911,2360,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[13,0.06,14,1.113,21,2.244,133,0.543,152,2.262,208,2.755,345,1.065,373,1.823,510,3.962,1149,3.758,1333,1.097,1534,5.441,1809,3.662]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[16,0.785,1290,4.18,2113,3.209,2248,3.109]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1120,2.551,2044,4.461,2362,4.32]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[8,3.303,117,1.574,313,3.602,1083,3.346,2044,3.149,2045,4.064,2363,5.564]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[3,0.871,4,1.205,75,1.92,776,3.167,1285,3.195,1297,3.224]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[4,1.262,63,2.584,776,3.316,1285,3.346,1884,5.616]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[2,1.525,4,1.423,13,0.059,14,1.09,89,1.471,101,2.838,107,3.331,133,0.406,318,2.963,345,1.043,373,1.786,1285,4.981,1333,1.074,1824,3.774]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[3,0.871,4,1.205,776,3.167,1120,1.999,1285,3.195,2247,3.385]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[2,1.179,4,1.904,13,0.079,14,1.113,101,2.897,107,3.401,133,0.543,345,1.065,373,1.823,1285,5.05,1333,1.097]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[2,0.978,204,0.843,205,1.766,275,3.14,1120,1.999,2247,3.385]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[659,6.163,2364,7.722,2365,7.109]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[2,0.868,13,0.075,14,0.819,120,2.576,133,0.565,138,1.406,149,2.539,157,2.522,204,1.265,209,2.454,287,3.612,289,2.292,318,2.227,339,1.502,345,0.784,348,3.176,373,1.342,435,2.634,602,3.441,654,2.634,888,4.112,929,2.471,1333,0.807,1533,3.911,2366,4.112]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[204,0.985,1120,2.336,1153,4.04,2247,3.955]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[679,3.346,2367,6.468,2368,6.468,2369,6.468,2370,5.616]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[3,1.173,13,0.067,14,1.244,152,2.528,204,1.136,345,1.191,373,2.038,1153,5.869,1333,1.226]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[16,0.724,204,0.909,1153,3.726,2259,3.247,2260,3.222]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[679,3.346,1958,5.162,2371,6.468,2372,6.468,2373,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2259,2.81,2260,2.789]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[16,0.65,1682,4.088,1853,3.873,2346,4.96,2374,5.507,2375,5.507]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,2247,3.385]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1826,5.962,1827,6.404,2376,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.409,927,4.704,928,4.047,929,3.428,1333,1.12,1665,5.706]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,1.408,246,3.669,1120,2.336,2247,3.955]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,1.167,157,2.751,684,2.99,2292,4.96,2360,5.194,2377,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[4,2.068,13,0.069,14,0.903,20,2.34,21,1.822,46,1.815,57,1.808,58,2.861,89,1.219,141,1.742,274,1.475,301,2.654,318,2.456,345,0.865,373,1.48,678,1.808,762,1.742,822,2.761,1015,2.281,1333,0.89,1674,4.535,1824,3.128]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,204,0.786,205,1.647,275,2.928,2259,2.81,2260,2.789]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[204,0.816,684,2.99,1982,4.369,2378,5.982,2379,5.982,2380,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2113,2.561,2248,2.481]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2309,5.507]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2259,2.633,2260,2.613]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[16,0.785,2044,4.085,2113,3.209,2248,3.109]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2381,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[13,0.071,133,0.486,138,2.241,339,2.393,678,2.613,781,5.971,2044,6.115]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2113,2.4,2248,2.325]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[16,0.703,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/redis/redis-on-fedora-14/",[801,4.193,1120,2.551,2247,4.32]],["keywords//docs/databases/redis/redis-on-fedora-14/",[129,1.578,801,3.44,868,3.26,2013,4.612,2382,6.468]],["toc//docs/databases/redis/redis-on-fedora-14/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,427,3.224,1177,3.285,2259,3.013,2260,2.99]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2259,2.477,2260,2.458,2383,3.621]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1673,2.614,1841,3.803,1842,3.803,2384,5.564,2385,5.564,2386,4.064,2387,4.064]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[13,0.059,14,1.09,133,0.406,159,5.632,204,1.314,206,2.461,209,3.264,282,2.66,345,1.043,373,1.786,1229,4.039,1252,4.176,1333,1.074,1844,5.47]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2259,2.81,2260,2.789]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2223,4.831,2224,4.614,2388,5.564]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[3,0.761,109,2.416,110,3.337,149,2.5,1120,1.747,2061,2.899,2062,3.85,2247,2.958]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2259,2.477,2260,2.458]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[3,1.202,13,0.086,345,1.219,762,2.456,1333,1.255,2061,6.232]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2259,2.633,2260,2.613]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[2,1.143,1120,2.336,1158,3.669,2247,3.955]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1120,1.721,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[2,1.054,16,0.724,1158,3.384,2389,3.127,2390,3.083]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[0,3.272,2,1.252,4,1.808,13,0.064,16,0.596,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,345,0.784,364,2,390,1.201,762,1.58,822,2.504,1015,2.069,1149,2.111,1333,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[2,1.143,732,3.188,1120,2.336,2247,3.955]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1772,5.142,1773,5.279,2391,7.039,2392,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[2,1.28,13,0.083,14,1.208,15,1.699,129,1.973,133,0.606,138,1.451,149,2.621,204,1.104,205,1.618,206,1.447,339,1.55,373,1.385,390,2.254,503,3.664,654,2.719]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[814,0.472]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[2,1.248,141,2.27,1172,4.679]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1172,4.584,1605,6.163,2393,7.722]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[814,0.472]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[487,4.341,2394,5.413,2395,6.268,2396,6.268]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[75,1.859,342,3.873,841,4.486,2395,5.194,2396,5.194,2397,4.96]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[97,3.828,131,2.787,349,5.973,350,4.6,487,4.6,547,8.624,1457,4.55,1621,7.042,1761,4.046,1860,4.346,2030,5.129,2191,4.55,2308,4.55,2395,8.624,2396,9.172,2398,7.649,2399,5.24]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[16,0.671,274,1.507,704,3.113,869,3.935,2259,3.013,2260,2.99]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[16,0.65,422,3.094,631,2.5,704,3.015,2346,4.96,2375,5.507]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[3,0.812,75,1.791,257,3.225,328,2.451,550,3.614,2400,5.003,2401,5.003]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[75,2.188,2400,6.112,2401,6.112,2402,7.039]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[97,5.941,257,5.783,294,2.235,322,5.454,341,2.819,346,7.488,621,5.103,871,4.768,2400,7.063,2401,7.063]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[98,1.89,579,4.309,662,3.875,961,4.93,2269,5.363,2403,4.769]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[75,1.859,447,4.266,961,4.774,1510,3.698,2397,4.96,2404,5.507]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[3,1.072,349,4.576,439,3.6,657,4.344,877,5.426,958,4.847,961,8.78,1820,5.426,2269,8.595,2405,7.005]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[3,0.812,101,2.241,109,2.578,198,3.094,680,2.726,1120,1.865,2247,3.157]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[2,1.054,16,0.724,1158,3.384,2259,3.247,2260,3.222]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[75,2.069,105,2.209,141,1.917,1172,3.952,1492,4.115]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[13,0.08,96,2.181,133,0.595,204,0.84,317,4.387,341,2.132,345,0.88,364,2.243,678,1.84,740,2.602,1033,3.607,1172,6.669,1331,5.983,1333,0.906,1730,4.292]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[16,0.671,105,2.05,141,1.779,1172,3.667,2259,3.013,2260,2.99]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[13,0.087,20,1.888,89,0.984,96,1.73,100,3.721,133,0.482,251,2.169,295,1.706,317,3.479,341,1.691,345,0.698,364,1.779,402,2.86,678,1.459,740,2.063,762,1.405,924,5.791,1033,2.86,1049,3.334,1172,6.79,1331,5.062,1333,0.718,1730,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[3,0.871,4,1.205,117,1.747,776,3.167,1285,3.195,2202,2.16]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[2,1.525,4,1.878,13,0.078,14,1.09,101,2.838,107,3.331,133,0.536,345,1.043,373,1.786,1285,4.981,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[3,0.871,4,1.205,776,3.167,1120,1.999,1285,3.195,2362,3.385]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[2,1.525,4,1.878,13,0.059,101,2.838,107,3.331,133,0.536,345,1.043,435,3.504,822,3.331,1285,5.575,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2389,2.706,2390,2.668]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[2,1.525,4,1.878,13,0.059,101,2.838,107,3.331,133,0.536,345,1.043,435,3.504,822,3.331,1285,5.575,1333,1.074]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[16,0.626,96,2.042,703,4.32,739,2.052,1032,2.163,2113,2.561,2248,2.481]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[16,0.626,96,2.042,703,4.32,739,2.052,1032,2.163,2259,2.81,2260,2.789]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[4,1.298,133,0.371,157,3.061,282,2.427,656,2.487]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[4,1.014,157,2.391,276,3.799,656,1.943,1691,4.788,2406,5.2,2407,5.2,2408,5.2]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[3,0.936,4,1.764,13,0.035,46,1.303,76,3.944,89,0.875,96,1.539,122,2.245,133,0.37,138,1.704,157,3.055,160,2.308,177,3.027,305,2.966,339,1.819,435,2.084,510,2.308,605,2.91,656,4.123,734,3.32,749,3.659,768,2.645,769,3.406,1119,2.723,2409,4.34,2410,6.643]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[3,0.812,4,1.124,17,1.031,776,2.954,1285,2.98,2202,2.015,2324,2.314]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[3,0.812,4,1.124,16,0.626,776,2.954,1285,2.98,2259,2.81,2260,2.789]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[4,1.373,63,2.812,776,3.609,1285,3.642]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[2,1.132,4,1.853,13,0.058,14,1.068,101,2.78,107,3.264,133,0.529,345,1.022,373,1.75,435,3.433,822,3.264,1285,5.519,1333,1.052]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2259,3.013,2260,2.99,2270,3.621]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[16,0.785,801,3.839,2259,3.521,2260,3.494]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[129,1.578,868,3.26,2013,4.612,2411,6.468,2412,6.468]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[13,0.037,20,3.221,46,2.072,57,1.365,58,2.16,89,0.92,108,2.821,109,2.042,133,0.463,141,1.314,148,2.527,198,2.451,274,1.114,294,1.254,318,1.854,341,1.582,345,0.653,364,1.664,378,2.907,486,2.554,762,2.673,801,5.791,822,3.801,1015,1.722,1053,2.554,1333,0.672,1824,2.361,2014,4.922]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[16,0.671,204,0.843,566,3.819,1284,2.84,2259,3.013,2260,2.99]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[20,2.576,328,2.832,349,4.004,726,4.747,875,5.14]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[875,5.962,931,6.163,2413,7.722]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[3,0.761,20,4.137,54,4.972,59,4.05,98,1.653,131,2.872,157,3.595,161,4.478,352,3.851,470,4.31,662,3.388,685,2.655,726,5.576,749,2.027,768,3.292,769,2.769,875,6.037,1079,4.05,1267,3.851,1707,4.478,1820,3.851,1986,4.972,2252,4.972,2414,4.972,2415,4.972,2416,4.972]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,0.871,75,1.92,98,1.89,328,2.628,349,3.715,621,3.875]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[75,2.4,931,6.163,2417,7.722]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[3,1.055,75,2.761,96,1.804,98,3.194,99,3.55,126,3.412,127,3.55,131,2.707,149,2.357,174,3.412,193,3.629,257,2.849,289,2.127,305,3.478,328,3.779,349,3.061,621,7.264,654,2.445,685,2.502,877,3.629,1403,4.419]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[45,2.029,46,1.998,1120,2.154,2270,3.902,2362,3.648]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[141,1.779,294,1.697,657,2.711,1120,1.999,1454,3.536,2362,3.385]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2259,2.81,2260,2.789]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[134,2.625,1042,4.774,1043,3.646,1141,4.011,2418,5.982,2419,5.982]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[12,1.562,98,2.037,579,4.644,662,4.176,959,5.313]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[75,2.188,447,5.02,959,5.618,2397,5.838]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[3,1.072,12,1.786,98,2.328,122,3.936,328,3.237,439,3.6,662,4.773,959,9.298,1071,6.607,1820,5.426,2405,7.005]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2259,2.81,2260,2.789]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2259,2.81,2260,2.789]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1446,4.259,2070,4.994,2071,4.724,2420,6.468,2421,6.468]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[3,1.146,13,0.066,96,2.884,133,0.575,294,2.235,345,1.163,390,2.486,1333,1.198]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2259,3.013,2260,2.99]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2345,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[13,0.048,14,0.888,21,1.791,84,5.515,89,1.199,120,2.793,131,4.454,133,0.586,138,1.525,152,1.805,208,2.199,282,2.168,339,1.628,345,0.85,373,1.455,456,2.098,510,3.162,1149,2.289,1333,0.875,1404,3.73,1510,3.675,1809,2.923]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[16,0.785,1010,3.494,2259,3.521,2260,3.494]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2205,5.838,2206,5.838,2422,7.039,2423,7.039]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[294,2.593,948,7.076,1010,4.568,2111,7.826,2424,8.194]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[2,1.054,16,0.724,732,2.94,2259,3.247,2260,3.222]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1638,4.994,2085,4.994,2346,5.363,2425,6.468,2426,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[2,1.326,13,0.085,14,1.251,15,1.785,129,2.043,133,0.617,138,1.525,149,2.753,204,0.811,205,1.7,206,1.52,339,1.628,373,1.455,390,2.123,654,2.856]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[3,0.871,399,3.819,456,2.18,493,4.405,1047,4.632,2427,5.363]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[456,2.484,763,3.434,1692,5.838,2427,6.112]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[2,0.941,3,1.563,13,0.048,255,4.745,455,3.624,456,2.955,572,4.745,728,3.915,734,2.971,1047,4.458,1219,4.59,1761,4.59,1820,4.24,2427,10.267,2428,5.945,2429,5.945]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[3,0.938,141,1.917,294,1.829,493,4.747,2430,5.78]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[75,1.859,97,4.369,372,3.245,763,2.918,2431,5.982,2432,5.982]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[3,1.072,197,5.558,294,2.091,328,3.237,372,4.127,1820,5.426,1859,6.072,2131,6.607,2430,10.116,2433,7.609,2434,7.609]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1120,2.551,2362,4.32,2435,6.086]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[198,3.781,752,4.911,1120,2.278,2435,5.435]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[16,0.626,390,1.261,739,2.052,1032,2.163,1566,3.035,2259,2.81,2260,2.789]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[16,0.605,739,1.982,1566,2.931,2260,2.693,2436,5.564,2437,5.564,2438,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[4,1.205,16,0.671,206,1.579,1149,2.378,2259,3.013,2260,2.99]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[4,1.373,1508,4.127,1509,4.72,2345,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2259,2.633,2260,2.613]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[814,0.472]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[89,1.342,98,2.037,294,1.829,652,4.862,2440,6.128]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[75,2.01,468,5.954,931,5.162,1510,3.998,2397,5.363]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[3,0.824,89,1.937,98,1.789,131,3.11,274,1.427,294,1.607,328,2.488,542,7.619,652,8.361,2030,3.92,2440,5.383,2441,9.07,2442,8.276,2443,5.847,2444,5.847,2445,5.847]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,0.938,46,1.998,98,2.037,657,2.921,2446,5.78]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2446,6.705,2447,7.722,2448,7.722]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[3,0.798,98,2.887,133,0.525,193,4.036,287,3.727,328,2.408,341,2.803,366,3.45,439,2.678,657,4.778,789,6.244,978,5.21,1077,6.454,1934,4.693,2446,8.193,2449,5.66,2450,5.66]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[100,3.701,129,1.761,283,3.168,680,3.416]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[129,1.718,283,3.089,680,3.331,868,3.548]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[2,0.752,11,1.107,12,1.114,14,0.709,15,1.425,48,2.125,89,0.957,98,2.176,106,1.95,111,2.097,129,1.158,133,0.475,138,1.218,152,1.442,196,2.183,282,2.593,283,3.741,291,2.501,295,1.66,389,2.855,452,4.122,548,3.937,680,2.247,696,2.75,734,2.373,805,8.803,907,4.122,1020,3.789,1047,3.56,2451,4.371,2452,7.111]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[16,0.671,1974,4.309,1975,4.222,1976,3.765,2113,2.746,2248,2.66]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,345,1.137,539,5.67,678,2.377,762,2.29,1015,3,1333,1.171,1976,4.847]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[137,3.26,205,1.647,206,1.473,1120,1.865,1149,2.218,2042,3.157,2362,3.157]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2042,3.544,2453,5.954,2454,5.954,2455,5.954,2456,6.468]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[13,0.069,21,2.569,133,0.592,152,2.589,208,3.154,345,1.219,510,4.535,1333,1.255]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1120,1.999,1575,4.769,1795,4.769,2362,3.385,2457,4.405,2458,4.512]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[739,2.507,1120,2.278,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1120,2.551,2028,4.32,2362,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[74,2.853,429,3.346,1120,1.801,1809,2.736,2022,3.346,2028,3.049,2459,4.44]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[105,2.05,1120,1.999,1252,3.536,1960,3.999,1999,3.621,2362,3.385]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[3,0.867,13,0.05,14,0.919,96,2.181,107,2.809,133,0.342,138,1.578,261,3.607,295,2.152,307,3.563,339,1.685,345,0.88,373,2.1,456,2.171,696,3.563,763,3.001,1333,0.906,1999,5.789,2005,3.304,2008,4.613,2009,4.292,2010,3.983]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[17,1.031,141,1.659,294,1.583,657,2.528,1454,3.298,2202,2.015,2324,2.314]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[814,0.472]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[16,0.626,141,1.659,294,1.583,657,2.528,1454,3.298,2113,2.561,2248,2.481]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[13,0.066,21,2.451,57,2.432,133,0.453,179,4.768,294,2.235,543,5.357,653,4.326,1454,6.499]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[141,2.27,657,3.459,1454,4.512]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[274,1.718,657,3.089,1454,4.029,1455,5.02]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[814,0.472]],["title//docs/websites/wikis/confluence-on-centos-5/",[117,2.229,2202,2.757,2461,5.022]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2461,4.485,2462,7.039,2463,5.618,2464,5.618]],["toc//docs/websites/wikis/confluence-on-centos-5/",[13,0.077,14,1.068,89,1.915,129,1.744,133,0.398,138,1.833,339,1.957,373,1.75,679,3.697,915,5.36,1000,3.005,2461,7.243]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[814,0.472]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1120,2.551,2362,4.32,2461,5.022]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2461,4.485,2463,5.618,2464,5.618,2465,7.039]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[13,0.075,14,1.026,89,1.865,129,1.676,133,0.382,138,1.762,339,1.881,345,0.982,373,1.682,679,3.554,915,5.151,1000,2.888,1333,1.011,2461,7.129]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[105,1.912,450,3.614,456,2.033,1120,1.865,2055,4.109,2056,3.157,2362,3.157]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2466,5.616]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[13,0.054,89,1.333,98,2.023,105,2.194,133,0.502,138,1.696,208,2.446,345,0.946,372,3.587,451,4.031,762,1.905,1333,0.974,1385,5.937,2056,6.036,2059,4.613,2060,4.716]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[3,0.812,155,3.064,456,2.033,1120,1.865,2065,3.064,2066,3.938,2362,3.157]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[456,2.111,804,3.753,2065,3.182,2068,4.369,2069,3.213,2227,5.194]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[3,0.968,13,0.056,133,0.582,273,3.726,294,1.888,345,0.982,439,3.251,456,2.424,486,3.845,620,2.658,1333,1.011,2065,6.212,2069,3.689]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,155,2.871,456,1.905,2065,2.871,2066,3.689,2389,2.536,2390,2.5]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[3,0.968,13,0.056,133,0.582,273,3.726,294,1.888,345,0.982,439,3.251,456,2.424,486,3.845,620,2.658,1333,1.011,2065,6.212,2069,3.689]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2461,4.485,2463,5.618,2464,5.618,2467,7.039]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[16,0.785,2389,3.391,2390,3.342,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2461,4.485,2463,5.618,2464,5.618,2468,7.039]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[16,0.785,2113,3.209,2248,3.109,2461,4.598]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2461,4.485,2463,5.618,2464,5.618,2469,7.039]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[13,0.06,14,1.113,89,1.968,129,1.817,133,0.415,138,1.91,339,2.04,345,1.065,373,1.823,1333,1.097,2461,7.362]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[16,0.587,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2389,2.536,2390,2.5]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[456,2.282,631,2.703,2056,3.544,2069,3.474,2470,5.162]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[13,0.053,89,1.309,98,1.986,133,0.361,138,1.665,208,2.401,234,2.985,282,2.367,345,0.928,359,4.629,372,3.521,451,3.957,762,1.87,1333,0.956,1385,5.862,2040,4.352,2056,5.567,2059,4.528,2060,4.629]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[3,1.017,75,2.244,328,3.071,854,5.573]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[174,4.337,342,4.187,854,4.994,2404,5.954,2471,6.468]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[3,1.114,14,0.819,75,2.457,131,2.917,289,2.292,318,2.227,322,3.677,328,3.364,399,3.39,450,3.441,549,4.548,854,8.304,1579,5.049,2039,4.234,2163,4.548,2472,5.484,2473,7.278,2474,9.27,2475,5.484,2476,5.484,2477,5.484,2478,5.484]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[17,1.106,631,2.581,2202,2.16,2324,2.481,2354,4.93,2479,5.686]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[869,4.92,2091,6.163,2354,6.163]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[13,0.074,20,3.557,345,1.314,678,2.748,1333,1.353,2354,7.335]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[3,0.716,16,0.552,89,1.024,368,3.542,2025,3.344,2026,3.288,2027,4.675,2113,2.257,2248,2.187]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,89,1.088,368,3.766,2025,3.555,2026,3.495,2389,2.536,2390,2.5]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[13,0.06,96,2.641,133,0.606,234,3.425,282,2.716,341,2.582,762,2.145,2025,4.905,2026,7.481,2040,4.994]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2113,2.561,2248,2.481]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[16,0.65,1682,4.088,1853,3.873,2374,5.507,2480,4.619,2481,5.507]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[17,0.966,100,2.768,101,2.1,204,0.737,2202,1.888,2324,2.168,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[13,0.086,14,0.903,89,1.708,101,2.352,104,4.312,129,1.475,133,0.337,152,1.836,204,1.157,208,2.237,345,0.865,373,1.48,390,1.855,762,1.742,1333,0.89,2483,4.669,2486,6.543,2488,5.251,2489,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[16,0.587,100,2.768,101,2.1,204,0.737,2113,2.4,2248,2.325,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[13,0.084,14,0.859,89,1.649,101,2.237,104,4.102,129,1.403,133,0.32,152,1.746,204,1.116,208,2.128,234,2.645,282,2.097,345,0.823,373,1.408,390,1.791,762,1.657,1333,0.847,2040,3.857,2483,4.441,2486,6.316,2488,4.994,2489,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[105,2.05,117,1.747,1252,3.536,1959,3.667,1960,3.999,2202,2.16]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2490,4.882,2491,4.494]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[13,0.086,14,1.274,133,0.475,280,4.096,451,5.198,678,2.55,1959,6.318]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2113,2.4,2248,2.325]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/applications/social-networking/planet-feed-aggregator/",[999,6.086,2025,5.191,2026,5.104]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2026,5.536,2091,6.825]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[814,0.472]],["title//docs/databases/redis/redis-on-centos-5/",[117,2.229,801,4.193,2202,2.757]],["keywords//docs/databases/redis/redis-on-centos-5/",[129,1.578,801,3.44,868,3.26,2013,4.612,2492,6.468]],["toc//docs/databases/redis/redis-on-centos-5/",[0,1.906,13,0.044,20,2.09,46,2.347,57,1.615,58,2.555,108,3.339,109,2.417,133,0.301,141,1.555,148,2.99,198,2.9,274,1.318,294,1.484,318,2.193,341,1.872,364,1.969,378,3.44,486,3.023,762,2.252,801,5.686,822,2.466,1015,2.037,1053,3.023,1824,2.794,2014,5.576]],["deprecated//docs/databases/redis/redis-on-centos-5/",[814,0.472]],["title//docs/databases/redis/redis-on-fedora-13/",[801,4.193,1120,2.551,2362,4.32]],["keywords//docs/databases/redis/redis-on-fedora-13/",[129,1.578,801,3.44,868,3.26,2013,4.612,2493,6.468]],["toc//docs/databases/redis/redis-on-fedora-13/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[16,0.785,801,3.839,2389,3.391,2390,3.342]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[129,1.578,868,3.26,2013,4.612,2494,6.468,2495,5.954]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[101,2.1,204,0.737,206,1.38,341,1.871,1120,1.747,1229,2.989,2362,2.958,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[13,0.066,14,1.215,133,0.453,204,1.41,206,2.641,345,1.163,373,1.991,1229,4.504,1333,1.198]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,427,3.224,1177,3.285,2113,2.746,2248,2.66]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[0,2.744,13,0.063,14,1.162,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,373,1.904,397,3.576,682,5.681,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[16,0.587,100,2.768,101,2.1,204,0.737,2389,2.536,2390,2.5,2482,4.687,2483,4.168]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[204,0.883,2484,5.616,2485,5.616,2486,4.994,2487,5.616]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[13,0.084,14,0.859,89,1.649,101,2.237,104,4.102,129,1.403,133,0.32,152,1.746,204,1.116,208,2.128,234,2.645,282,2.097,345,0.823,373,1.408,390,1.791,762,1.657,1333,0.847,2040,3.857,2483,4.441,2486,6.316,2488,4.994,2489,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[278,4.84,439,3.416,592,4.753,631,3.017]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[280,3.381,592,4.636,631,2.942,958,4.485]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.895,3,0.789,13,0.021,15,0.761,16,0.276,17,0.454,40,1.901,46,1.291,52,3.141,75,1.337,82,1.486,89,0.511,96,1.985,99,1.768,108,4.961,117,0.717,126,1.7,133,0.239,156,1.669,165,1.505,167,1.567,208,0.938,278,5.381,279,1.59,280,1.218,281,4.892,289,1.059,307,2.49,319,3,328,1.078,431,1.669,521,2.201,524,1.768,528,2.224,592,7.247,604,1.486,616,1.901,631,1.059,662,1.59,763,1.237,871,1.486,1044,1.451,1076,4.946,1120,0.82,1270,3.958,1297,1.323,1303,1.808,1378,2.201,1389,5.155,1406,1.505,1413,2.334,1459,2.023,1865,2.201,2191,2.201,2496,2.334,2497,2.535,2498,2.535,2499,2.535,2500,2.535,2501,2.535]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,427,3.224,1177,3.285,2389,2.901,2390,2.86]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[0,2.574,13,0.059,101,2.838,122,3.774,133,0.406,137,4.128,204,0.996,251,3.243,365,4.986,397,4.427,682,6.099,1177,5.121]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.205,16,0.671,427,3.224,1177,3.285,2113,2.746,2248,2.66]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[16,0.785,801,3.839,2113,3.209,2248,3.109]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[129,1.578,868,3.26,2013,4.612,2495,5.954,2502,6.468]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[98,1.763,1077,4.598,1733,5.597,1932,4.778,2503,5.304,2504,5.761]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1408,5.194,1932,4.96,2505,5.982,2506,5.982,2507,5.982,2508,5.982]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[3,1.252,89,1.026,98,2.718,149,2.357,193,3.629,267,3.021,328,3.185,330,4.062,657,2.234,685,2.502,1077,8.712,1408,7.713,1932,7.366,2163,4.22,2503,10.049,2509,5.089,2510,5.089,2511,5.089]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[13,0.064,133,0.439,509,4.412]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[511,5.616,512,5.616,514,5.616,2512,6.468,2513,6.468]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[11,2.143,12,2.157,13,0.074,133,0.512,509,6.239]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[2,1.143,117,2.041,1158,3.669,2202,2.524]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[0,3.243,2,1.238,4,1.792,13,0.063,14,0.807,21,1.627,57,1.615,129,1.318,133,0.301,138,1.385,141,1.555,205,1.544,206,1.38,274,1.318,294,1.484,301,2.37,339,1.479,345,0.772,364,1.969,373,1.322,390,1.182,762,1.555,822,2.466,1015,2.037,1149,2.079,1333,0.795,1674,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[814,0.472]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[17,1.292,801,3.839,2202,2.524,2324,2.899]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[129,1.578,868,3.26,2013,4.612,2514,6.468,2515,6.468]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[0,1.849,13,0.042,20,2.028,46,2.296,57,1.567,58,2.48,108,3.24,109,2.345,133,0.292,141,1.509,148,2.902,198,2.814,274,1.279,294,1.44,318,2.128,341,1.816,345,0.749,364,1.911,378,3.338,486,2.933,762,2.203,801,5.618,822,2.393,1015,1.977,1053,2.933,1333,0.772,1824,2.711,2014,5.455]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[204,0.985,210,4.462,1120,2.336,1153,4.04]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[679,3.346,2370,5.616,2516,6.468,2517,6.468,2518,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[3,1.231,13,0.071,152,2.653,204,1.192,345,1.25,1153,6.048,1333,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[204,0.985,1120,2.336,1153,4.04,2362,3.955]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[679,3.346,2370,5.616,2519,6.468,2520,6.468,2521,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[3,1.231,13,0.071,152,2.653,204,1.192,345,1.25,1153,6.048,1333,1.286]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[16,0.724,204,0.909,1153,3.726,2113,2.959,2248,2.867]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[679,3.346,1957,5.954,1958,5.162,2522,6.468,2523,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[3,1.072,13,0.08,14,1.137,152,2.31,163,5.102,204,1.038,345,1.088,373,1.863,679,3.936,1153,5.54,1333,1.12,2323,5.706]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[16,0.724,204,0.909,1153,3.726,2389,3.127,2390,3.083]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[679,3.346,1958,5.162,2524,6.468,2525,6.468,2526,6.468]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[3,1.121,13,0.083,152,2.414,163,5.331,204,1.085,345,1.137,679,4.113,1153,5.7,1333,1.171,2323,5.962]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[30,2.833,56,3.19,75,1.791,822,2.631,891,3.377,1297,3.007,1554,4.109]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[823,4.296,824,4.296,825,4.172,826,3.968,1297,2.904,1555,4.44,1556,4.44]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[30,2.833,56,3.19,117,1.629,146,2.408,822,2.631,891,3.377,1554,4.109]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[117,1.574,823,4.296,824,4.296,825,4.172,826,3.968,1555,4.44,1556,4.44]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[30,3.037,56,3.42,341,2.141,822,2.821,891,3.621,1554,4.405]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[823,4.619,824,4.619,825,4.486,826,4.266,1555,4.774,1556,4.774]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[13,0.059,20,2.823,30,5.636,100,3.74,133,0.536,294,2.005,301,3.201,364,2.66,431,4.804,822,3.331,891,4.276,1554,5.202]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[2,1.143,75,2.244,1158,3.669,1297,3.768]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[0,2.424,2,1.465,4,1.804,13,0.075,14,1.026,129,1.676,133,0.382,138,1.762,205,1.964,206,1.756,339,1.881,345,0.982,373,1.682,390,1.504,1149,2.645,1333,1.011]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[814,0.472]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[328,2.832,349,4.004,579,4.644,2394,4.992,2527,5.78]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1510,4.352,2527,6.112,2528,7.039,2529,6.48]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[3,1.432,98,3.108,126,4.352,193,4.629,328,2.762,349,3.904,408,4.072,616,4.868,621,4.072,787,5.383,2527,10.271,2530,6.491,2531,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[98,2.209,365,4.933,366,4.4,2532,5.986]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[328,2.995,1499,5.838,2533,7.039,2534,7.039]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[3,1.067,75,2.352,96,1.831,98,3.213,99,3.602,136,3.602,195,3.772,244,3.772,262,3.401,289,2.158,328,2.197,350,3.105,366,6.401,408,3.24,431,3.401,589,3.682,603,4.484,620,1.998,829,4.484,1049,3.529,2532,7.428,2535,5.164,2536,4.754,2537,5.164]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[98,2.412,579,5.499,877,5.621]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[98,1.979,664,4.612,877,4.612,958,4.12,2529,5.954]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[3,1.007,98,2.187,328,4.041,657,3.137,862,5.221,877,8.441,958,6.052,1077,5.704,2281,5.36,2538,6.206,2539,7.147]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[2,1.143,1120,2.336,1158,3.669,2362,3.955]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[0,3.272,2,1.252,4,1.808,13,0.064,21,1.652,57,1.64,129,1.338,133,0.305,138,1.406,141,1.58,205,1.568,206,1.402,274,1.338,294,1.507,301,2.407,339,1.502,340,3.551,345,0.784,364,2,390,1.201,762,1.58,822,2.504,1015,2.069,1120,1.775,1149,2.111,1333,0.807]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[2,1.054,16,0.724,1158,3.384,2113,2.959,2248,2.867]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.262,75,2.01,206,1.653,1158,3.288,1673,3.038]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[0,3.215,2,1.224,4,1.777,13,0.063,14,0.795,16,0.578,21,1.603,57,1.59,129,1.298,133,0.296,138,1.364,141,1.532,205,1.521,206,1.36,274,1.298,294,1.462,301,2.334,339,1.457,340,3.444,345,0.761,364,1.939,373,1.302,390,1.165,762,1.532,822,2.429,1015,2.007,1149,2.048,1333,0.783]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[17,1.031,96,2.042,703,4.32,739,2.052,1032,2.163,2202,2.015,2324,2.314]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[528,3.346,739,2.304,1032,2.428,1075,3.89,2325,5.363]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[13,0.054,14,0.988,89,1.333,120,3.106,133,0.502,138,1.696,274,1.613,339,1.811,345,0.946,373,1.619,739,3.211,740,3.812,756,4.83,1032,3.384,1033,3.876,1333,0.974,2326,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[17,0.966,74,2.768,149,2.5,213,3.164,631,2.256,2202,1.888,2324,2.168,2540,4.687]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[74,3.316,1615,5.363,2540,5.616,2541,6.468,2542,6.468]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[2,0.958,13,0.079,98,1.85,100,3.101,133,0.59,180,4.312,205,1.729,294,1.662,318,2.456,341,2.096,345,0.865,440,3.422,678,1.808,906,4.826,1010,2.927,1333,0.89,2538,5.251,2540,9.206]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[2,1.054,17,1.192,1158,3.384,2202,2.328,2324,2.674]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.014,63,2.078,75,1.617,206,1.329,1158,2.643,1673,2.443,1808,4.313,1809,2.557]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[0,3.433,2,1.173,4,1.718,13,0.06,14,0.75,17,1.326,21,2.232,57,1.5,129,1.224,133,0.279,138,1.287,141,1.445,205,1.435,206,1.282,274,1.224,294,1.379,301,2.202,339,1.374,345,0.718,364,1.829,373,1.228,390,1.099,762,1.445,822,2.291,990,4.356,1015,1.893,1149,1.932,1333,0.739,2543,5.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[16,0.552,137,2.874,205,1.452,206,1.298,1149,1.955,1165,2.497,2042,2.783,2113,2.257,2248,2.187]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1853,3.873,2453,5.507,2454,5.507,2480,4.619,2544,5.507,2545,5.507]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[13,0.067,21,2.509,133,0.584,152,2.528,208,3.08,345,1.191,510,4.428,678,2.489,1333,1.226]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[390,1.352,739,2.2,1032,2.319,1120,1.999,2272,3.457,2362,3.385]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2546,4.882,2547,3.769,2548,3.769,2549,3.769,2550,3.769]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[3,1.033,13,0.059,14,1.095,15,2.201,21,1.491,89,0.997,100,2.536,133,0.538,152,1.502,208,1.83,295,2.564,339,1.355,345,0.707,351,3.469,390,2.115,397,2.275,656,1.848,740,2.092,749,1.857,1032,3.279,1333,0.728,1570,3.016,2218,3.381,2272,4.104]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[2,0.978,204,0.843,205,1.766,275,3.14,1120,1.999,2362,3.385]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[659,6.163,2365,7.109,2551,7.722]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[2,0.926,13,0.078,120,2.747,133,0.581,138,1.5,157,2.689,204,1.311,209,2.616,287,3.85,289,2.444,318,2.375,339,1.601,345,0.836,348,3.386,435,2.808,602,3.668,888,4.385,929,2.634,1333,0.861,1533,4.17,2366,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[3,0.871,129,1.507,390,1.352,1041,3.35,1120,1.999,2362,3.385]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1826,5.962,1827,6.404,2552,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.409,927,4.704,928,4.047,929,3.428,1333,1.12,1665,5.706]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[814,0.472]],["title//docs/databases/postgresql/fedora-13/",[3,0.871,129,1.507,134,2.711,1041,3.35,1120,1.999,2362,3.385]],["keywords//docs/databases/postgresql/fedora-13/",[1043,4.707,1141,5.178,2553,7.722]],["toc//docs/databases/postgresql/fedora-13/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[4,1.298,206,1.701,1120,2.154,1149,2.563,2362,3.648]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[4,1.373,1508,4.127,1509,4.72,2554,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,206,1.865,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[4,1.298,1120,2.154,1149,2.563,1809,3.273,2362,3.648]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[4,1.373,1508,4.127,1998,4.911,2554,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,208,2.698,294,2.005,345,1.043,510,3.88,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[3,0.761,109,2.416,110,3.337,149,2.5,1120,1.747,2061,2.899,2062,3.85,2362,2.958]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[3,0.812,101,2.241,109,2.578,198,3.094,680,2.726,1120,1.865,2362,3.157]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2,0.978,205,1.766,246,3.14,1120,1.999,2042,3.385,2362,3.385]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2042,3.857,2455,6.48,2466,6.112,2555,6.48]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[13,0.057,14,1.047,81,3.561,133,0.39,140,4.395,274,2.287,345,1.002,373,1.715,620,3.627,717,5.795,777,6.406,1333,1.032,2042,5.136]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2,0.978,205,1.766,246,3.14,1120,1.999,2042,3.385,2247,3.385]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2042,3.857,2292,5.838,2555,6.48,2556,7.039]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[13,0.057,14,1.047,81,3.561,133,0.39,140,4.395,274,2.287,345,1.002,373,1.715,620,3.627,717,5.795,777,6.406,1333,1.032,2042,5.136]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[814,0.472]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2557,6.268]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[17,1.158,2557,5.616,2558,6.468,2559,6.468,2560,6.468]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[13,0.074,152,2.791,345,1.314,557,7.335,1333,1.353,2557,7.981]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[210,3.819,390,1.352,739,2.2,1032,2.319,1120,1.999,2272,3.457]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2561,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[3,1.033,13,0.059,14,1.095,15,2.201,21,1.491,89,0.997,100,2.536,133,0.538,152,1.502,208,1.83,295,2.564,339,1.355,345,0.707,351,3.469,390,2.115,397,2.275,656,1.848,740,2.092,749,1.857,1032,3.279,1333,0.728,1570,3.016,2218,3.381,2272,4.104]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[16,0.671,105,2.05,141,1.779,1172,3.667,2113,2.746,2248,2.66]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[13,0.087,20,1.888,89,0.984,96,1.73,100,3.721,133,0.482,251,2.169,295,1.706,317,3.479,341,1.691,345,0.698,364,1.779,402,2.86,678,1.459,740,2.063,762,1.405,924,5.791,1033,2.86,1049,3.334,1172,6.79,1331,5.062,1333,0.718,1730,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[2,1.143,732,3.188,1120,2.336,2362,3.955]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1772,5.142,1773,5.279,2562,7.039,2563,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,1.408,246,3.669,1120,2.336,2362,3.955]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,1.167,157,2.751,684,2.99,2377,5.194,2466,5.194,2554,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[4,2.084,13,0.08,20,2.381,21,1.854,46,1.847,57,1.84,58,2.911,89,1.24,141,1.772,274,1.501,301,2.7,318,2.499,345,0.88,678,1.84,762,1.772,822,2.809,1015,2.321,1333,0.906,1674,4.613,1824,3.183]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[2,0.978,16,0.671,141,1.779,2113,2.746,2164,4.405,2248,2.66]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[141,2.463,2164,6.098]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[13,0.06,133,0.643,147,4.215,148,4.124,205,2.13,273,4.04,345,1.065,1333,1.097,2164,8.241]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2113,2.746,2248,2.66,2270,3.621]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[117,1.883,204,0.909,566,4.115,1284,3.061,2202,2.328]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[0,2.629,13,0.079,14,1.113,101,3.797,133,0.543,204,1.332,251,3.311,373,1.823,776,3.819,1284,4.488]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,566,3.819,1284,2.84,2113,2.746,2248,2.66]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,566,3.819,1284,2.84,2389,2.901,2390,2.86]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[13,0.083,101,3.093,133,0.567,204,1.085,251,3.535,345,1.137,776,4.077,1284,4.682,1333,1.171]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[16,0.626,141,1.659,726,4.109,1930,4.448,2035,4.109,2113,2.561,2248,2.481]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[16,0.703,2035,4.612,2036,5.616,2248,2.785,2480,4.994]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[3,0.898,13,0.071,14,0.952,95,3.186,133,0.56,234,2.931,251,2.834,282,2.324,345,0.912,359,4.546,554,3.999,678,1.906,1329,5.087,1333,0.939,2035,6.269,2037,5.286,2039,4.922,2040,4.274,2564,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[16,0.671,204,0.843,1284,2.84,2113,2.746,2248,2.66,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[16,0.605,63,2.223,204,0.759,1284,2.558,2248,2.396,2481,5.122,2566,4.44]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[3,0.932,13,0.054,14,0.988,63,2.642,101,2.572,122,3.421,133,0.368,138,2.312,204,0.902,251,2.94,294,1.817,345,0.946,364,2.411,373,1.619,685,3.251,1284,4.716,1333,0.974,1406,3.925]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[17,1.106,204,0.843,566,3.819,1284,2.84,2202,2.16,2324,2.481]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[63,2.812,204,0.961,1284,3.237,1289,4.72]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[13,0.08,14,1.137,101,2.96,133,0.551,204,1.038,251,3.383,345,1.088,373,1.863,776,3.901,1284,4.551,1333,1.12]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[814,0.472]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[3,0.761,4,1.053,6,2.269,271,3.766,464,4.048,762,1.555,2403,4.168,2567,4.687]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[4,0.848,6,1.828,157,1.999,204,0.593,283,1.908,465,5.31,684,2.173,2568,4.348,2569,4.348,2570,4.348]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[4,1.314,6,2.833,96,2.389,105,2.236,133,0.375,157,3.098,204,0.92,271,6.37,283,2.957,307,3.903,397,3.098,453,4.053,464,6.847,678,2.015,762,1.941,2009,4.701,2403,5.203,2567,5.851]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[17,1.031,869,3.67,2202,2.015,2324,2.314,2571,5.761,2572,5.761,2573,5.304]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2574,7.039,2575,7.039,2576,7.039,2577,5.435]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[0,2.522,13,0.077,20,2.766,57,2.137,101,2.78,133,0.398,141,2.059,274,1.744,345,1.022,678,2.137,762,2.736,1015,2.696,1333,1.052,2573,8.745]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[16,0.671,274,1.507,704,3.113,869,3.935,2113,2.746,2248,2.66]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[16,0.65,422,3.094,631,2.5,704,3.015,2480,4.619,2578,5.982]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[16,0.671,739,2.2,1165,3.037,1987,3.667,2113,2.746,2248,2.66]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1987,3.839,1990,4.42,1991,4.85,2579,6.468,2580,5.954]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[13,0.058,14,1.068,282,2.606,341,3.292,345,1.022,373,1.75,908,5.097,929,3.22,958,4.553,1333,1.052,1610,4.419,1787,4.419,1987,6.334,1992,5.221]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[16,0.587,390,1.182,739,1.923,1032,2.026,1165,2.654,1566,2.844,2113,2.4,2248,2.325]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[16,0.605,739,1.982,1566,2.931,2248,2.396,2580,5.122,2581,5.564,2582,5.564]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[16,0.626,224,3.064,916,3.562,2280,4.598,2281,4.32,2389,2.706,2390,2.668]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1043,3.392,2285,4.831,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2583,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[16,0.587,224,2.871,916,3.337,1165,2.654,2113,2.4,2248,2.325,2280,4.308,2281,4.048]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1043,3.392,2285,4.831,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2584,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2113,2.4,2248,2.325]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1974,5.499,1975,5.387,2585,6.845]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1975,4.811,2585,6.112,2586,7.039,2587,6.48]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2585,7.063]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1375,5.986,1974,5.035,1975,6.535]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[732,2.857,1375,5.363,2587,5.954,2588,6.468,2589,6.468]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[13,0.09,345,1.314,678,2.748,1333,1.353,1375,7.622]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[16,0.587,739,1.923,1000,2.269,1165,2.654,1351,3.555,2113,2.4,2248,2.325,2333,4.308]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1569,4.266,2337,4.774,2338,4.774,2590,5.982,2591,5.982,2592,5.507]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[16,0.587,105,1.791,1165,2.654,1252,3.09,1959,3.204,1960,3.495,2113,2.4,2248,2.325]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2593,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[46,2.167,205,2.064,685,3.549,2594,6.268]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[206,1.653,646,5.616,649,3.89,1151,4.259,2594,5.616]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2594,7.063]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2113,2.561,2248,2.481]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.124,16,0.626,1149,2.218,1165,2.833,1809,2.833,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2595,5.616]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[4,0.939,13,0.077,14,0.719,16,0.781,21,1.45,84,4.73,89,0.97,120,2.26,131,3.821,133,0.53,138,1.234,152,1.461,208,1.78,282,1.755,339,1.318,345,0.688,373,1.178,456,1.698,510,2.56,1149,1.853,1333,0.709,1404,3.019,1510,2.975,1765,4.179,1766,5.957,1809,2.366,2274,3.116,2361,3.609,2596,7.183,2597,4.812]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[16,0.521,101,1.865,204,0.654,206,1.225,341,1.661,1165,2.357,1229,2.654,2113,2.131,2248,2.065,2383,3.419]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1673,2.614,1841,3.803,1842,3.803,2386,4.064,2387,4.064,2598,5.564,2599,5.564]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[13,0.056,14,1.026,133,0.382,159,5.304,204,1.262,206,2.364,209,3.074,234,3.159,282,3.373,345,0.982,373,1.682,1229,3.804,1252,3.932,1333,1.011,1844,5.151,2040,4.606]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,740,2.283,1033,3.164,1165,2.654,1970,3.204,2113,2.4,2248,2.325]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1353,3.491,1970,3.303,1972,4.172,1973,4.172,2223,4.831,2224,4.614,2600,5.564]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[46,1.854,213,3.621,313,3.999,2264,6.641,2601,5.686]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2268,5.162,2602,6.468,2603,5.954,2604,6.468,2605,6.468]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[13,0.083,57,2.377,141,2.29,274,1.94,345,1.137,678,2.377,762,2.29,1015,3,1333,1.171,2264,6.139,2601,7.32]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[814,0.472]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[46,1.998,213,3.902,313,4.31,2264,5.14,2606,5.78]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2268,5.618,2603,6.48,2606,6.112,2607,7.039]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[13,0.084,57,2.432,141,2.343,274,1.985,345,1.163,678,2.432,762,2.343,1015,3.069,1333,1.198,2606,7.063]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2113,2.257,2248,2.187]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2113,2.4,2248,2.325]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[3,0.716,16,0.552,155,2.701,456,1.792,1165,2.497,2065,2.701,2066,3.471,2113,2.257,2248,2.187]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[456,2.111,804,3.753,2065,3.182,2067,4.774,2068,4.369,2069,3.213]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,205,1.543,246,2.744,1165,2.654,2042,2.958,2113,2.4,2248,2.325]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1853,4.187,2042,3.544,2480,4.994,2544,5.954,2545,5.954]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[13,0.054,14,0.988,21,1.992,81,3.361,133,0.368,140,4.148,274,2.199,301,2.902,345,0.946,373,1.619,620,3.488,717,5.573,777,6.161,993,3.391,1333,0.974,2042,4.94]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2,0.804,46,1.524,77,2.941,134,2.228,142,2.439,274,1.239,308,3.054,599,3.014,2608,3.921]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2048,5.162,2608,4.994,2609,6.468,2610,5.954,2611,5.954]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[3,1.263,13,0.073,133,0.499,624,4.009,1074,5.128,2608,8.473]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[3,0.761,16,0.587,129,1.317,390,1.182,1041,2.928,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1446,4.636,2070,5.435,2071,5.142,2612,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[3,1.146,13,0.066,96,2.884,133,0.575,294,2.235,345,1.163,390,2.486,1333,1.198]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[2,0.855,16,0.587,204,0.737,205,1.543,275,2.744,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[204,0.816,684,2.99,1982,4.369,2613,5.982,2614,5.982,2615,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[16,0.724,1010,3.222,1165,3.273,2113,2.959,2248,2.867]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2205,6.404,2206,6.404,2616,7.722]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[294,2.593,948,7.076,1010,4.568,2111,7.826,2424,8.194]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[16,0.626,46,1.729,340,3.73,681,3.512,1165,2.833,2113,2.561,2248,2.481]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2617,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[4,1.053,6,2.27,13,0.063,14,0.807,21,1.627,57,1.615,89,1.089,105,1.792,129,1.318,133,0.561,141,1.555,152,1.64,204,0.737,274,1.318,289,2.257,345,0.772,353,3.767,373,1.322,681,5.602,682,3.056,739,1.923,762,1.555,1015,2.037,1118,3.767,1177,2.872,1333,0.795,2232,4.689]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[3,0.761,16,0.587,129,1.317,134,2.369,1041,2.928,1165,2.654,2113,2.4,2248,2.325]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[134,2.625,1042,4.774,1043,3.646,1141,4.011,2618,5.982,2619,5.982]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,1.205,16,0.671,246,3.14,1165,3.037,2113,2.746,2248,2.66]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,1.085,16,0.605,157,2.558,684,2.781,2480,4.296,2595,4.831,2620,5.564]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[4,2.053,13,0.079,14,0.888,16,0.646,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[128,5.148,631,3.017,1659,6.268,2621,5.986]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2621,5.838,2622,6.48,2623,6.48,2624,6.48]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[3,0.807,13,0.066,75,1.116,77,2.079,81,2.912,127,2.505,128,2.56,133,0.319,138,0.921,149,1.663,244,2.623,268,6.881,287,2.364,294,1.574,308,2.159,352,2.56,453,2.159,599,2.131,631,3.409,663,3.118,734,1.794,871,2.105,889,3.305,893,2.865,977,3.118,1412,3.305,1510,2.22,1646,3.305,1985,3.305,2069,1.928,2415,3.305,2416,3.305,2451,5.273,2621,8.847,2623,3.305,2624,3.305,2625,3.59,2626,3.59,2627,3.59,2628,3.59,2629,3.59,2630,3.59,2631,3.59]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[3,0.812,81,2.928,129,1.406,134,2.528,142,2.767,620,2.229,2608,4.448]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2048,4.774,2608,4.619,2610,5.507,2611,5.507,2632,5.982,2633,5.982]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[3,1.263,13,0.073,133,0.499,624,4.009,1074,5.128,2608,8.473]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[17,1.031,739,2.052,1000,2.422,1351,3.794,2202,2.015,2324,2.314,2333,4.598]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1569,4.266,2336,5.507,2337,4.774,2338,4.774,2634,5.982,2635,5.982]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[46,1.998,58,3.15,76,3.952,439,3.15,2636,5.78]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1192,4.015,1613,4.15,1614,4.15,2636,4.516,2637,5.2,2638,4.788,2639,4.788,2640,5.2]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[13,0.045,42,4.069,58,2.636,89,1.885,98,2.447,142,2.676,155,2.963,234,3.676,255,4.446,407,4.619,653,2.963,662,3.495,685,3.931,1403,4.837,1798,6.173,1890,6.942,2394,4.177,2457,3.973,2496,5.128,2636,8.874,2641,5.128]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.905,16,0.587,105,1.791,1306,4.308,1362,3.943,1752,4.168,2389,2.536,2390,2.5]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1306,4.44,1362,4.064,1366,4.831,1752,4.296,2642,5.564,2643,5.564,2644,5.564]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[13,0.08,14,0.783,15,1.573,20,2.028,30,2.577,89,1.542,133,0.553,209,2.345,224,4.069,227,3,295,1.833,301,2.3,330,4.182,345,0.749,487,3.151,491,3.393,678,1.567,732,2.315,763,2.556,891,3.072,1333,0.772,1362,5.587,1374,4.824,1752,5.906,1756,4.824]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[17,1.106,105,2.05,141,1.779,1172,3.667,2202,2.16,2324,2.481]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[141,2.463,1172,5.076]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[13,0.086,20,2.028,96,1.858,100,3.922,133,0.503,317,3.737,341,1.816,345,0.749,364,1.911,402,3.072,678,1.567,740,2.216,762,1.509,924,6.105,1033,3.072,1172,6.93,1331,5.336,1333,0.772,1730,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.124,16,0.626,206,1.473,1149,2.218,1165,2.833,2113,2.561,2248,2.481]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[4,1.373,1508,4.127,1509,4.72,2595,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[13,0.047,14,0.859,21,1.733,36,2.376,84,5.387,89,1.16,105,1.909,120,2.702,131,4.351,133,0.53,138,1.475,152,1.746,206,1.47,208,2.128,274,1.403,282,2.097,339,1.575,345,0.823,373,1.408,584,3.788,1149,2.214,1333,0.847,1404,3.608,1506,3.608,1510,3.556]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[814,0.472]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[98,2.412,2645,7.257,2646,6.845]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[17,1.158,169,3.62,2577,4.994,2646,5.616,2647,6.468]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[13,0.076,16,0.762,17,1.254,45,2.135,75,2.178,117,1.981,155,3.726,554,4.395,1120,2.267,1297,3.657,2113,3.114,2202,3.278,2248,3.017,2324,2.814,2646,8.139]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[814,0.472]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[15,2.167,129,1.761,167,4.462,390,1.58]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[169,4.322,390,1.691,2648,7.109]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[3,1.207,46,1.176,89,1.875,95,2.581,98,0.696,109,2.311,120,1.841,129,1.498,169,5.877,177,5.974,195,5.921,275,3.12,289,3.579,294,1.077,390,1.657,406,6.966,870,2.537,907,1.975,1044,4.331,1506,1.427,1665,1.705,1930,3.026,2648,5.651,2649,2.274,2650,6.922,2651,6.138,2652,3.918,2653,3.918,2654,2.274,2655,2.093,2656,2.274]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[17,1.106,45,1.883,46,1.854,2202,2.16,2270,3.621,2324,2.481]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[16,0.671,45,1.883,46,1.854,2270,3.621,2389,2.901,2390,2.86]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1108,3.943,2195,4.612,2196,4.612,2270,3.792,2271,4.85]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[13,0.09,53,2.699,57,2.338,141,1.555,204,0.737,206,1.38,251,2.401,274,1.318,294,1.484,345,0.772,390,1.182,762,1.555,1015,2.037,1032,2.027,1333,0.795,1334,3.556,1787,3.339,1821,2.819,2270,3.166,2272,3.023,2273,4.05,2274,3.496,2275,4.05,2276,4.05,2277,4.05,2278,4.05,2279,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[814,0.472]],["title//docs/websites/wikis/dokuwiki-engine/",[369,7.993,2657,7.993]],["keywords//docs/websites/wikis/dokuwiki-engine/",[206,1.974,2022,4.644,2658,7.722]],["toc//docs/websites/wikis/dokuwiki-engine/",[13,0.086,57,2.55,141,2.456,274,2.08,678,2.55,762,2.456,1015,3.217,2657,7.849]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[16,0.671,46,1.854,390,1.352,1821,3.224,2389,2.901,2390,2.86]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[16,0.765,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[13,0.075,98,2.102,133,0.515,152,2.086,204,0.938,234,3.159,274,1.676,277,4.792,282,2.505,364,2.505,602,4.31,656,2.566,1821,5.841,2659,6.324]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[46,1.998,205,1.903,206,1.701,685,3.273,2660,6.128]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[649,4.234,732,3.109,2661,7.039,2662,7.039]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[13,0.083,57,2.377,141,2.29,206,2.032,274,1.94,345,1.137,678,2.377,762,2.29,1015,3,1333,1.171,2660,7.32]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[814,0.472]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[117,2.229,2202,2.757,2279,5.191]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[8,3.551,117,1.692,1083,3.597,1605,4.774,2279,3.939,2663,5.507]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[13,0.078,14,0.874,89,1.179,120,2.747,133,0.461,138,1.5,152,1.775,179,3.428,204,0.798,208,2.163,274,1.427,318,2.375,339,1.601,353,4.079,373,1.431,543,3.85,762,1.684,1506,3.668,1820,4.17,2279,7.538]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[814,0.472]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[17,1.292,1290,4.18,2202,2.524,2324,2.899]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[63,2.812,1290,4.077,1673,3.307,2015,5.279]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,2.291,13,0.082,14,0.97,89,1.309,96,2.301,100,3.328,101,3.952,129,1.584,345,0.928,373,1.589,678,1.941,1290,6.633,1333,0.956,2016,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[814,0.472]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[46,2.167,209,3.23,2664,6.645,2665,6.645]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1809,3.797,2664,7.109,2666,7.722]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[3,1.05,13,0.094,21,2.244,96,2.641,97,5.441,142,3.578,251,3.311,345,1.065,348,4.314,2665,8.986,2667,7.448]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[3,0.761,17,0.966,89,1.088,368,3.766,2025,3.555,2026,3.495,2202,1.888,2324,2.168]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[368,4.512,994,4.724,999,4.994,2025,4.259,2026,4.187]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[13,0.066,96,2.884,133,0.632,341,2.819,762,2.343,2025,5.357,2026,7.351]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[117,1.883,1974,4.644,1975,4.55,1976,4.058,2202,2.328]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[20,3.222,57,2.489,133,0.463,141,2.398,274,2.031,539,5.937,678,2.489,762,2.398,1015,3.141,1976,5.075]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[814,0.472]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[3,0.812,46,1.729,108,3.562,322,3.863,327,4.109,715,3.794,1733,3.938]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[75,2.01,322,4.337,715,4.259,901,4.512,2668,6.468]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[3,0.932,13,0.054,46,1.985,56,3.662,96,2.344,324,5.484,327,4.716,328,2.813,408,4.148,431,4.355,624,2.959,715,8.017,1733,4.519,2394,4.959,2669,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2021,5.53]],["keywords//docs/websites/wikis/twiki/",[429,4.234,1809,3.461,2021,4.029,2022,4.234]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[814,0.472]],["title//docs/applications/messaging/advanced-irssi-usage/",[97,5.758,453,4.741,2670,6.291]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1468,4.619,1730,4.173,1731,5.194,1732,5.194,2670,4.774,2671,5.507]],["toc//docs/applications/messaging/advanced-irssi-usage/",[3,1.202,164,7.071,196,3.921,345,1.219,402,4.998,1333,1.255,1459,6.805,1475,6.805,1570,5.198]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[3,0.938,619,5.52,1038,5.52,1468,5.14,2670,5.313]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1468,4.619,1730,4.173,1731,5.194,1732,5.194,2670,4.774,2671,5.507]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[13,0.039,36,1.988,46,2.156,81,3.651,96,1.706,97,3.515,113,3.991,133,0.478,295,1.683,328,2.047,402,2.821,431,4.73,631,3.002,642,5.957,653,2.56,678,1.439,956,4.179,1033,2.821,1252,2.755,1730,5.011,1736,4.43,1738,6.613,2394,3.609,2670,8.138,2672,4.812,2673,4.812,2674,4.812,2675,4.812]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[3,0.812,101,2.241,109,2.578,117,1.629,198,3.094,680,2.726,2202,2.015]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[129,1.718,680,3.331,868,3.548,1018,4.811]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[3,0.761,16,0.587,101,2.1,109,2.416,198,2.899,680,2.554,2389,2.536,2390,2.5]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[3,0.761,6,2.269,17,0.966,105,1.791,204,0.737,283,2.369,2202,1.888,2324,2.168]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[0,1.796,2,0.806,3,0.717,6,3.148,105,1.689,139,3.021,156,3.352,160,2.707,167,3.146,173,3.295,204,0.695,283,2.234,345,0.728,554,3.193,588,3.146,609,3.55,634,3.629,685,4.367,1075,3.061,1333,0.749,1406,4.445,1630,3.352,1981,2.818,2030,6.999,2031,3.629,2032,3.717,2033,3.717,2034,3.717,2403,3.93]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[3,0.761,6,2.269,16,0.587,105,1.791,204,0.737,283,2.369,2389,2.536,2390,2.5]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[210,4.873,1120,2.551,2028,4.32]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[74,2.853,429,3.346,1120,1.801,1809,2.736,2022,3.346,2028,3.049,2459,4.44]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[814,0.472]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[16,0.785,2028,3.955,2389,3.391,2390,3.342]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[16,0.605,74,2.853,429,3.346,1809,2.736,2022,3.346,2028,3.049,2390,2.576]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[3,1.304,13,0.056,133,0.515,267,4.078,345,0.982,399,4.247,453,4.131,628,3.845,1333,1.011,1610,4.247,2028,6.592,2460,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[3,0.812,101,2.241,109,2.578,198,3.094,210,3.562,680,2.726,1120,1.865]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[3,0.882,13,0.081,57,1.872,89,1.262,96,3.078,107,2.859,141,1.803,261,3.67,274,1.528,318,3.526,345,0.895,439,2.963,678,1.872,680,4.716,762,1.803,1015,2.362,1333,0.922,1824,3.239]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[3,0.812,6,2.422,105,1.912,117,1.629,204,0.786,283,2.528,2202,2.015]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[0,1.849,2,0.83,3,0.739,6,3.216,105,1.739,139,3.111,156,3.451,160,2.787,167,3.24,173,3.393,204,0.715,283,2.3,554,3.288,588,3.24,609,3.656,634,3.737,685,4.442,1075,3.151,1406,4.541,1630,3.451,1981,2.902,2030,7.082,2031,3.737,2032,3.828,2033,3.828,2034,3.828,2403,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[16,0.587,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2389,2.536,2390,2.5]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[13,0.062,133,0.649,138,1.951,339,2.084,345,1.088,588,4.704,740,3.218,1333,1.12,2053,6.706]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1974,5.499,1975,5.387,2676,6.845]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[206,1.799,1673,3.307,1977,5.142,2676,6.112]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[13,0.067,57,2.489,141,2.398,274,2.031,345,1.191,678,2.489,762,2.398,1015,3.141,1333,1.226,2676,7.229]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[814,0.472]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[13,0.047,75,1.791,104,4.109,554,3.614,1974,4.019,1975,3.938,2677,5.003]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[206,1.799,1673,3.307,1977,5.142,2677,6.112]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[13,0.081,678,2.981,2677,8.656]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1005,3.832]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[4,1.298,206,1.701,210,4.115,1120,2.154,1149,2.563]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[4,1.373,1508,4.127,1509,4.72,2678,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,206,1.865,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[4,1.298,210,4.115,1120,2.154,1149,2.563,1809,3.273]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[4,1.373,1508,4.127,1998,4.911,2678,6.112]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[13,0.058,21,2.154,96,2.534,133,0.594,138,1.833,152,2.17,208,2.644,294,1.964,339,1.957,345,1.022,1149,3.657,1333,1.052,1534,5.221,1809,3.514]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[814,0.472]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[3,0.812,6,2.422,105,1.912,204,0.786,210,3.562,283,2.528,1120,1.865]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[6,2.719,204,0.883,283,2.838,1686,4.259,2029,4.724]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[0,1.822,2,0.818,3,0.728,6,3.181,105,1.714,139,3.065,156,3.401,160,2.747,162,3.682,173,3.343,204,0.705,283,2.266,345,0.738,554,3.24,588,3.192,609,3.602,634,3.682,685,4.404,1075,3.105,1333,0.76,1406,4.492,1630,3.401,1981,2.859,2030,7.04,2031,3.682,2032,3.772,2033,3.772,2034,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[16,0.626,390,1.261,739,2.052,1032,2.163,1566,3.035,2389,2.706,2390,2.668]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1569,4.612,2679,5.954,2680,6.468,2681,6.468,2682,6.468]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[3,0.678,13,0.039,14,1.073,15,2.156,21,1.45,89,0.97,96,1.706,133,0.568,152,2.181,208,1.78,294,1.322,295,2.512,339,1.318,345,0.688,351,3.399,390,1.882,397,2.213,656,1.798,657,2.112,740,2.035,749,1.806,993,2.467,1032,3.226,1333,0.709,1566,2.535,1570,2.933,1571,3.515,2218,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[117,1.883,204,0.909,275,3.384,656,2.487,749,2.499]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[684,2.99,866,4.173,1002,4.774,1682,4.088,1683,5.507,2683,4.96]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[204,0.843,210,3.819,275,3.14,656,2.307,749,2.319,1120,1.999]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[684,3.518,1682,4.811,1684,6.112,2459,5.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[814,0.472]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[16,0.626,204,0.786,275,2.928,656,2.152,749,2.163,2389,2.706,2390,2.668]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[16,0.605,656,2.078,1682,3.803,1688,5.122,1853,3.602,2470,4.44,2684,4.614]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[117,1.883,274,1.624,704,3.355,869,4.241,1000,2.799]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[117,1.991,422,3.642,631,2.942,704,3.548]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[3,0.66,13,0.038,55,4.911,90,3.642,95,2.341,133,0.392,142,2.25,196,4.324,254,3.268,274,1.718,279,2.939,339,1.283,389,2.817,422,3.642,497,4.291,631,2.942,704,4.262,734,3.518,749,2.643,967,3.341,968,3.341,975,3.341,1072,4.558,1074,2.682,1303,3.341,1897,3.422,1898,3.513]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,1.408,117,2.041,246,3.669,2202,2.524]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,1.167,117,2.379,157,2.751,684,2.99,2683,4.96]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[4,2.053,13,0.079,14,0.888,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1674,4.458,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[133,0.439,204,1.076,405,6.086]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[133,0.43,204,1.054,1686,5.085]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[98,2.328,120,3.574,289,4.869,489,5.875,602,4.773,1391,5.875,2281,5.706,2308,6.607,2538,6.607,2685,7.609,2686,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[46,2.167,204,0.985,726,5.148,2687,6.268]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[46,1.67,98,1.703,157,2.558,204,0.759,689,5.122,726,3.968,2687,4.831]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[89,2.068,1570,6.253]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[17,1.106,274,1.507,704,3.113,869,3.935,2202,2.16,2324,2.481]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[17,1.158,422,3.346,631,2.703,704,3.26,2324,2.598]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,4.306,497,4.208,631,2.885,704,3.479,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[814,0.472]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[16,0.671,274,1.507,704,3.113,869,3.935,2389,2.901,2390,2.86]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[16,0.65,422,3.094,631,2.5,704,3.015,2470,4.774,2684,4.96]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[3,0.643,13,0.037,55,4.815,90,3.585,95,2.281,133,0.384,142,2.192,196,4.267,254,3.184,274,1.684,279,2.863,339,1.25,345,0.653,389,2.745,422,3.571,497,4.208,631,2.885,704,4.195,734,3.45,749,2.591,967,3.255,968,3.255,975,3.255,1072,4.469,1074,2.612,1303,3.255,1333,0.672,1897,3.334,1898,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,1.298,17,1.192,246,3.384,2202,2.328,2324,2.674]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,1.167,17,1.071,157,2.751,684,2.99,2577,4.619,2688,5.507]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[4,2.053,13,0.079,14,0.888,17,1.064,20,2.301,21,1.791,46,1.785,57,1.778,58,2.813,89,1.199,141,1.712,274,1.451,301,2.609,318,2.415,345,0.85,373,1.455,678,1.778,762,1.712,822,2.715,1015,2.243,1333,0.875,1824,3.076]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,1.408,210,4.462,246,3.669,1120,2.336]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,1.167,157,2.751,684,2.99,2377,5.194,2459,4.774,2678,5.194]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[4,2.084,13,0.08,20,2.381,21,1.854,46,1.847,57,1.84,58,2.911,89,1.24,141,1.772,274,1.501,301,2.7,318,2.499,345,0.88,678,1.84,762,1.772,822,2.809,1015,2.321,1333,0.906,1674,4.613,1824,3.183]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-centos-5/",[117,2.229,2044,4.461,2202,2.757]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[8,3.303,117,1.574,313,3.602,1083,3.346,2044,3.149,2045,4.064,2689,5.564]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.205,16,0.671,427,3.224,1177,3.285,2389,2.901,2390,2.86]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2383,3.621,2690,3.405,2691,3.344]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[13,0.062,133,0.424,159,5.875,204,1.351,206,2.53,209,3.405,282,2.774,345,1.088,1229,4.213,1252,4.355,1333,1.12,1844,5.706]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[3,0.761,109,2.416,110,3.337,117,1.527,149,2.5,2061,2.899,2062,3.85,2202,1.888]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[117,1.991,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[3,1.366,13,0.079,2061,6.181]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[3,0.716,16,0.552,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2389,2.385,2390,2.351]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[16,0.765,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[3,1.121,13,0.083,234,3.656,282,2.899,345,1.137,762,2.29,1333,1.171,2040,5.331,2061,6.034]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[16,0.552,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2383,3.621,2389,2.385,2390,2.351]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[13,0.058,133,0.398,159,5.519,204,1.296,206,2.428,209,3.198,234,3.286,282,3.463,345,1.022,1229,3.958,1252,4.091,1333,1.052,1844,5.36,2040,4.792]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[17,0.966,46,1.62,213,3.164,2202,1.888,2263,3.85,2264,4.168,2265,4.687,2324,2.168]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[213,3.792,2263,4.612,2267,5.616,2268,5.162,2692,6.468]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[13,0.081,57,2.325,133,0.433,141,2.24,274,1.897,345,1.112,678,2.325,762,2.24,1015,2.934,1333,1.145,2263,7.159]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[814,0.472]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[17,0.966,46,1.62,487,3.246,739,1.923,1733,3.689,2053,3.29,2202,1.888,2324,2.168]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[739,2.507,1032,2.643,2053,4.291,2054,5.435]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[13,0.059,14,1.09,133,0.638,138,1.871,339,1.998,345,1.043,373,1.786,588,4.51,740,3.085,1333,1.074,2053,6.57]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[17,1.031,390,1.261,739,2.052,1032,2.163,1566,3.035,2202,2.015,2324,2.314]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[17,1.158,739,2.304,1032,2.428,1566,3.408,2324,2.598]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[3,0.688,13,0.04,14,1.294,15,2.178,21,1.47,89,0.984,133,0.534,152,2.203,208,1.805,295,2.538,339,1.336,345,0.698,351,3.434,373,1.194,390,1.897,397,2.243,656,1.822,657,2.141,740,2.063,749,1.831,993,2.501,1032,3.253,1333,0.718,1566,2.57,1570,2.974,1571,3.564,2218,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[3,0.716,17,0.909,109,2.272,110,3.139,149,2.351,2061,2.727,2062,3.621,2202,1.776,2324,2.04]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[17,1.26,868,3.548,2061,3.781,2063,5.02]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[3,1.295,13,0.074,345,1.314,1333,1.353,2061,5.986]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[16,0.785,2389,3.391,2390,3.342,2435,5.573]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[198,3.213,752,4.173,2435,4.619,2693,5.507,2694,7.742]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[16,0.671,204,0.843,1284,2.84,2389,2.901,2390,2.86,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[16,0.605,63,2.223,204,0.759,1284,2.558,2390,2.576,2470,4.44,2566,4.44]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[3,0.968,13,0.056,63,2.744,101,2.672,122,3.554,133,0.382,138,2.372,204,0.938,234,3.159,251,3.054,282,2.505,345,0.982,685,3.378,1284,4.253,1333,1.011,1406,4.078,2659,6.324]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[16,0.785,1027,4.84,2389,3.391,2390,3.342]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[198,3.213,752,4.173,1027,4.011,2693,5.507,2694,7.742]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[13,0.092,149,3.766,205,2.326,345,1.163,656,3.038,678,2.432,749,3.053,1027,5.454,1333,1.198]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[620,2.39,624,2.764,925,4.309,2061,3.317,2064,5.122,2695,5.686]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[81,2.643,204,0.71,624,2.327,1265,4.788,2050,3.799,2061,2.793,2064,4.313,2696,5.2]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[90,3.858,205,2.561,391,7.15,620,3.467,624,4.009,2064,7.429,2697,8.958]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[2,0.978,117,1.747,122,3.195,205,1.766,1981,3.42,2202,2.16]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[204,0.961,1981,3.898,1983,5.02,2698,7.039]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[6,4.825,209,3.726,282,3.036,348,4.822,351,3.94,728,5.483,1144,6.392]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[2,0.978,122,3.195,205,1.766,210,3.819,1120,1.999,1981,3.42]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[204,0.961,1981,3.898,1983,5.02,2311,6.48]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,122,2.98,205,1.647,1981,3.19,2389,2.706,2390,2.668]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[204,0.961,1981,3.898,1982,5.142,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[117,1.883,204,0.909,1284,3.061,2202,2.328,2565,5.313]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[63,2.584,117,1.829,204,0.883,1284,2.974,2566,5.162]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[3,0.95,13,0.074,14,1.007,101,2.621,122,3.486,129,1.644,133,0.375,138,2.342,204,0.92,345,0.964,373,1.65,435,3.237,685,3.313,1284,4.762,1333,0.992,1406,4]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[117,1.747,1575,4.769,1795,4.769,2202,2.16,2457,4.405,2458,4.512]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[117,1.991,739,2.507,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[13,0.073,133,0.611,620,3.467,2458,8.665]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[101,2.1,117,1.527,204,0.737,206,1.38,341,1.871,1229,2.989,2202,1.888,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[13,0.066,14,1.215,133,0.453,204,1.41,206,2.641,345,1.163,373,1.991,1229,4.504,1333,1.198]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[101,2.1,204,0.737,206,1.38,210,3.337,341,1.871,1120,1.747,1229,2.989,2383,3.85]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[13,0.069,133,0.475,204,1.453,206,2.72,345,1.219,1229,4.721,1333,1.255]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[814,0.472]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[3,0.761,17,0.966,101,2.1,109,2.416,198,2.899,680,2.554,2202,1.888,2324,2.168]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[129,1.718,868,3.548,1018,4.811,2439,5.618]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[3,0.95,13,0.055,57,2.015,89,1.358,96,3.237,107,3.077,141,1.941,261,3.95,274,1.644,318,3.709,345,0.964,439,3.189,680,4.321,762,1.941,1015,2.542,1333,0.992,1824,3.486]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[16,0.626,1575,4.448,1795,4.448,2389,2.706,2390,2.668,2457,4.109,2458,4.208]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[16,0.703,739,2.304,1990,4.42,2390,2.995,2457,4.612]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/clients/retrieve-email-using-getmail/",[3,1.017,255,5.761,739,2.571,2699,6.268]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[739,2.75,2699,6.705,2700,7.109]],["toc//docs/email/clients/retrieve-email-using-getmail/",[3,1.271,13,0.054,96,2.344,122,3.421,133,0.502,179,3.876,440,3.742,453,3.977,739,3.211,958,4.213,974,6.088,993,4.622,1630,4.355,1930,5.106,2699,8.906]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2701,7.539,2702,7.993]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1673,3.627,2701,6.705,2703,7.722]],["toc//docs/development/frameworks/catalyst-and-modperl/",[0,1.997,2,0.896,13,0.066,14,0.846,15,1.699,101,2.202,107,2.584,133,0.45,138,1.451,204,1.405,251,2.516,294,1.555,339,1.55,345,0.809,364,2.064,685,2.783,1056,4.134,1333,0.833,1406,3.36,2655,5.21,2701,8.193,2702,7.445]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[17,1.031,46,1.729,205,1.647,685,2.833,2202,2.015,2324,2.314,2704,5.003]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[17,0.996,63,2.223,649,3.346,1151,3.664,2015,4.172,2704,4.831,2705,5.564]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[3,0.987,4,1.366,6,3.94,13,0.057,133,0.522,204,0.956,216,3.965,345,1.002,557,5.591,1333,1.032,2403,7.237,2567,8.139,2704,8.139]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[17,1.106,46,1.854,390,1.352,1821,3.224,2202,2.16,2324,2.481]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[17,1.26,175,5.02,390,1.541,1821,3.675]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[13,0.078,98,2.232,133,0.536,152,2.215,204,0.996,274,1.78,277,5.089,364,2.66,602,4.576,656,2.725,1821,5.983]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[17,1.031,224,3.064,916,3.562,2202,2.015,2280,4.598,2281,4.32,2324,2.314]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1043,3.392,2286,4.44,2287,4.44,2288,4.296,2289,4.44,2315,5.122,2706,5.564]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[13,0.068,14,0.888,46,1.785,57,1.778,90,2.561,106,2.442,133,0.331,196,2.734,208,2.199,234,2.734,328,2.529,345,0.85,349,3.576,373,1.455,607,4.24,631,2.485,762,1.712,811,4.343,899,4.24,916,6.506,1333,0.875,2290,6.466]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[814,0.472]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[274,1.507,624,2.764,916,3.819,1074,3.536,2290,4.769,2695,5.686]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2048,6.163,2707,7.722,2708,7.722]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[14,1.068,15,2.145,45,2.179,75,2.222,77,4.139,81,3.633,89,1.915,90,3.078,308,4.298,599,4.243,916,4.419,1074,6.508,2050,5.221]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[814,0.472]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[17,1.292,2202,2.524,2279,4.753,2324,2.899]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[8,3.551,17,1.071,1083,3.597,1605,4.774,2279,3.939,2663,5.507]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[13,0.074,14,0.795,89,1.072,120,2.499,133,0.43,138,1.364,152,1.615,179,3.118,204,1.055,274,1.298,318,2.16,339,1.457,345,0.761,353,3.711,371,3.389,373,1.302,510,2.829,543,3.503,762,1.532,1333,0.783,1506,3.337,1820,3.793,2161,4.897,2279,7.535]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[17,1.031,1575,4.448,1795,4.448,2202,2.015,2324,2.314,2457,4.109,2458,4.208]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[17,1.26,739,2.507,1990,4.811,2457,5.02]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[13,0.069,133,0.592,345,1.219,620,3.3,1333,1.255,2458,8.475]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2709,4.802]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[17,0.966,105,1.791,450,3.386,456,1.905,2055,3.85,2056,2.958,2202,1.888,2324,2.168]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[17,1.158,456,2.282,631,2.703,2056,3.544,2069,3.474]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[13,0.052,14,0.952,89,1.285,98,1.95,105,2.115,133,0.489,138,1.635,208,2.358,345,0.912,372,3.457,373,1.56,451,3.886,762,1.836,1333,0.939,1385,5.789,2056,5.944,2059,4.447,2060,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-joomla/",[46,2.167,205,2.064,650,5.272,685,3.549]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[649,4.644,650,5.64,1151,5.085]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[13,0.083,20,3.077,57,2.377,133,0.443,141,2.29,274,1.94,650,7.438,678,2.377,762,2.29,1015,3]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[814,0.472]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[3,0.761,17,0.966,155,2.871,456,1.905,2065,2.871,2066,3.689,2202,1.888,2324,2.168]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[17,1.158,456,2.282,804,4.058,2065,3.44,2069,3.474]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[3,0.915,13,0.053,14,0.97,133,0.565,273,3.521,294,1.784,345,0.928,373,1.589,439,3.072,456,2.291,486,4.982,620,2.512,1333,0.956,2065,6.091,2069,3.486]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[17,1.292,2202,2.524,2324,2.899,2435,5.573]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[17,1.26,198,3.781,752,4.911,2435,5.435]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[13,0.079,57,2.227,133,0.415,141,2.145,205,2.13,274,1.817,345,1.065,656,2.782,678,2.227,749,2.796,762,2.145,1015,2.81,1333,1.097,1816,5.441]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[4,1.693,133,0.483]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[4,1.373,13,0.057,684,3.518,1422,6.48]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[2,0.773,4,0.952,11,1.138,36,2.998,82,2.86,98,1.493,99,3.403,103,4.236,133,0.534,138,1.251,149,2.259,157,2.243,287,3.213,307,2.826,339,1.987,351,2.309,397,3.337,442,3.658,489,5.603,550,3.061,620,1.888,654,2.343,657,2.141,678,1.459,928,2.595,1127,3.894,1391,3.767,1656,4.491,1666,4.236,2009,3.403,2040,3.271,2710,4.491,2711,4.491]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[17,1.292,1027,4.84,2202,2.524,2324,2.899]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[17,1.26,198,3.781,752,4.911,1027,4.72]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[13,0.092,149,3.766,205,2.326,345,1.163,656,3.038,678,2.432,749,3.053,1027,5.454,1333,1.198]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[46,1.998,58,3.15,301,2.921,412,5.52,2712,5.78]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1613,5.162,1614,5.162,2638,5.954,2712,5.616,2713,6.468]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[3,1.05,13,0.06,46,2.236,89,1.502,127,5.196,328,3.169,340,6.32,389,4.48,407,6.177,412,6.177,2641,6.857,2712,9.455]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[17,1.031,141,1.659,726,4.109,1930,4.448,2035,4.109,2202,2.015,2324,2.314]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[17,1.26,2035,5.02,2036,6.112,2324,2.828]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[3,0.932,13,0.083,14,0.988,95,3.305,133,0.571,251,2.94,345,0.946,359,4.716,554,4.148,678,1.977,1329,5.277,1333,0.974,2035,6.429,2037,5.484,2039,5.106,2564,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[0,2.547,101,2.808,2714,6.268,2715,6.268]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[204,0.816,2297,4.96,2714,5.194,2715,5.194,2716,5.982,2717,5.982]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[6,3.181,13,0.042,133,0.549,138,1.941,139,3.065,160,2.747,173,4.899,204,1.346,216,2.922,283,2.266,339,2.072,345,0.738,685,3.721,1056,5.527,1333,0.76,1406,4.492,2030,5.074,2031,5.397,2714,4.484,2715,4.484,2718,5.164]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[814,0.472]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[3,1.017,255,5.761,739,2.571,2719,6.268]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[740,2.735,1510,3.998,2700,5.954,2719,5.616,2720,6.468]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[3,0.785,13,0.045,14,0.832,82,3.266,92,4.619,99,5.577,107,3.651,158,4.837,173,3.607,191,3.495,253,4.177,261,3.266,291,2.935,295,1.948,341,1.931,359,3.973,588,4.943,657,2.445,740,2.356,1890,4.837,2719,8.874,2721,5.57,2722,5.128,2723,5.57,2724,5.57]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[814,0.472]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[89,1.245,142,2.967,390,1.352,620,2.39,624,2.764,1074,3.536]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2048,6.163,2725,7.722,2726,7.722]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[14,0.97,15,1.948,75,2.018,77,3.759,89,1.794,90,2.796,108,4.013,142,3.118,308,3.904,390,1.949,599,3.853,620,2.512,624,3.983,678,1.941,1074,6.256,2050,4.741]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[16,0.671,17,1.106,352,4.405,620,2.39,1341,5.686,1702,4.769]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[963,6.112,1702,5.435,2727,7.039,2728,7.039]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[133,0.525,295,3.3,365,6.45,440,5.341,963,8.194]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[16,0.785,2044,4.085,2729,4.753,2730,4.753]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2731,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[16,0.785,2044,4.085,2389,3.391,2390,3.342]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[8,3.303,16,0.605,313,3.602,1083,3.346,2044,3.149,2045,4.064,2732,5.564]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[2,1.179,13,0.06,14,1.113,133,0.543,138,1.91,205,2.13,206,1.904,339,2.04,372,4.04,503,4.822,678,2.227,781,5.091,2044,5.524]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[17,0.909,101,1.975,204,0.693,206,1.298,341,1.76,1229,2.812,2202,1.776,2324,2.04,2383,3.621]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1673,3.038,1841,4.42,1842,4.42,2386,4.724,2387,4.724]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[13,0.059,14,1.09,133,0.406,159,5.632,204,1.314,206,2.461,209,3.264,282,2.66,345,1.043,373,1.786,1229,4.039,1252,4.176,1333,1.074,1844,5.47]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[2,0.912,17,1.031,740,2.436,1033,3.377,1970,3.42,2202,2.015,2324,2.314]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1353,3.753,1970,3.551,1972,4.486,1973,4.486,2341,5.507,2577,4.619]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[13,0.06,14,1.113,21,2.244,105,2.472,133,0.543,152,2.262,155,3.962,208,2.755,345,1.065,373,1.823,740,4.128,1333,1.097,1970,4.422]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[814,0.472]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,740,2.436,1033,3.377,1970,3.42,2389,2.706,2390,2.668]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1353,3.753,1970,3.551,1972,4.486,1973,4.486,2224,4.96,2470,4.774]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[13,0.063,21,2.343,105,2.581,133,0.559,152,2.361,155,4.136,208,2.876,345,1.112,740,4.245,1333,1.145,1970,4.616]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[4,1.298,117,1.883,1149,2.563,1809,3.273,2202,2.328]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[4,1.373,1508,4.127,1998,4.911,2733,6.48]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[13,0.062,14,1.137,21,2.293,133,0.551,138,1.951,152,2.31,208,2.815,339,2.084,373,1.863,1149,3.811,1534,5.558,1809,3.741]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[4,1.205,17,1.106,1149,2.378,1809,3.037,2202,2.16,2324,2.481]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[4,1.262,1508,3.792,1998,4.512,2329,5.616,2734,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[13,0.059,14,1.09,21,2.198,133,0.536,138,1.871,152,2.215,208,2.698,339,1.998,345,1.043,373,1.786,1149,3.707,1333,1.074,1534,5.328,1809,3.587]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[4,1.205,16,0.671,1149,2.378,1809,3.037,2389,2.901,2390,2.86]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[4,1.262,1508,3.792,1996,4.994,1998,4.512,2735,6.468]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[13,0.059,21,2.198,96,2.586,133,0.6,152,2.215,208,2.698,294,2.005,345,1.043,510,3.88,1149,2.808,1333,1.074,1809,3.587,2274,4.723,2361,5.47]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[46,1.998,76,3.952,301,2.921,302,5.313,2736,5.78]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1192,5.435,2639,6.48,2736,6.112,2737,7.039]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[2,0.671,3,0.597,11,0.988,12,0.994,13,0.053,15,1.271,46,2.386,76,2.514,89,0.854,106,1.74,122,2.191,127,2.955,133,0.363,157,1.948,167,2.619,177,2.955,204,0.89,205,1.211,234,4.878,244,3.094,295,1.481,328,1.802,366,2.582,439,2.004,450,2.657,501,3.38,620,2.523,871,2.483,925,2.955,1010,2.05,1049,2.895,1277,3.899,2736,8.841,2738,4.236]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[814,0.472]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[179,4.621,180,5.621,544,6.537]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[75,1.617,178,3.087,179,3.049,294,1.429,696,3.012,2739,5.2,2740,4.788,2741,5.2]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[3,1.379,96,2.144,99,4.218,131,3.216,154,5.251,179,6.544,295,2.115,341,2.096,453,3.637,543,5.581,605,4.055,690,5.567,854,4.669,1079,4.535,1820,4.312,2722,7.802,2740,7.802]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[4,1.298,117,1.883,206,1.701,1149,2.563,2202,2.328]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[4,1.373,1508,4.127,1509,4.72,2733,6.48]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[13,0.062,21,2.293,96,2.697,133,0.612,152,2.31,206,1.945,208,2.815,294,2.091,510,4.047,1149,2.929,2274,4.926,2361,5.706]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[814,0.472]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[4,1.205,17,1.106,206,1.579,1149,2.378,2202,2.16,2324,2.481]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[4,1.373,1508,4.127,1509,4.72,2329,6.112]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[13,0.079,14,1.113,21,2.244,133,0.415,152,2.262,206,1.904,208,2.755,345,1.065,373,1.823,510,3.962,1149,2.868,1333,1.097,2274,4.822,2361,5.585]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[814,0.472]],["title//docs/tools-reference/linux-system-administration-basics/",[75,2.244,96,2.559,294,1.984,696,4.18]],["keywords//docs/tools-reference/linux-system-administration-basics/",[75,1.617,157,2.391,740,2.199,763,2.537,777,3.554,2742,5.2,2743,4.788,2744,5.2]],["toc//docs/tools-reference/linux-system-administration-basics/",[2,1.284,13,0.018,14,1.13,15,0.683,16,0.247,17,0.407,21,1.556,40,1.705,46,1.55,75,1.605,96,0.806,97,3.771,98,2.48,117,0.643,128,2.795,133,0.218,141,1.129,142,1.882,146,0.95,157,1.046,163,2.627,174,4.116,204,0.31,205,1.12,224,1.21,246,1.156,257,1.273,294,1.902,328,2.197,345,0.325,351,1.076,372,2.126,373,0.557,399,1.406,456,1.383,457,1.705,579,2.734,605,1.525,616,1.705,621,2.458,631,0.95,652,1.661,654,1.882,657,0.998,664,2.795,672,1.622,739,1.839,877,1.622,893,3.127,993,1.166,1033,1.333,1035,1.661,1047,1.705,1049,1.554,1056,1.661,1297,1.187,1385,4.042,1433,1.975,1533,1.622,1603,1.975,1859,1.815,1873,1.975,2131,1.975,2394,1.705,2430,1.975,2441,1.975,2531,2.093,2621,1.886,2622,2.093,2745,2.093,2746,2.274]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[2,0.978,204,0.843,205,1.766,210,3.819,275,3.14,1120,1.999]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[204,1.054,1853,5,2459,6.163]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[2,0.926,13,0.078,120,2.747,133,0.581,138,1.5,157,2.689,204,1.311,209,2.616,287,3.85,289,2.444,318,2.375,339,1.601,345,0.836,348,3.386,435,2.808,602,3.668,888,4.385,929,2.634,1333,0.861,1533,4.17,2366,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[814,0.472]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[17,1.292,2044,4.085,2202,2.524,2324,2.899]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[8,3.551,1083,3.597,2044,3.385,2045,4.369,2747,5.982,2748,5.982]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[2,1.067,13,0.055,14,1.007,57,2.015,133,0.508,138,1.728,141,1.941,205,1.927,206,1.722,274,1.644,339,1.845,372,3.655,503,4.363,678,2.015,762,1.941,781,4.606,1015,2.542,2044,5.168]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[105,2.05,117,1.747,1252,3.536,1960,3.999,1999,3.621,2202,2.16]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[3,0.898,13,0.052,14,0.952,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,373,2.152,456,2.249,696,3.692,763,3.109,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[814,0.472]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[17,1.106,631,2.581,2202,2.16,2324,2.481,2479,5.686,2749,5.363]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[732,3.109,2091,5.618,2749,6.112,2750,7.039]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[3,0.987,13,0.086,57,2.095,133,0.39,141,2.018,257,3.921,274,1.709,345,1.002,678,2.095,762,2.018,1015,2.643,1333,1.032,2749,9.794]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/apache/apache-access-control/",[204,1.076,439,3.73,620,3.05]],["keywords//docs/web-servers/apache/apache-access-control/",[157,2.558,204,0.759,274,1.358,684,2.781,1537,4.831,2751,5.564,2752,5.564]],["toc//docs/web-servers/apache/apache-access-control/",[11,1.701,12,1.712,157,4.427,204,0.996,291,3.843,439,4.556,487,4.387,620,3.726,734,3.646,929,3.286,1049,4.986,1490,5.822,2414,6.716]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[149,3.083,204,0.909,281,4.058,439,3.15,620,2.576]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[157,2.974,204,0.883,274,1.578,684,3.232,1537,5.616]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[107,3.331,131,3.88,149,3.378,281,5.869,439,5.424,453,4.387,604,4.276,620,4.435,2215,6.716]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[17,1.106,46,1.854,340,3.999,681,3.765,2202,2.16,2324,2.481]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[681,3.646,2229,6.712,2230,4.774,2231,4.774,2753,5.982]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[4,1.718,6,2.109,13,0.079,21,1.512,57,1.5,89,1.011,96,1.779,105,1.665,129,1.224,133,0.625,141,1.445,152,1.523,204,0.685,274,1.224,294,1.379,345,0.718,353,3.5,678,1.5,681,5.369,682,2.839,739,1.787,762,1.445,1015,1.893,1118,3.5,1333,0.739]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[2,0.912,17,1.031,122,2.98,205,1.647,1981,3.19,2202,2.015,2324,2.314]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[204,0.961,1481,5.618,1981,3.898,1983,5.02]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[6,4.723,209,3.558,282,2.899,345,1.137,348,4.605,351,3.762,728,5.236,1144,6.207,1333,1.171]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[16,0.671,46,1.854,340,3.999,681,3.765,2389,2.901,2390,2.86]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[681,3.943,2229,5.162,2230,5.162,2231,5.162,2754,6.468]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[4,1.69,6,2.051,13,0.078,14,0.729,21,2.187,57,1.459,89,0.984,105,1.619,129,1.19,133,0.598,141,1.405,152,1.481,204,0.666,234,2.243,274,1.19,282,1.779,345,0.698,353,3.403,373,1.194,678,1.459,681,5.282,682,2.761,739,1.738,762,1.405,1015,1.841,1118,3.403,1333,0.718]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[89,1.245,117,1.747,749,2.319,768,3.765,769,3.167,1120,1.999]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[117,1.829,1120,2.093,1121,4.85,1122,5.162,2755,5.954]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[11,2.143,12,2.157,89,1.853,749,3.45,768,5.603,769,4.713]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[16,0.671,17,1.106,89,1.245,749,2.319,768,3.765,769,3.167]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[16,0.703,17,1.158,1121,4.85,1122,5.162,2755,5.954]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,2.143,12,2.157,89,1.853,749,3.45,768,5.603,769,4.713]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[589,4.747,656,2.487,749,2.499,768,4.058,769,3.413]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1121,4.85,1122,5.162,2756,6.468,2757,5.616,2758,6.468]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[13,0.071,48,3.91,89,1.761,111,3.859,749,3.28,768,5.326,769,4.48,1269,6.231]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[814,0.472]],["title//docs/platform/linode-beginners-guide/",[45,2.403,1142,5.911,1511,7.257]],["keywords//docs/platform/linode-beginners-guide/",[1649,5.618,2743,6.48,2759,7.039,2760,7.039]],["toc//docs/platform/linode-beginners-guide/",[5,2.587,13,0.032,14,0.597,20,2.412,45,3.505,75,1.242,90,1.721,96,1.417,98,1.223,106,1.642,138,1.025,152,1.213,165,3.7,169,2.237,212,2.731,246,2.031,272,3.189,439,1.891,456,1.41,496,2.997,555,3.189,604,3.654,657,1.754,672,2.85,717,2.471,739,1.423,762,1.151,932,3.47,1009,2.731,1010,1.934,1033,2.343,1761,3.086,1817,5.412,1856,3.47,2110,3.47,2424,3.47,2761,3.996,2762,3.996,2763,6.233,2764,3.996,2765,3.996]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[656,2.696,749,2.71,1118,5.035,1119,4.528]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1269,5.02,1682,4.811,2757,6.112,2766,7.039]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[13,0.069,89,1.719,160,4.535,749,3.995,769,4.372,928,4.535,1124,5.948,1269,6.081]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[814,0.472]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[3,0.871,122,3.195,351,2.923,510,3.285,2767,6.177,2768,5.686]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1269,5.02,1682,4.811,2757,6.112,2768,6.48]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[13,0.079,734,4.846,749,3.64,1269,6.914]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[77,3.577,98,1.89,308,3.715,599,3.667,1009,4.222,2769,5.363]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1700,4.774,1702,4.619,2769,5.194,2770,5.982,2771,5.982,2772,5.982]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[3,1.072,13,0.062,90,4.263,194,5.875,196,3.499,345,1.088,624,3.405,929,3.428,1118,5.308,1333,1.12,2769,8.595,2773,7.609]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[814,0.472]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[16,0.671,24,4.512,98,1.89,1009,4.222,1699,4.769,2389,2.901]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1699,4.619,1700,4.774,1701,5.507,1702,4.619,1703,5.507,1704,5.507]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[3,1.146,13,0.066,90,3.503,194,6.28,196,3.74,345,1.163,624,3.64,929,3.664,1333,1.198,1699,7.977]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[17,1.192,739,2.371,1987,3.952,2202,2.328,2324,2.674]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1987,3.839,1990,4.42,1991,4.85,2774,6.468,2775,5.616]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[13,0.058,14,1.068,282,2.606,341,3.292,345,1.022,373,1.75,908,5.097,929,3.22,958,4.553,1333,1.052,1610,4.419,1787,4.419,1987,6.334,1992,5.221]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[16,0.724,739,2.371,1987,3.952,2729,4.384,2730,4.384]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1987,3.839,1990,4.42,1991,4.85,2775,5.616,2776,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[13,0.052,14,1.313,21,1.921,133,0.355,282,2.324,301,2.797,341,3.047,345,0.912,373,1.56,678,1.906,908,4.546,929,2.871,958,4.061,1333,0.939,1610,3.941,1787,3.941,1987,5.973,1992,4.656,2039,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[16,0.724,739,2.371,1987,3.952,2389,3.127,2390,3.083]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1987,3.839,1990,4.42,1991,4.85,2775,5.616,2777,6.468]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[13,0.052,14,1.313,21,1.921,133,0.355,282,2.324,301,2.797,341,3.047,345,0.912,373,1.56,678,1.906,908,4.546,929,2.871,958,4.061,1333,0.939,1610,3.941,1787,3.941,1987,5.973,1992,4.656,2039,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2778,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1962,3.215,1963,3.215,1964,3.161,1965,3.161,1999,2.862,2003,3.661,2004,3.215,2779,4.882,2780,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[3,0.852,13,0.049,96,2.144,107,2.761,133,0.337,138,1.551,234,2.78,261,3.545,282,2.205,295,2.115,307,3.502,339,1.656,345,0.865,373,1.48,456,2.134,696,3.502,763,2.95,1333,0.89,1999,5.735,2005,3.248,2008,4.535,2009,4.218,2010,3.915,2040,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[96,2.795,133,0.439,204,1.076]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[133,0.36,157,2.974,204,0.883,684,3.232,1969,5.954]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[17,1.362,89,1.534,96,2.697,98,3.029,133,0.424,138,1.951,177,5.308,204,1.038,339,2.084,652,5.558,938,6.072,947,6.31,2441,6.607]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[204,0.985,348,4.18,888,5.413,2366,5.413]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[204,0.816,348,3.464,605,4.011,1686,3.939,2366,4.486,2781,5.507]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[11,1.854,12,1.866,302,6.346,348,5.898,605,5.331,728,5.236,888,7.636,1418,7.32,2366,5.962,2383,5.67]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[127,5.035,128,5.148,204,0.985,763,3.521]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[204,0.961,763,3.434,1686,4.636,2782,7.039]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[99,4.368,133,0.349,138,1.606,204,1.469,243,4.997,282,2.283,339,1.715,341,2.17,503,4.054,657,3.81,763,4.236,993,5.111,1391,4.834,1900,5.764,2711,5.764,2783,6.261,2784,6.261]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,204,0.786,205,1.647,275,2.928,2389,2.706,2390,2.668]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[204,0.816,684,2.99,1982,4.369,2785,5.982,2786,5.982,2787,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[13,0.08,96,2.181,133,0.55,138,1.578,149,2.849,204,1.348,209,3.838,257,3.443,275,3.127,289,2.571,294,1.691,318,2.499,339,1.685,345,0.88,435,2.955,654,2.955,1333,0.906,1461,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2389,2.706,2390,2.668]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1032,1.632,1353,2.728,1915,3.261,2272,2.434,2547,3.358,2548,3.358,2549,3.358,2550,3.358,2679,4.003,2788,4.348,2789,4.003]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[16,0.626,105,1.912,1252,3.298,1959,3.42,1960,3.73,2389,2.706,2390,2.668]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2790,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[2,1.054,16,0.724,732,2.94,2389,3.127,2390,3.083]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1638,4.994,2085,4.994,2684,5.363,2791,6.468,2792,6.468]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,149,2.579,204,0.76,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,654,2.676]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2389,2.706,2390,2.668]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1446,4.636,2070,5.435,2071,5.142,2793,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2389,2.706,2390,2.668]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[134,2.625,1043,3.646,1141,4.011,2794,5.982,2795,5.982,2796,5.982]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[13,0.07,14,0.935,89,2.009,129,2.118,133,0.349,134,4.374,142,3.007,168,4.054,274,1.528,295,2.19,345,0.895,620,2.423,929,2.821,1044,3.584,1048,4.123,1333,0.922,2077,4.834,2078,4.834]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[2,0.912,16,0.626,205,1.647,246,2.928,2042,3.157,2389,2.706,2390,2.668]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1853,4.187,2042,3.544,2684,5.363,2797,6.468,2798,6.468]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[13,0.054,14,0.988,21,1.992,81,3.361,133,0.368,140,4.148,274,2.199,301,2.902,345,0.946,373,1.619,620,3.488,717,5.573,777,6.161,993,3.391,1333,0.974,2042,4.94]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[814,0.472]],["title//docs/networking/ssh/using-sshfs-on-linux/",[3,0.938,120,3.127,142,3.198,614,4.464,2799,5.14]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2799,5.435,2800,7.039,2801,7.039,2802,7.039]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[3,0.915,13,0.053,14,0.97,15,1.948,21,1.956,48,2.905,75,2.018,95,3.244,98,1.986,108,4.013,111,2.867,120,3.049,142,4.276,196,2.985,294,1.784,614,6.811,624,2.905,678,1.941,2799,5.012]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[2,1.143,117,2.041,732,3.188,2202,2.524]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[117,2.184,732,3.411,2683,6.404]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[814,0.472]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[81,3.669,98,2.209,1009,4.933,2803,6.268]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1700,5.162,1702,4.994,2803,5.616,2804,6.468,2805,6.468]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[3,1.263,13,0.073,345,1.281,1118,6.249,1333,1.319,2803,9.528]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2,0.912,13,0.047,17,1.031,2005,3.094,2079,3.377,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2806,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2690,3.863,2691,3.794]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2807,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2,0.912,13,0.047,16,0.626,2005,3.094,2079,3.377,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2005,3.213,2079,3.507,2081,4.486,2082,4.486,2083,4.486,2808,5.982]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2,1.132,3,1.007,13,0.058,133,0.398,234,3.286,235,5.097,282,2.606,345,1.022,456,2.522,653,3.802,762,2.059,1333,1.052,2005,3.839,2010,4.627,2079,5.569,2084,5.36]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2690,3.863,2691,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1962,3.425,1963,3.425,1964,3.367,1965,3.367,1999,3.049,2003,3.9,2004,3.425,2809,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[3,0.898,13,0.052,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,345,0.912,373,1.56,456,2.249,696,3.692,763,3.109,1333,0.939,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[16,0.626,105,1.912,1252,3.298,1960,3.73,1999,3.377,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1962,3.425,1963,3.425,1964,3.367,1965,3.367,1999,3.049,2003,3.9,2004,3.425,2810,5.2]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[3,0.852,13,0.049,96,2.144,107,2.761,133,0.337,138,1.551,234,2.78,261,3.545,282,2.205,295,2.115,307,3.502,339,1.656,345,0.865,373,1.48,456,2.134,696,3.502,763,2.95,1333,0.89,1999,5.735,2005,3.248,2008,4.535,2009,4.218,2010,3.915,2040,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[2,1.054,204,0.909,205,1.903,348,3.855,605,4.464]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[204,0.883,348,3.746,605,4.337,2687,5.616,2781,5.954]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[11,2.089,12,2.102,348,5.188,605,7.358,1391,6.917,2811,8.958]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[17,1.031,105,1.912,1252,3.298,1960,3.73,1999,3.377,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1962,3.664,1963,3.664,1964,3.602,1965,3.602,1999,3.262,2003,4.172,2004,3.664]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[3,0.898,13,0.052,96,2.26,107,2.911,133,0.355,138,1.635,261,3.737,295,2.229,307,3.692,339,1.746,345,0.912,373,1.56,456,2.249,696,3.692,763,3.109,1333,0.939,1999,5.899,2005,3.423,2008,4.78,2009,4.447,2010,4.127]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[17,1.106,1974,4.309,1975,4.222,1976,3.765,2202,2.16,2324,2.481]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[206,1.799,1673,3.307,1976,4.291,1977,5.142]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[20,3.148,57,2.432,133,0.453,141,2.343,274,1.985,345,1.163,539,5.801,762,2.343,1015,3.069,1333,1.198,1976,4.958]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[13,0.058,16,0.785,18,3.521,2812,6.268]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2022,4.644,2812,6.705,2813,7.722]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[20,3.3,133,0.592,390,1.867,539,6.081,1010,4.127,2812,10.075]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[13,0.064,146,3.294,648,4.805]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[206,1.422,648,3.392,649,3.346,1151,3.664,1673,2.614,1693,5.122,2015,4.172]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[3,1.173,13,0.067,14,1.244,20,3.222,133,0.463,146,3.48,648,6.996,678,2.489]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[2,1.143,732,3.188,1120,2.336,2814,7.218]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1772,5.142,1773,5.279,2815,7.039,2816,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[2,1.143,210,4.462,732,3.188,1120,2.336]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1772,5.142,1773,5.279,2817,7.039,2818,7.039]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,204,1.091,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,503,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[814,0.472]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[17,1.192,204,0.909,1153,3.726,2202,2.328,2324,2.674]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[679,3.642,2320,5.838,2321,6.48,2322,6.48]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[3,0.987,13,0.076,14,1.047,36,2.894,152,2.127,163,4.697,204,0.956,267,4.159,282,2.554,345,1.002,373,1.715,679,3.624,1153,5.912,1333,1.032,2323,5.253]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[13,0.047,16,0.626,204,0.786,1153,3.225,1165,2.833,2690,3.863,2691,3.794]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[679,3.642,1958,5.618,2320,5.838,2819,7.039]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[3,1.028,13,0.078,36,3.014,152,2.215,163,4.891,204,0.996,267,4.33,282,2.66,345,1.043,679,3.774,1153,6.032,1333,1.074,2323,5.47]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2690,3.863,2691,3.794]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2820,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[3,0.938,81,3.384,90,2.867,624,2.979,2050,4.862]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2050,5.64,2821,7.722,2822,7.722]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[13,0.059,90,3.142,101,2.838,138,1.871,142,4.625,307,4.225,341,2.528,624,4.309,925,5.089,1074,4.176,1075,4.387,1445,5.822,2050,7.033]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[16,0.626,105,1.912,1252,3.298,1959,3.42,1960,3.73,2729,3.794,2730,3.794]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1959,2.898,1961,3.566,1962,3.215,1963,3.215,1964,3.161,1965,3.161,2004,3.215,2303,4.048,2823,4.882]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[17,1.031,105,1.912,1252,3.298,1959,3.42,1960,3.73,2202,2.015,2324,2.314]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1959,3.087,1961,3.799,1962,3.425,1963,3.425,1964,3.367,1965,3.367,2004,3.425,2491,4.788]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[13,0.084,14,1.215,133,0.453,280,3.907,345,1.163,451,4.958,678,2.432,1333,1.198,1959,6.133]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[16,0.626,739,2.052,1000,2.422,1351,3.794,2333,4.598,2690,3.863,2691,3.794]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1569,5.02,2337,5.618,2338,5.618,2592,6.48]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[13,0.079,21,2.244,57,2.227,98,2.279,141,2.145,274,1.817,294,2.047,345,1.065,678,2.919,762,2.145,1015,2.81,1333,1.097,1351,4.905]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[16,0.626,390,1.261,739,2.052,1032,2.163,2272,3.225,2729,3.794,2730,3.794]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2789,4.494]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[3,1.067,13,0.042,14,1.131,15,2.271,21,1.556,89,1.041,133,0.549,152,1.568,208,1.91,295,2.646,339,1.414,345,0.738,351,3.581,390,2.16,397,2.374,656,1.929,740,2.184,749,1.938,1032,3.362,1333,0.76,1570,3.148,2218,3.529,2272,2.89]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[3,1.017,169,4.04,1933,6.645,2799,5.573]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2799,5.435,2824,7.039,2825,7.039,2826,7.039]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,1.179,133,0.606,169,6.094,178,4.422,195,5.441,309,5.312,614,4.994,620,2.882,624,3.333,2799,5.751,2827,7.448]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[2,0.912,16,0.626,205,1.647,246,2.928,2042,3.157,2729,3.794,2730,3.794]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1853,4.558,2042,3.857,2828,7.039,2829,6.112]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[13,0.056,21,2.07,81,3.492,133,0.382,140,4.31,274,2.257,301,3.015,345,0.982,620,3.58,717,5.719,777,6.322,993,3.522,1333,1.011,2042,5.069]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[117,1.747,739,2.2,1000,2.597,1351,4.068,2202,2.16,2333,4.93]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1569,5.02,2337,5.618,2338,5.618,2830,7.039]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[13,0.081,21,2.343,57,2.325,98,2.38,141,2.24,274,1.897,294,2.137,678,3.002,762,2.24,1015,2.934,1351,5.121]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[814,0.472]],["title//docs/databases/postgresql/centos-5/",[3,0.871,117,1.747,129,1.507,134,2.711,1041,3.35,2202,2.16]],["keywords//docs/databases/postgresql/centos-5/",[134,3.089,1043,4.291,1141,4.72,2831,7.039]],["toc//docs/databases/postgresql/centos-5/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/centos-5/",[814,0.472]],["title//docs/databases/postgresql/fedora-12/",[3,0.871,129,1.507,134,2.711,210,3.819,1041,3.35,1120,1.999]],["keywords//docs/databases/postgresql/fedora-12/",[1043,4.707,1141,5.178,2832,7.722]],["toc//docs/databases/postgresql/fedora-12/",[13,0.054,14,0.988,89,2.068,129,2.199,133,0.368,134,4.501,142,3.176,168,4.281,274,1.613,295,2.313,345,0.946,620,2.559,929,2.979,1044,3.785,1048,4.355,1333,0.974]],["deprecated//docs/databases/postgresql/fedora-12/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2690,3.863,2691,3.794]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[134,3.089,1043,4.291,1141,4.72,2833,6.48]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[13,0.059,89,2.173,129,1.78,133,0.406,134,4.73,295,2.551,345,1.377,1044,4.176,1048,4.804,1333,1.418]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[3,0.812,16,0.626,129,1.406,134,2.528,1041,3.125,2729,3.794,2730,3.794]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[134,3.089,1043,4.291,1141,4.72,2833,6.48]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[13,0.062,89,2.218,129,1.856,133,0.424,134,4.828,295,2.661,345,1.088,1044,4.355,1048,5.011,1333,1.12]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[17,1.031,390,1.261,739,2.052,1032,2.163,2202,2.015,2272,3.225,2324,2.314]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1032,1.833,1353,3.063,1915,3.661,2272,2.732,2547,3.769,2548,3.769,2549,3.769,2550,3.769,2834,4.882]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[3,1.044,13,0.041,14,1.316,15,2.224,21,1.512,89,1.011,133,0.541,152,1.523,208,1.856,295,2.591,339,1.374,345,0.718,351,3.506,373,1.228,390,2.13,397,2.307,656,1.874,740,2.122,749,1.883,1032,3.307,1333,0.739,1570,3.058,2218,3.429,2272,2.808]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[17,1.106,204,0.843,1284,2.84,2202,2.16,2324,2.481,2565,4.93]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[63,2.812,204,0.961,1284,3.237,2566,5.618]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[3,0.987,13,0.057,14,1.047,63,2.799,101,2.725,122,3.624,133,0.39,138,2.404,204,0.956,251,3.114,345,1.002,373,1.715,685,3.445,1284,4.31,1333,1.032,1406,4.159]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[16,0.671,204,0.843,1284,2.84,2565,4.93,2690,4.142,2691,4.068]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[16,0.605,63,2.223,204,0.759,1284,2.558,2566,4.44,2691,3.664,2835,5.564]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[3,0.968,13,0.075,20,2.658,63,2.744,101,2.672,122,3.554,133,0.382,138,2.372,204,0.938,251,3.054,345,0.982,685,3.378,1284,4.809,1333,1.011,1406,4.078]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[2,0.912,17,1.031,205,1.647,246,2.928,2042,3.157,2202,2.015,2324,2.314]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1853,4.558,2042,3.857,2577,5.435,2688,6.48]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[13,0.059,81,3.708,133,0.406,140,4.576,274,2.349,345,1.043,620,3.726,717,5.952,777,6.581,1333,1.074,2042,5.276]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[30,3.037,58,2.923,59,4.632,341,2.141,891,3.621,1554,4.405]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[825,5.279,826,5.02,1555,5.618,1556,5.618]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[16,1.054,17,1.735,117,2.368,146,2.485,232,3.162,528,3.076,1000,3.52,1120,1.924,1165,2.923,1227,4.343,1544,3.576,1689,2.561,1784,3.048,2113,2.643,2185,2.856,2202,2.079,2248,2.561,2836,5.945,2837,5.945,2838,5.945,2839,5.945]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[814,0.472]],["title//docs/tools-reference/tools/introduction-to-rsync/",[82,5.09,1927,6.929]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[169,3.114,870,3.602,1498,4.831,1927,4.44,2645,5.122,2840,5.564,2841,5.564]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[397,3.921,925,5.948,1927,9.26,2842,8.526,2843,8.526,2844,8.526,2845,8.526]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[3,0.812,17,1.031,129,1.406,134,2.528,1041,3.125,2202,2.015,2324,2.314]],["keywords//docs/databases/postgresql/debian-5-lenny/",[134,3.089,1043,4.291,1141,4.72,2846,7.039]],["toc//docs/databases/postgresql/debian-5-lenny/",[13,0.074,14,1.007,89,2.088,129,1.644,133,0.375,134,4.545,168,4.363,295,2.357,345,0.964,929,3.036,1044,3.857,1048,4.438,1333,0.992,2077,5.203,2078,5.203]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[814,0.472]],["title//docs/development/version-control/how-to-configure-git/",[36,3.256,74,4.042,445,5.191]],["keywords//docs/development/version-control/how-to-configure-git/",[16,0.5,17,0.823,74,2.358,1297,2.401,1492,2.844,1612,3.994,1613,3.671,1614,3.671,1615,3.814,2847,4.6]],["toc//docs/development/version-control/how-to-configure-git/",[74,5.583,96,2.641,133,0.415,142,3.578,155,3.962,234,4.488,328,3.169,397,4.488,412,6.177,585,5.441,1519,6.468]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[13,0.054,74,3.413,75,2.069,77,3.855,81,3.384]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[74,3.316,1612,5.616,1613,5.162,1614,5.162,1615,5.363]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[13,0.074,36,3.797,74,6.151,82,5.388]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[75,2.45,82,4.621,574,6.086]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[75,2.4,1798,5.962,2848,7.722]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[2,0.593,13,0.068,36,2.446,40,2.806,45,1.804,57,1.119,58,1.771,75,2.827,90,1.612,98,1.812,113,3.103,120,4.272,233,2.89,274,0.913,295,1.309,341,1.297,342,2.423,366,3.609,397,1.721,408,2.348,445,2.465,487,2.251,555,2.987,621,2.348,661,2.89,662,2.348,672,2.669,762,2.62,947,3.103,1333,0.551,1444,3.25,1457,3.25,1666,3.25,1766,4.909,1798,2.89,1949,3.25,2123,3.445,2849,5.92,2850,3.742,2851,3.742,2852,3.742]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[75,2.45,295,2.757,1049,5.387]],["keywords//docs/tools-reference/linux-users-and-groups/",[75,1.859,295,2.092,366,3.646,2532,4.96,2853,5.982,2854,5.982]],["toc//docs/tools-reference/linux-users-and-groups/",[89,1.405,98,2.859,107,2.111,120,3.941,126,3.1,244,3.377,262,3.045,287,3.045,295,3.267,328,1.967,350,2.781,366,6.11,397,3.205,408,4.373,440,2.617,549,3.834,662,2.901,829,4.015,955,4.256,992,3.69,1049,6.385,1253,3.377,2532,5.78,2536,4.256,2855,4.623]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[294,2.166,2116,6.845,2117,7.257]],["keywords//docs/security/recovering-from-a-system-compromise/",[2856,7.039,2857,8.657,2858,6.48]],["toc//docs/security/recovering-from-a-system-compromise/",[3,0.932,45,2.748,109,4.59,133,0.368,165,3.925,197,4.83,604,3.876,870,5.836,1455,4.716,1801,5.484,2115,7.475,2473,6.088,2710,6.088,2859,6.612,2860,6.612,2861,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[17,1.031,204,0.786,275,2.928,656,2.152,749,2.163,2202,2.015,2324,2.314]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1682,4.811,1687,6.48,1853,4.558,2577,5.435]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[3,1.273,13,0.042,89,1.056,133,0.426,160,2.787,204,1.233,345,0.749,656,3.374,734,2.619,749,4.275,768,5.507,769,5.416,928,2.787,1119,3.288,1124,3.656,1333,0.772]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.298,117,1.883,427,3.475,1177,3.541,2202,2.328]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1178,4.234,1493,4.911,1494,4.352,2862,7.039]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.205,17,1.106,427,3.224,1177,3.285,2202,2.16,2324,2.481]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1178,4.234,1493,4.911,1494,4.352,1892,6.112]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.804,13,0.085,14,1.382,15,2.062,21,2.07,208,2.541,289,2.871,318,2.79,345,0.982,373,1.682,390,1.504,435,3.3,682,3.888,1333,1.011,1824,3.554]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.124,16,0.626,427,3.007,1165,2.833,1177,3.064,2690,3.863,2691,3.794]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1178,4.234,1493,4.911,1494,4.352,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.205,16,0.671,427,3.224,1177,3.285,2729,4.068,2730,4.068]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1178,4.644,1493,5.387,1494,4.774]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.853,13,0.086,14,1.068,15,2.145,21,2.154,208,2.644,289,2.987,318,2.903,345,1.022,390,1.565,435,3.433,682,4.045,1333,1.052,1824,3.697]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[13,0.054,45,2.029,56,3.686,58,3.15,1503,5.78]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[884,6.404,885,6.705,1006,7.109]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[14,0.97,15,1.948,36,2.682,45,2.713,89,1.309,133,0.361,188,3.299,339,2.782,491,4.203,554,6.373,618,3.853,624,2.905,870,4.203,1258,8.194,1505,4.868,2863,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[814,0.472]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[16,0.671,204,0.843,427,3.224,1177,3.285,2729,4.068,2730,4.068]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1178,4.234,1494,4.352,1893,5.279,2291,5.435]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[0,2.744,13,0.063,107,3.551,122,4.023,133,0.433,137,4.401,204,1.061,251,3.457,397,3.576,682,5.681,894,5.425,1177,4.136]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[2,0.855,16,0.587,204,0.737,205,1.543,275,2.744,1165,2.654,2690,3.619,2691,3.555]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[204,0.816,684,2.99,1982,4.369,2864,5.982,2865,5.982,2866,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[13,0.08,96,2.181,133,0.55,138,1.578,149,2.849,204,1.348,209,3.838,257,3.443,275,3.127,289,2.571,294,1.691,318,2.499,339,1.685,345,0.88,435,2.955,654,2.955,1333,0.906,1461,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[3,0.871,117,1.747,129,1.507,390,1.352,1041,3.35,2202,2.16]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1446,5.085,2071,5.64,2867,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.551,927,4.704,928,4.047,929,3.428,1333,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[3,0.871,129,1.507,210,3.819,390,1.352,1041,3.35,1120,1.999]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1826,5.962,1827,6.404,2868,7.722]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[3,1.072,13,0.062,133,0.551,294,2.091,345,1.088,390,2.551,927,4.704,928,4.047,929,3.428,1333,1.12]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2690,3.863,2691,3.794]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1446,4.636,2070,5.435,2071,5.142,2869,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[3,0.812,16,0.626,129,1.406,390,1.261,1041,3.125,2729,3.794,2730,3.794]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1446,4.636,2070,5.435,2071,5.142,2870,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[3,0.812,17,1.031,129,1.406,390,1.261,1041,3.125,2202,2.015,2324,2.314]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1446,4.636,2071,5.142,2356,6.48,2871,7.039]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[3,1.231,13,0.071,133,0.486,345,1.25,390,2.569,1333,1.286]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[814,0.472]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[17,1.031,133,0.321,280,2.767,592,3.794,2202,2.015,2324,2.314,2872,5.761]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[631,2.942,2873,7.039,2874,7.039,2875,7.039]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[13,0.074,133,0.512,280,5.354,345,1.314,1333,1.353]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[814,0.472]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[13,0.05,16,0.671,204,0.843,1153,3.457,2729,4.068,2730,4.068]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[679,3.094,1153,3.348,2320,4.96,2829,5.194,2876,5.982,2877,5.982]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[3,1.121,13,0.083,152,2.414,163,5.331,204,1.085,345,1.137,679,4.113,1153,5.7,1333,1.171,2323,5.962]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[2,0.978,17,1.106,205,1.766,1144,3.765,2202,2.16,2324,2.481]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[684,3.232,2878,6.468,2879,6.468,2880,6.468,2881,6.468]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[13,0.046,14,0.846,17,1.013,104,4.036,107,2.584,133,0.45,138,2.42,318,2.299,339,2.584,341,1.962,345,0.809,373,1.385,442,4.244,628,4.526,1127,4.517,1144,4.929,1147,7.022,1148,4.914,1333,0.833,1490,4.517,1758,4.693,1895,5.21]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[128,5.148,372,3.915,631,3.017,763,3.521]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2857,9.2,2858,7.109]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[14,1.281,128,6.117,197,4.494,204,0.84,275,3.127,372,6.094,390,1.347,631,2.571,763,3.001,812,4.494,948,4.613,976,5.664,1659,5.342,1787,3.803,2059,5.983,2163,5.102,2882,6.152,2883,6.152]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[3,1.017,45,2.2,342,4.673,890,5.148]],["keywords//docs/networking/using-the-linode-shell-lish/",[342,4.558,890,5.02,901,4.911,1105,5.142]],["toc//docs/networking/using-the-linode-shell-lish/",[3,1.14,90,2.438,101,2.202,106,2.325,196,2.602,205,1.618,275,2.877,287,3.727,322,3.795,328,2.408,391,4.517,453,3.404,703,4.244,719,4.914,890,7.341,1072,3.664,2884,5.66,2885,5.66,2886,5.66,2887,5.66,2888,5.66,2889,5.66,2890,5.66,2891,5.66,2892,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[3,1.224,322,5.821]],["keywords//docs/networking/ssh/using-the-terminal/",[2893,7.722,2894,7.722,2895,7.722]],["toc//docs/networking/ssh/using-the-terminal/",[44,3.057,46,1.287,89,1.327,98,2.75,113,5.458,120,4.221,141,1.235,164,3.555,180,3.057,196,1.971,216,2.426,294,1.809,322,2.874,328,3.408,350,3.958,405,3.31,487,2.578,553,3.555,579,6.268,580,3.421,605,2.874,662,2.69,664,3.057,715,2.823,870,2.776,902,3.947,930,3.215,1081,3.723,1733,2.93,1798,3.31,1863,3.555,2394,3.215,2896,4.287,2897,4.287,2898,4.287]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[82,4.621,455,4.805,456,2.782]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1692,5.838,2899,7.039,2900,7.039,2901,7.039]],["toc//docs/networking/dns/dns-records-an-introduction/",[2,0.941,98,1.819,351,2.813,397,2.734,454,4.93,455,5.105,456,3.714,654,4.022,750,5.473,1219,4.59,1242,4.59,1243,4.745,1385,3.915,1709,4.93,2066,4.063,2745,5.473,2902,5.945,2903,5.473,2904,5.945,2905,5.945,2906,5.945,2907,5.945]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[2,0.978,117,1.747,204,0.843,205,1.766,275,3.14,2202,2.16]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[204,1.054,1853,5,2683,6.404]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[2,0.868,13,0.075,14,0.819,120,2.576,133,0.565,138,1.406,149,2.539,157,2.522,204,1.265,209,2.454,287,3.612,289,2.292,318,2.227,339,1.502,345,0.784,348,3.176,373,1.342,435,2.634,602,3.441,654,2.634,888,4.112,929,2.471,1333,0.807,1533,3.911,2366,4.112]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[814,0.472]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[2,0.912,17,1.031,204,0.786,205,1.647,275,2.928,2202,2.015,2324,2.314]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[684,2.99,1481,4.774,1896,5.194,2908,5.982,2909,5.982,2910,5.982]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[13,0.082,14,0.952,133,0.489,138,1.635,149,2.952,204,1.2,209,3.934,257,3.568,275,3.24,289,2.664,318,2.589,339,1.746,345,0.912,373,1.56,435,3.062,654,3.062,1333,0.939,1461,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[814,0.472]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[46,1.998,205,1.903,685,3.273,1219,5.14,2911,6.128]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2912,8.551,2913,8.551]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[13,0.072,20,2.512,57,1.941,89,1.309,129,1.584,141,1.87,209,2.905,274,1.584,397,2.985,435,3.118,589,4.629,762,1.87,1015,2.449,1219,7.843,2911,9.352,2914,6.491,2915,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[814,0.472]],["title//docs/networking/dns/dns-manager-overview/",[46,2.366,456,2.782,862,5.758]],["keywords//docs/networking/dns/dns-manager-overview/",[1472,5.122,1473,4.831,1644,5.122,1645,5.122,1692,4.614,1812,4.614,2916,5.564]],["toc//docs/networking/dns/dns-manager-overview/",[2,0.64,3,0.57,14,1.153,15,1.213,36,1.67,40,3.031,46,1.213,48,1.809,106,2.583,111,1.785,174,2.71,224,2.15,345,0.578,350,2.431,351,5.103,445,2.662,455,3.833,456,2.724,457,3.031,584,2.662,621,2.536,654,3.021,662,2.536,763,1.972,993,2.072,1062,2.952,1385,6.868,1543,3.51,1811,3.352,1812,3.352,1899,3.51,1931,3.51,2903,3.721,2917,4.042,2918,4.042]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[2,1.054,17,1.192,732,2.94,2202,2.328,2324,2.674]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1485,6.404,1877,6.705,2919,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[2,1.31,13,0.085,14,1.236,15,1.755,129,2.019,133,0.614,138,1.5,149,2.707,204,0.798,205,1.672,206,1.494,339,1.601,373,1.431,390,2.287,654,2.808]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[2,0.978,16,0.671,732,2.728,1165,3.037,2690,4.142,2691,4.068]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1635,7.109,2920,7.722,2921,7.722]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[2,1.295,13,0.084,14,0.859,15,1.726,129,1.996,133,0.652,138,2.098,204,0.785,205,1.645,206,1.47,294,1.581,339,2.24,390,2.27]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[814,0.472]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[2,1.054,16,0.724,732,2.94,2729,4.384,2730,4.384]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1638,5.962,2085,5.962,2829,6.705]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[2,1.266,13,0.083,14,0.832,15,1.672,129,1.951,133,0.646,138,2.05,149,2.579,204,0.76,205,1.593,206,1.424,294,1.531,339,2.189,390,2.238,654,2.676]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[814,0.472]],["title//docs/tools-reference/linux-package-management/",[21,2.375,46,2.366,75,2.45]],["keywords//docs/tools-reference/linux-package-management/",[233,4.015,661,4.015,1807,4.788,2922,5.2,2923,4.788,2924,4.788,2925,5.2,2926,4.788]],["toc//docs/tools-reference/linux-package-management/",[3,0.776,16,0.371,17,0.612,21,3.318,46,2.933,57,1.022,75,1.711,100,1.752,117,0.966,133,0.19,142,1.641,155,1.817,233,4.251,289,1.428,294,0.939,328,1.454,345,0.489,365,2.335,397,2.531,453,2.055,574,2.638,661,2.638,894,2.384,1120,1.106,1297,2.874,1333,0.503,1492,2.112,1647,2.727,1648,2.727,1677,2.967,2923,5.068,2924,3.146,2926,6.365,2927,3.417,2928,3.417,2929,3.417,2930,3.417,2931,3.417,2932,3.417,2933,3.417,2934,3.417,2935,3.417,2936,3.417,2937,5.505,2938,3.417,2939,3.417]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":528,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2410,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2000,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":983,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2113,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2259,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2280,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2814,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2165,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2114,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":210,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1689,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2362,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2247,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":747,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1546,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2207,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":18,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":809,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2839,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":896,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1850,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":275,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":760,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1788,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1286,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1770,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1715,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1426,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":759,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":64,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2597,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1173,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1723,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2202,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1000,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1779,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1716,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1765,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1768,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1822,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":146,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":228,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1164,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":207,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1760,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1718,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":232,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2690,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":19,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2729,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2389,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2902,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1857,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2445,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1986,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":620,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1537,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2853,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2448,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":440,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":882,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1536,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1204,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":494,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":106,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2158,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2098,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":107,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":165,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":451,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":777,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1706,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2695,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1273,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":696,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2077,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1251,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":453,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":885,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1007,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":60,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1617,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":145,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2025,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":730,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1331,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":689,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":521,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1101,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1102,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1104,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1050,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":588,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1360,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2273,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2249,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1253,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1083,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1260,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":663,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1266,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1817,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":708,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1438,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1435,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1439,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1437,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1436,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1440,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2572,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":462,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":51,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":204,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1854,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1789,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1486,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":897,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2908,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2305,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":658,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1480,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2909,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2306,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2551,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2364,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":383,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2866,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1160,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1482,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2787,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2910,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2615,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2380,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2698,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1481,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2311,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1982,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2307,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1682,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2320,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2516,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2519,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2367,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2522,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2371,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1955,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1154,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2524,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2613,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2378,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2864,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2785,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2865,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2786,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2614,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2379,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1896,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":865,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":765,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":87,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1829,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1107,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":137,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1272,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":598,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2255,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":101,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":219,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1040,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":661,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2925,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1807,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2927,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1386,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1297,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1879,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1880,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1884,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1883,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":452,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2503,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":123,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1021,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1024,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2872,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2873,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2123,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":800,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":773,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2486,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2482,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":852,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":396,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1362,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1363,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2643,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1367,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2642,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":312,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":357,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2885,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":324,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1628,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1455,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2414,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":291,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1250,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2055,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":114,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":178,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":267,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":488,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":54,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1711,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2903,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":167,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":2840,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1655,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":162,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2543,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":169,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2148,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":464,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1338,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":149,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":841,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1186,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":96,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2712,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2588,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":247,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":249,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":11,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":12,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1517,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1511,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":764,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1608,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":1127,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2811,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1663,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1080,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":559,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1012,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":164,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1766,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1195,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1197,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2124,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":319,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":879,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":368,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1518,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2092,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":618,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2156,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":485,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2132,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":741,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1315,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1309,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":412,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":304,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2244,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":569,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":391,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1183,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2264,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2604,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2268,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":100,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1425,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2586,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1125,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1423,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2628,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2713,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":454,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":804,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2035,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":683,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":686,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2557,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2558,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":744,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2333,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2251,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1801,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2254,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1099,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":745,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2693,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":864,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2701,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1345,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":69,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":355,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":117,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2683,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1002,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":866,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1384,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1381,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1382,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1383,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1282,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2221,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":749,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1691,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1229,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1126,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":408,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1736,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1468,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1964,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1562,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1565,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1512,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1515,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1514,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1527,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1513,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2042,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2049,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2454,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2455,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2556,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2828,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2453,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2544,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2797,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2798,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2545,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2043,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2532,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2854,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":386,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":973,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":394,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2211,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1987,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2186,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2187,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2579,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1988,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":1994,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":460,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2723,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1302,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1783,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":260,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":411,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":447,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":95,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2038,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":595,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1232,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1062,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":201,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1447,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1310,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":821,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":793,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":797,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1710,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":283,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":649,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2745,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":302,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2457,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1963,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1045,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2501,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":328,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":931,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1831,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":842,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":115,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":942,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1119,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":407,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":127,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2397,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2402,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":869,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":822,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":823,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":495,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":235,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":72,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1077,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2117,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":506,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":574,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":140,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2429,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1782,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":500,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1201,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":133,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":723,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1301,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":699,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1966,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":286,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1745,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2784,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2461,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2462,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2467,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2464,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2468,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2463,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1254,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":90,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2489,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2843,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1506,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":901,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1116,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2883,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":70,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":130,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":922,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":685,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":646,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1680,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1693,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1151,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2662,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":835,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":67,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1685,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":439,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2195,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1085,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2476,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1516,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1815,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":870,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":924,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":903,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2135,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1322,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":476,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2061,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1860,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1208,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1212,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1213,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2272,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2765,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2844,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2664,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1108,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1111,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1697,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2666,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2665,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1859,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":22,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2761,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":333,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":89,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2100,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":874,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":645,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1267,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1800,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":985,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":179,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2741,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2739,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2740,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":183,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1906,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1211,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1214,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1215,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1216,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1123,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":56,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1006,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":884,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2250,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1003,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":826,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1488,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":825,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1714,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2769,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":359,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1374,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2827,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2886,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2932,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":241,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":109,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":803,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":10,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":129,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":284,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":285,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2763,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":479,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2014,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":854,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2475,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1313,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1314,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1579,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2650,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2638,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1222,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":780,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1776,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":17,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2688,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2340,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2310,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2188,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2339,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1624,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1876,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":860,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1483,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1495,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2341,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2874,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":861,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1484,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1877,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2919,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2577,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2774,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1921,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2295,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1623,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2748,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":116,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1979,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":781,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":565,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":558,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1525,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2783,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2450,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2032,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":126,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":756,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2253,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":971,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":251,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":0,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":700,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1968,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1090,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":24,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1938,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2625,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":492,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":325,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2163,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":213,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2560,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":214,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1659,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":893,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1761,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2427,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1458,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2197,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2655,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":120,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":371,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2154,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2673,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2126,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2239,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1974,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2587,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":188,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":423,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":58,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2640,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1633,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1790,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2205,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1284,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1243,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":939,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":182,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":184,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1245,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":456,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2104,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2933,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1473,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2344,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1472,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2899,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2900,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2901,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":68,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":71,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":73,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":379,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":639,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":736,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":815,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2062,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2930,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2658,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2657,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2090,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":351,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1692,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2916,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1550,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1551,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1548,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2177,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2178,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2180,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2175,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2174,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2176,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2179,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1566,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1920,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2220,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1573,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1568,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2217,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1903,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2762,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":20,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1589,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2924,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1106,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2016,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1764,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":648,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1152,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1679,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2109,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":853,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":176,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1944,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1612,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2031,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2703,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1028,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":537,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":943,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1271,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":752,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":224,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":580,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2654,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2458,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":1999,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2003,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2001,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2002,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2780,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2809,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2810,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2779,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":226,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":660,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":236,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":716,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2749,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2750,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":533,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":531,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":532,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":739,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2775,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":1991,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":282,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2151,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":181,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1205,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2407,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2403,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":369,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":693,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2024,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":690,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["enviro",{"_index":217,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["environ",{"_index":216,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":409,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2474,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2007,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1321,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":258,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2720,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2697,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2928,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2934,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2931,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1889,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2171,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":91,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1248,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1023,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":131,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":263,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":829,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1970,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2222,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":585,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":956,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1089,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2130,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1926,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1943,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2281,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":430,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1630,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1202,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":330,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2162,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":758,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":414,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1334,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1337,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1117,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1342,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1678,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1005,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":32,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":586,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":729,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1149,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2734,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":112,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":1996,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1590,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1026,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2274,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2596,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":612,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2603,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2010,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1120,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2816,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2815,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2459,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2818,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2817,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2466,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2563,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2562,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2456,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2292,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2392,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2391,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2208,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1774,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1771,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2227,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2365,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1660,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":999,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2719,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2721,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":98,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2508,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":711,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2534,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":918,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1311,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":468,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2841,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":237,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":309,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":905,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1699,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":958,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":353,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":621,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2528,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2417,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2884,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1258,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":280,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1296,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1063,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":772,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":960,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":838,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":840,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":839,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2034,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":948,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":561,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2594,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":360,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2585,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2606,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2269,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":277,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2861,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":644,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1616,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1576,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1975,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1977,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2096,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1075,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2033,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2589,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1226,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1030,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2297,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2887,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2882,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1182,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2671,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1752,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2644,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2888,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1330,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2675,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2567,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2570,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1654,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1324,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1008,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1700,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":601,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1078,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":86,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1249,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":261,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2326,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1379,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2660,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2064,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1066,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1025,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1218,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1639,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1640,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":703,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1634,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":734,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1326,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2601,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1492,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1872,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":445,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2699,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1928,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":834,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":367,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":698,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2540,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":74,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":873,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1191,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2847,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1615,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":522,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2478,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1632,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":926,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":253,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1064,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1034,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1733,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2668,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2505,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2506,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":596,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":211,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["gog",{"_index":1350,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":446,"title":{},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1911,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":735,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1629,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1749,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1750,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1073,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1748,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1754,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":899,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1094,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1279,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1445,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1278,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":675,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":677,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":674,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":877,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1712,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":504,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1049,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":1990,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":891,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1489,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1004,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":381,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2271,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1142,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":775,"title":{},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1408,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1609,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":517,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":778,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":782,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":259,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":463,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2442,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":964,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2074,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2691,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1037,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":519,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":959,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":161,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":568,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":570,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2213,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1785,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2146,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":906,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":212,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2637,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1698,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":721,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":727,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1065,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":466,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":625,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2674,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1798,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":784,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1247,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":138,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1650,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":373,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":688,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1539,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1540,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1011,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":876,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":514,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2513,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1194,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1429,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1134,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":602,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":331,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1603,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":157,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2751,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1848,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2351,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1129,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1686,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1864,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":738,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":218,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2131,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":143,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":144,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1985,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":23,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":889,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2028,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2353,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2258,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2352,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2257,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":433,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1915,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1233,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1696,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2323,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2626,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":270,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2718,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1395,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2656,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":345,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":55,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":389,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":311,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2496,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":338,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":13,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1103,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1110,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":845,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":697,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1193,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":676,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":909,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1159,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":742,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1452,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1448,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2072,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1174,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1653,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1823,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1652,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1017,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":820,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":936,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1392,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":849,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":792,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1967,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":511,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1185,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1352,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1328,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":486,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1960,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1961,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2111,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":501,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":714,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":633,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":619,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet radio",{"_index":2105,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2433,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":978,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2299,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":82,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1888,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1887,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":85,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1620,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2125,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1264,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iotop",{"_index":1604,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":604,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":623,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2237,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1114,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1371,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1335,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1658,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":592,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1270,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1076,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2236,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1730,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1743,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1708,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2670,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2629,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2270,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":128,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2607,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2602,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2006,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1341,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1336,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2730,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":679,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2321,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2370,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2517,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2520,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2368,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2819,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":911,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":910,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2322,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2518,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2521,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2369,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1957,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2373,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1958,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2523,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2372,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1956,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1156,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2525,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":540,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1238,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1397,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":915,"title":{},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":426,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":392,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1227,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":642,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":650,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":913,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2063,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":223,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":424,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":766,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1346,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1237,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2390,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2792,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":496,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1139,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":560,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":30,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":824,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":196,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1018,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2013,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1582,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":239,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2401,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2400,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":593,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":914,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2194,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1520,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1529,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2574,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":375,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":376,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":363,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":886,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1502,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1500,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":706,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":499,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":732,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1487,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2921,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1485,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1637,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1881,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1772,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1477,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":361,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":643,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":651,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1092,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":962,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2623,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1980,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":370,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2685,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":555,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1221,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1001,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1236,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1158,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2405,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2324,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1808,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2535,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1206,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1203,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":774,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2855,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1523,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":795,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":779,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1895,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1144,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2879,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2878,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":349,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":652,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1428,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":45,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1828,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2150,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2760,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2759,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1830,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1109,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1644,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1649,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2881,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1726,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":921,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1645,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2120,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2149,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1669,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1651,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2895,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2857,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2880,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1931,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":622,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":39,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":75,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2826,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2743,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2404,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2413,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2858,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":904,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2875,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1704,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1965,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1767,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1773,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1972,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1569,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2922,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1701,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1703,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2893,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2742,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1293,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2206,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1878,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":659,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2304,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":890,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":798,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":487,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2009,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2054,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2849,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1904,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2440,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":271,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":465,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1607,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":155,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1846,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":489,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":657,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2447,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":923,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2446,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2449,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":536,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1454,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2889,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":895,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1942,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":320,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2624,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":1992,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2059,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1165,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2083,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":694,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2248,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":185,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1235,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":77,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2772,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2770,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2771,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2609,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":554,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":562,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":118,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":80,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1027,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1029,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1031,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":740,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1839,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1353,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1356,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1571,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2053,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":265,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1934,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":33,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":589,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":461,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1832,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":46,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2152,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2101,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2611,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2097,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":856,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1762,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2261,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":725,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2394,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2263,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2692,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2266,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2267,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":399,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":186,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":552,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":203,"title":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1451,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1759,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":429,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2095,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":148,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1664,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1171,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2260,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2426,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1858,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1583,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1586,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1599,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":523,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1600,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1598,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1622,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2277,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2700,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":47,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":880,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2812,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":27,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1054,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":372,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2636,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1196,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1252,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":611,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1199,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2649,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1940,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":238,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["mid",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":709,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":710,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1505,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2121,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2119,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1262,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1427,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":65,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":669,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":830,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":472,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":26,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1463,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2487,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2566,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1868,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1289,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2687,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2752,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2738,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2169,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1758,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2483,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2702,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1230,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2565,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2366,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2182,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":566,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":191,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":556,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2170,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1403,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":365,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2181,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":209,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2439,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1781,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":680,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1019,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1327,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1332,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":141,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1984,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":794,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1280,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2484,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1794,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1953,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":614,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2911,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2912,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":553,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2112,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1376,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2913,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2325,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2621,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1461,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1625,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":122,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1223,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":785,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1347,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1983,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":513,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":323,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1304,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2164,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1305,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1627,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1709,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2676,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":390,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2300,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2867,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2356,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2355,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2357,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1827,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2868,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2552,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2376,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1825,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2869,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1161,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2870,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2793,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2871,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2071,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1826,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2358,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1849,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2421,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1446,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2726,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":818,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2073,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2725,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2070,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2612,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2420,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2550,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":817,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1665,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":2648,"title":{},"keywords":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1450,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1172,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1175,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2393,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2058,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":541,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":930,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2166,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":113,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1835,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1937,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1833,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":25,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2238,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":587,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":576,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2485,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2500,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":631,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2825,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1803,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1675,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":859,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":563,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":53,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2838,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":48,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":200,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1802,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":4,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2350,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2349,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2733,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":837,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2329,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2234,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2328,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1508,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2377,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2678,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":1998,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2241,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2240,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1509,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1690,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2243,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2595,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2345,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":1997,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1507,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2735,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2242,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1422,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1319,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2672,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":567,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":887,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":883,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":147,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":132,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1140,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":398,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1308,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":868,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2537,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":425,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":317,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":701,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2056,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":858,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":863,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2191,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":581,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1070,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1118,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1380,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1130,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2536,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":982,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":987,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":984,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1210,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1731,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1521,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1491,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1190,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":173,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2193,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2200,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":124,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1364,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2045,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1042,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1357,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":202,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":941,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":707,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1244,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":986,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1959,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2490,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2301,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2302,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2303,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2491,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2593,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2823,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2790,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":231,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":963,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1269,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2767,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1016,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":704,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2294,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2293,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":608,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1079,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":305,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":916,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2289,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2313,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2283,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2315,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2314,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2706,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1239,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2286,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2708,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2707,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2285,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2584,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2284,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2583,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2282,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":938,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":308,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1265,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2435,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2573,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":530,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2696,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":761,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1378,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2332,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2652,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":418,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":925,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2472,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":862,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1259,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":819,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":21,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":668,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2926,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2094,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1320,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":538,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":326,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":717,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1954,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1303,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2102,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2099,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1648,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":189,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":159,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":682,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2214,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":671,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1591,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":929,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":42,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":626,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1014,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1366,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2276,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":630,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2041,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1891,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":493,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1809,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2348,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1091,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":366,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":108,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1819,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":171,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2608,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2632,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2716,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":43,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":206,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1162,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2386,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1841,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2559,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2661,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1847,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1231,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1842,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2598,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2384,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2599,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2385,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1057,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1559,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1228,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1976,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2354,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1821,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2232,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["ping",{"_index":1433,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":665,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":393,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2044,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2689,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2747,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2363,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2381,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2359,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2046,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2731,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2732,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1373,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1897,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":50,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":190,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2262,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":731,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2026,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":790,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1434,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2196,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":934,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":937,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":935,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":940,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2704,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":578,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":402,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1561,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1316,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1246,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1695,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":474,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1916,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":307,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":215,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2047,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1816,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1032,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2219,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1572,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1567,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2216,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2681,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2680,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2834,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2561,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2546,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2547,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2789,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2581,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2436,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2820,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2679,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2548,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2549,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":168,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2419,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":134,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1141,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2318,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2832,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2553,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2610,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2831,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2846,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2833,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2319,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2794,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2618,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2418,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2795,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2796,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2633,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2724,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":34,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1907,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1795,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":442,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":534,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2686,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1784,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1978,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":892,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1275,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":395,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1013,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2127,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":678,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2710,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":751,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1836,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":954,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1619,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1457,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1464,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":497,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1365,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1274,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1545,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1925,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":257,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":314,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":557,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":491,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1538,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":62,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":340,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2541,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2230,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":808,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2918,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2630,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1797,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2079,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2806,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2807,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2808,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2778,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2309,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2081,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2084,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1533,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":158,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":450,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":220,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":6,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2029,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1981,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":172,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1474,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1072,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":417,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":720,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1300,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":722,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1299,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":125,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1061,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":737,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":551,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2050,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2821,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1554,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1555,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1556,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":310,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":666,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":670,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":63,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":66,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":810,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2576,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1047,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2571,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2575,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":354,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":655,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1564,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2159,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":950,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":799,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1739,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":7,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":9,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":356,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2298,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":473,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1177,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1893,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1494,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2862,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1892,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2291,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2432,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":362,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2215,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2837,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["rate",{"_index":2416,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1220,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2288,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1933,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2824,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1470,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":244,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":995,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":847,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1740,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1732,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2082,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2004,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2842,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":52,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2115,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2110,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1522,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":337,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":455,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2116,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":908,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2252,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":801,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":605,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2492,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1170,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":802,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2514,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2493,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2382,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2515,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2495,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2412,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2012,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1168,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2411,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2011,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1167,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1169,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2494,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":681,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2753,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2233,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2229,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2231,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2617,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2228,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2754,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":953,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":976,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":470,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1499,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1799,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2538,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2529,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":974,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1786,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1041,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1043,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1038,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2711,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1898,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":142,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1113,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":382,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":350,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1207,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2398,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":616,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1053,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1051,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1052,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1780,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1519,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":234,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":160,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":535,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":35,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1105,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2198,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":927,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2627,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":881,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2066,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2069,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":726,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1581,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2781,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2155,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1902,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":796,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1339,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":255,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":5,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1471,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":151,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":975,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":888,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1390,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2093,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":419,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":590,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":481,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":928,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2856,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2075,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":789,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1255,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1646,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1046,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2923,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":994,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":1,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1927,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":427,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1493,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1178,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1180,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":281,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":341,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1913,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":912,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1804,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":482,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1393,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1394,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1478,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1476,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":484,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":827,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":483,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2076,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2331,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2218,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1459,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":458,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":544,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2153,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1277,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1614,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2399,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":245,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":329,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":102,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":715,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":917,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":664,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2715,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2473,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":274,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2406,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1453,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1449,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":833,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":965,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":832,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2527,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":768,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2755,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2756,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1914,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":831,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":1033,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2223,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1971,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1763,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1456,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1056,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":2,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":724,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1910,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1605,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":229,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1200,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":105,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1950,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":327,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1369,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":14,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1668,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":628,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":919,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1702,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["sftp jail",{"_index":2727,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":298,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":299,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":303,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":805,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":199,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1874,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1563,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":342,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1713,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2694,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2103,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1323,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1606,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":769,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":346,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":475,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":471,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":104,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2296,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":177,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1368,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1370,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":510,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2060,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2667,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1479,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":378,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1856,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2714,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1095,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2677,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1035,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1973,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":480,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1135,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2036,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2564,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2479,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2542,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2091,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1805,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":84,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1806,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":297,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":762,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":692,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2746,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2764,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2395,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":248,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":301,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2639,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1198,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1787,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":515,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2361,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2722,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":728,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":154,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":28,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":272,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2192,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1242,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":334,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1424,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1547,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2037,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":264,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":175,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2287,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":170,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2717,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2185,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2347,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1791,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1838,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1837,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":624,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2800,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2728,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1096,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2048,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1093,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2799,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2801,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2802,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":656,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1122,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2758,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1121,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2408,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2757,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1683,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1687,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1684,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1688,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2374,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1694,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":227,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":230,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":505,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":410,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1131,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":36,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1325,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1059,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1549,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2663,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1475,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2653,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1406,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1676,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":8,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":61,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":786,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1240,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1217,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":783,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1241,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":111,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2210,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":550,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":110,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":198,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1082,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1081,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2107,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2106,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":702,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1132,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1209,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2531,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":972,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":300,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":405,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2023,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":457,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2768,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":527,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1626,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2530,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2736,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":955,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2275,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2212,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":31,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":900,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":59,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":435,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1022,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2737,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":197,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1115,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":638,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":640,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":641,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":691,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1769,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2441,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1498,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2645,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2647,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":99,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":294,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1939,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2330,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":687,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2744,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1863,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1044,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1587,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":221,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":332,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2533,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":498,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1288,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":961,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":49,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1932,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2507,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":180,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1163,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":848,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":850,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":851,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1404,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2052,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1535,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1575,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1578,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1577,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1466,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":384,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2144,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2631,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1755,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":322,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2894,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":449,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1261,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":152,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":579,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":712,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":150,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2605,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":843,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1188,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":944,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["third",{"_index":1647,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1585,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1584,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":279,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2145,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":174,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":977,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2471,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2039,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":629,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":996,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":250,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":718,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":276,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":746,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":321,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1058,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1128,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1153,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1155,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2877,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1157,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":894,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":516,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1088,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":705,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1069,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2428,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2622,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":313,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2265,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":278,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2108,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1009,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1133,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1377,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":719,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":413,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":763,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":814,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2709,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":1993,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1287,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1460,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":998,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1812,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":997,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":713,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":290,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1580,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1074,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1557,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1419,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":791,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2021,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":139,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1068,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1924,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1219,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":16,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2481,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2580,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2375,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2425,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2438,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2422,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2578,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2167,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2245,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2199,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2203,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1753,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2086,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1989,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1181,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1636,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":1995,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1840,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":867,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":898,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2835,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2920,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2876,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2776,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2470,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2791,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2777,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2224,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1295,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2829,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2684,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2620,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2017,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1635,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2085,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1894,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2480,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2682,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2346,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2423,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2168,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2246,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2201,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2204,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1885,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2018,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2087,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1361,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1292,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2616,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1638,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2256,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1662,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":597,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1294,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1298,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2065,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2342,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2343,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1189,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1291,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2383,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":949,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1176,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1179,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1949,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2396,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2646,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":388,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1510,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2848,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1317,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":846,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":539,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2129,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1814,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2161,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":753,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":15,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":57,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1010,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1922,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":672,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1588,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":348,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":3,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":97,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2569,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2568,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":295,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2078,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1036,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1930,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1285,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1496,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1497,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":807,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1375,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1055,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1818,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1613,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1810,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":477,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2027,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":76,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1192,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":78,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":662,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":577,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":339,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1969,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1467,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1501,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2431,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":667,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":240,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2278,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2430,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":385,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1307,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1306,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1372,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":222,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":469,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":422,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1465,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1263,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":192,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":29,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":459,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2917,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":315,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":947,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":529,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":205,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1843,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1673,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2015,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1146,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1359,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":335,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":695,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":684,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2813,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":647,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1290,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2279,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1312,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1256,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":743,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1705,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2782,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":600,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":246,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1875,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":83,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1729,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":437,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":875,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1504,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":38,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1544,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1923,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1086,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2497,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":187,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":336,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2022,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1234,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":81,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2804,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2805,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2822,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2803,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":421,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":787,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":194,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":748,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":509,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2512,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":512,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":397,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":816,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":358,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1890,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1642,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1087,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":136,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1184,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1187,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1560,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1318,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1534,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":262,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":776,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":599,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1778,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1777,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1775,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2290,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1503,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1143,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1145,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":387,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2005,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1962,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2008,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1067,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":518,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2929,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1728,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":757,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":233,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":478,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2089,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":467,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2539,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1351,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2634,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2334,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1354,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1355,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2337,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2635,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2591,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2338,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2830,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2336,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2592,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1358,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2335,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2590,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2504,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":571,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1741,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1744,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2057,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1084,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2705,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file +{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.239,1,6.179,2,3.289,3,3.499,4,1.341,5,1.502]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.946,2,6.132,8,6.771]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.065,10,5.627,11,0.857]],["keywords//docs/development/java/install-java-jdk/",[10,5.514,12,3.967,13,6.41]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.499,4,1.341,7,4.932,14,0.869,15,3.718,16,1.838]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.985,5,1.934,8,5.551,15,4.786,16,2.366,17,1.849,18,1.861,19,4.194,20,4.666,21,4.61]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.405,23,6.649,24,3.194,25,6.649]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.486,26,7.045,27,7.045,28,5.624]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.117,9,0.066,16,2.378,22,3.397,24,3.536,25,9.412,29,1.198,30,2.402,31,1.081,32,3.55,33,2.331,34,3.887,35,0.314,36,5.569,37,5.569,38,1.969,39,2.216,40,2.253,41,3.973,42,1.844,43,3.228,44,5.127,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.119,32,3.673,33,2.412,47,2.028,48,5.005,49,0.917]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.067,16,2.42,17,1.891,18,1.904,29,1.219,32,5.187,33,3.405,48,8.978,49,1.646]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.065,11,0.857,54,4.879]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.765,54,4.358,55,7.045,56,5.843]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.089,54,6.689,57,5.26,58,7.591,59,5.977,60,2.64]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.059,11,0.784,50,5.99,61,1.299]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.064,11,0.845,48,6.755,50,8.33,61,1.399,62,3.798,63,5.318,64,3.015,65,2.349,66,7.778,67,7.161,68,5.683]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.765,70,7.222,71,6.272,72,6.272]],["keywords//docs/platform/meltdown_statement/",[71,6.118,72,6.118,73,5.285,74,3.468]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.224,71,5.46,72,3.508,73,3.03,74,3.799,75,4.039,76,4.039,77,7.224,78,4.039,79,4.039,80,1.671,81,4.039,82,4.039,83,6.287,84,3.03,85,4.485,86,4.594,87,6.287,88,2.882,89,2.883,90,1.215,91,6.287,92,3.508,93,4.039,94,4.039,95,4.594,96,2.021,97,3.719,98,2.819,99,2.238,100,2.313,101,1.913,102,3.03,103,3.508,104,4.039,105,4.039]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.059,39,2.874,106,5.578,107,6.649]],["keywords//docs/development/python/install_python_miniconda/",[107,7.116,108,7.728,109,7.728]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.065,110,3.422,111,6.092]],["keywords//docs/applications/containers/install_docker_ce/",[110,3.354,112,4.114,113,7.728]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.065,110,3.422,114,5.763]],["keywords//docs/applications/containers/install_docker_compose/",[110,3.354,112,4.114,115,7.728]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.065,116,4.048,117,2.457]],["keywords//docs/development/version-control/how-to-install-git-linux/",[116,3.967,117,2.408,118,4.591]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.065,116,4.048,119,4.571]],["keywords//docs/development/version-control/how-to-install-git-mac/",[116,3.967,118,4.591,119,4.479]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.097,65,2.349,116,5.709,120,7.206,121,7.161,122,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.065,116,4.048,123,4.013]],["keywords//docs/development/version-control/how-to-install-git-windows/",[116,3.967,118,4.591,123,3.932]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[124,5.097,125,7.206]],["keywords//docs/development/introduction-to-websockets/",[125,5.843,126,4.642,127,7.045,128,7.045]],["toc//docs/development/introduction-to-websockets/",[0,1.405,49,1.115,125,10.422,129,4.616,130,7.006,131,3.021,132,5.255,133,5.811,134,6.45,135,6.45,136,3.505]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.776,110,3.422,137,6.85]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.401,31,1.081,110,2.416,137,4.836,138,4.836,139,5.126,140,2.936]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.073,14,0.912,17,1.509,18,1.518,30,2.799,31,1.26,60,1.96,110,4.41,112,3.455,114,6.506,137,7.732,141,2.359,142,3.636,143,1.854,144,5.013,145,5.013,146,4.743]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,110,3.422,114,5.763]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[110,3.714,114,6.254]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.065,17,1.274,18,1.283,24,2.425,31,1.064,38,1.938,42,3.07,45,2.44,46,2.409,110,4.024,111,4.234,114,6.776,147,4.006,148,1.681,149,3.826,150,2.814,151,2.136,152,5.048,153,4.761,154,3.911,155,3.252,156,2.506,157,3.391,158,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[148,2.215,159,7.222,160,5.99,161,6.272]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.076,161,6.712,162,7.728]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.066,14,1.137,39,2.252,90,1.702,120,3.665,148,1.735,161,9.46,163,5.658,164,1.604,165,4.914,166,9.438,167,4.438,168,5.658,169,2.93,170,5.658,171,3.728,172,5.658,173,3.796,174,3.949,175,4.037]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[110,3.422,112,4.199,131,3.401]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.713,110,3.057,112,3.751,176,7.045]],["toc//docs/applications/containers/docker-container-communication/",[0,1.083,5,1.313,9,0.064,14,0.759,16,1.606,17,1.255,18,1.263,19,2.847,29,0.809,30,2.328,35,0.304,110,4.373,111,4.17,112,5.365,114,3.945,131,3.964,151,2.103,177,3.768,178,3.851,179,3.768,180,3.058,181,1.388,182,3.207,183,3.389]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[181,1.857,184,2.085,185,3.473,186,5.99]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.683,17,1.315,18,1.324,29,0.848,35,0.319,120,5.239,136,2.831,154,4.037,164,1.604,181,2.427,184,3.145,185,3.889,187,7.534,188,6.067,189,2.368,190,3.205,191,3.136,192,2.623,193,5.209]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.015,31,1.402,32,4.603,33,3.022]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.5,33,3.235,194,7.116]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.568,9,0.064,17,1.255,18,1.263,31,1.048,32,4.984,33,3.272,35,0.304,39,3.111,49,1.245,60,1.63,180,3.058,181,1.388,195,3.497,196,4.688,197,2.874,198,3.557,199,2.485,200,4.688,201,4.17,202,2.874,203,4.478,204,3.851,205,3.621,206,4.478,207,3.207,208,4.97]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.756,15,4.346,16,2.148,30,3.114]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.187,30,2.582,209,3.878,210,5.986,211,5.986,212,5.986]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.805,5,2.596,17,1.662,18,1.672,20,4.193,21,4.143,45,3.182,46,3.141,185,3.437,213,4.63,214,4.795,215,5.1,216,7.148,217,4.988,218,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.194,219,4.467,220,6.649,221,6.649]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[219,5.822,222,7.045,223,5.624]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.748,8,3.602,14,1.064,17,1.2,18,1.208,90,1.553,148,1.583,203,4.281,219,3.193,220,9.084,221,9.084,223,8.385,224,3.987,225,5.162,226,2.626,227,4.752,228,7.567,229,4.75,230,4.483,231,3.682,232,3.987,233,2.376,234,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[148,1.895,164,1.752,189,2.586,235,3.321,236,5.125,237,5.366]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[237,6.712,238,4.781,239,7.728]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.816,5,1.638,9,0.091,17,1.566,18,1.576,49,1.454,54,4.168,143,1.924,237,5.852,240,0.925,241,1.727,242,6.738,243,2.497,244,3.019,245,4.168,246,4.608]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.312,89,1.888,143,1.765,185,2.971,247,3.625]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.178,89,1.829,110,2.598,112,3.187,185,2.879,248,5.512]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.068,14,1.17,16,1.357,29,0.683,31,0.885,34,3.183,45,2.03,46,2.004,89,1.393,90,1.372,110,1.979,112,4.432,131,2.976,142,5.199,148,1.399,167,2.145,181,1.173,185,4.003,197,2.428,206,3.783,247,4.884,248,6.354,249,4.561,250,4.561,251,3.961,252,4.561,253,3.783,254,4.561,255,2.428,256,4.561]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.986,49,0.808,143,1.45,164,1.44,184,1.466,189,2.126,257,3.81,258,2.909]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.081,143,1.59,164,1.579,258,3.19,259,5.568,260,5.568,261,5.568]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.067,9,0.075,14,0.747,17,1.236,18,1.244,28,4.245,31,1.032,35,0.3,257,5.801,258,5.22,262,4.41,263,2.831,264,4.107,265,2.448,266,3.793,267,6.173,268,9.113,269,9.113,270,6.414,271,4.245,272,5.317,273,4.245,274,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[275,6.272,276,3.674,277,6.649,278,6.649]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.863,39,2.576,275,5.621,279,6.473,280,6.473]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.07,16,1.411,21,2.75,24,2.099,29,0.711,39,1.888,59,3.245,134,4.369,143,1.355,150,2.435,155,1.952,243,1.758,244,2.126,275,4.121,277,7.85,278,8.718,281,2.112,282,4.745,283,3.56,284,5.676,285,4.745,286,2.658,287,3.665,288,3.936,289,4.745,290,2.784,291,3.127,292,7.11,293,4.745,294,4.369,295,4.745,296,2.819,297,3.665]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.055,61,1.197,63,4.554,184,1.923,187,5.316]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.978,5,1.186,9,0.06,14,0.685,17,1.134,18,1.141,35,0.409,120,4.7,143,2.475,186,4.045,187,8.19,193,4.49,199,3.34,298,4.876,299,4.49,300,3.403,301,3.893,302,4.704,303,1.193,304,2.481,305,3.563,306,3.403,307,4.868,308,3.061,309,2.345,310,2.974,311,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.747,35,0.49]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.354,30,2.401,209,3.607,312,2.447,313,5.568,314,5.568,315,5.568]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.55,17,1.482,18,1.491,30,3.792,35,0.496,148,1.955,174,4.448,209,4.129,308,4.001,316,4.199,317,6.373,318,3.68,319,3.943,320,3.361,321,6.373,322,6.373,323,1.756,324,3.081,325,6.373]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.083,11,0.586,33,2.26,49,0.859,164,1.531,189,2.26,326,5.399,327,4.689]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.65,33,2.505,164,1.697,327,5.199,328,5.986,329,5.986]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.02,9,0.073,17,1.183,18,1.19,35,0.287,41,3.629,42,1.684,49,1.192,54,3.147,64,1.972,119,2.948,123,2.588,136,4.902,171,3.352,246,3.479,281,2.264,309,2.446,327,9.806,330,2.235,331,4.061,332,5.087,333,4.684,334,3.479,335,2.948,336,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[132,5.417,184,2.085,337,5.152,338,6.272]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.576,184,1.869,338,5.621,339,6.473,340,6.473]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.927,9,0.068,16,1.739,29,0.876,39,2.326,40,2.365,60,1.765,80,2.418,90,1.759,106,4.515,132,6.209,155,2.405,198,3.852,337,4.17,338,5.077,341,3.787,342,5.382,343,9.609,344,5.845,345,4.17,346,4.08,347,5.845]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.015,348,6.272,349,4.845,350,6.649]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[348,4.836,349,3.735,350,5.126,351,4.618,352,4.836,353,5.126,354,3.972]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.302,9,0.053,35,0.366,90,3.057,123,3.302,148,1.991,348,10.721,351,5.384,352,5.637,353,5.976,354,6.352,355,2.765]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.733,356,5.366,357,4.932,358,5.689,359,5.366]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.576,356,5.621,360,5.959,361,5.959,362,6.473]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.758,9,0.069,14,0.531,17,0.879,18,0.884,29,1.108,39,1.504,61,0.68,63,2.584,80,1.564,85,2.697,106,2.919,118,2.245,142,3.343,155,1.555,164,1.072,184,1.091,189,1.582,199,1.74,202,2.012,255,2.012,288,3.135,291,2.49,323,2.037,355,1.61,356,7.294,360,3.48,361,6.808,363,3.48,364,2.638,365,3.78,366,1.038,367,3.866,368,2.072,369,2.448,370,3.78,371,3.78,372,0.544,373,3.48,374,2.762,375,2.191,376,2.275,377,2.275,378,1.79,379,2.697,380,2.638]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.838,29,0.926,218,4.408,381,5.689,382,5.366,383,5.689]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.576,218,4.618,312,2.844,382,5.621,384,6.473]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.086,17,1.2,18,1.208,39,3.011,80,3.706,106,3.987,142,4.239,151,2.011,184,2.185,218,3.682,291,3.401,312,3.325,323,1.422,363,4.752,366,1.417,382,9.122,383,4.752,385,6.041,386,3.682,387,5.162,388,5.162]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.776,180,4.467,389,6.85]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[110,3.057,112,3.751,389,6.118,390,5.843]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.083,42,2.149,47,2.284,110,2.816,111,5.013,141,2.359,142,3.636,155,2.67,180,3.676,181,1.669,389,9.497,391,4.438,392,3.959,393,5.013,394,4.53,395,5.976,396,4.869]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.051,31,1.199,35,0.348,47,2.175,312,2.715,390,5.125]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.256,47,2.278,110,2.809,112,3.446,390,5.369]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.071,17,1.118,18,1.125,29,0.721,31,0.934,35,0.271,47,1.693,89,2.194,110,3.117,141,1.748,155,1.979,181,1.237,190,4.868,191,3.98,234,3.515,312,3.156,390,9.454,397,3.066,398,2.611,399,1.764,400,3.99,401,4.81,402,4.81,403,4.81,404,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.221,110,3.77]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[110,3.354,112,4.114,405,7.728]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,110,5.152,183,5.626,406,7.434]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.515,238,3.822,240,0.849,366,1.697,407,5.689]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[408,4.836,409,5.568,410,5.568,411,4.069,412,5.568,413,5.568,414,5.568]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.652,9,0.063,49,1.211,89,2.325,96,3.807,110,3.302,131,3.282,320,4.013,407,10.135,411,5.561,415,4.58,416,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.784,20,4.237,150,3.706,417,6.272]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.133,417,6.118,418,6.486,419,7.045]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.045,16,0.996,17,0.779,18,0.784,19,1.766,20,1.965,28,2.674,29,0.502,35,0.189,40,1.355,47,1.179,59,2.29,60,1.636,80,1.386,149,2.337,150,1.719,151,2.111,188,2.512,202,1.783,230,2.909,286,1.876,291,2.207,296,1.99,297,2.587,316,2.207,368,1.163,417,7.476,418,7.217,420,3.349,421,3.349,422,3.141,423,2.909,424,2.072,425,5.418,426,5.418,427,1.965,428,3.349,429,3.349,430,2.587,431,3.084,432,2.778,433,2.102,434,3.349,435,8.608,436,3.349,437,2.778,438,3.349,439,5.418,440,3.349,441,3.349,442,2.778,443,3.349,444,3.349,445,3.349]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.723,16,1.981,29,0.998,446,5.524,447,3.448]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[446,7.099,447,4.432]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.052,16,1.896,29,0.955,35,0.359,42,2.11,45,2.837,46,2.801,49,1.4,60,1.925,74,3.137,80,2.637,100,1.91,131,3.792,136,4.399,309,3.065,310,3.888,446,9.001]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[448,6.649,449,5.765,450,5.99,451,6.272]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.804,449,5.624,451,6.118,452,3.681]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.173,9,0.048,14,0.822,17,1.359,18,1.368,35,0.329,96,2.924,148,1.793,155,2.405,391,3.997,394,4.08,449,6.607,450,6.865,451,7.188,452,3.054,453,5.077,454,4.981,455,5.845,456,3.852,457,5.845,458,3.274,459,5.845,460,2.811,461,5.845]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.936,47,2.344,151,2.595,247,3.907,462,5.784]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[110,3.354,247,4.534,462,6.712]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.136,17,1.118,18,1.125,19,5.847,29,1.076,35,0.405,45,2.141,46,2.114,56,3.99,80,1.99,118,2.857,146,3.515,151,3.349,155,1.979,462,8.859,463,4.81,464,2.279,465,2.724,466,4.81,467,4.81,468,7.182,469,3.169,470,5.124,471,4.81]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.936,89,2.035,142,3.73,251,5.784,472,5.784]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.152,98,4.917,427,4.133,472,6.118]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.071,11,0.522,17,1.118,18,1.125,19,2.536,35,0.537,38,2.539,47,1.693,49,1.368,56,3.99,57,2.895,60,1.453,62,2.349,89,2.912,90,1.447,98,5.012,150,2.469,182,2.857,217,3.357,244,3.218,427,2.822,430,3.715,472,7.464,473,3.019,474,4.177,475,2.895]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.035,90,2.004,155,2.739,476,5.524,477,4.062]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[378,3.066,476,5.369,477,3.948,478,2.288,479,4.855]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[155,4.448,169,4.526,217,6.1,476,8.969,477,6.596]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[480,6.542,481,7.887,482,6.092]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.855,480,5.369,482,4.999,483,6.473,484,6.473]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.074,17,2.084,18,2.097,124,5.258,323,2.47,480,7.434,482,6.923]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.015,300,5.04,485,5.578,486,5.417]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[485,5.969,487,6.17,488,5.797]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.067,17,1.891,18,1.904,35,0.583,184,2.349,300,5.679,368,2.825,415,4.897,485,6.284,486,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.784,14,1.015,62,3.527,489,6.272]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[489,4.52,490,4.791,491,5.204,492,4.154,493,5.204,494,4.154,495,4.791,496,4.02]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.952,9,0.039,16,1.411,17,1.103,18,1.11,24,2.099,198,3.127,217,3.312,226,2.414,301,3.788,364,3.312,422,2.184,430,3.665,489,9.587,492,3.788,494,5.676,495,7.85,496,7.833,497,4.745,498,4.745,499,8.526,500,8.526,501,4.745,502,4.369,503,4.745]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.304,224,4.17,238,4.837,251,4.689,323,1.488,504,3.557]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[504,5.092,505,7.116,506,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.433,9,0.029,14,0.504,16,1.703,17,0.834,18,0.839,29,0.858,35,0.46,40,1.451,89,1.096,90,1.079,96,1.795,120,2.324,142,2.01,148,1.756,173,2.407,224,5.519,238,6.769,302,1.948,368,1.246,372,0.516,458,2.01,473,2.252,504,6.822,507,3.116,508,5.322,509,2.159,510,2.287,511,2.771,512,3.116,513,2.324,514,3.303,515,2.56,516,3.303,517,3.588]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.733,238,3.822,518,4.635,519,3.769,520,5.689,521,5.689]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[158,3.444,219,3.444,337,3.972,492,4.445,519,3.396,522,5.568,523,4.445]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.035,14,0.925,16,1.957,17,0.996,18,1.002,29,0.986,35,0.241,45,1.907,46,1.883,49,0.682,89,1.309,90,1.289,136,2.143,143,1.224,155,1.762,158,4.07,190,3.726,197,2.281,243,1.588,296,2.545,302,3.572,355,1.825,364,2.99,376,2.578,520,9.423,521,8.274,524,6.58,525,2.775,526,6.58,527,3.554,528,3.554,529,6.58,530,3.721]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.511,29,0.761,89,1.552,169,2.63,217,3.544,240,0.697,368,1.764,531,2.845,532,2.704]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[533,6.118,534,6.118,535,7.045,536,6.118]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.064,17,1.808,18,1.82,35,0.566,169,4.027,181,2,240,1.068,366,2.136,508,4.357,531,6.231]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.044,35,0.304,312,2.373,368,1.875,537,4.689,538,4.31,539,4.31,540,4.31]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[537,6.118,539,5.624,540,5.624,541,6.118]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.918,18,0.924,35,0.485,45,1.758,54,2.443,64,1.531,112,2.102,136,3.09,151,2.964,184,1.14,191,2.188,229,4.775,312,3.343,316,2.602,368,1.371,369,2.558,398,5.069,523,3.152,537,9.558,540,6.073,542,3.429,543,7.472,544,3.636,545,3.636,546,2.756,547,3.636,548,3.949,549,3.275,550,2.045]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.859,164,1.531,189,2.26,257,4.05,258,3.093,271,4.31,303,1.321,551,4.971]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[552,6.41,553,7.116,554,7.728]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.082,16,1.188,17,0.928,18,0.934,29,0.598,31,0.775,32,3.972,33,2.608,35,0.351,49,0.636,54,2.47,90,1.201,100,1.197,129,2.631,131,1.722,155,1.643,171,2.631,181,1.027,240,0.548,246,2.731,257,4.674,258,4.389,267,6.117,270,7.786,323,1.1,335,2.315,478,1.412,479,4.674,551,7.97,552,3.312,555,3.993,556,3.993,557,3.993,558,5.411]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.047,16,1.714,29,0.863,106,4.451,190,3.264,312,2.532,539,4.6]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[539,6.17,540,6.17,541,6.712]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.593,17,0.687,18,0.692,24,1.307,29,1.207,35,0.489,45,1.316,46,1.299,58,2.568,59,2.022,64,1.146,80,2.024,101,1.401,142,1.656,148,1.5,181,0.76,184,1.807,190,4.119,191,1.638,195,1.915,233,1.361,312,2.15,320,1.559,323,0.815,324,1.036,368,1.699,398,2.656,404,1.885,474,2.568,511,2.283,539,5.806,540,6.931,541,7.54,542,2.568,543,4.249,549,2.452,559,4.249,560,2.452,561,2.109,562,2.956,563,2.956,564,3.223,565,2.452,566,2.722,567,2.722,568,2.568,569,2.452,570,2.452,571,3.071,572,2.568,573,2.956]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[144,5.144,574,5.524,575,4.18,576,5.316,577,6.131]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.216,138,4.836,578,5.568,579,5.126,580,5.126,581,5.568,582,5.568]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.135,5,1.376,9,0.046,16,2.406,17,1.315,18,1.324,29,1.212,39,2.252,45,2.519,46,2.486,60,1.709,129,6.219,138,7.023,141,2.057,142,3.169,181,1.455,366,2.221,576,4.517,577,7.446,580,5.209,583,5.658,584,5.658,585,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.936,20,3.907,586,5.784,587,6.131,588,6.131]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.133,177,4.917,586,6.118,589,7.045]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.463,9,0.079,17,1.696,18,1.707,20,5.651,21,4.228,40,3.896,155,3.001,177,5.092,368,3.345,564,4.807,586,6.336]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.341,14,0.869,35,0.348,49,0.984,110,2.681,590,4.772]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[110,3.354,341,5.007,590,5.969]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.936,4,1.19,5,1.333,9,0.045,17,1.274,18,1.283,24,2.425,35,0.523,42,1.815,49,1.476,60,1.656,65,1.656,110,3.431,114,4.006,281,2.44,309,3.802,590,7.839,591,4.376,592,5.048,593,4.234,594,5.482]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.055,427,3.907,595,5.784,596,5.144,597,5.316]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[427,3.512,595,5.199,596,4.624,598,4.178,599,4.779,600,5.512]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.075,17,1.236,18,1.244,35,0.3,88,3.793,90,2.326,318,2.225,368,1.846,427,5.87,595,9.232,596,5.973,597,4.245,600,4.895,601,4.895,602,5.317,603,3.503,604,3.885,605,5.317,606,5.317,607,3.289,608,3.793,609,5.317,610,5.317]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.407,447,3.739,611,4.758,612,7.222]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[303,2.095,447,4.432]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.482,18,1.491,34,4.448,35,0.359,136,4.399,165,5.535,309,4.228,336,3.835,372,0.917,447,4.553,550,3.3,611,4.199,613,5.286,614,6.373,615,6.373,616,4.781,617,6.373,618,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.148,29,1.082,49,1.15,590,5.578]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[341,5.544,590,6.61]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.064,17,1.236,18,1.244,35,0.599,49,1.692,60,1.606,65,2.335,143,2.208,195,3.444,281,3.442,309,3.718,323,1.465,399,1.306,590,7.728,591,4.245,592,4.895,619,5.317,620,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.981,29,0.998,148,2.042,240,0.915,621,4.18]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[240,1.175,621,5.373]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.278,17,1.482,18,1.491,29,0.955,124,3.739,167,2.997,287,4.922,288,5.286,311,2.328,346,4.448,509,3.835,546,4.448,621,6.319,622,7.636,623,5.905,624,4.275,625,6.373,626,4.547]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.059,61,1.299,63,4.938,627,6.272]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[110,3.354,366,2.122,627,6.712]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.839,9,0.034,17,0.972,18,0.979,35,0.445,41,2.984,47,1.472,54,2.587,64,1.621,65,1.263,74,2.059,112,4.201,155,1.721,227,5.947,246,2.86,253,5.357,265,1.926,318,1.751,336,2.517,377,3.887,570,3.469,627,8.329,628,2.919,629,5.609,630,6.459,631,3.469,632,5.947,633,2.806,634,3.851,635,3.138,636,4.183,637,2.485,638,6.545,639,3.058]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,4.29,623,4.237,640,4.533,641,7.222]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,5.591,642,7.513]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.964,90,2.919,354,6.922,643,4.347]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.083,14,0.759,30,2.328,312,2.373,485,4.17,510,3.442,644,5.399,645,4.971]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.879,30,3.333,312,3.396]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.088,17,1.455,18,1.465,30,3.745,35,0.562,45,2.787,46,2.751,60,1.891,84,4.696,85,4.466,485,6.707,530,5.437,645,7.996,646,8.684,647,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.838,29,0.926,447,3.199,648,5.366,649,7.923]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.703,164,1.835,303,1.584,447,3.352,648,5.621]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.814,9,0.036,11,0.471,14,0.61,17,1.008,18,1.015,35,0.374,38,1.533,40,1.754,47,1.526,60,1.31,62,2.118,88,3.094,148,2.475,167,2.04,181,1.115,182,2.576,190,3.762,238,2.683,372,0.624,422,1.997,447,4.683,464,2.055,613,3.597,647,2.429,648,9.296,650,1.815,651,3.993,652,4.337,653,3.094,654,4.337,655,4.337,656,4.337]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.239,89,1.888,90,1.859,110,2.681,190,3.499,657,5.366]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[110,2.809,112,3.446,658,6.473,659,6.473,660,6.473]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.56,17,1.808,18,1.82,42,2.575,47,2.737,90,3.022,110,4.358,190,4.405,657,8.722,661,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.167,49,0.859,89,1.649,143,1.542,662,4.689,663,4.971,664,4.971]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[241,1.252,531,2.736,662,4.243,665,4.243,666,4.885,667,2.98,668,2.94,669,3.57,670,4.885]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.213,17,1.405,18,1.414,42,2.002,47,2.128,49,0.962,89,1.847,129,3.984,155,3.487,233,2.783,265,2.783,330,2.657,378,4.015,464,2.864,662,5.251,663,7.803,671,4.418,672,4.512,673,4.076,674,5.015,675,2.262]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.763,61,0.862,143,1.369,240,0.658,257,3.596,258,2.746,263,2.552,271,3.827,676,2.107]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[267,4.445,270,4.618,553,5.126,558,4.836,677,5.126,678,4.445,679,5.568]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.076,17,1.255,18,1.263,22,3.293,24,3.458,35,0.304,257,7.559,258,5.266,262,4.478,263,2.874,265,2.485,267,6.241,270,6.485,273,4.31,274,3.945,558,6.79,676,3.436,680,4.17,681,6.79,682,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.336,39,2.65,65,2.011,265,3.066,519,4.062]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.576,683,6.473,684,6.473,685,5.621,686,6.473]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.054,14,0.929,17,1.537,18,1.547,39,3.588,49,1.053,64,2.563,65,2.723,90,1.989,136,3.308,185,3.179,240,0.908,288,5.484,320,3.487,687,6.612,688,6.612,689,6.612,690,4.717,691,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.055,35,0.375,61,1.197,63,4.554,692,6.66]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[693,7.116,694,7.728,695,7.728]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.092,12,3.526,17,1.597,18,1.607,35,0.522,45,3.058,46,3.019,49,1.094,267,5.484,639,2.663,693,9.634,696,2.059,697,3.254]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,698,4.062]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.839,31,1.5,698,4.714]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.491,9,0.096,17,1.597,18,1.607,31,1.333,35,0.387,45,3.058,46,3.019,281,3.058,452,3.589,597,5.484,698,6.383,699,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.055,35,0.375,164,1.888,189,2.787,700,5.784]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[700,7.433,701,4.282]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.065,17,1.849,18,1.861,35,0.448,42,2.633,143,2.271,155,3.272,311,2.905,700,8.848,702,3.915,703,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.015,148,2.215,181,1.857,704,7.222]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[181,1.812,399,1.73,705,7.045,706,6.486]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.85,42,3.045,181,2.365,673,4.422,707,8.467,708,7.342]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.691,155,2.739,532,3.545,682,4.751,709,5.144]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[709,5.441,710,7.045,711,7.045,712,7.045]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.302,9,0.073,12,3.331,17,1.509,18,1.518,54,4.015,64,2.516,240,0.891,246,4.438,303,1.589,309,3.121,310,3.959,626,6.352,639,2.516,709,8.446,713,5.16]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,393,5.144,668,4.008]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[393,4.999,714,6.473,715,6.473,716,6.473,717,6.473]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.583,9,0.098,17,1.696,18,1.707,31,1.416,88,5.205,177,5.092,393,7.44,470,5.205,647,4.087,718,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.148,29,1.082,719,6.272,720,5.417]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[303,1.274,446,4.317,447,2.695,719,4.52,721,2.625,722,5.204,723,5.204,724,5.204]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.08,14,1.047,17,1.732,18,1.743,45,3.316,46,3.274,131,3.213,281,3.316,368,2.587,447,3.857,719,8.481,720,5.588,725,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.859,148,1.895,271,4.932,355,2.632,726,5.689]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[727,7.045,728,7.045,729,7.045,730,7.045]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.053,14,1.252,17,1.509,18,1.518,124,3.808,148,1.991,167,3.052,182,3.856,183,4.074,355,3.793,396,4.869,422,2.988,726,8.197,731,5.976,732,4.277,733,5.976,734,4.015,735,5.384,736,5.637]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.172,5,1.313,9,0.044,11,0.586,62,2.637,90,1.624,737,4.05,738,4.478]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.299,5,1.456,738,4.965,739,5.512,740,5.199,741,4.624]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.067,9,0.085,17,1.337,18,1.345,35,0.537,65,1.737,142,3.221,153,4.994,155,2.365,244,2.576,415,3.461,737,8.222,738,6.786,742,5.75,743,4.102,744,5.75,745,3.789]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.039,35,0.27,90,1.442,143,1.369,180,2.715,477,2.924,518,3.596,746,4.164,747,4.794,748,4.164]],["keywords//docs/applications/project-management/install-farmos/",[667,4.714,746,6.712,749,3.418]],["toc//docs/applications/project-management/install-farmos/",[4,1.383,9,0.052,17,1.482,18,1.491,35,0.359,45,2.837,46,2.801,129,4.199,155,2.622,233,2.934,241,1.634,324,2.233,334,4.358,378,3.019,647,3.57,673,3.065,746,9.424,750,6.373,751,3.188,752,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.336,110,2.89,359,5.784,458,3.73,690,4.751]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[458,4.794,753,8.559]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.526,110,4.297,118,4.521,359,6.609,432,6.312,433,4.777,458,6.531,464,3.605,754,7.007,755,7.007]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.336,49,1.06,756,2.376,757,2.82,758,5.316]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[759,6.473,760,6.473,761,6.473,762,6.473,763,6.473]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.083,11,0.705,17,1.509,18,1.518,35,0.366,46,2.852,49,1.033,155,2.67,183,4.074,305,4.743,378,3.075,396,4.869,477,3.959,673,3.121,757,2.749,758,5.181,764,3.597,765,6.491,766,2.441,767,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,768,6.272]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[668,4.651,768,6.712,769,5.394]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.518,9,0.081,14,0.625,16,1.323,17,1.034,18,1.04,29,0.666,35,0.382,45,1.979,46,1.954,49,0.708,64,1.723,141,1.616,142,2.491,148,2.076,219,2.75,240,0.93,243,1.647,276,2.262,281,3.013,305,3.249,307,2.983,311,1.624,334,3.04,546,3.103,621,2.791,675,1.664,757,1.883,766,1.672,768,9.019,770,4.094,771,4.446,772,4.446,773,3.249]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,182,3.423,303,1.41,320,3.039,369,3.733,774,4.6,775,4.451]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[643,2.9,774,5.167,776,5.959,777,6.473,778,6.473]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.064,15,4.681,17,1.808,18,1.82,35,0.438,69,6.209,320,4.102,676,3.418,774,8.88,779,2.246,780,3.798]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.042,32,3.237,33,2.126,49,0.808,89,1.552,240,0.697,449,4.054,450,4.213,781,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[125,5.843,675,2.636,782,7.045,783,7.045]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.352,9,0.055,17,1.566,18,1.576,32,4.295,33,2.82,35,0.515,65,2.035,90,2.027,240,0.925,368,2.34,449,7.291,450,7.576,766,2.534,784,6.738,785,4.11,786,3.458]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.371,124,4.627,596,6.092]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[596,6.61,599,6.832]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.117,9,0.066,17,1.295,18,1.303,54,3.445,90,1.675,99,5.184,148,2.452,197,2.965,246,3.808,283,4.177,508,3.119,523,4.446,596,7.896,597,8.643,787,9.354,788,5.569,789,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.047,11,0.626,62,2.814,368,2.001,675,2.156,790,5.005,791,5.005]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.576,139,5.959,790,5.621,791,5.621,792,3.322]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.302,5,1.578,9,0.073,16,1.931,17,1.509,18,1.518,29,0.972,35,0.366,45,2.889,46,2.852,47,2.284,281,2.889,465,3.676,675,2.429,790,9.952,791,5.637,793,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,11,0.552,49,0.808,61,0.913,304,2.584,794,4.676,795,4.676,796,4.676,797,3.473]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[181,1.54,796,5.512,798,5.986,799,4.178,800,5.986,801,5.986]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,14,0.726,17,1.2,18,1.208,35,0.291,40,2.088,49,1.747,99,2.86,126,3.401,224,5.844,304,4.558,368,2.628,571,3.24,732,4.986,794,8.248,795,8.248,799,3.602,802,3.772,803,4.281,804,4.483,805,3.987,806,5.162]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.059,11,0.784,49,1.15,807,6.649]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.765,808,7.045,809,7.045,810,7.045]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.074,17,1.537,18,1.547,45,2.943,46,2.906,174,6.293,281,2.943,807,6.088,811,9.017,812,9.017,813,9.017,814,9.017,815,9.017,816,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.051,11,0.671,35,0.348,62,3.017,140,3.258,312,2.715]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[817,7.045,818,7.045,819,4.422,820,6.118]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.192,9,0.049,14,0.836,35,0.335,40,2.404,89,1.816,131,2.563,140,3.135,155,3.445,190,3.366,191,5.374,233,2.736,312,2.612,404,6.711,452,3.106,559,5.162,560,4.93,820,5.162,821,5.944,822,5.162,823,5.944]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.239,11,0.671,39,2.459,142,3.461,366,1.697,824,5.689]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.076,685,6.712,825,7.728]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.809,9,0.054,17,1.537,18,1.547,39,4.083,96,3.308,106,5.107,142,6.174,167,3.109,366,2.476,685,5.742,826,4.832,827,4.832,828,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[829,0.474]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.221,830,6.348]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.711,38,3.765,110,3.701,150,4.378,458,4.778,830,8.485]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.341,9,0.051,11,0.671,35,0.348,62,3.017,831,4.932]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.677,832,7.116,833,7.728]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.469,5,1.738,9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,195,4.63,300,4.988,318,2.991,368,2.482,831,8.522]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,834,5.144]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[834,5.969,835,7.728,836,7.728]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.494,4,1.617,9,0.08,17,1.732,18,1.743,35,0.55,303,1.823,323,2.053,465,4.219,482,5.754,713,4.318,834,7.542]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.671,61,1.111,74,3.041,99,3.424,550,3.199,837,2.825]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.65,61,1.076,838,4.624,839,4.624,840,4.491,841,4.271]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.348,89,1.888,90,1.859,504,4.071,643,2.768]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[504,5.092,505,7.116,842,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.052,16,1.896,17,1.482,18,1.491,29,0.955,120,5.696,124,3.739,148,1.955,185,4.228,355,2.715,504,7.502,643,4.51,843,6.373,844,5.535,845,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.263,469,5.197,846,5.763]],["keywords//docs/security/getting-started-with-selinux/",[309,3.112,846,4.73,847,6.473,848,6.473,849,6.473]],["toc//docs/security/getting-started-with-selinux/",[9,0.065,17,1.849,18,1.861,45,3.54,46,3.495,229,4.993,846,8.662,850,7.953,851,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.293,47,2.344,89,2.035,110,2.89,112,3.545]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[110,3.057,112,3.751,830,5.148,852,7.045]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.931,110,4.552,112,6.114,149,5.813,173,5.587,355,3.548,571,5.228]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.055,35,0.375,368,2.313,369,4.314,853,5.784]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[853,5.199,854,5.986,855,5.986,856,4.491,857,5.986,858,5.986]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.067,14,1.144,45,3.622,46,3.575,99,4.509,290,4.773,853,10.382,859,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.051,47,2.175,110,2.681,112,3.289,442,5.125,458,3.461]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[110,3.057,112,3.751,830,5.148,860,7.045]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.059,17,1.662,18,1.672,31,1.387,54,4.422,80,2.957,110,4.632,311,2.611,442,5.929,458,5.323,518,5.362,640,4.487,861,7.148,862,6.581]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.059,11,0.784,824,6.649,863,6.649]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[864,7.728,865,7.728,866,7.728]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.054,17,1.537,18,1.547,45,2.943,46,2.906,88,4.717,90,1.989,155,2.72,218,8.229,271,5.278,377,3.979,863,9.447,867,5.742,868,6.612,869,5.107]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[829,0.474]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.065,11,0.857,846,5.763]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[117,2.016,846,4.73,870,5.959,871,6.473,872,5.369]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.072,17,2.032,18,2.045,45,3.891,46,3.841,377,5.26,846,6.387,870,8.048]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[110,3.77,124,5.097]],["keywords//docs/applications/containers/introduction-to-docker/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.891,46,3.841,110,5.094,458,4.896,657,7.591,830,6.387]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.051,61,1.111,184,1.784,263,3.289,650,2.586,873,5.366]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[873,6.118,874,7.045,875,4.491,876,6.118]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.978,9,0.04,17,1.134,18,1.141,35,0.409,45,2.171,46,2.143,100,1.462,143,1.393,148,1.496,155,2.985,171,3.213,181,1.254,184,1.408,265,2.245,302,2.647,303,1.193,311,1.781,323,2.388,324,1.708,333,4.49,335,2.826,496,3.766,611,3.213,616,3.658,639,1.89,650,2.041,873,9.673,877,3.563,878,4.876]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.493,16,1.35,29,0.68,62,2.217,144,3.506,164,1.287,189,1.9,190,2.571,312,1.995,862,4.18,879,3.506]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.456,879,4.624,880,5.986,881,4.178,882,4.491,883,3.02]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.074,18,1.081,20,2.711,29,1.044,35,0.26,54,2.859,60,1.396,141,1.68,148,2.137,171,3.045,190,5.292,219,4.311,240,0.635,246,3.16,255,2.46,309,2.222,311,1.688,312,3.687,335,2.678,559,4.013,637,2.745,647,3.904,675,3.14,751,3.487,766,1.738,879,7.217,884,2.946,885,2.993,886,2.711]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[229,4.951,433,4.951,846,5.763]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[846,7.007]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.936,116,3.418,118,3.956,323,1.835,464,3.155]],["keywords//docs/quick-answers/linux/how-to-use-git/",[117,2.195,887,7.045,888,5.843,889,7.045]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.221,890,6.71]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[117,2.195,890,5.441,891,5.843,892,5.026]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.327,64,3.66,148,2.896,890,7.293,893,9.443]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.015,89,2.206,158,4.467,346,5.04]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[158,3.703,226,3.046,253,4.965,894,5.986,895,4.374,896,4.491]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.59,54,3.557,89,2.909,155,3.917,158,6.417,173,3.858,246,3.932,253,9.721,346,7.24,352,4.994,509,3.461,896,4.314,897,5.75]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.059,35,0.407,89,2.206,898,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[898,6.118,899,5.843,900,6.118,901,4.917]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.537,9,0.085,16,1.188,17,0.928,18,0.934,29,0.598,34,2.787,35,0.529,89,1.904,141,2.265,142,2.237,173,2.679,188,2.996,226,3.17,255,2.126,302,2.168,311,2.276,318,1.671,368,1.387,386,2.849,397,2.546,458,2.237,513,4.036,637,2.372,643,1.789,673,1.92,898,7.517,902,3.993,903,2.996,904,3.677,905,2.849,906,2.343,907,3.993,908,3.188,909,2.787,910,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.047,11,0.626,164,1.634,189,2.412,240,0.791,879,4.451,911,5.763]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.456,879,4.624,881,4.178,883,3.02,912,5.986,913,5.986]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.064,17,1.255,18,1.263,35,0.441,54,3.339,124,3.167,148,1.656,151,2.103,155,3.216,233,2.485,240,0.741,246,3.691,255,2.874,265,2.485,303,1.321,311,1.972,312,2.372,460,2.596,631,4.478,713,3.129,827,3.945,879,8.261,914,3.851,915,4.97,916,3.768,917,4.97]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.936,89,2.035,112,3.545,117,2.075,918,4.751]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[110,3.354,918,5.514,919,7.728]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.991,34,4.615,35,0.373,95,4.832,100,1.982,112,5.463,117,3.197,229,4.151,346,4.615,513,4.283,637,3.928,676,2.906,867,5.742,920,6.612,921,5.278,922,5.742,923,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.059,12,3.706,164,2.048,189,3.022]],["keywords//docs/development/java/install-java-on-centos/",[13,5.369,164,2.52,924,6.473,925,5.959]],["toc//docs/development/java/install-java-on-centos/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.059,12,3.706,61,1.299,263,3.844]],["keywords//docs/development/java/install-java-on-debian/",[13,5.843,61,1.267,262,5.843,925,6.486]],["toc//docs/development/java/install-java-on-debian/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.059,11,0.784,12,3.706,62,3.527]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.618,11,0.703,12,3.322,13,5.369,929,4.004]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.068,10,5.942,12,4.274,17,1.936,18,1.948,29,1.248,142,4.665,262,6.908,826,6.086,929,5.152]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.055,11,0.723,31,1.293,62,3.252,930,5.784]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.162,236,4.965,882,4.491,895,4.374,930,5.199,931,5.986]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.278,4,1.383,9,0.083,11,0.692,14,0.896,31,1.707,35,0.567,80,2.637,100,1.91,141,2.317,296,3.786,305,4.657,766,2.396,930,8.742,932,6.373,933,6.373]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.776,89,2.41,458,4.418]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.199,89,2.41,311,2.881]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[112,3.844,117,2.25,676,3.173,918,5.152]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[918,5.026,935,7.045,936,4.642,937,5.624]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[308,5.228,643,3.732,676,4.61,905,5.942,916,5.813,918,7.485,938,5.813,939,6.908]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.206,940,4.467,941,3.844,942,3.257]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.41,226,4.013,896,5.916]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.936,117,2.075,148,2.042,255,3.545,943,4.996]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[349,4.726,369,4.564,943,5.285,944,5.624]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,148,2.681,171,5.759,323,2.409,943,8.111,945,7.591,946,8.741]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.051,49,0.984,164,1.752,189,2.586,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[948,7.116,949,7.116,950,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.051,11,0.671,49,0.984,62,3.017,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[948,7.116,949,7.116,953,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.059,164,2.048,189,3.022,954,4.845]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.352,5,1.638,9,0.075,17,1.566,18,1.576,35,0.38,45,2.999,46,2.961,64,2.612,241,1.727,324,2.361,364,4.703,368,2.34,392,4.11,647,3.775,954,7.452]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[117,2.25,355,3.077,376,4.346,735,5.99]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[349,3.735,369,3.607,470,3.972,735,4.618,736,4.836,944,4.445,956,5.568]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.213,117,1.95,349,5.826,355,3.7,598,4.369,635,4.696,640,3.93,803,5.193,957,5.764,958,5.764,959,6.26,960,5.193,961,4.696,962,6.26,963,6.26,964,6.26,965,5.193,966,6.26,967,5.193,968,5.764,969,5.437,970,6.26]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,355,3.36,892,5.627]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[117,2.195,891,5.843,892,5.026,971,4.491]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,355,3.36,972,6.296]],["keywords//docs/quick-answers/linux/how-to-use-head/",[117,2.016,148,1.985,891,5.369,972,5.167,973,6.473]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,355,3.36,974,6.296]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[117,2.016,148,1.985,891,5.369,974,5.167,975,6.473]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.761,475,3.468,631,4.78,639,2.234,976,5.005,977,4.022]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.565,49,0.828,117,1.621,164,1.476,303,1.274,643,2.332,776,4.791,978,4.791]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.088,18,1.095,19,2.469,99,2.595,100,1.403,214,3.141,233,3.894,310,2.856,318,1.96,324,2.963,464,2.218,509,2.818,546,3.268,560,3.884,639,1.815,643,2.098,751,2.342,936,3.085,942,2.112,979,4.682,980,3.341,981,3.341,982,4.311,983,5.838,984,4.066,985,4.682,986,4.311,987,4.311,988,3.341,989,4.311,990,4.066,991,4.311,992,4.682,993,4.682,994,4.682]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,995,5.144,996,6.66]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.565,668,3.132,882,3.904,995,4.02,997,4.791,998,4.791,999,4.791,1000,5.204]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.573,5,1.142,9,0.074,17,0.654,18,0.659,30,2.026,35,0.478,39,1.12,42,1.555,45,1.253,46,1.237,49,0.962,60,2.715,100,1.408,118,1.672,120,1.824,141,1.023,142,3.385,144,3.628,148,1.441,151,1.097,281,2.69,309,2.259,311,1.028,323,1.294,324,2.472,392,2.865,423,2.445,433,2.948,616,3.523,628,1.965,676,2.064,718,2.335,995,8.008,1001,2.592,1002,2.592,1003,2.445,1004,2.592,1005,3.75,1006,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.531,181,1.389,189,2.26,1007,5.714,1008,4.971,1009,7.199]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.697,240,0.822,1007,4.374,1008,5.512,1010,5.986,1011,5.986]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.521,9,0.058,14,0.985,17,1.629,18,1.639,35,0.395,100,2.1,141,3.408,151,2.73,240,0.962,1007,6.851,1009,10.391,1012,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.658,101,2.558,102,4.05,164,1.531,906,3.167,1013,2.273,1014,4.971]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1015,6.17,1016,7.728,1017,7.728]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.08,35,0.547,74,4.776,906,5.692]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1018,3.828]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.059,89,2.206,99,4.002,101,3.421]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[899,5.843,900,6.118,901,4.917,1019,6.486]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.067,35,0.461,64,2.229,89,3.169,90,1.73,99,3.187,100,1.723,101,2.724,141,2.974,226,2.926,337,4.102,458,3.221,632,5.294,634,5.294,639,2.229,901,4.013,905,4.102,906,4.799,941,3.061,1020,5.75,1021,5.75,1022,3.932]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1023,3.822,1024,6.85,1025,5.763]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1024,6.118,1025,5.148,1026,5.843,1027,5.285]],["toc//docs/platform/upgrade-to-hourly-billing/",[530,8.664,1023,4.834,1028,3.77]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.654,896,6.517]],["keywords//docs/platform/disk-images/resizing-a-linode/",[896,6.42,1023,4.147]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.137,896,7.702]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,263,3.545,1029,5.784]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.839,1029,6.712,1030,7.728]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.061,17,1.732,18,1.743,35,0.42,185,3.582,320,3.929,323,2.053,324,2.61,480,6.179,639,2.887,780,3.638,1029,10.042]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.059,164,2.048,189,3.022,697,3.421]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.256,5,1.522,9,0.051,17,1.455,18,1.465,24,2.769,35,0.353,80,2.59,90,1.883,155,2.575,156,2.862,265,2.882,290,3.673,299,5.764,324,3.043,379,4.466,571,3.93,697,5.359,1033,4.998]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.156,11,0.626,49,0.917,62,2.814,1034,5.306,1035,5.306,1036,5.763]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.839,49,1.23,1037,7.728]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.192,9,0.049,17,1.382,18,1.391,29,0.89,35,0.335,41,4.241,49,1.833,57,3.577,131,2.563,136,2.974,323,1.638,509,3.577,651,5.473,802,4.343,1034,9.693,1038,5.845,1039,5.944]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.059,164,2.048,189,3.022,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[164,1.997,1040,4.726,1041,6.486,1042,7.045]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.915,4,0.99,5,1.109,9,0.076,17,1.06,18,1.067,21,2.644,29,1.034,35,0.562,45,2.03,46,2.004,49,0.726,64,1.768,111,3.523,141,1.658,167,2.145,189,1.909,240,0.626,241,1.169,255,2.428,303,1.116,318,1.909,324,2.418,392,4.21,532,2.428,564,3.005,618,2.71,675,1.707,884,2.908,1040,6.688,1043,4.199]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.765,1040,4.726,1041,6.486,1044,7.045]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.952,4,1.03,5,1.154,9,0.058,17,1.103,18,1.11,21,2.75,29,1.065,35,0.572,45,2.112,46,2.085,49,0.755,64,1.839,111,3.665,141,1.725,167,2.232,240,0.652,241,1.216,255,2.526,303,1.161,318,1.986,324,2.491,392,4.337,532,2.526,564,3.127,618,2.819,675,1.775,884,3.025,1040,6.804,1043,4.369]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.27,43,2.779,61,0.862,180,2.715,752,3.159,757,2.03,1045,1.803,1046,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.703,61,1.164,1045,2.434,1046,5.369,1047,4.73]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.333,9,0.045,17,1.274,18,1.283,35,0.309,49,0.873,60,1.656,148,1.681,155,2.255,180,3.105,303,1.935,311,2.002,639,2.125,751,2.743,756,1.956,780,2.677,942,4.182,1045,4.215,1046,4.547,1048,4.376,1049,5.048,1050,4.547,1051,5.482,1052,5.482]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.502,9,0.051,30,2.665,164,1.752,189,2.586,1053,3.354]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.038,881,4.917,1054,5.624,1055,4.297]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.343,5,2.33,9,0.055,17,0.757,18,0.762,22,1.986,30,3.325,35,0.184,100,0.976,131,1.404,155,2.179,164,0.923,173,4.49,185,1.566,197,1.734,209,3.431,265,2.438,303,1.887,320,1.717,324,1.141,369,2.11,377,1.96,422,3.081,509,4.028,544,2.998,639,2.989,649,2.998,702,1.603,1056,5.208,1057,5.296,1058,5.296,1059,2.443,1060,6.314,1061,2.227,1062,3.256]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.449,29,1.082,697,3.421,1063,7.222]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[312,3.096,697,3.337,883,3.554,1064,7.045]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.192,16,1.768,17,1.382,18,1.391,29,0.89,35,0.547,45,2.646,46,2.612,60,1.795,80,2.459,148,2.569,155,2.445,181,1.529,233,2.736,320,3.135,324,2.083,650,2.488,697,3.967,713,3.445,751,2.974,1065,4.691,1066,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.837,61,0.775,199,1.985,263,2.295,531,2.415,550,3.423,675,1.613,938,3.009,1067,3.33,1068,3.15]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.162,531,3.353,675,2.24,819,3.758,1067,4.624,1069,5.199]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.083,9,0.076,17,1.255,18,1.263,31,1.518,35,0.603,45,2.403,46,2.372,60,1.63,99,2.992,148,1.656,199,2.485,241,1.384,255,2.874,422,2.485,427,3.167,531,3.024,647,3.024,1067,7.783,1070,4.688,1071,4.05,1072,5.398,1073,5.398]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.654,1074,6.348]],["keywords//docs/platform/disk-images/clone-your-linode/",[934,5.647,1074,7.309]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.137,1074,7.502]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.059,164,2.048,189,3.022,240,0.992]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[164,2.191,240,1.061,881,5.394]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,143,1.496,155,2.155,181,1.347,192,2.428,240,1.05,303,1.872,307,3.514,366,1.438,510,4.876,532,2.789,546,3.656,673,2.519,675,2.862,1075,4.182,1076,7.042,1077,5.589,1078,4.182,1079,4.823]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,164,1.359,182,2.848,189,2.006,213,3.106,214,3.216,320,2.528,643,2.148,775,3.703,942,2.162]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[643,3.463,1080,7.116,1081,7.728]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,65,2.116,182,4.162,233,4.316,320,4.945,751,3.505,775,5.411,1082,7.006,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.468,14,0.606,61,0.775,62,2.105,182,2.561,213,2.793,214,2.892,263,2.295,320,2.274,643,1.932,775,3.33,942,1.945]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.703,61,1.164,643,2.9,1080,5.959,1085,6.473]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,182,4.162,233,4.316,320,5.573,751,3.505,752,4.616,775,5.411,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.348,49,0.984,307,4.145,639,2.395,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[447,3.648,650,2.949,721,3.554,1086,4.036]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.17,17,1.696,18,1.707,29,1.093,49,1.161,60,2.203,311,2.665,397,4.651,623,4.28,639,2.828,721,3.68,780,3.563,1086,4.179,1087,4.39,1088,5.473,1089,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,117,1.925,219,3.822,223,4.932,226,3.144,620,4.515]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,223,5.624,872,5.843,1090,7.045]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.278,9,0.072,14,0.896,17,1.482,18,1.491,35,0.359,61,1.581,89,1.947,141,2.317,219,6.227,223,5.088,226,4.474,263,3.393,303,1.56,323,1.756,400,5.286,906,3.739,1091,4.781]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.307,89,1.552,238,3.142,240,0.697,286,2.845,1092,5.079,1093,4.411,1094,4.411]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[579,6.486,1094,6.118,1095,4.24,1096,6.486]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.532,16,0.799,17,0.625,18,0.628,29,0.402,60,0.811,80,1.869,89,0.821,90,0.808,96,2.26,129,1.77,148,1.385,173,3.03,184,1.304,190,3.88,233,1.237,243,0.995,312,5.174,336,1.617,355,1.924,368,1.568,458,3.837,514,4.158,571,2.835,673,1.292,885,2.926,1091,3.388,1094,9.577,1096,8.846,1097,2.686,1098,2.228,1099,2.228,1100,2.686,1101,2.473,1102,4.517]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,531,4.045]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[533,6.118,534,6.118,536,6.118,1103,6.486]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.083,9,0.064,17,1.255,18,1.263,29,0.809,31,1.048,35,0.568,148,2.398,231,3.851,240,0.741,241,1.384,318,3.272,512,4.688,531,5.991,545,4.97,546,6.415,690,3.851,1103,8.463,1104,5.398]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.936,233,3.066,320,3.512,643,2.984,914,4.751]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[320,2.744,643,2.332,774,4.154,914,3.713,1105,5.204,1106,5.204,1107,4.791,1108,4.791]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.255,18,1.263,89,1.649,96,2.701,155,2.221,233,5.133,303,1.914,318,2.259,320,2.847,453,4.688,574,4.478,643,2.419,751,3.911,774,4.31,914,6.558,1022,3.691,1068,3.945,1084,3.497,1107,4.97,1109,5.398,1110,7.818,1111,4.688,1112,5.398]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.059,89,2.206,117,2.25,1113,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.318,899,4.965,1113,5.199,1114,5.986,1115,5.986,1116,5.986]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,49,0.834,64,2.03,65,1.582,74,2.578,89,1.6,95,3.828,117,2.383,141,1.904,226,2.665,229,3.288,303,1.282,323,1.443,458,2.934,513,3.393,633,3.514,637,3.112,909,3.656,1113,7.847,1117,3.828,1118,4.182,1119,5.238]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.065,164,2.236,1120,4.811]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1120,4.297,1121,7.045,1122,7.045,1123,7.045]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.058,14,1.318,35,0.528,42,2.32,74,3.448,89,2.14,90,2.108,478,3.736,696,2.81,785,4.273,1120,5.719,1124,6.45]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[185,4.178,639,3.367]],["keywords//docs/networking/remote-access/",[642,5.167,1125,6.473,1126,6.473,1127,6.473,1128,6.473]],["toc//docs/networking/remote-access/",[14,1.124,29,0.834,32,5.097,35,0.314,207,5.557,234,4.069,478,2.827,519,3.397,622,4.836,623,5.997,639,3.099,643,2.495,650,3.346,672,4.257,905,3.973,916,5.58,940,3.445,1084,3.607,1129,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.634,675,2.156,766,2.167,786,2.958,1130,4.022,1131,3.617,1132,1.869]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.697,1131,3.758,1132,1.941,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.586,61,0.971,550,2.796,675,2.02,766,2.03,786,2.771,1130,3.768,1131,3.389]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.65,61,1.076,1131,3.758,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.199,47,2.175,145,4.772,146,4.515,305,4.515,675,2.312]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.5,305,5.647,675,2.892]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.067,17,1.236,18,1.244,31,1.032,35,0.3,49,0.846,60,1.606,99,2.947,199,4.195,233,2.448,303,1.301,307,3.567,311,1.942,379,3.793,397,5.809,460,2.557,624,3.567,702,2.617,980,3.793,981,3.793,1139,4.107,1140,5.317,1141,5.317,1142,5.317,1143,5.317,1144,5.317,1145,5.317,1146,5.317,1147,5.317,1148,5.317]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.278,99,3.691,164,1.888,189,2.787,837,3.045]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[164,1.835,838,4.999,839,4.999,840,4.855,841,4.618]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[181,1.857,276,3.674,510,4.603,1077,5.277]],["keywords//docs/websites/host-a-website-with-high-availability/",[488,5.285,550,3.648,701,3.525,1129,5.624]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.062,17,0.908,18,0.914,35,0.555,49,0.622,60,2.281,90,1.175,155,3.107,190,2.212,240,0.841,303,0.956,307,2.62,309,3.632,310,4.607,312,1.716,318,1.634,337,2.786,477,2.382,478,1.381,519,2.382,531,2.187,546,2.725,623,2.291,633,2.62,1065,3.43,1076,7.873,1078,6.029,1079,5.637,1129,3.117,1149,3.905,1150,6.123,1151,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[124,4.627,510,5.028,1077,5.763]],["keywords//docs/websites/introduction-to-high-availability/",[181,1.812,276,3.585,488,5.285,1129,5.624]],["toc//docs/websites/introduction-to-high-availability/",[5,1.578,49,1.033,143,1.854,148,1.991,184,1.874,300,4.53,323,1.788,422,2.988,486,4.869,492,5.181,510,6.971,733,5.976,877,4.743,1077,7.991,1129,7.107]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,411,5.277]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.765,62,3.44,408,6.118,411,5.148]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.046,17,1.295,18,1.303,35,0.314,49,1.273,68,6.835,80,2.304,89,1.701,117,2.491,119,4.634,123,4.068,131,3.448,303,1.363,336,4.812,411,7.911,618,4.75,620,4.069,637,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.059,11,0.784,30,3.114,62,3.527]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.791,882,4.855,1054,5.167,1055,3.948,1152,4.342]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.876,5,1.944,9,0.066,11,0.605,17,1.295,18,1.303,30,4.86,35,0.314,62,2.719,185,2.678,197,2.965,209,3.607,303,1.957,324,1.951,391,3.808,639,3.099,1053,3.023,1056,3.19,1060,3.669,1153,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,697,3.155,1154,6.131]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.326,5,1.608,9,0.054,17,1.537,18,1.547,24,2.924,35,0.373,80,2.735,90,1.989,155,2.72,156,3.023,265,3.044,290,3.879,324,2.317,571,4.151,697,5.464,1033,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.586,14,0.759,49,0.859,62,2.637,143,1.542,1154,4.971,1155,3.293,1156,5.399]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.035,9,0.042,17,1.2,18,1.208,35,0.291,40,2.088,120,3.344,145,3.987,146,3.772,154,3.682,167,2.427,181,2.538,244,2.313,311,1.885,355,2.199,366,2.709,368,1.792,376,3.106,397,3.29,518,3.872,647,4.239,957,4.752,1155,4.616,1158,6.572,1159,4.483,1160,1.99,1161,5.162]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.671,61,1.111,100,1.852,263,3.289,303,1.512,667,3.769]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.669,240,0.765,241,1.427,667,3.396,668,3.351,1162,3.669,1163,5.126]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.434,2,3.805,17,1.662,18,1.672,64,2.77,77,5.929,100,2.142,148,2.192,156,3.268,229,4.487,303,1.749,323,1.97,532,5.059,572,6.208,635,5.362,1023,3.463]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,240,0.915,1164,3.73]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1165,7.045,1166,7.045,1167,7.045,1168,7.045]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.072,14,1.229,17,2.032,18,2.045,60,2.64,240,1.2,1164,6.057]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.102,9,0.042,11,0.552,31,0.986,62,2.48,117,1.582,241,1.302,258,2.909,1169,2.584]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1169,3.585]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.359,5,1.522,9,0.071,17,1.455,18,1.465,31,1.936,35,0.353,47,2.203,49,1.382,60,1.891,143,1.788,181,1.61,241,1.605,258,3.586,318,2.62,366,1.719,780,4.241,1160,2.414,1169,3.185]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,258,3.815,749,2.945]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[882,4.855,1170,6.473,1171,6.473,1172,6.473,1173,6.473]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.192,4,2.105,5,1.445,9,0.08,14,0.836,17,1.382,18,1.391,35,0.472,60,1.795,181,1.529,240,1.15,241,1.524,258,3.405,318,2.488,366,1.632,674,4.93,749,2.629,780,4.09,1174,5.944,1175,5.944]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.784,62,3.527,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.839,62,3.774,1023,3.745]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.052,11,1.093,15,3.835,16,1.896,42,2.11,62,3.112,74,3.137,89,1.947,100,1.91,141,2.317,510,4.063,571,4.001,764,3.532,967,5.286,1006,3.271,1023,4.877,1176,4.328,1177,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.051,11,0.671,49,0.984,61,1.111,140,3.258,263,3.289]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[140,3.157,875,3.816,1178,5.986,1179,5.986,1180,5.986,1181,5.512]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.08,11,0.545,16,1.492,17,1.166,18,1.173,29,0.751,35,0.548,38,1.773,61,0.902,89,2.691,100,1.503,101,2.376,140,5.131,141,1.823,157,3.102,182,2.979,191,2.779,303,1.227,318,2.099,319,3.102,323,1.382,400,4.16,404,3.197,886,2.942,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.055,35,0.375,140,3.512,164,1.888,189,2.787]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[140,3.715,164,1.997,881,4.917,1181,6.486]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.072,14,0.705,16,1.492,17,1.166,18,1.173,29,0.751,35,0.497,38,1.773,89,2.691,101,2.376,140,5.474,141,1.823,156,2.293,157,3.102,191,2.779,234,3.664,303,1.227,318,2.099,319,3.102,320,2.645,323,1.382,400,4.16,404,3.197,886,2.942,942,2.262,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.051,11,0.671,61,1.111,263,3.289,1183,3.67,1184,5.125]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.65,184,1.728,875,3.816,1183,3.556,1185,5.986,1186,5.986]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.173,9,0.068,17,1.359,18,1.368,35,0.329,41,4.17,45,2.602,46,2.569,141,2.125,143,2.364,150,3,240,0.803,302,4.493,324,2.048,330,2.569,331,4.666,427,3.429,639,2.266,1061,3.997,1183,6.552,1184,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.986,35,0.286,151,1.979,452,2.654,764,2.815,1187,4.676,1188,2.704]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.162,194,5.512,1189,3.603,1190,5.986,1191,5.986,1192,4.016]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.463,9,0.094,17,1.696,18,1.707,31,1.416,35,0.543,80,3.018,151,2.842,452,3.812,1187,8.868,1188,3.884]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.065,89,2.41,1193,6.85]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1193,7.433,1194,8.559]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.07,89,2.606,117,2.657,124,5.004,141,3.101,230,7.408,1193,10.084]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.047,11,0.626,14,0.81,470,4.111,531,3.228,764,3.194,1195,5.005]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.565,240,0.715,427,3.053,531,2.915,1196,5.204,1197,5.204,1198,5.204,1199,4.02]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.421,9,0.091,16,1.739,29,0.876,38,2.067,88,4.17,100,2.88,174,4.08,183,3.669,294,5.382,355,2.49,427,3.429,470,5.905,531,4.636,696,1.752,827,4.271,856,4.385,1195,7.188,1199,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.119,169,2.984,276,2.932,1068,4.211,1200,5.306,1201,5.306,1202,4.451]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[116,3.322,1202,4.999,1203,4.999,1204,6.473,1205,6.473]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.434,9,0.078,17,1.662,18,1.672,31,1.845,96,3.576,181,1.838,366,1.963,452,3.735,699,4.048,1200,6.581,1201,8.749,1202,7.339]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.055,11,0.723,61,1.197,1206,6.131,1207,6.131]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[799,4.517,802,4.73,1208,6.473,1209,5.959,1210,5.959]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.043,17,1.218,18,1.225,35,0.295,40,2.119,49,1.582,99,2.903,131,2.259,224,6.978,368,1.819,696,1.57,732,3.451,797,6.178,804,4.549,805,4.046,1206,9.147,1207,9.147,1209,4.823,1210,4.823,1211,4.823,1212,5.238,1213,5.238]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.239,9,0.051,219,3.822,675,2.312,766,2.323,1214,6.179]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[766,2.906,1215,7.728,1216,7.728]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.1,9,0.045,17,1.274,18,1.283,64,2.125,77,4.547,100,2.37,167,2.578,183,3.441,219,6.279,296,4.697,318,3.309,430,4.234,675,3.469,766,3.816,1217,10.15,1218,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.808,283,3.81,396,3.81,764,2.815,1219,4.676,1220,4.676,1221,4.676,1222,4.676]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1038,3.037,1192,2.919,1222,4.006,1223,4.351,1224,4.351,1225,4.351,1226,4.351,1227,4.351,1228,4.006,1229,3.361]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.048,17,1.359,18,1.368,29,0.876,35,0.329,49,1.53,80,2.418,229,3.669,283,6.209,661,4.849,696,1.752,936,3.852,1038,7.293,1139,4.515,1219,7.62,1220,7.62,1221,7.62,1230,4.515,1231,5.382]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.047,49,0.917,304,2.932,1184,4.78,1232,5.306,1233,5.306,1234,5.005]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[799,4.917,1229,5.441,1235,7.045,1236,7.045]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.056,14,0.966,17,1.597,18,1.607,35,0.387,49,1.473,89,2.099,141,2.497,304,4.708,799,4.794,965,5.698,1184,7.675,1232,8.52,1233,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.047,61,1.036,240,0.791,241,1.477,263,3.068,1237,4.78,1238,4.211]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[240,0.671,241,1.252,875,3.114,1069,4.243,1160,1.884,1239,4.885,1240,2.707,1241,4.498,1242,4.498]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.061,17,1.732,18,1.743,35,0.55,240,1.023,241,2.793,406,6.179,496,5.754,938,5.199,1237,8.1,1241,6.859]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.671,47,2.175,764,3.424,1243,5.689,1244,5.366,1245,4.772]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1243,4.791,1244,4.52,1245,4.02,1246,5.204,1247,4.791,1248,5.204,1249,4.52,1250,5.204]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.278,9,0.083,10,4.547,17,1.482,18,1.491,31,1.237,33,2.667,47,2.243,49,1.015,151,3.922,195,5.696,263,3.393,929,3.943,1244,5.535,1245,6.791,1247,5.868,1249,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.055,49,1.06,799,4.648,802,4.866,1038,4.648]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[799,3.886,802,4.069,1038,3.886,1228,5.126,1229,4.3,1251,5.126,1252,5.568]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.077,17,1.629,45,3.118,46,3.079,49,1.115,65,2.116,155,2.882,265,3.225,287,5.411,303,1.715,364,4.889,368,2.433,424,4.334,799,6.544,961,5.255,1038,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.348,61,1.111,263,3.289,1045,2.323,1253,4.772,1254,4.932]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[478,1.84,756,1.857,875,3.317,1045,1.957,1253,4.02,1254,4.154,1255,4.52,1256,4.791]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.034,16,2.837,29,1.429,35,0.361,60,1.248,146,3.021,155,2.633,188,3.101,233,1.903,297,3.193,318,2.679,320,2.18,378,3.032,477,2.522,478,2.263,786,2.122,805,3.193,886,2.425,1045,2.945,1091,3.101,1253,6.811,1254,5.11,1255,5.559,1256,3.806,1257,4.134,1258,4.134,1259,4.134,1260,4.134,1261,3.59,1262,4.134,1263,2.368,1264,3.021,1265,4.134]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.059,11,0.784,62,3.527,1266,6.272]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.765,756,2.514,1266,6.118,1267,6.486]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.384,4,1.498,5,1.109,9,0.076,17,1.06,18,1.067,35,0.257,64,1.768,65,1.378,100,1.367,117,1.421,141,1.658,167,2.145,181,1.775,183,2.863,240,1.143,241,1.169,258,3.953,311,1.666,324,1.598,366,1.895,377,2.745,380,3.183,518,3.422,675,1.707,749,3.052,886,2.676,1266,9.109,1268,4.561]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.065,89,2.41,918,5.627]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.587,901,4.517,905,4.618,918,4.618,1269,5.959]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.076,17,1.597,18,1.607,35,0.387,89,2.827,141,2.497,148,2.838,226,3.495,238,4.25,569,5.698,637,4.081,676,3.019,918,7.465,1033,5.484]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[829,0.474]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.044,49,0.859,143,1.542,171,3.557,396,4.05,550,2.796,1095,3.249,1270,4.971]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[143,2.207,171,5.092,1271,7.728]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.808,9,0.068,14,1.171,16,2.477,17,1.936,18,1.948,29,1.248,35,0.469,1270,9.659]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.15,117,2.25,647,4.045,1272,6.272]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[802,5.148,1038,4.917,1272,6.118,1273,4.185]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.083,9,0.044,17,1.255,18,1.263,35,0.441,38,1.909,40,2.184,41,3.851,42,1.788,49,1.463,80,2.233,85,3.851,90,1.624,309,2.596,311,1.972,351,4.478,368,1.875,571,3.389,611,3.557,616,4.05,713,3.129,732,3.557,916,3.768,1075,4.31,1272,9.684]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.04,35,0.407,136,3.613,721,3.643]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[119,3.016,123,2.648,447,2.695,721,2.625,1274,4.52,1275,4.154,1276,4.791,1277,4.791]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.566,18,1.576,35,0.38,60,2.035,117,2.099,123,3.428,131,2.906,136,5.184,336,4.055,447,3.489,618,4.003,766,2.534,988,4.807,1022,4.608,1275,5.379,1277,6.204,1278,4.807,1279,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.714,29,0.863,49,0.917,61,1.036,63,3.94,721,2.907,977,4.022]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.039,17,1.103,18,1.663,35,0.6,45,2.112,46,2.085,49,1.132,90,1.428,101,2.248,136,3.557,142,2.658,148,2.615,184,1.37,309,2.282,310,2.894,397,3.025,415,2.856,447,2.457,650,1.986,676,2.085,721,4.301,766,1.784,1071,3.56,1088,3.56,1261,4.121,1278,6.083,1281,4.369,1282,4.745]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.984,307,4.145,308,3.879,638,5.125,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.983,18,1.996,35,0.481,45,3.797,46,3.748,310,5.203,650,3.57,721,4.303,1283,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.445,5,1.619,9,0.055,713,3.86,831,5.316]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.529,831,5.624,832,6.486,1284,7.045]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.992,4,2.097,5,1.783,9,0.041,17,1.149,18,1.157,24,3.864,29,0.741,35,0.279,49,0.787,131,2.132,155,4.245,324,1.732,368,1.717,422,2.276,453,6.367,550,2.56,603,4.831,831,5.852,1056,4.2,1059,3.709,1285,4.945,1286,4.945,1287,4.945,1288,4.552]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.723,47,2.344,764,3.691,1289,5.784,1290,5.784]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[184,2.43,1095,3.603,1289,5.199,1290,5.199,1291,5.986]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.051,9,0.074,11,0.569,16,1.558,17,1.218,18,1.225,24,3.383,29,0.785,30,2.259,35,0.596,39,2.085,155,2.155,184,1.512,195,3.393,240,1.05,330,2.302,779,1.512,909,3.656,1289,9.177,1290,7.847,1292,5.238]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[164,2.236,189,3.301,749,3.488]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,881,3.886,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.326,3,3.745,4,1.435,5,1.608,9,0.084,17,1.537,18,1.547,35,0.621,181,1.701,192,3.065,240,0.908,241,1.695,366,1.815,550,3.424,673,3.179,1294,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.586,14,0.759,31,1.048,47,1.9,151,2.104,764,2.992,1295,2.486,1296,2.796]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.368,39,2.804,1295,3.243,1296,3.648]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.06,16,2.17,17,1.696,18,1.707,29,1.093,31,1.87,35,0.543,39,2.903,151,2.842,195,4.726,909,5.092,1295,3.359,1296,4.988]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.059,35,0.407,263,3.844,667,4.405]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[240,0.822,241,1.535,667,3.652,668,3.603,1162,3.944,1163,5.512]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.769,18,1.78,35,0.429,54,4.708,64,2.95,80,3.148,141,2.766,240,1.045,246,5.204,263,4.051,667,6.04,789,5.429,1297,7.007]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,764,3.424,1298,5.689,1299,5.366]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.445,309,3.793,616,5.916]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.406,61,0.672,309,1.798,611,2.463,616,2.805,650,1.565,971,2.383,1302,3.739,1303,3.739,1304,3.739,1305,3.739,1306,3.739,1307,3.739,1308,1.954]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.044,11,0.586,14,0.759,17,1.255,18,1.263,29,0.809,35,0.304,61,0.971,85,3.851,90,1.624,117,1.682,148,1.656,155,2.221,255,2.874,309,3.76,310,6.524,311,1.972,377,3.249,456,3.557,475,3.249,550,2.795,616,7.559,676,2.372,1308,2.821,1309,5.398]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.239,14,0.869,244,2.768,258,3.539,737,4.635,749,2.733]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.266,244,2.495,737,4.177,741,4.3,1310,5.568,1311,5.568,1312,5.126]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.212,4,1.269,5,1.421,14,1.163,35,0.329,60,1.765,90,1.759,148,2.538,181,1.503,240,1.137,241,1.498,244,4.682,366,1.605,368,2.03,415,3.518,738,4.849,1313,5.382,1314,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.059,35,0.407,61,1.299,1315,6.272]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1038,4.178,1315,5.199,1316,5.986,1317,4.779,1318,5.986]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.078,17,1.662,18,1.672,29,1.071,35,0.403,49,1.513,131,4.098,136,3.576,324,2.504,915,6.581,1315,9.271,1319,7.148]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.206,465,4.09,639,2.799,1320,6.649]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[148,1.498,238,3.022,758,3.9,1320,4.498,1321,4.243,1322,4.885,1323,4.498,1324,4.885,1325,4.885]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.17,17,1.696,18,1.707,29,1.093,35,0.411,324,2.556,392,4.45,633,6.462,758,5.824,1118,5.824,1323,6.717,1326,7.296,1327,6.717,1328,7.296,1329,7.296]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.051,11,0.671,31,1.199,62,3.017,244,2.768,1330,5.125]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.839,31,1.5,1331,6.41]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.081,17,1.769,18,1.78,31,2.137,35,0.429,64,2.95,80,3.148,150,3.906,1006,3.906,1330,8.214]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.051,11,0.671,63,4.225,764,3.424,995,4.772,1332,6.179]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.65,668,3.603,995,4.624,997,5.512,998,5.512,999,5.512]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.197,5,0.919,9,0.075,17,0.879,18,0.884,30,1.63,35,0.213,39,1.504,40,2.414,49,1.455,60,1.802,100,1.133,118,2.245,120,2.448,148,1.83,151,1.473,167,1.777,171,2.49,281,3.291,309,1.817,324,2.091,330,1.661,335,2.191,368,1.312,392,2.305,423,3.282,637,3.545,676,1.661,718,3.135,745,2.49,995,7.859,1001,3.48,1002,3.48,1004,3.48,1005,3.017,1071,2.835,1333,3.78,1334,3.48,1335,3.78]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.671,16,1.838,29,0.926,31,1.199,764,3.424,1331,5.125]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.605,31,1.081,550,2.883,1192,3.735,1330,4.618,1331,6.631]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.053,29,0.972,31,1.973,35,0.366,64,3.451,65,1.96,80,2.685,150,3.331,243,2.405,244,3.989,323,1.788,399,1.594,422,2.988,647,3.636,1006,3.331,1330,7.385,1331,5.384]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.047,31,1.119,61,1.036,263,3.068,766,2.167,1238,4.211,1336,4.451]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.256,875,4.126,1133,4.855,1336,4.999,1337,6.473]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.073,16,1.513,17,1.183,18,1.19,31,1.453,35,0.287,60,1.536,148,1.56,156,2.326,202,3.986,233,2.342,243,1.885,330,2.235,378,2.41,519,3.103,549,4.22,613,4.22,673,2.446,751,2.545,766,3.684,786,4.559,837,2.326,886,2.984,1135,3.929,1336,7.567]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.059,49,1.15,184,2.085,1338,6.649]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1339,9.589]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.046,11,0.614,35,0.456,42,1.874,61,1.017,143,1.616,164,1.604,181,1.455,185,2.721,286,3.169,323,1.559,337,4.037,386,4.037,516,5.209,525,3.665,550,2.93,822,4.914,1006,2.904,1132,1.835,1308,2.956,1338,9.481,1340,4.517,1341,5.658,1342,3.949,1343,5.658,1344,0.838]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.015,49,1.15,303,1.767,1345,4.758]],["keywords//docs/security/using-fail2ban-for-security/",[1345,5.092,1346,7.728,1347,7.116]],["toc//docs/security/using-fail2ban-for-security/",[9,0.044,11,0.577,14,0.747,29,0.797,35,0.564,61,0.956,136,2.66,164,1.508,189,2.225,214,3.567,291,3.503,623,3.119,756,1.897,1098,4.41,1132,1.724,1342,3.711,1345,7.005,1347,4.895,1348,5.317,1349,5.317,1350,5.317,1351,5.317,1352,4.895,1353,7.733,1354,4.895,1355,4.618]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.626,47,2.028,49,0.917,304,2.932,764,3.194,1234,5.005,1356,5.306]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.605,799,3.886,802,4.069,1192,3.735,1229,4.3,1357,5.568,1358,5.568]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.058,17,1.629,18,1.639,35,0.395,49,1.493,80,2.898,304,5.377,696,2.1,965,5.811,1234,6.084,1356,9.73,1359,7.006,1360,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.051,30,2.665,31,1.199,61,1.111,63,4.225,1361,5.366]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.791,31,1.256,56,5.369,116,3.322,1361,5.621]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.097,14,0.896,17,1.482,30,2.749,31,1.237,35,0.359,41,4.547,54,3.943,143,1.82,199,2.934,296,3.786,397,4.063,639,2.47,1071,4.781,1361,9.424]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.047,11,0.626,171,3.797,255,3.068,330,2.532,764,3.194,1362,3.797]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1045,1.343,1192,2.396,1255,3.101,1362,2.353,1363,3.571,1364,2.242,1365,3.571,1366,3.571,1367,3.571,1368,3.571,1369,3.571,1370,3.571,1371,3.101,1372,3.571]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.604,9,0.077,16,1.656,29,1.198,35,0.314,42,1.844,49,0.886,64,2.158,89,1.701,90,1.675,202,2.965,283,4.177,324,1.951,465,5.298,675,2.084,766,3.517,786,2.858,1135,4.301,1313,5.127,1362,6.736]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.059,164,2.048,189,3.022,1373,5.277]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[164,1.17,881,2.88,1374,4.126,1375,4.126,1376,4.126,1377,3.583,1378,4.126,1379,4.126,1380,4.126,1381,4.126,1382,4.126,1383,4.126]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.09,17,1.2,18,1.208,35,0.427,45,2.298,46,2.268,74,2.541,80,2.135,150,3.884,164,1.463,281,2.298,309,2.482,311,1.885,318,2.16,330,2.268,460,2.482,611,3.401,637,3.066,1373,7.209,1384,5.162,1385,6.967,1386,4.281,1387,5.162,1388,5.162,1389,4.483]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.671,89,1.888,639,2.395,752,4.071,764,3.424,1118,4.932]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.65,680,4.624,752,3.944,916,4.178,1118,4.779,1390,5.986]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.063,129,5.014,205,5.105,633,5.105,639,3.838,752,6.525,779,2.197,780,3.716,1118,7.905,1261,6.609,1391,7.61]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[124,4.627,164,2.236,1075,6.296]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.198,117,1.222,164,1.112,238,2.427,303,0.96,309,1.886,611,2.585,1075,3.132,1132,1.272,1392,3.923,1393,3.923,1394,3.923,1395,3.923]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.049,29,0.89,35,0.547,42,1.968,90,1.788,302,3.227,309,2.858,310,3.626,335,3.445,422,2.736,475,3.577,546,4.148,611,3.916,984,5.162,1075,7.741,1087,3.577,1396,3.916,1397,5.944,1398,5.944,1399,5.944,1400,5.473,1401,5.944,1402,4.591]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.051,35,0.348,49,0.984,191,3.424,504,4.071,845,4.772]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1403,7.728,1404,7.728,1405,7.728]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.073,17,1.509,18,1.518,35,0.573,47,2.284,65,1.96,155,2.67,191,3.597,265,2.988,504,7.799,789,4.631,845,5.013,1406,5.976,1407,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.418,164,1.888,189,2.787,247,3.907,1245,5.144]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.154,4,1.208,12,2.858,240,0.765,1245,4.3,1249,4.836,1408,5.568]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.209,9,0.077,12,2.858,14,0.783,17,1.295,18,1.303,32,3.55,33,2.331,35,0.451,49,0.886,155,2.291,199,3.681,240,1.098,263,2.965,547,5.127,591,4.446,929,3.445,1245,7.225,1264,4.069,1409,5.569,1410,5.569,1411,5.569,1412,5.569,1413,5.569]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.065,35,0.445,737,5.916]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[739,7.116,740,6.712,741,5.969]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.06,17,1.149,18,1.157,29,0.741,35,0.545,155,3.975,188,7.741,190,4.152,191,4.842,244,3.285,255,2.632,324,1.732,379,3.528,611,3.258,643,2.215,737,8.109,751,2.474,766,1.859,786,2.538]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.402,35,0.407,334,4.938,515,5.152]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.256,319,4.004,334,4.426,515,4.618,701,3.238]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.961,19,2.18,88,2.949,123,2.103,131,3.378,136,2.068,148,1.963,184,1.194,199,1.903,208,3.806,286,2.316,287,3.193,334,4.377,335,2.396,337,2.949,381,3.806,385,6.252,512,3.59,518,3.101,676,3.442,702,2.035,827,3.021,990,3.59,1068,3.021,1414,3.59,1415,4.018,1416,4.134,1417,2.456,1418,4.134,1419,3.59,1420,4.134,1421,4.134,1422,4.134,1423,3.806,1424,3.806,1425,4.134,1426,3.429,1427,3.806,1428,4.134,1429,3.806,1430,3.806,1431,4.134,1432,4.134,1433,3.806]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.838,29,0.926,49,0.984,671,4.515,1434,5.366,1435,4.932]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[671,3.57,1273,2.902,1434,4.243,1435,3.9,1436,4.885,1437,4.885,1438,4.885,1439,4.885,1440,4.885]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.06,16,2.158,29,1.087,35,0.488,49,1.379,89,2.217,100,1.462,131,2.103,190,2.762,232,3.766,309,3.489,368,1.693,696,1.462,708,3.893,779,1.408,780,2.381,1006,2.503,1273,2.897,1434,8.91,1435,5.792,1441,4.876,1442,4.876,1443,6.018,1444,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.055,368,2.313,576,5.316,725,5.524,1445,6.131]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[725,4.317,1446,7.613,1447,5.204,1448,5.204,1449,5.204,1450,5.204,1451,5.204]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.965,9,0.059,11,0.522,14,0.676,35,0.484,38,1.701,46,2.114,49,0.766,120,4.653,143,1.374,148,1.475,165,4.177,192,2.23,218,3.432,258,2.755,273,3.84,323,1.979,324,1.685,368,2.494,647,2.694,696,1.442,725,8.461,789,3.432,1230,3.715,1445,7.913,1452,4.81,1453,4.81,1454,4.81,1455,4.177]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.445,675,2.951,1151,5.291]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.043,35,0.293,89,1.59,487,4.154,624,3.491,675,1.947,766,1.957,1151,3.491]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.058,17,1.629,18,1.639,31,1.36,35,0.528,49,1.493,143,2.678,233,3.225,240,0.962,519,4.273,675,2.621,735,5.811,766,2.634,780,3.421,1151,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.936,89,2.035,369,4.314,939,5.524,1456,5.316]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[369,4.564,916,4.917,939,5.843,1456,5.624]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.738,102,6.724,311,3.274,458,5.021,639,3.474,939,9.108]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.567,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.09,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1458,3.474,1461,3.105,1462,4.351,1463,4.351,1464,4.351]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.7,3,6.557,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[184,2.085,323,1.99,676,3.173,1465,4.137]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[303,1.584,676,3.905,1465,3.708,1466,4.618]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.044,11,0.577,21,3.082,35,0.3,61,0.956,117,1.656,148,1.631,164,1.508,167,2.5,189,2.225,308,3.338,368,3.164,424,3.289,676,2.336,756,1.897,916,3.711,1132,1.724,1308,2.778,1465,6.719,1467,5.317,1468,4.618,1469,9.113,1470,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.671,49,0.984,143,1.765,240,0.849,764,3.424,1176,3.041]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.65,199,2.756,240,0.822,701,2.995,1192,4.016,1471,5.986]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.081,17,1.43,18,1.439,35,0.484,40,3.47,132,4.614,181,1.582,240,1.357,244,4.789,286,3.446,318,2.574,366,1.689,460,2.958,1472,4.293,1473,5.342,1474,4.751]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.626,49,0.917,90,1.734,447,2.984,734,3.565,764,3.194,1475,5.005]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.703,447,3.352,1192,4.342,1475,5.621,1476,6.473]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.072,17,2.032,18,2.045,35,0.493,49,1.391,131,3.77,1475,9.39]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.059,49,1.15,89,2.206,1477,6.272]],["keywords//docs/game-servers/install-teamspeak/",[1229,5.441,1477,6.118,1478,7.045,1479,5.441]],["toc//docs/game-servers/install-teamspeak/",[9,0.058,17,1.629,18,1.639,35,0.395,64,2.715,80,2.898,296,4.162,309,3.369,357,5.593,368,2.433,469,4.616,608,4.998,1477,10.217,1480,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.245,35,0.375,89,2.035,478,2.355,1481,6.131]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[642,5.167,1482,6.473,1483,5.959,1484,5.621,1485,6.473]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.495,32,6.36,478,3.527]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.051,31,1.199,49,0.984,61,1.111,143,1.765,263,3.289]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.162,61,1.076,199,2.756,701,2.995,875,3.816,876,5.199]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.068,17,1.936,18,1.948,31,2.036,61,1.498,65,2.515,265,4.83,330,3.66]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.325,258,3.301,504,3.797,749,2.549,845,4.451,1486,4.6]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.208,117,1.735,240,0.765,241,1.427,504,3.669,875,3.549,1487,5.126]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.169,35,0.493,148,2.681,181,2.248,366,2.4,749,3.866,1486,6.978]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.019,14,0.714,258,2.909,504,4.927,749,2.246,845,3.923,1345,3.346,1486,4.054]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.06,240,0.671,241,1.252,504,3.219,875,3.114,1345,3.219,1487,4.498,1488,3.9,1489,4.885]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.044,35,0.448,148,2.439,156,3.636,191,4.408,504,6.713,538,6.349,845,6.143,1486,6.349,1490,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.984,61,1.111,143,1.765,240,0.849,263,3.289,1238,4.515]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,240,0.715,677,4.791,678,4.154,701,2.604,1491,5.204,1492,4.154,1493,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.08,17,1.405,18,1.414,35,0.478,40,3.428,132,4.535,181,1.555,240,1.457,244,4.753,286,3.387,318,2.53,366,1.66,460,2.907,1472,4.219,1473,5.251,1474,4.67]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.299,263,3.844,749,3.194,1238,5.277]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.896,61,0.742,240,0.567,241,1.058,276,2.099,749,1.825,875,2.63,1494,4.126,1495,4.126,1496,3.422,1497,3.799,1498,4.126]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.271,5,1.67,9,0.076,16,2.043,17,1.597,18,1.607,29,1.029,35,0.522,181,1.767,192,3.185,240,1.271,241,1.761,366,1.886,673,3.303]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.555,101,3.421,102,5.417,368,2.508]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.947,841,4.271,901,4.178,906,3.512,1499,5.512,1500,5.512]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.07,35,0.481,74,4.199,101,5.045,364,5.953,906,5.004,1501,6.809,1502,7.853]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.041,89,1.888,101,2.927,102,4.635,368,2.146,901,4.312]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.741,841,3.972,872,4.618,901,3.886,906,3.266,1499,5.126,1500,5.126]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.051,11,0.932,35,0.347,61,1.543,74,3.028,101,4.679,117,1.916,164,2.432,189,2.574,364,4.293,473,3.861,906,3.609,1132,2.782,1308,4.482,1501,4.91,1502,5.663,1503,5.307]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.293,61,1.197,63,4.554,452,3.48,1188,3.545]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.081,61,1.001,452,2.909,1189,3.351,1504,3.886,1505,3.444,1506,5.126]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.359,9,0.088,17,1.455,18,1.465,31,1.686,45,2.787,46,2.751,47,2.203,80,2.59,180,3.546,281,2.787,311,2.287,318,2.62,452,3.271,460,4.176,699,4.918,1188,4.623]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.936,89,2.035,90,2.004,142,3.73,1507,5.784]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.7,89,1.406,90,1.385,129,3.033,240,0.632,247,2.7,452,2.405,665,3.997,1507,3.997,1508,4.238]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.076,16,2.043,29,1.029,35,0.522,49,1.094,89,2.099,148,2.107,240,0.943,427,4.03,508,3.848,637,4.081,696,2.059,758,5.484,1507,8.036,1508,6.325,1509,5.966]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[901,6.063,1510,7.206]],["keywords//docs/platform/kvm-reference/",[901,4.517,1511,6.473,1512,6.473,1513,6.473,1514,5.621]],["toc//docs/platform/kvm-reference/",[34,4.369,35,0.353,74,3.081,99,3.469,117,1.95,164,1.775,226,3.185,229,3.93,311,2.287,346,4.369,366,1.719,433,3.93,575,3.93,637,3.719,780,3.057,867,5.437,901,4.369,916,4.369,1013,2.635,1308,3.271,1402,4.835,1514,5.437,1515,6.26,1516,4.696]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.567,9,0.059,61,1.299,263,3.844]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.337,4,0.896,5,1.003,61,0.742,117,1.285,238,2.552,875,2.63,1457,2.719,1458,3.294,1459,3.294,1460,3.422,1461,2.944]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.047,11,0.626,31,1.119,35,0.325,62,2.814,241,1.477,1160,2.222]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1160,2.717]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.055,17,1.566,18,1.576,31,1.773,35,0.38,60,2.035,65,2.035,181,1.733,241,2.656,243,2.497,286,3.775,303,1.649,342,6.204,366,1.85,603,4.44,1160,2.598,1517,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.723,31,1.293,241,1.707,764,3.691,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.605,31,1.081,241,1.427,1160,2.147,1518,5.568,1519,3.266,1520,3.735]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.547,42,1.968,60,1.795,65,1.795,80,2.459,126,5.518,167,2.795,181,1.529,241,1.524,243,2.202,303,1.455,311,2.171,366,1.632,399,1.459,603,3.916,1160,2.292,1415,3.731,1517,3.731,1521,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1153,5.916,1522,7.262,1523,5.627]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.866,741,3.773,1312,4.498,1523,3.485,1524,4.885,1525,4.498,1526,4.885,1527,3.773,1528,4.498]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.033,135,5.976,136,3.247,142,3.636,148,1.991,190,3.676,368,2.254,473,4.074,509,3.906,629,5.637,743,4.631,1099,5.384,1523,7.25,1527,5.013,1529,6.491,1530,5.637,1531,6.491,1532,6.491,1533,6.491,1534,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.449,789,5.152,1523,5.152,1527,5.578]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.053,741,4.02,749,2.302,1488,4.154,1523,3.713,1527,4.02,1528,4.791,1535,5.204]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.764,4,2.355,9,0.052,16,1.896,29,0.955,35,0.496,64,2.47,181,1.639,219,3.943,240,1.208,241,1.634,311,2.328,366,1.75,942,2.875,1527,4.922,1534,5.868,1536,6.373]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.051,11,0.671,49,0.984,764,3.424,1099,5.125,1523,4.408]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[740,4.243,741,3.773,1203,3.773,1523,3.485,1525,4.498,1537,4.885,1538,4.885,1539,4.885,1540,4.498]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.192,9,0.049,16,1.768,29,0.89,49,1.333,64,2.304,118,3.531,155,3.445,190,3.366,233,2.736,318,2.488,324,2.083,464,2.816,507,5.162,519,3.626,696,1.781,751,2.974,951,4.745,1099,6.947,1523,5.975,1527,4.591,1540,5.473,1541,5.944]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.047,49,0.917,117,1.795,303,1.41,639,2.234,721,2.907,884,3.673]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.605,61,1.001,164,1.579,447,2.883,650,2.33,721,2.809,1132,1.806]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.072,29,0.955,35,0.359,49,1.015,90,1.917,117,1.985,119,3.694,123,3.243,136,4.399,324,2.233,336,3.835,513,4.129,639,2.47,721,5.744,779,1.84,1542,6.373,1543,6.373]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.206,1415,4.533,1544,5.152,1545,5.277]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[303,1.584,309,3.112,1546,6.473,1547,6.473,1548,5.621]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.267,19,3.487,255,3.52,422,3.044,546,4.615,676,2.906,958,6.088,984,5.742,1415,6.441,1545,7.498,1549,6.088,1550,6.612,1551,6.612,1552,6.088,1553,6.612,1554,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.299,263,3.844,1023,3.499,1238,5.277]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1023,3.414,1238,5.148,1555,4.24]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,263,3.587,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.626,49,0.917,368,2.001,764,3.194,1273,3.423,1435,4.6,1557,5.763]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1273,5.084,1435,6.832]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.526,9,0.063,35,0.429,49,1.211,80,3.148,99,4.217,141,2.766,324,2.666,427,4.464,566,7.007,637,4.521,1273,4.521,1558,9.903]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.044,11,0.586,49,0.859,764,2.992,1038,3.768,1070,4.689,1559,5.399,1560,4.971]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,799,3.409,1038,3.409,1139,3.773,1192,3.277,1229,3.773,1251,4.498,1561,4.885,1562,4.885]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.055,17,1.566,18,1.576,35,0.38,49,1.454,80,2.788,320,3.554,696,2.02,965,5.589,1070,8.999,1139,5.204,1560,9.54,1563,6.738,1564,9.134]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.586,61,0.971,74,2.658,99,2.992,550,2.796,837,2.468,906,3.167,1565,3.852]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.565,61,0.936,838,4.02,839,4.02,840,3.904,841,3.713,1566,4.154,1567,4.154]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[829,0.474]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.936,531,3.73,682,4.751,709,5.144,1568,6.66]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.703,61,1.164,531,3.626,682,4.618,709,4.999]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.801,8,2.787,9,0.085,12,2.05,15,2.403,16,1.188,24,2.756,35,0.529,42,1.322,44,5.737,60,1.882,64,1.548,96,1.998,148,1.225,207,2.372,318,1.671,324,2.183,335,2.315,427,3.655,433,2.507,465,2.262,511,3.084,623,2.343,682,5.466,696,1.197,709,7.682,770,3.677,1061,2.731,1071,2.996,1569,3.993,1570,8.656]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.15,61,1.299,189,3.022,1571,6.272]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1273,4.591,1571,6.712]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.087,49,1.695,131,3.679,368,2.962,427,5.004,696,2.557,1571,7.408]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,2.681,355,2.632,674,5.125,1510,5.125,1572,6.179,1573,6.179]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.057,355,3.001,1574,7.045,1575,7.045]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.614,112,5.585,372,1.198,422,3.834,458,6.434,664,7.668,755,7.668]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.499,164,1.752,189,2.586,756,2.205,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[756,2.309,881,4.517,1577,6.473,1578,6.473,1579,4.618]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.633,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.341,164,1.752,756,2.205,1013,2.601,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[756,2.309,1015,5.167,1579,4.618,1582,6.473,1583,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.175,49,0.984,110,2.681,143,1.765,177,4.312,803,5.125]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.565,61,0.936,110,2.258,112,2.771,177,3.632,190,2.948,701,2.604,1584,4.791]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.064,49,1.599,64,3.015,110,4.827,112,4.141,143,2.221,177,7.009,368,2.701,458,4.357]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.723,61,1.197,304,3.388,1585,5.144,1586,6.131]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.703,61,1.164,802,4.73,1587,6.473,1588,6.473]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.051,14,0.865,17,1.43,18,1.439,35,0.347,40,2.488,49,0.979,224,4.751,304,5.026,355,2.621,696,1.844,1071,4.614,1211,5.663,1231,7.898,1263,3.524,1585,7.629,1586,9.095,1589,5.663]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.445,14,0.936,334,4.554,515,4.751,1461,4.751]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.529,1461,5.026,1590,7.045,1591,6.486]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.18,319,4.811,334,5.318,909,5.428,945,6.755,1461,5.549,1592,7.778,1593,7.778,1594,7.778,1595,7.778,1596,7.778,1597,7.778]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.763,1035,7.262,1153,5.916]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.148,1598,7.045,1599,7.045,1600,7.045]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.421,11,0.635,15,4.981,16,2.462,42,1.936,60,1.765,61,1.051,95,6.048,148,1.793,164,2.347,175,4.17,189,2.446,300,4.08,309,2.811,310,3.566,486,4.385,603,3.852,675,2.187,804,5.077,1013,2.461,1601,5.845,1602,5.845,1603,5.845]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.255,240,1.083,319,4.879]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.397,240,0.968,701,3.525,1591,6.486]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[132,5.153,240,0.943,244,4.146,286,3.848,385,5.484,822,5.966,909,4.794,1472,4.794,1473,5.966,1604,6.325,1605,6.87,1606,6.87,1607,6.87,1608,6.87,1609,6.87,1610,6.87,1611,6.87,1612,6.87]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.055,47,2.344,110,2.89,258,3.815,749,2.945]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.703,61,1.164,110,2.809,749,3.93]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.583,9,0.079,29,1.093,35,0.411,64,2.828,110,4.679,112,3.884,240,1.002,368,2.533,458,4.087,640,4.58,696,2.187,749,3.226]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[829,0.474]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.936,49,1.06,184,1.923,515,4.751,538,5.316]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[184,1.869,538,5.167,1613,5.621,1614,5.959,1615,5.167]],["toc//docs/uptime/monitoring/top-htop-iotop/",[156,3.556,274,5.683,318,3.255,355,4.739,376,4.681,538,6.209,731,7.161,732,5.125,1549,7.161,1613,6.755,1614,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.06,60,2.011,143,1.902,300,4.648,1616,5.784]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1616,6.712,1617,7.728,1618,7.728]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.595,35,0.574,64,3.083,148,2.439,273,6.349,355,4.341,368,2.762,375,4.61,1616,8.848]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.264,11,0.626,16,1.714,29,0.863,61,1.036,312,2.532,1078,4.6]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.948,4,1.13,11,0.565,61,0.936,312,2.287,488,3.904,1078,4.154,1619,4.791]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.025,9,0.068,29,1.248,35,0.469,60,2.515,65,2.515,243,3.086,309,4.005,1065,4.665,1078,6.649]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.263,469,5.197,1151,5.291]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[487,7.467,488,4.177,1151,5.363,1619,5.126]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.429,156,3.479,181,1.957,204,5.429,366,2.09,572,6.609,631,6.312,672,4.051,877,5.561,1151,7.384,1620,4.708,1621,7.61]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.055,116,3.418,265,3.066,888,5.524,1074,4.866]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[116,3.072,888,4.965,1622,5.199,1623,4.779,1624,4.779,1625,4.965]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.742,9,0.051,35,0.353,60,2.623,116,3.213,202,3.333,265,2.882,442,5.193,465,3.546,754,5.764,888,7.203,1074,6.346,1530,8.66,1626,8.684,1627,6.26,1628,6.26,1629,6.26]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.055,35,0.375,61,1.197,189,2.787,552,5.524]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.88,1630,8.559]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.043,29,0.785,35,0.431,64,2.03,96,3.827,99,2.903,148,2.771,167,3.597,184,1.512,214,3.514,310,3.195,346,3.656,391,6.794,525,3.393,552,8.765,601,4.823,696,1.57,756,1.869,827,3.828,886,3.073,1342,3.656,1427,4.823,1631,4.823]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.059,61,1.299,1273,4.29,1632,6.272]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,875,3.114,876,4.243,1238,3.57,1273,2.902,1555,2.94,1632,4.243,1633,4.243,1634,3.409]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.083,17,1.808,18,1.82,35,0.438,49,1.238,80,3.218,90,2.34,309,3.74,696,2.331,779,2.246,1273,4.62,1632,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.065,61,1.418,1635,6.092]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-debian/",[829,0.474]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.065,11,0.857,1635,6.092]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.839,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.039,11,0.521,49,0.763,61,0.862,89,1.465,308,3.01,895,3.503,1093,4.164,1636,4.164,1637,4.414]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1636,6.712,1637,7.116,1638,7.728]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.074,14,1.26,35,0.505,141,3.258,323,2.47,1636,9.536]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[276,4.013,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.845,341,4.193,1095,5.348,1639,5.959]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.42,155,4.252,241,2.086,308,6.489,752,5.361,786,4.176,1095,4.897,1584,7.491,1640,5.361]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[531,4.418,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.556,341,3.878,531,3.353,1095,5.065,1639,5.512]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.967,28,5.278,155,3.709,308,5.66,427,3.879,752,7.6,786,3.394,1095,6.941,1195,5.742,1199,5.107,1641,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.417,393,5.578,1023,3.499,1642,6.649]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,393,3.773,856,3.665,1023,2.367,1132,1.584]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.075,11,0.992,60,2.035,61,1.642,103,5.852,118,4.003,164,2.59,189,2.82,1006,3.458,1013,2.837,1023,3.265,1132,2.185,1264,4.924,1642,6.204,1643,6.738,1644,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.671,16,1.838,29,0.926,49,0.984,61,1.111,1273,3.67]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.839,61,1.39,1273,4.591]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.072,49,1.391,131,3.77,368,3.035,696,2.62,1273,6.974]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.857,749,3.488,764,4.371]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.13,240,0.715,241,1.334,1192,3.491,1645,4.791,1646,5.204,1647,5.204,1648,4.02]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.494,4,2.119,5,1.811,9,0.08,17,1.732,18,1.743,35,0.614,181,1.916,240,1.023,241,1.91,366,2.045]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.048,189,3.022,1474,5.578,1649,7.222]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.191,881,5.394,1650,7.728]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.05,14,0.85,17,1.405,18,1.414,35,0.341,40,3.428,49,1.558,95,4.418,100,1.812,148,1.854,296,3.591,569,5.015,696,1.812,1071,6.358,1474,7.559,1651,9.787,1652,6.046,1653,6.046]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.445,174,5.504,478,2.788]],["keywords//docs/networking/dns/common-dns-configurations/",[1484,6.712,1654,7.116,1655,7.116]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.83,29,0.922,35,0.347,42,2.037,49,1.366,169,4.442,181,1.582,213,3.985,217,4.293,378,4.679,477,3.752,478,2.175,479,4.614,756,2.195,757,2.605,1554,5.342,1656,5.663,1657,4.91,1658,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.059,31,1.402,61,1.299,177,5.04]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,276,2.486,1659,3.9,1660,4.243,1661,4.885,1662,4.885,1663,4.243,1664,4.885,1665,4.885]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.932,9,0.079,31,1.416,35,0.411,49,1.161,143,2.084,148,2.954,167,3.431,177,5.092,291,4.807,358,6.717,1666,6.717,1667,7.296]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.051,117,1.925,301,4.932,650,2.586,1668,5.366,1669,5.366]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[301,5.624,650,2.949,908,5.624,1668,6.118]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.053,11,0.705,14,0.912,49,1.417,60,1.96,61,1.167,117,2.022,136,4.454,318,2.716,1264,6.506,1308,3.391,1415,4.074,1503,4.015,1668,7.732,1670,6.491,1671,5.384,1672,5.976,1673,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[181,1.857,510,4.603,531,4.045,1077,5.277]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.405,488,4.855,531,3.626,1065,3.626,1674,5.959]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.153,5,1.398,9,0.067,16,1.71,29,0.861,35,0.618,65,1.737,191,4.534,240,0.79,243,2.131,255,3.061,324,2.015,531,3.221,696,1.723,779,1.66,1065,5.334,1151,3.858,1509,4.994,1675,4.314,1676,4.994,1677,5.75]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.341,5,1.502,35,0.348,191,4.769,1065,3.461]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[488,5.285,1065,3.946,1674,6.486,1678,7.045]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.494,4,2.119,5,1.811,9,0.061,35,0.55,191,5.412,255,3.966,324,2.61,1065,6.103,1675,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.071,177,6.063]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.058,65,2.832,90,3.18,118,4.162,150,3.596,190,5.31,330,3.079,542,6.084,608,4.998,674,5.811,718,5.811,1680,7.006,1681,7.006,1682,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.051,164,1.752,189,2.586,258,3.539,1160,2.383,1169,3.144]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.081,117,1.735,164,1.579,241,1.427,1160,2.147,1169,2.833,1683,2.618]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.072,29,0.955,31,2.106,35,0.567,41,4.547,42,2.11,47,2.243,80,2.637,181,1.639,241,2.254,366,1.75,399,1.565,1160,3.39,1684,4.781]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[650,3.636,921,6.935]],["keywords//docs/platform/network-helper/",[550,2.883,623,3.266,642,4.445,650,3.346,1685,5.568,1686,5.568]],["toc//docs/platform/network-helper/",[11,0.668,29,0.922,35,0.347,61,1.106,103,5.342,148,1.887,164,1.744,283,4.614,368,2.136,391,4.206,513,3.985,650,3.59,921,6.848,1132,1.995,1264,6.269,1308,3.214,1406,5.663,1430,5.663,1503,3.805,1671,5.102,1687,5.342,1688,6.151]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.874,61,0.971,189,2.26,244,2.419,550,2.796,667,3.293,1199,4.17,1689,4.31]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,531,2.915,667,3.174,668,3.132,669,3.803,1162,3.429,1689,4.154,1690,4.791]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.059,9,0.078,20,4.193,45,3.182,46,3.141,89,2.184,244,3.203,532,3.805,667,4.36,696,2.142,1199,5.521,1689,9.082]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.047,14,0.81,61,1.036,189,2.412,550,2.984,667,3.515,1689,4.6]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,531,2.915,550,2.695,667,3.174,668,3.132,669,3.803,1162,3.429,1690,4.791]],["toc//docs/websites/cms/drush-drupal/",[0,1.1,9,0.076,14,0.771,29,0.821,49,1.259,114,4.006,116,2.814,148,1.681,156,2.506,276,2.789,303,1.342,318,2.294,324,2.77,392,4.823,532,2.919,667,3.344,696,1.643,827,4.006,1005,6.311,1264,4.006,1472,3.826,1689,8.102,1691,5.482]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[164,1.888,189,2.787,240,0.915,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-apache2-centos/",[240,0.715,675,1.947,1132,1.688,1692,3.559,1693,4.791,1694,4.52,1695,5.204,1696,3.429]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.671,61,1.111,240,0.849,550,3.199,675,2.312,766,2.323]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.565,61,0.936,240,0.715,675,1.947,701,2.604,1692,3.559,1697,4.791,1698,4.791]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.784,764,4.002,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.839,1023,3.745,1192,5.185]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.055,11,0.992,15,4.055,16,2.004,42,2.231,74,3.317,89,2.059,100,2.02,141,2.45,510,4.295,571,4.23,967,5.589,1006,3.458,1023,5.021,1176,3.317,1177,5.589,1699,2.906]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.047,31,1.119,61,1.036,189,2.412,766,2.167,1336,4.451,1555,3.468]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.893,1133,3.453,1135,3.555,1336,3.555,1555,2.77,1634,3.212,1663,3.997,1700,4.603,1701,4.238,1702,3.818]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.061,16,1.492,31,1.438,60,1.515,61,0.902,65,1.515,89,1.532,148,1.538,155,2.063,156,2.293,202,3.944,233,2.309,243,1.858,265,2.309,330,2.204,378,2.376,519,3.059,549,4.16,613,4.16,673,2.411,696,1.503,751,2.509,766,3.659,786,4.521,886,2.942,1135,3.873,1336,7.515]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1018,3.828]],["title//docs/websites/cms/cms-overview/",[90,2.173,323,1.99,702,3.555,877,5.277]],["keywords//docs/websites/cms/cms-overview/",[531,3.119,550,2.883,667,3.396,668,3.351,669,4.069,1162,3.669,1703,5.126]],["toc//docs/websites/cms/cms-overview/",[45,3.387,46,3.344,89,2.325,90,2.29,323,2.097,531,5.547,629,6.609,667,6.04,669,7.236,702,3.746,1199,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[397,5.028,1704,6.85,1705,7.262]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1704,4.52,1705,4.791]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.387,60,2.159,240,1.305,397,6.057,485,5.521,721,3.606,1045,2.688,1047,5.223,1576,3.769,1704,9.271,1706,7.148,1707,6.581,1708,7.148]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[148,2.419,1022,5.393,1709,6.092]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.078,14,1.327,696,2.83,1709,8.754]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.047,11,0.626,62,2.814,244,2.582,464,2.73,734,3.565,1715,5.005]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[464,3.337,734,4.358,1715,6.118,1716,7.045]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.079,17,1.359,18,1.368,35,0.329,90,1.759,148,1.793,232,4.515,244,4.305,399,1.435,464,2.769,643,2.619,676,2.569,734,3.616,1006,3,1264,4.271,1657,4.666,1658,4.666,1715,9.946,1717,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.047,11,0.626,49,0.917,171,3.797,330,2.532,757,2.44,1718,5.005]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[756,2.758,757,3.273,1718,6.712]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.044,49,0.859,60,1.63,155,2.221,183,4.908,240,0.741,320,2.847,324,1.891,364,3.768,368,1.875,380,3.768,477,3.293,696,1.618,757,2.286,766,2.94,936,3.557,961,4.05,1253,7.1,1254,7.338,1481,8.463,1718,4.688,1719,4.478,1720,5.398,1721,5.398,1722,5.398]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.417,856,5.417,1023,3.499,1723,6.649]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,856,3.665,1023,2.367,1132,1.584,1723,4.498]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.041,11,0.545,61,0.902,73,3.762,117,1.562,164,1.422,856,7.787,1006,2.574,1023,2.43,1132,1.626,1308,2.62,1503,3.102,1671,4.16,1687,4.355,1724,10.381,1725,10.381,1726,5.015,1727,5.015,1728,5.015,1729,5.015,1730,5.015,1731,5.015,1732,5.015,1733,5.015,1734,5.015,1735,5.015]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.654,458,4.867]],["keywords//docs/platform/linode-images/",[458,4.794,1736,8.559]],["toc//docs/platform/linode-images/",[47,3.155,90,2.697,458,6.65,1470,7.155,1737,8.963]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.341,31,1.199,61,1.111,189,2.586,1555,3.718,1738,5.366]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.529,31,1.368,1634,4.917,1738,6.118]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.583,9,0.079,14,1.026,31,1.87,35,0.411,47,2.568,65,2.203,141,2.652,243,2.703,422,3.359,696,2.187,1738,9.365]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.051,11,0.671,764,3.424,1202,4.772,1298,5.689,1299,5.366]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.13,30,2.244,31,1.01,116,2.671,452,2.719,1189,3.132,1202,4.02,1203,4.02]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.445,9,0.08,16,1.768,29,0.89,30,2.563,31,1.154,47,2.092,65,1.795,141,2.161,171,3.916,181,1.529,243,2.202,281,2.646,303,1.455,323,2.308,366,1.632,416,4.745,452,3.106,647,3.33,1202,8.572]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.936,638,5.524,1050,5.524,1479,5.144,1739,5.784]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1479,4.999,1739,5.621,1740,4.517,1741,5.621,1742,5.621]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.049,11,0.406,14,0.832,17,0.869,18,0.875,29,0.887,35,0.211,43,2.167,49,0.595,61,0.672,117,1.165,119,3.43,121,3.443,122,3.443,123,1.903,131,1.613,164,1.06,336,3.561,355,1.593,368,1.299,427,2.194,433,2.347,456,3.899,508,2.095,519,2.281,550,1.936,618,3.515,639,1.449,661,3.102,672,1.991,673,1.798,708,2.985,732,2.464,1048,2.985,1132,1.213,1263,2.142,1308,1.954,1739,8.8,1740,2.61,1743,2.557,1744,3.443,1745,3.74,1746,5.448,1747,3.74,1748,5.448,1749,3.74,1750,3.74]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.059,61,1.299,330,3.173,1751,6.272]],["keywords//docs/applications/messaging/install-znc-debian/",[1751,5.621,1752,6.473,1753,6.473,1754,6.473,1755,6.473]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.061,17,1.732,18,1.743,35,0.42,131,3.213,136,3.727,219,4.608,318,3.118,675,2.787,766,2.801,786,3.823,1751,8.481,1756,7.45,1757,7.45]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.015,180,4.09,752,4.758,756,2.577]],["keywords//docs/email/using-google-apps-for-email/",[1758,7.728,1759,7.728,1760,7.728]],["toc//docs/email/using-google-apps-for-email/",[0,1.845,378,4.357,477,5.61,886,5.395,1005,7.342,1719,7.628]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.407,117,2.25,623,4.237,1417,4.29]],["keywords//docs/networking/linux-static-ip-configuration/",[207,4.591,642,6.17,1417,4.591]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.335,60,1.795,61,1.069,112,3.164,117,1.852,131,2.563,164,2.375,189,2.488,207,3.531,372,0.855,397,3.789,433,3.731,650,2.488,751,2.974,918,4.241,921,4.745,1013,2.502,1132,1.928,1308,3.106,1355,5.162,1417,3.531,1503,3.677,1671,4.93,1761,5.944]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.626,42,1.908,47,2.028,1317,4.6,1373,4.211,1699,2.485,1762,4.451]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[240,0.632,241,1.18,906,2.7,1317,3.674,1373,3.363,1377,3.997,1488,3.674,1762,3.555,1763,3.033,1764,4.603]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.683,9,0.087,16,1.375,29,0.692,35,0.565,64,1.791,65,1.396,74,2.275,100,1.385,231,3.297,243,1.712,244,2.07,255,2.46,258,2.647,323,1.273,324,1.619,357,3.689,513,2.993,523,3.689,696,1.385,749,2.044,752,3.045,780,2.257,886,2.711,906,2.711,1373,5.093,1762,6.481,1765,4.621,1766,4.254,1767,4.621]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.971,189,2.26,240,0.741,241,1.384,368,1.875,1237,4.478,1555,3.249,1768,4.478]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[240,0.889,241,1.659,1069,5.621,1160,2.496,1242,5.959]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.065,35,0.574,240,1.092,241,2.882,318,3.329,496,6.143,1237,8.451,1768,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.772,16,1.981,29,0.998,61,1.197,63,4.554]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.666,4,1.405,5,1.574,61,1.164,1506,5.959]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.818,9,0.056,14,0.966,35,0.387,49,1.094,131,2.963,185,3.303,303,1.681,319,4.25,324,2.407,940,4.25,941,3.657,942,3.098,1769,6.87]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.055,35,0.375,61,1.197,834,5.144,1770,6.66]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.529,61,1.267,834,5.441,1321,6.118]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.808,9,0.086,35,0.591,372,1.198,696,2.496,834,8.103,1344,1.233]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.304,43,3.129,49,0.859,757,2.286,1045,2.03,1047,3.945,1640,3.557]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[756,2.309,757,2.741,1045,2.434,1047,4.73,1634,4.517]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.354,9,0.046,19,2.937,29,1.198,35,0.527,49,0.886,60,1.682,100,1.669,148,1.708,180,3.154,303,1.363,473,3.496,696,1.669,752,3.669,942,3.606,1045,3.517,1046,4.619,1047,4.069,1048,4.446,1049,5.127,1050,4.619,1153,4.177,1771,4.301,1772,5.569,1773,5.569]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.065,35,0.445,1774,6.85]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.565,61,0.936,158,3.219,164,1.476,587,4.791,1132,1.688,1321,4.52,1774,4.52]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.078,35,0.532,60,2.852,671,6.9,1774,8.201]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.278,117,2.075,708,5.316,1775,5.784,1776,5.524]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[226,3.293,1516,4.855,1777,6.473,1778,6.473,1779,6.473]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.864,61,1.43,74,3.915,117,2.478,164,2.255,708,6.349,1132,2.579,1308,4.156,1503,4.92,1517,4.993,1775,6.907,1776,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1018,3.828]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.15,749,3.194,1132,2.342,1780,6.649]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[749,2.647,1132,1.941,1781,5.986,1782,4.374,1783,4.491,1784,5.986]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[829,0.474]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.761,368,2.001,618,3.423,779,1.664,1087,3.468,1456,4.6]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,643,2.495,875,3.549,1785,4.618,1786,5.568,1787,5.126,1788,5.126]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.586,89,1.649,368,1.875,618,3.207,779,1.559,1087,3.249,1456,4.31,1699,2.328]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.65,643,2.682,1763,3.944,1785,4.965,1787,5.512,1788,5.512]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.671,14,0.869,68,4.515,411,4.515,1091,4.635,1699,2.665]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.765,408,6.118,411,5.148,1699,3.038]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.048,35,0.329,49,0.931,68,7.022,80,2.418,89,1.786,117,2.578,119,4.797,123,4.211,131,3.569,303,1.431,336,4.981,411,8.059,618,4.917,620,4.271,637,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.239,29,0.926,164,1.752,697,2.927,1065,3.461,1789,5.366]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.156,29,0.863,61,1.036,189,2.412,697,2.73,1065,3.228,1555,3.468]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.156,11,0.626,29,0.863,697,2.73,1065,3.228,1699,2.485,1794,2.958]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.417,86,5.277,1280,5.152,1795,6.649]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1280,3.713,1795,4.791]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.065,11,0.864,46,3.495,61,1.43,86,5.811,118,4.725,156,3.636,164,2.255,303,1.946,766,2.991,1132,2.579,1796,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.055,11,0.723,757,2.82,971,4.245,1699,2.872]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,0.999,11,0.5,482,3.555,756,1.642,757,1.949,1045,1.731,1371,3.997,1576,2.427,1699,1.985,1797,2.847]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.063,29,1.14,35,0.429,60,2.991,311,2.78,318,3.185,345,5.429,482,7.648,696,2.281,1371,6.609,1797,6.126]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[829,0.474]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.809,100,1.618,181,1.389,240,1.074,366,1.482,1297,4.971,1798,5.399]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.5,61,0.828,100,1.38,164,1.305,1023,2.23,1132,1.493,1308,2.405,1497,4.238,1503,2.847,1799,4.603]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.27,35,0.341,61,1.087,100,2.54,101,2.864,181,2.18,198,3.984,231,4.313,240,0.83,244,2.709,287,4.67,366,2.327,392,3.688,456,3.984,608,4.313,672,3.219,869,4.67,1023,2.93,1792,5.015,1800,5.566]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.156,14,0.81,33,2.412,164,1.634,199,2.653,1789,5.005,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.709,164,1.835,199,2.98,1789,5.621,1801,4.999]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.156,11,0.626,14,0.81,33,2.412,199,2.653,1699,2.485,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.65,33,2.505,199,2.756,550,3.1,1699,2.582,1801,4.624]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[829,0.474]],["title//docs/platform/billing-and-payments/",[1025,6.348,1027,6.517]],["keywords//docs/platform/billing-and-payments/",[1025,6.254,1027,6.42]],["toc//docs/platform/billing-and-payments/",[2,2.367,22,2.712,42,2.241,84,3.335,89,2.504,100,1.333,133,3.688,156,2.033,181,1.144,238,2.75,372,0.974,377,2.676,398,2.414,422,2.047,465,2.518,486,3.335,608,3.172,639,1.723,748,5.878,1022,4.628,1024,3.861,1025,6.695,1027,5.078,1077,3.249,1111,3.861,1344,0.658,1717,3.688,1803,4.446,1804,4.446,1805,3.434,1806,4.094,1807,4.446,1808,3.434,1809,3.861,1810,5.878,1811,3.688]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.554,236,5.524,633,4.468,1812,5.784]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1812,7.433,1813,8.559]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.395,49,1.493,136,4.691,148,2.149,318,3.924,323,1.93,475,4.216,647,5.252,650,2.932,696,2.1,1812,9.178]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.714,29,0.863,89,1.761,588,5.306,643,2.582,1086,3.301,1814,5.763]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.709,1086,5.091,1815,5.959,1816,6.473]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.314,29,1.165,49,1.238,117,2.423,119,4.508,123,3.957,336,4.681,396,5.835,416,6.209,618,4.62,696,2.331,1517,4.882,1815,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.624,494,6.935]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.475,89,1.492,164,1.385,264,3.773,265,2.249,494,3.9,1817,4.498]],["toc//docs/platform/package-mirrors/",[11,0.864,29,1.776,61,1.43,65,2.402,164,2.255,323,3.098,494,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.199,61,1.111,189,2.586,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.551,9,0.088,29,1.071,31,1.845,65,2.159,80,2.957,243,2.649,311,2.611,318,2.991,399,1.755,460,4.569,699,5.382]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.876,9,0.042,31,0.986,61,0.913,117,1.582,241,1.302,258,2.909,263,2.704,1169,2.584]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.583,5,1.774,9,0.079,17,1.696,18,1.707,31,1.416,35,0.411,47,2.568,49,1.717,143,2.084,241,1.87,346,5.092,1160,2.813]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,1169,3.388,1555,4.008]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.491,5,1.67,9,0.086,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,399,1.687,696,2.059,1160,2.649]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.988,469,4.758,819,4.533,1067,5.578]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.703,61,1.164,550,3.352,819,4.063,1067,4.999]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.888,18,0.894,35,0.55,41,2.726,60,1.154,89,1.167,92,3.318,99,2.117,143,1.091,204,4.294,214,2.563,307,2.563,309,1.837,310,2.33,318,1.599,391,2.612,475,2.299,510,2.435,702,2.962,819,6.645,1067,8.413,1068,4.398,1077,2.792,1340,3.05,1820,3.821,1821,4.992,1822,3.169,1823,3.821,1824,3.821,1825,3.821,1826,4.398,1827,3.318,1828,3.821]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[164,1.888,184,1.923,1013,2.804,1045,2.504,1829,5.784]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[184,2.034,1045,2.649,1364,4.422,1829,6.118]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.07,21,4.944,60,2.576,274,6.233,297,6.588,565,7.075,696,2.557,1829,7.408,1830,6.086]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,1699,2.485,1794,2.958]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.652,9,0.081,17,1.769,18,1.78,31,1.922,80,3.148,311,2.78,318,3.185,460,4.762,699,5.609]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.055,35,0.375,164,1.888,1013,2.804,1831,3.48]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.529,164,1.997,215,5.026,1831,3.681]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.085,17,1.891,18,1.904,35,0.459,60,2.457,306,5.679,675,3.044,1831,5.937]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[110,4.196]],["keywords//docs/applications/containers/what-is-docker/",[11,0.703,110,2.809,112,3.446,164,1.835,1699,2.791]],["toc//docs/applications/containers/what-is-docker/",[9,0.061,11,0.809,31,1.446,110,3.233,164,2.112,178,5.315,179,5.199,291,4.908,372,1.072,830,5.443,1013,3.136,1344,1.103,1699,3.213,1832,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[829,0.474]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.055,31,1.293,61,1.197,189,2.787,1555,4.008]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.01,61,0.936,199,2.396,701,2.604,1633,4.52,1634,3.632,1663,4.52,1833,5.204]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.213,9,0.08,29,0.906,31,2.059,40,2.446,61,1.087,64,2.343,90,1.819,100,1.812,101,2.864,184,1.746,265,2.783,303,1.48,330,2.657,399,1.484,696,1.812,779,1.746,837,3.875,1028,2.285,1834,3.13]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,1780,5.689]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1835,7.728,1836,5.969,1837,6.41]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[829,0.474]],["title//docs/platform/api/api-key/",[129,5.724,233,3.999]],["keywords//docs/platform/api/api-key/",[233,3.558,1838,7.728,1839,7.116]],["toc//docs/platform/api/api-key/",[377,6.179,751,5.136]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.654,470,6.198]],["keywords//docs/platform/linode-cli/",[1839,6.486,1840,7.045,1841,7.045,1842,7.045]],["toc//docs/platform/linode-cli/",[9,0.062,11,0.813,14,0.715,61,1.346,89,1.554,100,1.525,117,1.585,119,4.339,129,3.352,169,2.634,233,2.342,318,3.718,324,1.782,336,4.506,378,2.41,424,3.147,465,2.881,470,6.338,527,4.22,618,4.447,647,2.85,1132,1.65,1151,3.413,1800,4.684,1843,5.087,1844,5.087,1845,5.087]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.567,9,0.059,164,2.048,1013,3.04]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.7,4,2.513,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[232,5.578,276,3.674,478,2.553,1846,6.649]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[276,3.932,478,2.732,1846,7.116]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.159,100,2.142,117,2.227,119,4.143,123,3.637,148,3.274,181,2.746,207,4.246,336,4.302,618,4.246,623,4.193,640,5.965]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.567,9,0.059,61,1.299,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.222,4,0.851,5,0.954,61,0.705,117,1.222,238,2.427,1457,2.585,1458,3.132,1459,3.132,1460,3.254,1461,2.799,1633,3.407,1634,2.738]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.051,11,0.671,61,1.111,62,3.017,263,3.289,1847,4.408]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.605,61,1.001,875,3.549,1847,3.972,1848,5.568,1849,4.836,1850,5.568]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.059,61,1.299,189,3.022,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1634,4.917,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[829,0.474]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.059,11,0.784,1699,3.114,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.765,1699,3.038,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[164,1.752,240,0.849,241,1.584,368,2.146,1013,2.601,1240,3.424]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[199,2.396,240,0.715,241,1.334,1240,2.884,1683,2.447,1851,3.559,1852,3.559,1853,4.52]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.07,17,1.983,18,1.996,35,0.481,240,1.463,241,2.73,1240,4.727]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,189,2.412,240,0.791,241,1.477,368,2.001,1240,3.194,1555,3.468]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.445,9,0.055,61,1.197,189,2.787,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.208,61,1.001,215,3.972,1831,2.909,1856,4.618,1857,4.618,1858,4.618]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.055,35,0.375,61,1.197,263,3.545,1831,3.48]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,0.999,61,0.828,215,3.284,241,1.18,875,2.934,1831,2.405,1856,3.818,1857,3.818,1858,3.818,1859,4.603]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.15,749,3.194,1132,2.342,1860,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1782,5.148,1783,5.285,1861,7.045,1862,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.06,143,1.902,164,1.888,240,0.915,1013,2.804]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[164,1.697,240,0.822,1015,4.779,1696,3.944,1863,3.878,1864,5.512]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,3.203,366,1.963,460,3.437,1474,5.521]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.712,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.677,51,4.591,910,5.285]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.765,5,1.63,9,0.036,11,0.477,22,2.678,35,0.458,51,2.608,61,0.79,85,3.133,101,2.08,131,3.926,226,2.234,286,2.46,296,3.983,372,0.632,398,2.384,424,2.716,780,2.144,819,2.756,1033,3.505,1059,6.101,1275,3.505,1278,3.133,1426,3.642,1443,7.55,1865,4.043,1866,3.813,1867,4.391,1868,4.391,1869,3.505,1870,3.642,1871,4.043,1872,4.391,1873,3.642]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.531,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.368,51,4.185,910,4.817,1874,7.045]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.043,11,0.569,22,3.195,31,1.754,35,0.431,49,0.834,51,3.112,61,0.942,85,5.457,101,2.481,131,2.259,202,2.789,226,2.665,286,2.934,296,3.112,385,4.182,398,2.844,424,3.24,626,5.457,639,2.03,780,2.558,1275,4.182,1426,4.345,1443,4.345,1869,4.182,1870,4.345,1873,4.345,1875,4.549,1876,4.549,1877,4.345]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[180,4.467,240,1.083,910,5.393]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.185,240,0.968,910,4.817,1878,7.045]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.038,11,0.508,22,2.856,35,0.397,49,0.745,51,2.781,61,0.842,85,5.022,101,2.218,197,2.493,202,2.493,226,2.382,240,1.162,286,2.623,296,2.781,311,1.71,385,3.738,398,2.542,424,2.896,626,3.341,639,1.815,780,2.287,1275,3.738,1426,5.838,1443,3.884,1604,4.311,1707,4.311,1865,4.311,1869,3.738,1870,3.884,1871,4.311,1873,3.884,1875,4.066,1876,4.066,1877,3.884,1879,4.682,1880,4.066,1881,4.682]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.255,749,3.488,1503,4.879]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[829,0.474]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.206,181,1.857,236,5.99,1516,5.417]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1516,5.797,1884,7.728,1885,7.728]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.051,15,3.767,16,1.862,17,1.455,18,1.465,38,2.213,45,2.787,46,2.751,49,0.997,89,1.913,141,2.276,143,1.788,258,3.586,276,4.418,378,4.114,574,7.203,673,3.01,749,2.769,756,2.234,1620,3.873,1821,5.193]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,749,2.945,1555,4.008]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.944,61,0.782,240,0.598,241,1.115,749,1.924,1496,3.609,1634,3.037,1782,3.18,1886,4.351,1887,3.779,1888,4.351]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.055,117,2.075,258,3.815,749,2.945,1308,3.48]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.896,240,0.567,241,1.058,749,1.825,1308,2.156,1488,3.294,1889,4.126,1890,4.126,1891,4.126,1892,4.126,1893,4.126,1894,3.583]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.213,4,1.84,5,1.47,9,0.08,17,1.405,18,1.414,35,0.552,49,0.962,117,2.64,155,2.487,181,1.555,192,2.803,240,1.164,241,2.173,366,1.66,673,2.907,749,2.674,1308,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.784,89,2.206,1273,4.29,1699,3.114]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.765,1273,4.185,1699,3.038,1895,6.486]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.072,16,1.896,29,0.955,35,0.567,49,1.015,100,1.91,136,3.188,141,2.317,148,1.955,167,2.997,255,3.393,323,1.756,372,0.917,927,5.088,929,3.943,1273,5.98,1344,0.944,1896,6.373]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[829,0.474]],["title//docs/development/version-control/introduction-to-version-control/",[118,4.685,124,4.627,464,3.736]],["keywords//docs/development/version-control/introduction-to-version-control/",[116,3.616,1203,5.441,1897,7.045,1898,7.045]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.055,14,0.947,16,2.004,19,3.554,29,1.009,80,2.788,116,3.458,118,6.155,142,3.775,323,1.857,464,4.908,469,4.44,1899,6.738,1900,7.932,1901,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,189,2.586,240,0.849,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.445,9,0.055,11,0.723,1699,2.872,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1763,2.867,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.445,9,0.055,11,0.723,764,3.691,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1192,2.919,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.671,49,0.984,143,1.765,1155,3.769,1699,2.665,1794,3.171]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.035,9,0.042,11,0.561,29,0.773,35,0.505,40,2.088,145,3.987,146,3.772,154,6.392,156,2.36,181,2.538,244,2.313,366,2.709,368,1.792,399,1.267,647,4.239,1155,4.616,1158,7.78,1159,4.483,1501,4.12,1768,4.281,1905,4.752]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.984,61,1.111,143,1.765,189,2.586,240,0.849,1555,3.718]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,240,0.822,1555,3.603,1634,4.178,1864,5.512,1906,5.199]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,4.258,366,1.963,460,3.437]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.586,61,0.971,189,2.26,303,1.321,721,2.724,884,3.442,1699,2.328,1794,2.771]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.565,61,0.936,447,2.695,650,2.178,721,2.625,1634,3.632,1699,2.244,1895,4.791]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.059,29,0.721,35,0.271,49,0.766,89,1.469,98,3.357,131,3.097,136,4.3,233,3.957,303,1.177,308,3.019,415,2.895,422,2.214,447,4.451,519,2.934,639,1.864,721,3.623,751,3.593,766,2.701,779,1.389,938,3.357,980,3.432,981,3.432,988,3.432,1084,3.116,1086,2.755,1279,4.428,1314,3.432,1907,3.515,1908,3.608]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[829,0.474]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.445,780,3.252,1045,2.504,1556,5.784,1576,3.512]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.677,1045,2.906,1576,4.076]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.887,16,1.215,29,0.612,35,0.23,38,2.243,46,2.787,89,1.248,119,2.368,197,2.175,219,2.528,311,1.492,320,2.155,324,2.222,335,2.368,366,1.742,368,1.419,378,3.005,510,2.605,675,1.529,676,2.787,681,3.548,773,2.986,780,1.995,886,2.397,936,2.692,1006,4.869,1045,3.295,1047,2.986,1278,2.915,1576,4.621,1580,2.492,1909,3.548,1910,3.762,1911,4.086,1912,4.086,1913,4.086,1914,4.086,1915,4.086]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.051,61,1.111,240,0.849,263,3.289,452,3.228,1188,3.289]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.064,17,1.808,18,1.82,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[219,4.879,226,4.013,620,5.763]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,219,3.444,226,2.833,303,1.363,620,4.069,1555,3.351,1916,5.568]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.378,9,0.056,16,2.043,35,0.522,61,1.664,80,2.842,219,4.25,226,4.708,311,2.509,469,4.526,513,4.45,620,5.02,633,4.608,1917,6.325,1918,6.325,1919,6.87]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[829,0.474]],["title//docs/platform/automating-server-builds/",[20,4.627,49,1.255,150,4.048]],["keywords//docs/platform/automating-server-builds/",[226,3.293,737,4.855,1523,4.618,1920,6.473,1921,6.473]],["toc//docs/platform/automating-server-builds/",[2,3.657,20,4.03,42,2.275,49,1.094,89,3.197,100,2.059,150,3.526,207,4.081,226,3.495,399,1.687,604,5.02,623,4.03,797,4.697,909,4.794,1657,5.484,1658,5.484,1922,6.87]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.255,368,2.739,757,3.34]],["keywords//docs/email/running-a-mail-server/",[1364,4.422,1659,5.624,1923,7.045,1924,7.045]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.435,35,0.215,42,1.265,49,1.626,136,3.011,150,1.961,188,4.515,205,2.563,214,2.563,266,2.726,286,2.14,368,1.327,406,3.169,422,1.759,477,4.542,478,2.128,675,1.43,757,4.722,766,1.437,773,2.792,779,1.103,1022,2.612,1253,2.951,1267,3.518,1344,0.566,1544,4.294,1640,2.517,1719,3.169,1821,3.169,1822,3.169,1918,3.518,1925,2.866,1926,3.518,1927,6.019,1928,6.019,1929,3.821]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.567,756,2.577,1045,2.715,1576,3.808]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.06,11,0.531,49,0.778,61,0.878,756,1.743,757,2.069,1045,1.837,1576,2.576,1930,4.885]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.29,9,0.069,17,1.382,18,1.391,24,2.629,35,0.335,60,2.529,65,1.795,96,2.974,207,4.975,378,3.967,478,2.101,672,4.459,675,2.224,756,3.46,766,2.235,1045,2.235,1576,3.135,1580,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.299,189,3.022,1023,3.499,1555,4.346]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1555,4.24,1931,6.486,1932,6.486,1933,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,189,2.82,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[829,0.474]],["title//docs/security/linode-manager-security-controls/",[89,2.206,90,2.173,303,1.767,464,3.421]],["keywords//docs/security/linode-manager-security-controls/",[303,1.584,934,4.73,942,2.919,1139,4.999,1934,6.473]],["toc//docs/security/linode-manager-security-controls/",[35,0.236,45,1.862,46,1.838,96,2.093,129,2.756,132,3.138,151,1.63,152,3.851,155,1.721,156,1.912,182,5.271,185,2.011,207,3.837,233,1.926,303,1.024,306,2.919,311,2.359,320,4.68,324,1.466,331,3.339,345,2.984,397,4.117,465,2.369,623,3.789,639,1.621,676,1.838,751,2.093,756,1.492,775,6.854,923,2.984,942,1.887,983,3.469,1007,3.056,1098,6.545,1139,3.231,1935,4.183,1936,4.183]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.746,16,2.346,24,3.488]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.731,21,3.751,1937,5.167,1938,6.473]],["toc//docs/security/backups/backing-up-your-data/",[2,5.932,4,0.771,8,2.479,15,3.418,16,2.412,21,2.058,29,0.851,42,1.176,49,0.904,68,2.595,69,2.835,117,1.769,119,2.058,120,2.301,123,1.807,205,2.382,226,1.807,235,1.909,296,3.374,316,2.34,330,1.561,336,2.137,355,1.513,424,2.197,511,5.482,528,2.946,591,2.835,618,2.11,805,2.743,1771,2.743,1877,2.946,1937,7.079,1939,3.27,1940,2.743,1941,4.932,1942,2.946,1943,3.27,1944,2.946,1945,3.551,1946,3.551,1947,3.551,1948,3.551]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.221,910,5.941]],["keywords//docs/platform/longview/longview/",[910,5.285,1949,7.728,1950,7.728]],["toc//docs/platform/longview/longview/",[9,0.056,24,3.022,38,1.592,100,1.35,129,2.967,136,4.132,180,2.55,226,2.291,229,2.827,233,3.146,264,3.478,286,2.522,309,2.165,310,2.747,323,1.241,424,2.786,460,2.165,650,1.885,680,3.478,780,2.199,877,3.29,886,2.642,908,3.595,910,7.136,1074,3.29,1455,3.911,1880,3.911,1951,4.503,1952,4.503,1953,4.503,1954,4.503,1955,4.503,1956,4.503,1957,4.503,1958,3.735,1959,3.911]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.654,90,2.614]],["keywords//docs/platform/linode-managed/",[934,6.254,1960,8.559]],["toc//docs/platform/linode-managed/",[9,0.061,19,2.645,29,0.751,35,0.283,42,3.722,80,2.075,89,1.532,96,2.509,184,1.448,196,4.355,233,2.309,324,1.757,377,3.018,397,4.722,415,3.018,469,3.304,643,2.247,672,4.69,941,2.67,1084,3.249,1278,5.285,1827,4.355,1876,4.355,1909,4.355,1958,4.16,1961,5.015,1962,5.015]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.051,49,0.984,117,1.925,607,3.822,643,2.768,1963,5.366]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[550,4.002,643,3.463,1963,6.712]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.071,11,0.68,61,1.126,68,4.574,89,1.913,101,2.966,117,2.705,119,3.628,123,3.185,131,2.7,141,2.276,309,3.01,336,3.767,406,5.193,528,5.193,618,3.719,643,2.805,1308,3.271,1963,9.353]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,1164,3.461,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.322,1965,6.473,1966,6.473,1967,5.959,1968,5.167]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.074,14,1.26,60,2.707,240,1.231,696,2.686,1164,6.151]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.051,11,0.671,1263,3.539,1699,2.665,1969,3.67,1970,4.003]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[550,2.383,927,3.674,1763,3.033,1969,2.734,1971,3.363,1972,3.033,1973,3.033,1974,2.982,1975,2.982,1976,4.603]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.072,29,1.31,35,0.493,57,5.26,309,4.203,696,2.62,1969,6.423]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[829,0.474]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.586,14,0.759,31,1.048,39,2.149,47,1.9,180,3.058,1296,2.796,1699,2.328]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.565,31,1.01,39,2.071,792,2.671,1296,2.695,1977,5.204,1978,5.204,1979,4.791]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.065,31,1.544,35,0.574,49,1.266,151,3.099,156,3.636,372,1.144,696,2.384,1296,5.276,1344,1.178]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.626,43,3.34,47,2.028,49,0.917,757,2.44,1699,2.485,1980,3.423]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1364,3.758,1763,3.944,1980,3.556,1981,5.986,1982,4.491,1983,4.491]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.064,29,1.165,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,399,1.91,757,4.253,1980,4.62]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.586,396,4.05,1699,2.328,1794,2.771,1964,3.093,1984,3.768,1985,3.692,1986,3.293]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[241,1.535,1683,2.815,1763,3.944,1986,3.652,1987,4.374,1988,4.965]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.081,35,0.347,64,2.384,65,1.858,100,1.844,118,3.654,184,1.776,303,1.505,330,2.703,561,4.389,639,2.384,696,1.844,779,1.776,837,2.812,1028,2.324,1986,7.101,1989,5.663,1990,6.151]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,169,2.984,1699,2.485,1991,3.194]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[240,0.889,1155,3.948,1991,3.587,1992,4.73,1993,4.618]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.723,42,2.205,184,1.923,1183,3.956,1699,2.872]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[199,2.003,345,3.105,550,2.253,643,1.95,1047,3.18,1183,2.585,1342,3.037,1763,2.867,1926,4.006,1994,4.351,1995,4.006]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.059,35,0.403,45,3.182,46,3.141,143,2.041,302,3.88,345,6.78,355,3.045,639,2.77,756,2.55,1183,5.645,1342,4.988,1640,4.71,1740,4.988,1996,6.581]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.626,756,2.056,1176,2.837,1699,2.485,1794,2.958,1964,3.301,1997,3.423]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1997,3.845,1998,6.473,1999,6.473,2000,4.426,2001,4.855]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.058,29,1.05,311,2.559,368,3.256,372,1.008,399,1.72,696,2.1,923,4.998,942,3.16,971,4.466,1344,1.037,1620,4.334,1797,4.334,1997,6.278,2002,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.626,756,2.056,764,3.194,1176,2.837,1299,5.005,1997,3.423,2003,5.763]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1997,3.845,2000,4.426,2001,4.855,2004,6.473,2005,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.06,29,1.093,311,2.665,368,3.345,399,1.791,696,2.187,923,5.205,942,3.291,971,4.651,1620,4.513,1797,4.513,1997,6.406,2002,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.586,31,1.048,1160,2.082,1176,2.658,1699,2.328,1794,2.771,1819,2.658,1964,3.093]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.256,1519,3.797,2006,4.999,2007,5.621,2008,4.517]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.234,9,0.051,19,4.524,29,0.922,35,0.602,60,1.858,65,1.858,126,5.652,167,2.893,181,1.582,243,2.279,311,2.247,366,1.689,399,1.51,478,2.175,532,3.275,1160,2.372,1415,3.861,1521,3.805,1819,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,240,0.697,241,1.302,368,1.764,1176,2.5,1240,2.815,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.626,14,0.81,245,3.565,1263,3.301,1970,3.733,2009,3.381,2010,5.763]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1971,3.015,1973,2.719,1974,2.673,1975,2.673,2009,2.421,2011,4.126,2012,4.126,2013,3.095,2014,2.719,2015,2.218,2016,4.126,2017,4.126]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.054,14,0.929,35,0.373,38,2.338,156,3.023,181,1.701,290,3.879,324,2.317,335,3.832,366,1.815,399,1.624,478,2.338,713,3.832,780,3.229,2009,6.02,2015,3.554,2018,4.96,2019,4.615,2020,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.723,140,3.512,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.574,883,3.265,2021,6.473,2022,6.473,2023,4.618]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.07,24,2.72,35,0.347,64,2.384,90,2.581,101,2.914,140,6.139,141,2.236,157,3.805,191,3.409,235,3.306,323,1.695,368,2.136,404,3.921,508,3.446,1065,3.446,2024,6.12]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1301,3.86,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.047,11,0.626,31,1.119,1176,2.837,1699,2.485,1794,2.958,1964,3.301]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.605,31,1.081,199,2.563,701,2.786,2007,4.836,2027,5.568,2028,5.568]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.097,17,1.629,18,1.639,31,2.191,60,2.116,101,3.319,265,4.316,330,3.079,2029,7.006,2030,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2031,3.815]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.962,11,0.521,14,0.674,394,3.346,1699,2.068,1794,2.461,1964,2.746,2035,3.159,2036,3.106,2037,4.414]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.586,184,1.559,323,1.488,676,2.373,1465,3.093,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2038,3.652]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.605,116,2.858,454,3.351,1819,2.741,1988,4.618,2032,3.351,2038,3.054]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.126,42,1.682,240,0.697,312,2.232,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.626,14,0.81,184,1.664,743,4.111,1699,2.485,1940,4.451,2045,4.111]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.65,1763,3.944,2045,4.271,2046,5.199,2047,4.965,2048,5.986]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.076,14,0.966,29,1.029,35,0.522,136,3.437,265,3.162,281,3.058,311,2.509,386,4.901,575,4.312,696,2.059,1340,5.484,2045,6.602,2047,5.698,2049,5.306,2050,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.586,49,0.859,143,1.542,240,0.741,1176,2.658,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.565,240,0.715,550,2.695,701,2.604,1763,3.429,1794,2.671,1906,4.52,2051,5.204]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.089,17,1.696,18,1.707,35,0.411,40,3.896,181,1.876,240,1.481,244,3.269,366,2.003,460,3.508,1474,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,276,2.932,1699,2.485,2052,3.16]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1763,4.265,1863,4.193,1988,5.369,2052,3.55,2053,6.473]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2054,3.772]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2056,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.671,14,0.869,49,0.984,143,1.765,1699,2.665,2052,3.389]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[643,2.189,1763,3.219,1863,3.165,1988,4.052,2052,2.679,2057,4.885,2058,3.9,2059,4.885,2060,3.57]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.042,11,0.552,31,0.986,120,3.29,241,1.302,1160,1.958,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.01,241,1.334,1160,2.007,1519,3.053,1520,3.491,2007,4.52,2061,5.204,2062,5.204]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,1169,3.144,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.19,5,1.333,9,0.065,11,0.595,29,0.821,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,399,1.346,779,1.583,837,2.506,1028,2.072,1160,2.114]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.528,509,3.056,756,1.812,1699,2.19,1743,3.473,1794,2.607,1964,2.909,2063,3.098]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.626,42,1.908,473,3.617,478,2.037,1699,2.485,2065,4.111,2066,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.65,478,2.116,650,2.505,2066,3.283,2067,5.986,2068,5.986]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.326,9,0.054,29,0.991,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,398,3.59,399,1.624,779,1.909,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.586,14,0.759,24,2.388,158,3.34,192,2.503,1699,2.328,2071,2.902,2072,3.852]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.703,883,3.265,2071,3.479,2073,4.618,2074,5.369]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,197,2.552,478,1.695,1176,2.36,1699,2.068,1794,2.461,1964,2.746,2075,2.552,2076,3.278]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.172,5,1.313,11,0.586,47,1.9,1053,2.931,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.405,1457,4.265,1763,4.265,2080,4.999,2081,4.73]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.742,4,2.541,5,1.522,9,0.051,47,2.203,49,0.997,96,3.132,195,4.055,319,3.873,324,2.193,696,1.876,936,4.125,940,3.873,941,4.623,942,2.824,977,4.369,1056,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.567,9,0.059,11,0.784,764,4.002]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.896,11,0.448,117,1.285,1192,2.768,1457,2.719,1459,3.294,1461,2.944,2082,4.126,2083,4.126,2084,4.126,2085,4.126,2086,4.126]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,1699,2.328,1794,2.771]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.063,35,0.429,49,1.576,80,3.148,156,3.479,290,4.464,372,1.095,571,4.777,697,5.523,1344,1.127]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.502,11,0.671,14,0.869,30,2.665,1053,3.354,1699,2.665]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.791,1054,5.167,1055,3.948,1152,4.342,1763,4.265]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.038,5,2.165,9,0.073,29,0.972,30,4.383,35,0.366,185,3.121,209,4.205,303,1.589,324,2.274,639,2.516,942,2.927,1056,3.718,1060,4.277,2087,5.013,2088,5.013]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.044,11,0.586,49,0.859,1699,2.328,1794,2.771,1964,3.093,2015,2.902,2089,3.167]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2015,3.218,2089,3.512,2090,5.986,2091,4.491,2092,4.491,2093,4.491]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.061,14,1.047,35,0.42,49,1.186,265,3.429,266,5.315,311,2.721,478,2.634,672,3.966,779,2.151,2015,4.004,2020,4.826,2089,5.729,2094,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,749,2.733,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.06,11,0.531,240,0.671,241,1.252,749,2.16,1488,3.9,2095,3.773,2096,4.885,2097,4.885]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.255,184,2.277,1944,6.542]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.369,184,2.566,872,5.369,1944,5.369]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.037,14,0.961,35,0.385,65,1.36,69,3.595,74,2.216,80,1.863,89,2.523,90,2.485,96,2.253,100,2.476,184,2.385,323,1.241,469,2.967,510,2.87,515,3.213,640,2.827,676,3.63,756,1.607,779,1.3,805,3.478,909,4.77,910,3.079,1023,2.182,1177,3.735,1334,4.146,1342,3.143,1355,3.911,1657,3.595,1658,3.595,1877,3.735,1939,4.146,2098,4.503]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.255,184,2.277,2099,6.85]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[184,2.034,1615,7.513,2099,6.118]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.187,4,1.284,9,0.086,14,0.526,29,0.56,35,0.513,49,0.595,64,1.449,65,1.129,80,3.038,88,2.668,96,2.961,143,1.068,148,1.815,181,0.962,184,1.08,188,4.439,240,0.514,241,1.517,296,2.221,302,2.03,324,2.073,330,1.643,372,0.538,561,2.668,637,2.221,672,1.991,676,1.643,696,1.121,837,3.357,885,2.423,1344,0.554,1880,3.248,1989,3.443,2099,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[829,0.474]],["title//docs/applications/social-networking/dolphin/",[2100,8.397]],["keywords//docs/applications/social-networking/dolphin/",[2100,6.712,2101,6.17,2102,7.116]],["toc//docs/applications/social-networking/dolphin/",[4,1.073,5,1.202,9,0.089,16,1.471,29,0.741,35,0.413,40,2,49,0.787,64,1.916,100,1.482,231,3.528,241,2.24,244,2.215,324,1.732,368,1.717,392,4.472,672,2.632,676,2.173,696,1.482,734,3.059,756,1.764,793,3.381,895,3.613,927,3.947,2100,8.962,2103,4.945]],["deprecated//docs/applications/social-networking/dolphin/",[597,0.698,826,0.639,829,0.087,2102,2.151,2104,0.875,2105,0.875,2106,0.875]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.619,14,0.936,90,2.004,378,3.155,1120,4.062]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,0.999,5,1.119,479,3.453,1120,2.808,1831,2.405,2107,4.603,2108,4.603,2109,4.603,2110,4.603,2111,4.603]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.56,4,1.688,5,2.442,90,3.022,155,3.199,324,2.725,378,5.269,479,5.835,2112,7.778]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.055,49,1.06,117,2.075,2113,5.784,2114,6.131]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2113,6.118,2115,7.045,2116,7.045,2117,7.045]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.07,35,0.484,64,3.325,80,3.549,330,2.703,779,1.776,2113,10.75,2114,5.663,2118,10.688,2119,6.151]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.674,643,3.236,885,4.678,938,5.04]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.932,643,3.463,885,5.007]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.234,80,2.545,89,1.879,123,3.13,141,2.236,226,5.923,229,3.861,234,4.495,337,4.389,528,5.102,637,3.654,690,4.389,885,3.985,886,5.033,1101,5.663,1117,4.495,1744,5.663,2120,5.342,2121,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.674,465,4.09,885,4.678,1771,5.578]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.932,1516,5.797,2122,7.728]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.742,35,0.353,89,3.046,96,3.132,141,3.157,226,5.479,229,3.93,330,2.751,513,4.055,637,5.923,885,4.055,886,3.673,1117,4.574,2120,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.784,1023,3.499,1699,3.114,1794,3.706]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.839,1023,3.745,1794,3.967]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.05,11,1.063,15,3.638,16,1.798,42,2.002,74,2.976,80,2.501,89,1.847,100,1.812,141,2.198,354,4.313,510,3.854,571,3.795,732,3.984,967,5.015,1006,3.103,1023,5.14,1176,2.976,1177,5.015,2123,2.691,2124,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[829,0.474]],["title//docs/troubleshooting/rescue-and-rebuild/",[1117,6.348,2125,7.206]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1117,6.254,2125,7.099]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.965,8,3.887,9,0.046,65,1.682,80,3.308,89,1.701,131,2.402,148,1.708,226,2.833,229,5.019,323,2.203,368,1.934,433,3.496,515,3.973,633,3.736,637,3.308,643,2.495,938,3.887,941,2.965,1006,2.858,1117,6.835,1552,5.127,2125,4.619,2126,4.836,2127,5.127,2128,5.569]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.255,89,2.41,1516,5.916]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2129,7.728,2130,7.728,2131,7.728]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.518,29,0.773,34,3.602,35,0.556,42,1.709,89,2.312,96,2.582,120,3.344,141,1.876,148,1.583,157,3.193,190,2.923,207,3.066,226,4.558,229,3.24,310,3.148,415,3.106,513,3.344,571,3.24,623,3.028,633,3.463,637,4.495,885,3.344,961,3.872,986,4.752,1022,3.529,1117,3.772,1327,4.752]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[829,0.474]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.445,226,4.013,513,5.109]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[226,4.355,2132,8.559]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.724,9,0.04,14,1.01,35,0.603,80,1.99,101,2.279,117,1.498,226,5.642,255,2.561,377,4.322,469,3.169,513,6.932,568,4.177,640,3.019,896,3.608,960,3.99,983,3.99,1074,3.515,1917,4.428,2133,4.428,2134,4.81]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1014,6.649,1025,5.277,1026,5.99,1027,5.417]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1025,4.374,1026,4.965,1027,4.491,1809,5.199,1810,5.199,2135,5.986]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.073,100,1.876,133,5.193,372,0.901,377,3.767,422,2.882,465,3.546,608,4.466,639,2.426,1025,6.346,1026,5.193,1027,6.514,1111,5.437,1806,5.764,1808,4.835,1809,5.437,1810,7.542,1811,5.193,2136,6.26,2137,6.26,2138,6.26]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[829,0.474]],["title//docs/troubleshooting/troubleshooting/",[780,4.722]],["keywords//docs/troubleshooting/troubleshooting/",[780,4.683]],["toc//docs/troubleshooting/troubleshooting/",[5,0.777,14,0.449,35,0.18,49,0.509,89,2.905,90,1.57,96,1.6,120,2.071,131,1.379,143,0.913,148,1.6,155,2.146,156,1.462,158,1.978,167,1.504,173,2.145,175,2.281,181,0.822,207,1.899,226,2.655,276,1.627,300,2.232,324,1.12,335,3.024,346,3.641,366,0.878,368,1.812,372,0.46,398,1.736,433,2.007,448,2.944,465,1.811,477,1.95,478,1.13,620,2.336,623,1.876,643,1.433,650,1.338,672,1.702,676,1.405,905,2.281,942,2.353,1048,2.553,1389,2.777,1444,2.777,1710,4.165,1805,2.47,1866,2.777,2139,3.197,2140,3.197,2141,2.777,2142,3.197,2143,3.197,2144,3.197,2145,3.197,2146,3.197,2147,3.197,2148,3.197,2149,2.944,2150,3.197,2151,3.197,2152,3.197,2153,3.197]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[465,4.92,942,3.919]],["keywords//docs/platform/accounts-and-passwords/",[90,2.12,465,3.99,934,5.148,942,3.178]],["toc//docs/platform/accounts-and-passwords/",[29,0.785,45,2.332,46,2.302,89,2.337,90,2.301,100,1.57,207,4.544,324,3.166,372,1.1,377,3.152,392,4.666,433,4.802,672,2.789,756,2.729,940,4.732,941,2.789,942,4.481,1048,4.182,1958,6.344,2002,3.828,2126,4.549]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[460,4.65]],["keywords//docs/platform/support/",[460,3.388,2154,7.045,2155,7.045,2156,7.045]],["toc//docs/platform/support/",[89,2.81,297,7.103,460,4.422,696,2.756,1958,7.628,2157,9.197]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.068,14,0.81,24,2.549,42,1.908,89,1.761,303,1.41,1544,4.111]],["keywords//docs/platform/linode-backup-service/",[2158,4.885,2159,4.885,2160,4.885,2161,4.885,2162,4.885,2163,4.885,2164,4.885,2165,4.885,2166,4.885]],["toc//docs/platform/linode-backup-service/",[2,6.123,8,6.415,42,2.589,89,2.808,90,1.624,92,4.688,96,2.701,311,1.972,379,3.851,398,2.931,422,2.485,424,3.339,502,4.97,565,4.478,604,3.945,637,3.207,748,6.79,1077,3.945,1717,4.478,1811,4.478,2167,5.398]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[181,2.235,276,4.42]],["keywords//docs/websites/hosting-a-website/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/websites/hosting-a-website/",[0,0.965,4,1.559,5,2.09,9,0.071,29,0.721,32,3.066,35,0.271,49,0.766,60,1.453,89,2.626,143,1.374,148,1.475,155,1.979,181,1.237,192,2.23,240,0.986,241,2.203,276,2.447,334,5.877,366,1.321,477,2.934,478,2.539,567,7.913,603,3.169,673,2.313,690,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.383,303,2.126]],["keywords//docs/security/securing-your-server/",[303,2.06,309,2.879,643,2.682,2168,5.986,2169,5.986]],["toc//docs/security/securing-your-server/",[0,0.87,11,0.471,14,0.61,35,0.244,42,2.995,45,1.93,46,1.906,61,0.78,100,1.991,155,1.784,164,1.23,233,1.997,296,2.576,303,1.061,309,2.085,318,1.815,320,2.287,324,1.52,368,1.506,377,3.997,379,3.094,386,3.094,465,2.456,550,2.246,560,3.597,639,1.681,643,3.616,650,1.815,936,2.858,977,3.027,1132,1.407,1345,2.858,1415,2.723,1544,3.094,1672,3.993,1959,3.767,2019,3.027,2170,4.337,2171,3.993,2172,4.337,2173,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.981,29,0.998,49,1.06,749,2.945,1503,4.12]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.671,49,0.984,184,1.784,2174,4.408,2175,4.408,2176,4.312]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.65,184,1.728,2174,4.271,2176,4.178,2177,5.986,2178,5.512]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,1.193,2179,7.545]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,0.968,2179,6.118,2180,7.045,2181,7.045]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.058,35,0.395,207,4.162,318,2.932,623,4.11,696,2.1,1098,5.811,2179,8.143,2182,7.006,2183,7.006,2184,7.006,2185,7.006,2186,7.006,2187,7.006,2188,7.006,2189,7.006,2190,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.445,240,1.083,2191,7.262]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[240,1.175,2192,8.559]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.063,29,1.14,45,3.387,46,3.344,60,2.298,124,4.464,164,2.158,310,4.642,937,6.075,2191,10.135,2193,7.61,2194,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,756,2.376,1013,2.804,1997,3.956,2195,3.202]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2000,4.426,2001,4.855,2196,6.473,2197,6.473,2198,5.959]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.052,29,0.955,35,0.359,311,2.328,368,2.213,372,0.917,399,1.565,675,2.385,766,3.306,785,3.888,786,3.271,923,4.547,942,2.875,971,4.063,1131,4.001,1344,0.944,1797,3.943,1997,5.223,2002,4.657,2121,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[829,0.474]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,117,1.925,355,2.632,598,4.312,599,4.932,943,4.635]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[599,6.832,943,6.42]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.455,2,2.596,16,1.45,29,0.731,35,0.275,38,1.724,54,3.017,148,3.147,171,5.71,255,2.596,355,2.077,376,4.367,598,6.698,635,3.658,640,3.061,682,5.177,943,3.658,969,6.301,1006,2.503,1354,4.49,1470,6.918,2199,4.876,2200,4.876,2201,4.235,2202,4.876]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,1169,3.388,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.981,29,0.998,42,2.205,478,2.355,1120,4.062]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[478,3.026,1120,5.221]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.566,404,5.437,477,5.203,478,3.016,983,7.075,1124,9.805,1941,7.408]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1153,6.517,2204,7.206]],["keywords//docs/websites/cms/kloxo-guides/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.15,164,2.048,1013,3.04,1169,3.674]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.209,5,1.354,9,0.066,29,0.834,31,1.816,35,0.314,47,3.292,49,1.273,65,1.682,100,1.669,141,2.024,143,1.59,181,1.432,184,1.608,241,1.428,303,1.363,323,1.534,330,2.447,366,1.529,399,1.367,779,1.608,837,2.546,1028,2.104,1160,2.147,1684,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.582,465,4.467,2207,6.542]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[465,4.377,2207,6.41,2208,7.116]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.338,65,2.991,324,3.47,372,1.095,465,5.609,1344,1.127,2208,9.117]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[829,0.474]],["title//docs/websites/cms/directadmin/",[2207,8.02]],["keywords//docs/websites/cms/directadmin/",[2207,7.953]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,749,2.945,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1648,4.999,2095,4.999,2209,6.473,2210,6.473,2211,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.059,164,2.048,2204,5.99,2212,2.53]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.082,415,6.004,647,5.588]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.784,1023,3.499,2124,5.99,2203,6.272]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2213,7.045,2214,7.045,2215,5.843,2216,5.843]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.051,14,0.869,675,2.312,766,2.323,1120,3.769,1131,3.879]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[623,4.534,675,2.892,1120,4.714]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.632,9,0.067,17,1.891,18,1.904,202,4.332,675,3.044,766,3.887,780,3.973,786,4.176,1131,5.108]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[954,5.291,1132,2.558,2217,6.542]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[235,3.479,769,4.517,954,4.342,955,5.369,1132,2.099]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[829,0.474]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[164,2.236,954,5.291,1013,3.32]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.299,954,4.845,1013,3.04,2195,3.473]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,235,3.218,769,4.178,954,4.016,955,4.965,2195,2.879]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.15,749,3.194,1132,2.342,2217,5.99]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1782,5.148,1783,5.285,2218,7.045,2219,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[164,2.236,749,3.488,1013,3.32]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,1015,4.445,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.378,4,2.008,5,1.67,9,0.086,17,1.597,18,1.607,35,0.631,143,1.962,181,1.767,240,1.271,241,1.761,366,1.886]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1151,5.291,1153,5.916,1510,6.542]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[487,6.832,1151,5.742]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.809,31,1.048,35,0.304,85,3.851,190,5.206,200,4.688,203,4.478,207,3.207,229,3.389,233,2.485,240,0.741,305,3.945,335,3.129,354,3.851,519,3.293,618,3.207,623,3.167,672,2.874,766,2.03,827,3.945,982,4.97,1006,2.771,1087,3.249,1151,5.245,2220,5.398,2221,5.398,2222,5.398,2223,5.398,2224,5.398,2225,4.97]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.251,61,1.036,756,2.056,1013,2.426,1045,2.167,1576,3.039,2195,2.771]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,756,1.987,1576,2.936,2195,2.677,2198,5.126,2226,5.568,2227,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.341,164,1.752,756,2.205,1045,2.323,1576,3.258,2212,2.165]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[756,2.309,1579,4.618,2229,6.473,2230,6.473,2231,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.15,1132,2.342,1169,3.674,2217,5.99]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.228,5,1.376,9,0.078,29,0.848,31,1.57,35,0.532,49,1.287,65,1.709,100,1.696,143,1.616,181,1.455,184,1.634,241,1.45,303,1.979,366,1.554,372,0.814,399,1.389,603,3.728,779,1.634,1028,2.138,1160,2.182,1344,0.838,1517,3.552]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,1013,2.804,1169,3.388,2195,3.202]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,61,0.956,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,372,0.765,399,1.306,779,1.535,837,2.431,1003,4.618,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2175,4.111,2176,4.022]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2232,5.568,2233,4.836,2234,4.618]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.191,35,0.574,42,2.633,60,2.402,197,4.234,372,1.144,399,1.953,757,4.315,1344,1.178,1980,4.725]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.723,49,1.06,749,2.945,2175,4.751,2176,4.648]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1648,4.999,2095,4.999,2178,5.959,2235,6.473,2236,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.788,61,0.971,473,3.389,478,1.909,1013,2.273,2065,3.852,2066,2.961,2195,2.596]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2217,4.78]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.671,90,1.859,367,4.003,698,3.769,2175,4.408,2176,4.312]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[698,3.948,2238,6.473,2239,5.167,2240,5.167,2241,5.167]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.859,367,4.003,698,3.769,1013,2.601,2195,2.971]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2243,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,241,1.584,1013,2.601,1160,2.383,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.368,1519,4.133,1520,4.726,2244,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,241,1.584,1160,2.383,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.368,1519,4.133,1520,4.726,2245,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.41,877,5.763,1088,5.916]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2246,8.559,2247,8.559]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.42,156,3.406,207,5.801,456,4.908,496,5.754,640,4.676,1087,4.483,1088,9.005,2248,7.45,2249,7.45]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2006,4.999,2250,6.473,2251,5.959,2252,6.473,2253,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.981,29,0.998,89,2.035,1086,3.815,1088,4.996]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[650,2.949,1086,4.036,1088,5.285,2254,7.045]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.629,18,1.639,35,0.395,61,1.26,117,2.921,164,2.658,189,2.932,424,4.334,647,3.924,751,3.505,1013,2.949,1132,2.272,1308,3.661,1503,4.334,2149,6.45]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.784,1023,3.499,2175,5.152,2176,5.04]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2215,5.843,2216,5.843,2255,7.045,2256,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[829,0.474]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,169,2.984,1013,2.426,1991,3.194,2195,2.771]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,240,0.915,585,4.12,1013,2.804,2195,3.202]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[240,0.992,585,4.467,1132,2.342,2257,3.961]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,585,4.12,2123,2.964,2258,2.872]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/platform/stackscripts/",[20,4.627,47,2.776,527,6.542]],["keywords//docs/platform/stackscripts/",[20,3.797,238,4.004,257,4.855,2259,6.473,2260,6.473]],["toc//docs/platform/stackscripts/",[0,1.083,14,1.292,47,2.752,59,3.691,89,1.649,96,2.701,101,2.557,124,3.167,129,3.557,247,3.167,312,2.372,507,4.688,508,3.024,527,9.77,779,1.559,884,3.441,2040,3.621,2261,5.398,2262,4.97,2263,5.398,2264,5.398,2265,5.398,2266,5.398]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1013,2.601,1984,4.312,1985,4.225,1986,3.769,2195,2.971]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1132,2.16,1984,4.648,1985,4.554,1986,4.062,2257,3.652]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[240,0.915,585,4.12,1132,2.16,1295,3.066,2257,3.652]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.078,29,1.071,35,0.536,47,2.516,151,3.702,240,1.305,281,3.182,372,1.028,399,1.755,792,3.668,1295,4.375,1344,1.059]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2038,3.961,2195,3.473]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2267,5.204,2268,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.784,2038,3.961,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.784,2038,3.961,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.734,454,3.468,702,2.837,1013,2.426,2195,2.771,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.859,454,3.718,702,3.041,1132,2.004,2257,3.389,2271,4.515]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.626,90,1.734,454,3.468,702,2.837,2269,2.814,2270,2.792,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.734,164,1.634,247,3.381,2212,2.019,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.085,35,0.459,100,2.439,184,2.349,303,1.991,696,2.439,779,2.349,1028,3.075,2273,7.375]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.734,247,3.381,1132,1.869,2257,3.16,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.971,90,1.624,509,3.249,756,1.926,1013,2.273,1743,3.692,2063,3.293,2195,2.596]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.059,29,1.071,35,0.602,372,1.028,376,4.302,391,4.888,399,1.755,604,5.223,607,4.422,757,3.027,1344,1.059,2063,6.511,2279,6.208]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,1013,2.601,2195,2.971,2280,3.625]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2257,3.652,2280,3.907]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,1.618,141,1.962,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2257,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2269,2.814,2270,2.792]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.984,61,1.111,184,1.784,1013,2.601,2174,4.408,2195,2.971]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.626,255,3.068,929,3.565,2269,2.814,2270,2.792,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1055,2.98,2292,4.885,2293,4.885,2294,4.885,2295,4.243,2296,3.9,2297,3.9,2298,3.773,2299,3.9]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.299,140,3.808,1013,3.04,2195,3.473]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.713,140,3.715,883,3.554,2023,5.026]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,240,0.849,452,3.228,1013,2.601,1188,3.289,2195,2.971]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[240,0.849,304,3.144,675,2.312,766,2.323,1132,2.004,2257,3.389]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[701,3.525,1692,4.817,1694,6.118,2302,5.843]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,303,1.512,721,3.117,884,3.939,1013,2.601,2195,2.971]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2303,7.728,2304,7.728,2305,7.728]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.293,1132,2.16,2257,3.652,2306,4.751,2307,5.524]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/twiki-on-centos-5/",[164,2.236,2031,4.518,2212,2.763]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2031,4.137,2195,3.473]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1132,2.558,2031,4.518,2257,4.326]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[829,0.474]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.936,233,3.066,320,3.512,643,2.984,1084,4.314]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[447,3.1,643,2.682,978,5.512,1086,3.429,1108,5.512,1907,4.374]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.333,117,1.852,123,3.024,131,3.612,185,4.027,197,3.164,219,3.677,233,4.847,320,3.135,323,2.308,643,2.663,690,4.241,751,4.19,1091,6.283,1521,3.677,2060,4.343,2309,8.375]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.341,5,1.502,14,0.869,117,1.925,1053,3.354,1308,3.228]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1836,5.969,1894,6.712,2310,7.728]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[829,0.474]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,585,4.12,2269,3.252,2270,3.227]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.908,61,1.036,1013,2.426,1263,3.301,1969,3.423,1970,3.733,2195,2.771]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1971,3.57,1972,3.219,1974,3.165,1975,3.165,2014,3.219,2311,4.885,2312,4.885,2313,4.052,2314,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.083,29,1.505,35,0.438,57,4.681,309,3.74,372,1.119,399,1.91,696,2.331,1344,1.152,1969,5.966]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,1013,2.426,2195,2.771]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[678,5.167,1492,5.167,2315,6.473,2316,6.473,2317,6.473]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.08,17,1.405,18,1.414,35,0.478,40,2.446,181,1.555,192,2.803,240,1.344,244,3.798,286,3.387,304,3.076,318,3.547,366,1.66,372,0.87,460,2.907,673,2.907,1344,0.895,1472,4.219,2318,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[117,2.457,1308,4.121,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.095,31,1.446,35,0.42,49,1.186,143,2.128,240,1.023,372,1.072,713,4.318,1344,1.103,1620,4.608,2038,5.356]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2269,2.814,2270,2.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,749,2.945,1013,2.804,2195,3.202]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1496,6.41,1887,6.712,2320,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.984,143,1.765,169,3.199,1132,2.004,1991,3.424,2257,3.389]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,255,3.068,929,3.565,1013,2.426,2195,2.771,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1055,2.98,2296,3.9,2297,3.9,2298,3.773,2299,3.9,2322,4.885,2323,4.885,2324,4.885,2325,4.498]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,1013,2.138,2071,2.73,2072,3.623,2195,2.442]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.412,42,1.908,240,0.791,312,2.532,1132,1.869,2257,3.16]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.119,61,1.036,792,2.958,1013,2.426,1296,2.984,2195,2.771]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.293,61,1.197,276,3.388,1013,2.804,2195,3.202]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.162,61,1.076,199,2.756,701,2.995,2326,5.512,2327,5.986]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.401,14,0.81,30,2.485,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1055,4.297,1152,4.726,2328,7.045,2329,7.045]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,240,0.915,1013,2.804,1164,3.73,2195,3.202]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,240,0.915,585,4.12,2212,2.333,2334,2.679]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.037,61,1.036,720,4.323,756,2.056,1013,2.426,1045,2.167,2195,2.771]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,240,0.849,585,3.822,1013,2.601,1295,2.844,2195,2.971]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,1160,2.383,1819,3.041,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2006,4.999,2251,5.959,2337,6.473,2338,6.473,2339,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.971,323,1.488,324,1.892,465,3.058,1045,2.03,1576,2.847,2212,1.892,2334,2.172]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[756,2.514,1045,2.649,1576,3.715,2340,7.045]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.05,29,0.906,35,0.598,42,2.806,185,2.907,320,3.188,372,0.87,399,1.484,639,2.343,675,2.262,757,4.492,773,4.418,779,1.746,951,4.826,1045,2.273,1344,0.895,1576,3.188,2341,6.046,2342,6.046]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,2195,2.971,2306,4.408,2307,5.125]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.058,29,1.05,31,1.82,35,0.528,49,1.493,151,2.73,156,3.203,372,1.008,399,1.72,460,3.369,837,3.203,1296,5.472,1344,1.037]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.299,1013,3.04,1301,4.186,2195,3.473]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,756,2.056,1013,3.449,1362,3.797,2195,2.771,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1579,4.271,2344,5.986,2345,5.986,2346,5.512,2347,4.779,2348,4.779]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.08,35,0.42,38,2.634,65,2.25,100,2.233,184,2.151,303,1.823,323,2.053,372,1.072,696,2.233,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.734,454,3.468,702,2.837,2212,2.019,2271,4.211,2334,2.318]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.34,49,0.917,61,1.036,757,2.44,1013,2.426,1980,3.423,2195,2.771]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1364,3.495,1982,4.177,1983,4.177,2326,5.126,2349,5.568,2350,5.568,2351,5.126]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.784,2031,4.137,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.784,2031,4.137,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.971,197,2.874,478,1.909,1013,2.273,2075,2.874,2076,3.692,2195,2.596]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,478,1.84,819,3.267,2075,2.771,2079,2.797,2352,5.204,2353,5.204,2354,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.723,31,1.293,276,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.65,31,1.162,199,2.756,701,2.995,2355,5.199,2356,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.299,1013,3.04,1023,3.499,2195,3.473]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1931,6.486,1932,6.486,2195,3.388,2357,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[141,3.433,287,7.293,323,2.602,1023,5.492]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.293,117,2.075,1160,2.568,1308,3.48,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1160,2.496,2008,4.517,2358,6.473,2359,5.621,2360,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.293,117,2.075,241,1.707,1160,2.568,1308,3.48]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1519,4.133,1520,4.726,2359,6.118,2360,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.065,29,1.191,35,0.448,60,2.402,181,2.046,241,2.039,366,2.184,372,1.144,399,1.953,779,2.296,1160,3.067,1344,1.178]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2257,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.402,117,2.25,276,3.674,1308,3.773]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.256,701,3.238,2359,5.621,2360,5.621,2361,6.473]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.076,29,1.378,31,1.785,372,1.323,399,2.258,1344,1.362]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.299,2038,3.961,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2362,5.204,2363,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/phpfox/",[2364,7.719]],["keywords//docs/applications/social-networking/phpfox/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.299,2031,4.137,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.251,5,1.401,14,0.81,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1836,4.999,2365,6.473,2366,5.959,2367,6.473,2368,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.784,2054,4.09,2269,3.527,2270,3.499]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2369,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2257,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2302,5.369]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.784,1301,4.186,2269,3.527,2270,3.499]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,2212,2.165,2306,4.408,2307,5.125,2334,2.486]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.445,5,1.619,14,0.936,1053,3.615,1503,4.12]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.529,5,1.713,1503,4.358,2298,5.441]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.617,9,0.068,14,1.171,35,0.469,319,5.152,372,1.198,1344,1.233]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.341,11,0.671,90,1.859,1831,3.228,2269,3.017,2270,2.994]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.368,1519,4.133,1520,4.726,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.368,1519,4.133,2008,4.917,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,243,2.76,372,1.072,399,1.829,532,3.966,1160,3.766,1344,1.103,1545,5.443,1819,3.667]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.784,1301,4.186,2123,3.214,2258,3.114]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1132,2.558,2054,4.467,2372,4.326]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2373,5.568]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.199,117,1.925,792,3.171,1296,3.199,1308,3.228]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.256,39,2.576,792,3.322,1296,3.352,1894,5.621]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.463,9,0.06,29,1.093,31,1.416,35,0.411,40,2.951,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08,1834,3.778]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2257,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.08,29,1.116,31,1.896,35,0.55,49,1.186,151,2.902,156,3.406,372,1.072,399,1.829,1296,5.057,1344,1.103]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2257,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[678,6.17,2374,7.728,2375,7.116]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[240,0.992,1132,2.342,1164,4.045,2257,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.322,2377,6.473,2378,6.473,2379,6.473,2380,5.621]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.068,14,1.171,29,1.248,60,2.515,240,1.144,372,1.198,399,2.045,1164,5.877,1344,1.233]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,1164,3.73,2269,3.252,2270,3.227]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.322,1968,5.167,2381,6.473,2382,6.473,2383,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2269,2.814,2270,2.792]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.65,1692,4.093,1863,3.878,2356,4.965,2384,5.512,2385,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2257,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1836,5.969,1837,6.41,2386,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.402,276,3.674,1132,2.342,2257,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.162,199,2.756,701,2.995,2302,4.965,2370,5.199,2387,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.213,9,0.07,29,0.906,31,2.059,40,2.446,64,2.343,65,1.826,90,1.819,100,1.812,101,2.864,184,1.746,303,1.48,330,2.657,372,0.87,399,1.484,696,1.812,779,1.746,837,2.764,1028,2.285,1344,0.895,1684,4.535,1834,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[240,0.822,701,2.995,1992,4.374,2388,5.986,2389,5.986,2390,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2123,2.565,2258,2.485]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2269,2.637,2270,2.616]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.784,2054,4.09,2123,3.214,2258,3.114]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2391,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2123,2.403,2258,2.328]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-14/",[140,4.159,1132,2.558,2257,4.326]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.574,140,3.413,883,3.265,2023,4.618,2392,6.473]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2269,2.48,2270,2.461,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1683,2.618,1851,3.807,1852,3.807,2394,5.568,2395,5.568,2396,4.069,2397,4.069]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2269,2.814,2270,2.792]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2398,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2257,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2269,2.48,2270,2.461]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.087,14,1.199,372,1.227,779,2.463,1344,1.263,2071,6.242]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2269,2.637,2270,2.616]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.15,1132,2.342,1169,3.674,2257,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1132,1.724,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,1169,3.388,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.19,5,1.333,9,0.065,11,0.595,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.15,749,3.194,1132,2.342,2257,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1782,5.148,1783,5.285,2401,7.045,2402,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.255,184,2.277,1183,4.685]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1183,4.591,1615,6.17,2403,7.728]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[509,4.346,2404,5.417,2405,6.272,2406,6.272]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[117,1.865,369,3.878,856,4.491,2405,5.199,2406,5.199,2407,4.965]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,147,3.828,376,5.979,377,4.603,509,4.603,568,8.628,1468,4.549,1631,7.042,1771,4.046,1870,4.345,2040,5.131,2201,4.549,2318,4.549,2405,8.628,2406,9.177,2408,7.649,2409,5.238]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.671,303,1.512,721,3.117,884,3.939,2269,3.017,2270,2.994]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.65,447,3.1,650,2.505,721,3.02,2356,4.965,2385,5.512]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,117,1.795,286,3.228,355,2.455,571,3.617,2410,5.005,2411,5.005]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[117,2.195,2410,6.118,2411,6.118,2412,7.045]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[147,5.945,286,5.791,323,2.242,349,5.458,368,2.825,373,7.491,640,5.108,886,4.773,2410,7.066,2411,7.066]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.769,148,1.895,598,4.312,974,4.932,2279,5.366,2413,4.772]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[117,1.865,470,4.271,974,4.779,1521,3.703,2407,4.965,2414,5.512]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,376,4.58,464,3.605,676,4.351,892,5.429,971,4.851,974,8.787,1830,5.429,2279,8.6,2415,7.007]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2257,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,1169,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.205,117,2.075,184,1.923,1183,3.956,1503,4.12]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.081,35,0.602,38,2.175,43,3.565,141,2.236,240,0.845,345,4.389,368,2.136,372,0.885,696,1.844,757,2.605,1183,6.677,1342,5.987,1344,0.911,1740,4.293]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.671,42,2.046,184,1.784,1183,3.67,2269,3.017,2270,2.994]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.199,164,1.752,792,3.171,1296,3.199,2212,2.165]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.079,29,1.093,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2372,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2399,2.71,2400,2.672]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2123,2.565,2258,2.485]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.293,35,0.375,199,3.066,311,2.432,675,2.492]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.01,199,2.396,305,3.803,675,1.947,1701,4.791,2416,5.204,2417,5.204,2418,5.204]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.87,9,0.036,14,0.934,31,1.756,35,0.374,38,1.533,90,1.305,118,3.945,169,2.246,181,1.708,199,3.057,202,2.309,217,3.027,334,2.966,366,1.824,460,2.085,532,2.309,624,2.909,675,4.131,751,3.323,766,3.666,785,2.645,786,3.409,1131,2.723,2419,4.337,2420,6.641]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.119,61,1.036,792,2.958,1296,2.984,2212,2.019,2334,2.318]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2269,2.814,2270,2.792]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2269,3.017,2270,2.994,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.784,140,3.808,2269,3.527,2270,3.499]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.574,883,3.265,2023,4.618,2421,6.473,2422,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.915,9,0.037,24,2.017,35,0.469,40,1.845,64,3.227,90,2.076,100,1.367,101,2.161,140,5.744,141,1.658,157,2.822,184,1.317,191,2.528,235,2.452,303,1.116,323,1.257,368,1.584,372,0.656,404,2.908,508,2.555,779,2.68,837,3.806,1028,1.724,1065,2.555,1344,0.675,1834,2.362,2024,4.924]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,585,3.822,1295,2.844,2269,3.017,2270,2.994]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.581,355,2.837,376,4.008,743,4.751,890,5.144]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[890,5.969,944,6.17,2423,7.728]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.293,64,4.145,97,4.97,102,4.05,148,1.656,199,3.599,203,4.478,379,3.851,492,4.31,702,2.657,743,5.578,766,2.03,785,3.293,786,2.771,890,6.039,1091,4.05,1278,3.851,1717,4.478,1830,3.851,1996,4.97,2262,4.97,2424,4.97,2425,4.97,2426,4.97]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,117,1.925,148,1.895,355,2.632,376,3.718,640,3.879]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[117,2.408,944,6.17,2427,7.728]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.683,38,1.799,117,2.767,148,3.203,149,3.55,173,3.413,174,3.55,192,2.358,214,3.413,231,3.629,286,2.85,318,2.129,334,3.479,355,3.785,376,3.061,640,7.273,673,2.446,702,2.504,892,3.629,1414,4.418]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2280,3.907,2372,3.652]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2372,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2428,5.986,2429,5.986]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.558,22,4.062,148,2.042,598,4.648,972,5.316]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[117,2.195,470,5.026,972,5.624,2407,5.843]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.78,22,4.642,148,2.334,169,3.941,355,3.242,464,3.605,972,9.307,1083,6.609,1830,5.429,2415,7.007]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1457,4.265,2080,4.999,2081,4.73,2430,6.473,2431,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2355,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.784,1023,3.499,2269,3.527,2270,3.499]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2215,5.843,2216,5.843,2432,7.045,2433,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,749,2.945,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1648,4.999,2095,4.999,2356,5.369,2435,6.473,2436,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,424,3.822,478,2.185,515,4.408,1059,4.635,2437,5.366]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[478,2.491,780,3.44,1702,5.843,2437,6.118]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.049,14,1.56,49,0.946,284,4.745,477,3.626,478,2.961,591,4.745,745,3.916,751,2.974,1059,4.459,1230,4.591,1771,4.591,1830,4.241,2437,10.275,2438,5.944,2439,5.944]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.936,184,1.923,323,1.835,515,4.751,2440,5.784]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[117,1.865,147,4.374,398,3.25,780,2.923,2441,5.986,2442,5.986]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,234,5.561,323,2.097,355,3.242,398,4.132,1830,5.429,1869,6.075,2141,6.609,2440,10.125,2443,7.61,2444,7.61]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1132,2.558,2372,4.326,2445,6.092]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[235,3.787,769,4.917,1132,2.285,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.605,756,1.987,1576,2.936,2270,2.698,2446,5.568,2447,5.568,2448,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,241,1.584,1160,2.383,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.368,1519,4.133,1520,4.726,2355,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2269,2.637,2270,2.616]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.336,148,2.042,323,1.835,671,4.866,2450,6.131]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[117,2.016,490,5.959,944,5.167,1521,4.004,2407,5.369]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.927,14,0.822,19,3.083,58,7.188,148,1.793,303,1.431,323,1.611,355,2.49,671,8.369,2040,3.921,2450,5.382,2451,9.076,2452,8.277,2453,5.845,2454,5.845,2455,5.845]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.936,90,2.004,148,2.042,676,2.926,2456,5.784]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2456,6.712,2457,7.728,2458,7.728]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.532,148,2.895,231,4.037,316,3.728,355,2.411,368,2.808,392,3.451,464,2.68,676,4.787,805,6.246,991,5.209,1089,6.456,1944,4.693,2456,8.196,2459,5.658,2460,5.658]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.756,150,3.706,312,3.173,697,3.421]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.713,312,3.096,697,3.337,883,3.554]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.952,5,1.154,16,1.411,17,1.103,18,1.11,29,0.711,35,0.481,45,2.112,46,2.085,49,0.755,60,1.433,148,2.181,155,1.952,181,1.22,233,2.184,311,2.597,312,3.746,320,2.502,324,1.663,415,2.856,474,4.121,569,3.936,697,2.248,713,2.75,751,2.374,820,8.808,922,4.121,1033,3.788,1059,3.56,2461,4.369,2462,7.11]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.671,1984,4.312,1985,4.225,1986,3.769,2123,2.75,2258,2.665]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[143,1.646,180,3.264,241,1.477,1132,1.869,1160,2.222,2052,3.16,2372,3.16]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2052,3.55,2463,5.959,2464,5.959,2465,5.959,2466,6.473]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.07,35,0.6,60,2.576,65,2.576,243,3.161,372,1.227,532,4.541,1344,1.263]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1132,2.004,1585,4.772,1805,4.772,2372,3.389,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[756,2.514,1132,2.285,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1132,2.558,2038,4.326,2372,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.046,1132,2.004,1263,3.539,1970,4.003,2009,3.625,2372,3.389]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.051,14,0.865,29,0.922,35,0.347,38,2.175,156,2.812,181,1.582,290,3.609,324,2.155,335,3.565,366,1.689,372,0.885,399,2.106,478,2.175,713,3.565,780,3.004,1344,0.911,2009,5.795,2015,3.306,2018,4.614,2019,4.293,2020,3.985]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,184,1.664,323,1.588,676,2.532,1465,3.301,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[184,2.277,676,3.466,1465,4.518]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[829,0.474]],["title//docs/websites/wikis/confluence-on-centos-5/",[164,2.236,2212,2.763,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2471,4.491,2472,7.045,2473,5.624,2474,5.624]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.906,5,1.738,9,0.078,10,5.1,12,3.668,29,1.071,35,0.403,181,1.838,366,1.963,399,1.755,1013,3.009,2471,7.252]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1132,2.558,2372,4.326,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2471,4.491,2473,5.624,2474,5.624,2475,7.045]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.856,5,1.67,9,0.076,10,4.901,12,3.526,29,1.029,35,0.387,181,1.767,366,1.886,372,0.988,399,1.687,1013,2.892,1344,1.017,2471,7.137]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2372,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2476,5.621]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.326,9,0.054,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,372,0.951,398,3.59,779,1.909,1344,0.979,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2372,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2471,4.491,2473,5.624,2474,5.624,2477,7.045]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2471,4.491,2473,5.624,2474,5.624,2478,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.784,2123,3.214,2258,3.114,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2471,4.491,2473,5.624,2474,5.624,2479,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2480,5.167]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.302,9,0.053,35,0.366,57,3.906,148,1.991,181,1.669,243,2.405,265,2.988,311,2.371,372,0.934,386,4.631,398,3.524,779,1.874,1344,0.961,1396,5.866,2050,4.354,2066,5.574,2069,4.53,2070,4.631]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.015,117,2.25,355,3.077,869,5.578]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[214,4.342,369,4.193,869,4.999,2414,5.959,2481,6.473]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.821,40,2.218,117,2.463,318,2.294,349,3.678,355,3.368,424,3.391,473,3.441,570,4.547,869,8.311,1589,5.048,2049,4.234,2173,4.547,2482,5.482,2483,7.279,2484,9.273,2485,5.482,2486,5.482,2487,5.482,2488,5.482]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2364,4.932,2489,5.689]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.076,64,3.565,372,1.323,696,2.756,1344,1.362,2364,7.342]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.019,11,0.552,14,0.714,394,3.544,2035,3.346,2036,3.29,2037,4.676,2123,2.261,2258,2.19]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.083,11,0.586,14,0.759,394,3.768,2035,3.557,2036,3.498,2399,2.539,2400,2.503]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.061,35,0.614,38,2.634,265,3.429,311,2.721,368,2.587,779,2.151,2035,4.908,2036,7.49,2050,4.997]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2123,2.565,2258,2.485]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.65,1692,4.093,1863,3.878,2384,5.512,2490,4.624,2491,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.971,150,2.771,151,2.104,240,0.741,2212,1.892,2334,2.172,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.7,4,1.84,5,1.47,9,0.087,29,0.906,35,0.341,60,1.826,151,2.355,154,4.313,240,1.164,243,2.24,372,0.87,399,1.484,779,1.746,1344,0.895,2493,4.67,2496,6.546,2498,5.251,2499,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.586,150,2.771,151,2.104,240,0.741,2123,2.403,2258,2.328,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1969,3.67,1970,4.003,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2500,4.885,2501,4.498]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.087,29,1.278,35,0.481,57,5.133,309,4.102,696,2.557,1969,6.326]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2123,2.403,2258,2.328]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1012,6.092,2035,5.197,2036,5.109]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2036,5.544,2101,6.832]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[829,0.474]],["title//docs/databases/redis/redis-on-centos-5/",[140,4.159,164,2.236,2212,2.763]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.574,140,3.413,883,3.265,2023,4.618,2502,6.473]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.044,24,2.387,35,0.304,40,2.184,47,1.9,64,2.092,90,2.352,100,1.618,101,2.557,140,5.64,141,1.962,157,3.339,184,1.559,191,2.992,235,2.902,303,1.321,323,1.487,368,1.875,404,3.441,508,3.024,779,2.258,837,2.468,1028,2.04,1065,3.024,1834,2.795,2024,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-13/",[140,4.159,1132,2.558,2372,4.326]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.574,140,3.413,883,3.265,2023,4.618,2503,6.473]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.784,140,3.808,2399,3.396,2400,3.348]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.574,883,3.265,2023,4.618,2504,6.473,2505,5.959]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[151,2.104,240,0.741,241,1.384,368,1.875,1132,1.751,1240,2.992,2372,2.961,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.586,150,2.771,151,2.104,240,0.741,2399,2.539,2400,2.503,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[307,4.845,464,3.421,611,4.758,650,3.022]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[309,3.388,611,4.642,650,2.949,971,4.491]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.021,11,0.275,14,0.787,15,1.524,16,0.753,22,1.545,35,0.242,38,1.979,47,0.891,61,0.455,84,1.9,90,1.293,95,3.14,117,1.339,124,1.486,149,1.767,157,4.964,164,0.718,173,1.699,198,1.668,207,1.504,243,0.938,307,5.383,308,1.59,309,1.218,310,4.895,318,1.06,335,2.49,346,2.999,355,1.079,456,1.668,543,2.199,546,1.767,550,2.225,611,7.254,623,1.486,635,1.9,650,1.06,780,1.237,886,1.486,1056,1.451,1088,4.946,1132,0.821,1281,3.956,1308,1.323,1314,1.807,1389,2.199,1400,5.153,1417,1.504,1424,2.331,1470,2.021,1875,2.199,2201,2.199,2506,2.331,2507,2.532,2508,2.532,2509,2.532,2510,2.532,2511,2.532]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.06,35,0.411,47,2.568,151,2.842,169,3.778,180,4.132,240,1.002,281,3.247,391,4.989,422,4.434,699,6.108,1188,5.128]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.671,31,1.199,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.784,140,3.808,2123,3.214,2258,3.114]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.574,883,3.265,2023,4.618,2505,5.959,2512,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[148,1.767,1089,4.6,1743,5.603,1942,4.78,2513,5.306,2514,5.763]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1419,5.199,1942,4.965,2515,5.986,2516,5.986,2517,5.986,2518,5.986]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.02,14,1.249,148,2.725,192,2.358,231,3.629,296,3.022,355,3.19,357,4.061,676,2.235,702,2.504,1089,8.718,1419,7.715,1942,7.368,2173,4.22,2513,10.055,2519,5.087,2520,5.087,2521,5.087]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.065,35,0.445,531,4.418]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[533,5.621,534,5.621,536,5.621,2522,6.473,2523,6.473]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.076,17,2.138,18,2.152,35,0.518,531,6.248]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.15,164,2.048,1169,3.674,2212,2.53]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.172,5,1.313,9,0.064,29,0.809,31,1.784,35,0.304,47,3.235,49,1.245,65,1.63,100,1.618,141,1.962,143,1.542,181,1.388,184,1.559,241,1.384,303,1.321,323,1.487,330,2.372,366,1.482,372,0.777,399,1.326,779,1.559,837,2.468,1028,2.04,1160,2.082,1344,0.799,1684,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.299,140,3.808,2212,2.53,2334,2.905]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.574,883,3.265,2023,4.618,2524,6.473,2525,6.473]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[240,0.992,245,4.467,1132,2.342,1164,4.045]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.322,2380,5.621,2526,6.473,2527,6.473,2528,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[240,0.992,1132,2.342,1164,4.045,2372,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.322,2380,5.621,2529,6.473,2530,6.473,2531,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,1164,3.73,2123,2.964,2258,2.872]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.322,1967,5.959,1968,5.167,2532,6.473,2533,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.723,240,0.915,1164,3.73,2399,3.132,2400,3.087]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.322,1968,5.167,2534,6.473,2535,6.473,2536,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.837,99,3.194,117,1.795,837,2.635,906,3.381,1308,3.011,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[838,4.3,839,4.3,840,4.177,841,3.972,1308,2.909,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.837,99,3.194,164,1.634,189,2.412,837,2.635,906,3.381,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[164,1.579,838,4.3,839,4.3,840,4.177,841,3.972,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.041,99,3.424,368,2.146,837,2.825,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[838,4.624,839,4.624,840,4.491,841,4.271,1566,4.779,1567,4.779]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.15,117,2.25,1169,3.674,1308,3.773]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.491,5,1.67,9,0.076,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,372,0.988,399,1.687,1160,2.649,1344,1.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[355,2.837,376,4.008,598,4.648,2404,4.996,2537,5.784]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1521,4.358,2537,6.118,2538,7.045,2539,6.486]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,148,3.117,173,4.354,231,4.631,355,2.765,376,3.906,433,4.074,635,4.869,640,4.074,803,5.384,2537,10.28,2540,6.491,2541,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[148,2.215,391,4.938,392,4.405,2542,5.99]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[355,3.001,1510,5.843,2543,7.045,2544,7.045]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.602,14,1.064,38,1.825,117,2.357,148,3.222,149,3.602,179,3.602,274,3.772,291,3.401,318,2.16,355,2.199,377,3.106,392,6.407,433,3.24,456,3.401,608,3.682,622,4.483,639,2.001,844,4.483,1061,3.529,2542,7.431,2545,5.162,2546,4.752,2547,5.162]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,2.419,598,5.504,892,5.627]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,1.985,682,4.618,892,4.618,971,4.126,2539,5.959]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,148,2.192,355,4.048,676,3.141,877,5.223,892,8.45,971,6.057,1089,5.706,2291,5.362,2548,6.208,2549,7.148]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.15,1132,2.342,1169,3.674,2372,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.19,5,1.333,9,0.065,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1132,1.778,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.723,49,1.06,1169,3.388,2123,2.964,2258,2.872]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.037,61,1.036,720,4.323,756,2.056,1045,2.167,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.971,116,2.771,192,2.503,247,3.167,650,2.26,2212,1.892,2334,2.172,2550,4.689]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[116,3.322,1625,5.369,2550,5.621,2551,6.473,2552,6.473]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.08,35,0.598,40,2.446,49,0.962,143,1.727,148,1.854,150,3.103,218,4.313,323,1.666,368,2.099,372,0.87,465,3.424,696,1.812,921,4.826,1023,2.93,1344,0.895,2548,5.251,2550,9.212]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.06,61,1.197,1169,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.088,5,1.219,9,0.061,29,0.751,31,1.71,35,0.283,47,3.424,49,1.179,61,1.332,65,2.237,100,1.503,141,1.823,143,1.432,181,1.29,184,1.448,241,1.286,303,1.227,323,1.382,330,2.204,366,1.377,372,0.721,399,1.231,779,1.448,837,2.293,1003,4.355,1028,1.895,1160,1.934,1344,0.743,2553,5.015]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,143,1.45,180,2.876,241,1.302,1160,1.958,1176,2.5,2052,2.785,2123,2.261,2258,2.19]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1863,3.878,2463,5.512,2464,5.512,2490,4.624,2554,5.512,2555,5.512]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.068,35,0.591,60,2.515,65,2.515,243,3.086,372,1.198,532,4.434,696,2.496,1344,1.233]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.341,756,2.205,1045,2.323,1132,2.004,2282,3.461,2372,3.389]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2556,4.885,2557,3.773,2558,3.773,2559,3.773,2560,3.773]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2372,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[678,6.17,2375,7.116,2561,7.728]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1836,5.969,1837,6.41,2562,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/fedora-13/",[5,1.502,14,0.869,30,2.665,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/postgresql/fedora-13/",[1055,4.714,1152,5.185,2563,7.728]],["toc//docs/databases/postgresql/fedora-13/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.368,1519,4.133,1520,4.726,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.368,1519,4.133,2008,4.917,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2372,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2372,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2372,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2052,3.864,2465,6.486,2476,6.118,2565,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2257,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2052,3.864,2302,5.843,2565,6.486,2566,7.045]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2567,6.272]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2567,5.621,2568,6.473,2569,6.473,2570,6.473]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.076,60,2.777,144,7.103,372,1.323,1344,1.362,2567,7.987]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.341,245,3.822,756,2.205,1045,2.323,1132,2.004,2282,3.461]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2571,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.671,42,2.046,184,1.784,1183,3.67,2123,2.75,2258,2.665]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.15,749,3.194,1132,2.342,2372,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1782,5.148,1783,5.285,2572,7.045,2573,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.402,276,3.674,1132,2.342,2372,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.162,199,2.756,701,2.995,2387,5.199,2476,5.199,2564,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.671,49,0.984,184,1.784,2123,2.75,2174,4.408,2258,2.665]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2123,2.75,2258,2.665,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[164,1.888,240,0.915,585,4.12,1295,3.066,2212,2.333]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.08,29,1.116,35,0.55,47,2.622,151,3.805,240,1.341,281,3.316,399,1.829,792,3.823,1295,4.496]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,585,3.822,1295,2.844,2123,2.75,2258,2.665]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,585,3.822,1295,2.844,2399,2.906,2400,2.864]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.084,35,0.574,151,3.099,240,1.092,281,3.54,372,1.144,792,4.082,1295,4.69,1344,1.178]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,743,4.111,1940,4.451,2045,4.111,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.703,2045,4.618,2046,5.621,2258,2.791,2490,4.999]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.072,14,0.896,29,0.955,35,0.567,136,3.188,265,2.934,281,2.837,311,2.328,372,0.917,386,4.547,575,4.001,696,1.91,1340,5.088,1344,0.944,2045,6.273,2047,5.286,2049,4.922,2050,4.275,2574,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,1295,2.844,2123,2.75,2258,2.665,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.605,39,2.216,240,0.765,1295,2.563,2258,2.401,2491,5.126,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.054,14,0.929,29,0.991,35,0.373,39,2.631,141,2.404,151,2.576,169,3.424,181,2.319,240,0.908,281,2.943,323,1.822,372,0.951,399,1.624,702,3.255,1295,4.724,1344,0.979,1417,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,240,0.849,585,3.822,1295,2.844,2212,2.165,2334,2.486]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.048,33,2.26,300,3.768,486,4.05,779,1.559,2413,4.17,2577,4.689]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.845,33,1.821,199,2.003,240,0.598,312,1.912,487,5.315,701,2.177,2578,4.351,2579,4.351,2580,4.351]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.308,33,2.82,35,0.38,38,2.382,42,2.231,199,3.102,240,0.925,300,6.374,312,2.961,335,3.905,422,3.102,475,4.055,486,6.852,696,2.02,779,1.946,2019,4.703,2413,5.204,2577,5.852]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,884,3.673,2212,2.019,2334,2.318,2581,5.763,2582,5.763,2583,5.306]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2584,7.045,2585,7.045,2586,7.045,2587,5.441]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.078,35,0.403,47,2.516,64,2.77,100,2.142,151,2.785,184,2.064,303,1.749,372,1.028,696,2.142,779,2.744,1028,2.701,1344,1.059,2583,8.749]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.671,303,1.512,721,3.117,884,3.939,2123,2.75,2258,2.665]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.65,447,3.1,650,2.505,721,3.02,2490,4.624,2588,5.986]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.671,756,2.205,1176,3.041,1997,3.67,2123,2.75,2258,2.665]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1997,3.845,2000,4.426,2001,4.855,2589,6.473,2590,5.959]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.172,11,0.586,756,1.926,1045,2.03,1176,2.658,1576,2.847,2123,2.403,2258,2.328]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.605,756,1.987,1576,2.936,2258,2.401,2590,5.126,2591,5.568,2592,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.626,255,3.068,929,3.565,2290,4.6,2291,4.323,2399,2.71,2400,2.672]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2593,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.586,255,2.874,929,3.34,1176,2.658,2123,2.403,2258,2.328,2290,4.31,2291,4.05]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2594,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2123,2.403,2258,2.328]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1984,5.504,1985,5.393,2595,6.85]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1985,4.817,2595,6.118,2596,7.045,2597,6.486]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2595,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1386,5.99,1984,5.04,1985,6.542]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[749,2.863,1386,5.369,2597,5.959,2598,6.473,2599,6.473]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.092,372,1.323,696,2.756,1344,1.362,1386,7.628]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.586,756,1.926,1013,2.273,1176,2.658,1362,3.557,2123,2.403,2258,2.328,2343,4.31]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1579,4.271,2347,4.779,2348,4.779,2600,5.986,2601,5.986,2602,5.512]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.586,42,1.788,1176,2.658,1263,3.093,1969,3.207,1970,3.498,2123,2.403,2258,2.328]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2603,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.173,143,2.062,702,3.555,2604,6.272]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[241,1.659,665,5.621,668,3.895,1162,4.265,2604,5.621]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2604,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2123,2.565,2258,2.485]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,1160,2.222,1176,2.837,1819,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2605,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.965,9,0.078,11,0.78,19,3.787,29,0.721,31,0.934,35,0.537,60,1.453,65,1.453,126,4.732,167,2.262,181,1.237,243,1.782,311,1.757,366,1.321,372,0.692,399,1.181,478,1.701,532,2.561,1160,1.855,1344,0.712,1415,3.019,1521,2.975,1775,4.177,1776,5.957,1819,2.368,2284,3.116,2371,3.608,2606,7.182,2607,4.81]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,151,1.868,240,0.658,241,1.229,368,1.665,1176,2.36,1240,2.657,2123,2.134,2258,2.068,2393,3.42]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1683,2.618,1851,3.807,1852,3.807,2396,4.069,2397,4.069,2608,5.568,2609,5.568]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.056,29,1.029,35,0.387,201,5.306,240,1.271,241,2.372,244,3.078,265,3.162,311,3.38,372,0.988,399,1.687,1240,3.807,1263,3.935,1344,1.017,1854,5.153,2050,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.586,43,3.129,49,0.859,757,2.286,1176,2.658,1980,3.207,2123,2.403,2258,2.328]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2610,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.859,247,3.625,341,4.003,2274,6.647,2611,5.689]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2278,5.167,2612,6.473,2613,5.959,2614,6.473,2615,6.473]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.084,100,2.384,184,2.296,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2274,6.143,2611,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.004,247,3.907,341,4.314,2274,5.144,2616,5.784]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2278,5.624,2613,6.486,2616,6.118,2617,7.045]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2616,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2123,2.261,2258,2.19]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2123,2.403,2258,2.328]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,197,2.704,478,1.796,1176,2.5,2075,2.704,2076,3.473,2123,2.261,2258,2.19]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,276,2.747,1176,2.658,2052,2.961,2123,2.403,2258,2.328]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1863,4.193,2052,3.55,2490,4.999,2554,5.959,2555,5.959]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.19,49,0.808,90,1.528,119,2.944,185,2.442,303,1.243,336,3.056,618,3.017,2618,3.923]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2058,5.167,2618,4.999,2619,6.473,2620,5.959,2621,5.959]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.172,5,1.313,11,0.586,14,0.759,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1457,4.642,2080,5.441,2081,5.148,2622,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[240,0.822,701,2.995,1992,4.374,2623,5.986,2624,5.986,2625,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.723,1023,3.227,1176,3.278,2123,2.964,2258,2.872]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2215,6.41,2216,6.41,2626,7.728]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.626,90,1.734,367,3.733,698,3.515,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2627,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.313,11,0.586,14,0.759,30,2.328,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2628,5.986,2629,5.986]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.671,31,1.199,276,3.144,1176,3.041,2123,2.75,2258,2.665]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.605,31,1.081,199,2.563,701,2.786,2490,4.3,2605,4.836,2630,5.568]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[175,5.152,650,3.022,1669,6.272,2631,5.99]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2631,5.843,2632,6.486,2633,6.486,2634,6.486]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.067,14,0.805,35,0.323,117,1.118,119,2.079,123,2.913,174,2.504,175,2.56,181,0.923,192,1.663,274,2.621,297,6.884,316,2.364,323,1.578,336,2.159,379,2.56,475,2.159,618,2.131,650,3.413,681,3.116,751,1.795,886,2.105,904,3.303,908,2.864,990,3.116,1423,3.303,1521,2.219,1656,3.303,1995,3.303,2079,1.928,2425,3.303,2426,3.303,2461,5.272,2631,8.853,2633,3.303,2634,3.303,2635,3.588,2636,3.588,2637,3.588,2638,3.588,2639,3.588,2640,3.588,2641,3.588]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.401,14,0.81,30,2.485,123,2.932,185,2.771,639,2.234,2618,4.451]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2058,4.779,2618,4.624,2620,5.512,2621,5.512,2642,5.986,2643,5.986]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,756,2.056,1013,2.426,1362,3.797,2212,2.019,2334,2.318,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1579,4.271,2346,5.512,2347,4.779,2348,4.779,2644,5.986,2645,5.986]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.004,101,3.155,118,3.956,464,3.155,2646,5.784]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1203,4.02,1623,4.154,1624,4.154,2646,4.52,2647,5.204,2648,4.791,2649,4.791,2650,5.204]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.876,9,0.046,22,3.397,86,4.069,101,2.638,148,2.452,185,2.678,197,2.965,265,3.681,284,4.446,432,4.619,672,2.965,702,3.936,1414,4.836,1808,6.175,1900,6.944,2404,4.177,2467,3.973,2506,5.127,2646,8.878,2651,5.127]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,47,1.9,1317,4.31,1373,3.945,1762,4.17,2399,2.539,2400,2.503]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1317,4.445,1373,4.069,1377,4.836,1762,4.3,2652,5.568,2653,5.568,2654,5.568]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.534,9,0.082,16,1.558,29,0.785,35,0.56,64,2.03,74,2.578,244,2.347,255,4.072,258,3.001,324,1.835,330,2.302,357,4.182,372,0.754,509,3.152,513,3.393,696,1.57,749,2.317,780,2.558,906,3.073,1344,0.776,1373,5.589,1385,4.823,1762,5.908,1766,4.823]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.046,61,1.111,184,1.784,1183,3.67,2212,2.165,2334,2.486]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.087,35,0.509,38,1.852,43,3.036,64,2.03,141,1.904,150,3.926,345,3.737,368,1.819,372,0.754,427,3.073,696,1.57,757,2.218,779,1.512,937,6.106,1183,6.939,1342,5.338,1344,0.776,1740,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,241,1.477,1160,2.222,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.368,1519,4.133,1520,4.726,2605,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[148,2.419,2655,7.262,2656,6.85]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.446,61,1.164,2587,4.999,2656,5.621,2657,6.473]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.077,11,0.761,61,1.26,89,2.14,117,2.183,164,1.986,197,3.73,575,4.398,1132,2.272,1308,3.661,2123,3.118,2212,3.285,2258,3.021,2334,2.818,2656,8.143]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[829,0.474]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.567,5,1.756,15,4.346,16,2.148]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.114,4,1.677,7,6.17]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.865,2,5.591,4,1.642,5,1.492,7,4.898,8,5.657,14,1.204,24,2.282,90,1.178,136,2.582,148,0.697,167,1.841,217,5.976,304,3.122,318,3.584,323,1.079,431,6.965,885,2.536,922,1.973,1056,4.334,1517,1.426,1675,1.704,1940,3.024,2658,2.271,2659,6.92,2660,6.135,2661,3.915,2662,3.915,2663,2.271,2664,2.091,2665,2.271]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,2212,2.165,2280,3.625,2334,2.486]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2280,3.625,2399,2.906,2400,2.864]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/wikis/dokuwiki-engine/",[395,7.999,2666,7.999]],["keywords//docs/websites/wikis/dokuwiki-engine/",[241,1.981,2032,4.651,2667,7.728]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.087,100,2.557,184,2.463,303,2.088,696,2.557,779,2.463,1028,3.223,2666,7.853]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.341,11,0.671,90,1.859,1831,3.228,2399,2.906,2400,2.864]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.076,35,0.522,60,2.075,141,2.497,148,2.107,240,0.943,265,3.162,303,1.681,306,4.794,311,2.509,621,4.312,675,2.57,1831,5.85,2668,6.325]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.004,143,1.902,241,1.707,702,3.278,2669,6.131]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[668,4.24,749,3.116,2670,7.045,2671,7.045]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.084,100,2.384,184,2.296,241,2.039,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2669,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[164,2.236,2212,2.763,2289,5.197]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.556,164,1.697,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.173,9,0.079,21,3.388,29,0.876,35,0.467,40,2.365,60,1.765,167,2.749,181,1.503,240,0.803,243,2.166,303,1.431,366,1.605,380,4.08,399,1.435,564,3.852,779,1.688,1517,3.669,1830,4.17,2289,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.299,1301,4.186,2212,2.53,2334,2.905]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[829,0.474]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.173,244,3.236,2673,6.649,2674,6.649]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1819,3.804,2673,7.116,2675,7.728]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.095,14,1.047,38,2.634,65,2.25,147,5.443,185,3.582,281,3.316,372,1.072,375,4.318,2674,8.991,2676,7.45]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.083,14,0.759,61,0.971,394,3.768,2035,3.557,2036,3.498,2212,1.892,2334,2.172]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[164,1.888,1984,4.648,1985,4.554,1986,4.062,2212,2.333]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.469,64,3.228,100,2.496,184,2.405,303,2.038,561,5.942,696,2.496,779,2.405,1028,3.147,1986,5.08]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[829,0.474]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.734,157,3.565,349,3.866,354,4.111,732,3.797,1743,3.94]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[117,2.016,349,4.342,732,4.265,916,4.517,2677,6.473]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.054,14,0.929,38,2.338,90,1.989,99,3.664,351,5.484,354,4.717,355,2.817,433,4.151,456,4.357,643,2.963,732,8.026,1743,4.521,2404,4.96,2678,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2031,5.539]],["keywords//docs/websites/wikis/twiki/",[454,4.24,1819,3.468,2031,4.036,2032,4.24]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[829,0.474]],["title//docs/applications/messaging/advanced-irssi-usage/",[147,5.763,475,4.746,2679,6.296]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,206,7.075,233,3.927,372,1.227,427,5.004,1344,1.263,1470,6.809,1486,6.809,1580,5.203]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.936,638,5.524,1050,5.524,1479,5.144,2679,5.316]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.04,35,0.484,38,1.701,43,2.788,80,1.99,90,2.161,123,3.654,147,3.515,160,3.99,324,1.685,355,2.049,427,2.822,456,4.732,650,3.006,661,5.957,672,2.561,696,1.442,969,4.177,1263,2.755,1740,5.012,1746,4.428,1748,6.612,2404,3.608,2679,8.143,2681,4.81,2682,4.81,2683,4.81,2684,4.81]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.549,151,2.245,164,1.634,235,3.098,697,2.73,2212,2.019]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2399,2.539,2400,2.503]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.26,42,1.788,61,0.971,240,0.741,312,2.373,2212,1.892,2334,2.172]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.133,42,1.684,47,1.79,49,0.81,182,3.022,198,3.352,202,2.708,213,3.295,240,0.699,312,2.235,372,0.732,575,3.193,607,3.147,628,3.55,653,3.629,702,4.373,1087,3.061,1344,0.753,1417,4.447,1640,3.352,1991,2.819,2040,7.005,2041,3.629,2042,3.717,2043,3.717,2044,3.717,2413,3.929]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2399,2.539,2400,2.503]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[245,4.879,1132,2.558,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.784,2038,3.961,2399,3.396,2400,3.348]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2400,2.581]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.549,151,2.245,235,3.098,245,3.565,697,2.73,1132,1.869]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.412,42,1.908,164,1.634,240,0.791,312,2.532,2212,2.019]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.201,42,1.734,47,1.844,49,0.834,182,3.112,198,3.451,202,2.789,213,3.393,240,0.719,312,2.302,575,3.288,607,3.24,628,3.656,653,3.737,702,4.447,1087,3.152,1417,4.544,1640,3.451,1991,2.903,2040,7.089,2041,3.737,2042,3.828,2043,3.828,2044,3.828,2413,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2399,2.539,2400,2.503]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.063,35,0.657,181,1.957,366,2.09,372,1.095,607,4.708,757,3.223,1344,1.127,2063,6.715]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1984,5.504,1985,5.393,2685,6.85]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[241,1.806,1683,3.313,1987,5.148,2685,6.118]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.068,100,2.496,184,2.405,303,2.038,372,1.198,696,2.496,779,2.405,1028,3.147,1344,1.233,2685,7.233]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[829,0.474]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.047,117,1.795,154,4.111,575,3.617,1984,4.022,1985,3.94,2686,5.005]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[241,1.806,1683,3.313,1987,5.148,2686,6.118]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.082,696,2.99,2686,8.664]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.293,241,1.707,245,4.12,1132,2.16,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.368,1519,4.133,1520,4.726,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.293,245,4.12,1132,2.16,1160,2.568,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.368,1519,4.133,2008,4.917,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.059,35,0.602,38,2.527,60,2.159,65,2.159,181,1.838,243,2.649,323,1.97,366,1.963,372,1.028,1160,3.664,1344,1.059,1545,5.223,1819,3.518]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.412,42,1.908,240,0.791,245,3.565,312,2.532,1132,1.869]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1579,4.618,2688,5.959,2689,6.473,2690,6.473,2691,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.965,4,1.865,9,0.04,14,0.676,16,2.136,29,1.076,35,0.575,38,1.701,60,2.169,65,1.453,243,1.782,323,1.325,324,2.516,366,1.321,372,0.692,378,3.402,422,2.214,675,1.8,676,2.114,757,2.037,766,1.809,1006,2.469,1045,3.232,1344,0.712,1576,2.536,1580,2.934,1581,3.515,2228,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[164,1.888,240,0.915,304,3.388,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[701,2.995,881,4.178,1015,4.779,1692,4.093,1693,5.512,2692,4.965]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[240,0.849,245,3.822,304,3.144,675,2.312,766,2.323,1132,2.004]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[701,3.525,1692,4.817,1694,6.118,2469,5.624]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2399,2.71,2400,2.672]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.605,675,2.083,1692,3.807,1698,5.126,1863,3.607,2480,4.445,2693,4.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.888,303,1.63,721,3.36,884,4.245,1013,2.804]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.997,447,3.648,650,2.949,721,3.554]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.038,14,0.658,35,0.397,59,3.202,98,4.912,131,3.647,136,2.342,185,2.251,233,4.33,303,1.723,308,2.939,366,1.286,415,2.818,447,3.645,519,4.294,650,2.946,721,4.267,751,3.521,766,2.647,980,3.341,981,3.341,988,3.341,1084,4.56,1086,2.682,1314,3.341,1907,3.421,1908,3.512]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.402,164,2.048,276,3.674,2212,2.53]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.162,164,2.386,199,2.756,701,2.995,2692,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1684,4.459,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.445,240,1.083,430,6.092]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.436,240,1.061,1696,5.092]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[148,2.334,167,3.579,318,4.879,511,5.878,621,4.777,1402,5.878,2291,5.709,2318,6.609,2548,6.609,2694,7.61,2695,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.173,240,0.992,743,5.152,2696,6.272]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.675,148,1.708,199,2.563,240,0.765,706,5.126,743,3.972,2696,4.836]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.059,1580,6.263]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,303,1.512,721,3.117,884,3.939,2212,2.165,2334,2.486]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,447,3.352,650,2.709,721,3.265,2334,2.604]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.671,303,1.512,721,3.117,884,3.939,2399,2.906,2400,2.864]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.65,447,3.1,650,2.505,721,3.02,2480,4.779,2693,4.965]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.293,61,1.197,276,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.162,61,1.076,199,2.756,701,2.995,2587,4.624,2697,5.512]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.402,245,4.467,276,3.674,1132,2.342]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.162,199,2.756,701,2.995,2387,5.199,2469,4.779,2687,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-centos-5/",[164,2.236,2054,4.467,2212,2.763]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2698,5.568]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2699,3.407,2700,3.346]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.063,35,0.429,201,5.878,240,1.36,241,2.538,244,3.41,311,2.78,372,1.095,1240,4.217,1263,4.359,1344,1.127,1854,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.388,158,3.34,164,1.531,192,2.503,2071,2.902,2072,3.852,2212,1.892]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2399,2.388,2400,2.354]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.084,14,1.118,265,3.661,311,2.905,372,1.144,779,2.296,1344,1.178,2050,5.335,2071,6.043]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2399,2.388,2400,2.354]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.059,35,0.403,201,5.521,240,1.305,241,2.436,244,3.203,265,3.291,311,3.471,372,1.028,1240,3.961,1263,4.095,1344,1.059,1854,5.362,2050,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.971,90,1.624,247,3.167,2212,1.892,2273,3.852,2274,4.17,2275,4.689,2334,2.172]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[247,3.797,2273,4.618,2277,5.621,2278,5.167,2701,6.473]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.971,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2212,1.892,2334,2.172]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,1576,3.039,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,756,2.309,1045,2.434,1576,3.413,2334,2.604]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,2071,2.73,2072,3.623,2212,1.779,2334,2.043]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,2445,4.624,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,1295,2.844,2399,2.906,2400,2.864,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.605,39,2.216,240,0.765,1295,2.563,2400,2.581,2480,4.445,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.387,39,2.734,151,2.676,169,3.557,181,2.38,240,0.943,265,3.162,281,3.058,311,2.509,372,0.988,702,3.381,1295,4.26,1344,1.017,1417,4.081,2668,6.325]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.784,1040,4.845,2399,3.396,2400,3.348]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,1040,4.016,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[639,2.395,643,2.768,938,4.312,2071,3.321,2074,5.125,2704,5.689]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[123,2.648,240,0.715,643,2.332,1276,4.791,2060,3.803,2071,2.797,2074,4.317,2705,5.204]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[131,3.865,143,2.56,416,7.155,639,3.474,643,4.016,2074,7.434,2706,8.963]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.984,143,1.765,164,1.752,169,3.199,1991,3.424,2212,2.165]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[240,0.968,1991,3.904,1993,5.026,2707,7.045]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.984,143,1.765,169,3.199,245,3.822,1132,2.004,1991,3.424]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[164,1.888,240,0.915,1295,3.066,2212,2.333,2575,5.316]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.576,164,1.835,240,0.889,1295,2.98,2576,5.167]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.638,9,0.075,14,0.947,29,1.009,35,0.38,151,2.625,169,3.489,181,2.349,240,0.925,372,0.969,399,1.655,460,3.24,702,3.317,1295,4.77,1344,0.998,1417,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.752,1585,4.772,1805,4.772,2212,2.165,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.997,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.074,35,0.619,639,3.474,2468,8.675]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[151,2.104,164,1.531,240,0.741,241,1.384,368,1.875,1240,2.992,2212,1.892,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[151,2.104,240,0.741,241,1.384,245,3.34,368,1.875,1132,1.751,1240,2.992,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.07,35,0.481,240,1.463,241,2.73,372,1.227,1240,4.727,1344,1.263]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.388,61,0.971,151,2.104,235,2.902,697,2.558,2212,1.892,2334,2.172]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.626,1585,4.451,1805,4.451,2399,2.71,2400,2.672,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.703,756,2.309,2000,4.426,2400,3.001,2467,4.618]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.015,284,5.765,756,2.577,2708,6.272]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[756,2.758,2708,6.712,2709,7.116]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.054,14,1.267,21,3.832,35,0.508,38,2.338,169,3.424,465,3.745,475,3.979,756,3.217,971,4.215,987,6.088,1006,4.628,1640,4.357,1940,5.107,2708,8.911]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2710,7.545,2711,7.999]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1683,3.634,2710,6.712,2712,7.728]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.066,16,1.683,29,0.848,35,0.456,47,1.991,49,0.901,141,2.057,151,2.204,156,2.587,181,1.455,240,1.414,281,2.519,323,1.559,366,1.554,372,0.814,702,2.785,1068,4.134,1344,0.838,1417,3.361,2664,5.209,2710,8.196,2711,7.446]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.734,143,1.646,702,2.837,2212,2.019,2334,2.318,2713,5.005]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.216,61,1.001,668,3.351,1162,3.669,2025,4.177,2713,4.836,2714,5.568]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.058,14,0.985,31,1.36,33,3.924,35,0.528,142,3.924,144,5.411,240,0.962,372,1.008,1344,1.037,2413,7.242,2577,8.143,2713,8.143]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.341,61,1.111,90,1.859,1831,3.228,2212,2.165,2334,2.486]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.529,61,1.267,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,255,3.068,929,3.565,2212,2.019,2290,4.6,2291,4.323,2334,2.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1055,3.396,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2325,5.126,2715,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[303,1.512,643,2.768,929,3.822,1086,3.539,2300,4.772,2704,5.689]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2058,6.17,2716,7.728,2717,7.728]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.906,16,2.126,29,1.071,89,2.184,117,2.227,119,4.143,123,3.637,131,3.083,336,4.302,618,4.246,929,4.422,1086,6.517,2060,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.299,2212,2.53,2289,4.758,2334,2.905]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.556,61,1.076,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.067,9,0.075,21,3.082,29,0.797,35,0.436,40,2.151,60,1.606,167,2.5,181,1.368,240,1.062,303,1.301,366,1.46,372,0.765,380,3.711,397,3.389,399,1.306,532,2.831,564,3.503,779,1.535,1344,0.787,1517,3.338,1830,3.793,2171,4.895,2289,7.543]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1585,4.451,1805,4.451,2212,2.019,2334,2.318,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2718,4.795]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.788,61,0.971,473,3.389,478,1.909,2065,3.852,2066,2.961,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.173,143,2.062,669,5.277,702,3.555]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[668,4.651,669,5.647,1162,5.092]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.084,35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,669,7.445,696,2.384,779,2.296,1028,3.005]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.971,197,2.874,478,1.909,2075,2.874,2076,3.692,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,478,2.288,819,4.063,2075,3.446,2079,3.479]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.686,35,0.49]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.058,31,1.368,701,3.525,1433,6.486]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.134,31,0.947,35,0.541,49,0.776,80,3.002,124,2.861,145,3.766,146,3.563,148,1.496,149,3.403,153,4.235,181,1.254,192,2.261,199,2.245,316,3.213,335,2.826,366,1.992,378,2.31,422,3.34,511,5.604,571,3.061,639,1.89,673,2.345,676,2.143,696,1.462,941,2.596,1402,3.766,1666,4.49,1676,4.235,2019,3.403,2050,3.271,2719,4.49,2720,4.49]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.299,1040,4.845,2212,2.53,2334,2.905]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,1040,4.726]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.004,101,3.155,330,2.926,437,5.524,2721,5.784]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1623,5.167,1624,5.167,2648,5.959,2721,5.621,2722,6.473]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.494,9,0.061,14,1.047,90,2.241,174,5.199,355,3.174,367,6.326,415,4.483,432,6.179,437,6.179,2651,6.859,2721,9.461]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,184,1.664,743,4.111,1940,4.451,2045,4.111,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2045,5.026,2046,6.118,2334,2.834]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.084,14,0.929,29,0.991,35,0.578,136,3.308,281,2.943,372,0.951,386,4.717,575,4.151,696,1.982,1340,5.278,1344,0.979,2045,6.433,2047,5.484,2049,5.107,2574,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.542,151,2.814,2723,6.272,2724,6.272]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[240,0.822,2307,4.965,2723,5.199,2724,5.199,2725,5.986,2726,5.986]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.042,33,3.167,35,0.556,142,2.891,181,1.946,182,3.066,202,2.748,213,4.902,240,1.355,312,2.268,366,2.078,372,0.743,702,3.725,1068,5.529,1344,0.764,1417,4.495,2040,5.076,2041,5.399,2723,4.483,2724,4.483,2727,5.162]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[829,0.474]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.015,284,5.765,756,2.577,2728,6.272]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[757,2.741,1521,4.004,2709,5.959,2728,5.621,2729,6.473]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.046,14,0.783,29,0.834,124,3.267,133,4.619,149,5.58,156,3.655,200,4.836,213,3.607,229,3.496,283,4.177,290,3.267,320,2.937,324,1.951,368,1.934,386,3.973,607,4.946,676,2.447,757,2.358,1900,4.836,2728,8.878,2730,5.569,2731,5.127,2732,5.569,2733,5.569]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[829,0.474]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.239,4,1.341,185,2.971,639,2.395,643,2.768,1086,3.539]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2058,6.17,2734,7.728,2735,7.728]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.786,4,1.932,16,1.931,29,0.972,117,2.022,119,3.762,131,2.799,157,4.015,185,3.121,336,3.906,618,3.856,639,2.516,643,3.989,696,1.945,1086,6.265,2060,4.743]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.671,61,1.111,379,4.408,639,2.395,1352,5.689,1712,4.635]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[976,6.118,1712,5.285,2736,7.045,2737,7.045]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.505,324,3.14,391,6.129,465,5.076,976,7.784,1712,6.724]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.784,2054,4.09,2738,4.758,2739,4.758]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2740,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.784,2054,4.09,2399,3.396,2400,3.348]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2741,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.061,29,1.116,35,0.55,49,1.186,143,2.128,181,1.916,241,1.91,366,2.045,398,4.044,525,4.826,696,2.233,797,5.094,2054,5.531]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2212,1.779,2334,2.043,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.34,49,0.917,61,1.036,757,2.44,1980,3.423,2212,2.019,2334,2.318]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2351,5.512,2587,4.624]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2399,2.71,2400,2.672]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2234,4.965,2480,4.779]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.064,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,372,1.119,757,4.253,1344,1.152,1980,4.62]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.293,164,1.888,1160,2.568,1819,3.278,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.368,1519,4.133,2008,4.917,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.063,29,1.14,35,0.558,60,2.298,65,2.298,181,1.957,243,2.82,366,2.09,399,1.869,1160,3.818,1545,5.561,1819,3.746]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,1160,2.383,1819,3.041,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.256,1519,3.797,2008,4.517,2339,5.621,2743,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2399,2.906,2400,2.864]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2744,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,1819,3.591,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.004,118,3.956,330,2.926,331,5.316,2745,5.784]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1203,5.441,2649,6.486,2745,6.118,2746,7.045]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.849,9,0.054,14,0.595,15,2.547,16,1.259,17,0.984,18,0.99,35,0.367,49,0.674,90,2.392,118,2.515,143,1.209,155,1.741,169,2.192,174,2.954,199,1.949,217,2.954,240,0.895,265,4.885,274,3.093,324,1.483,355,1.803,392,2.582,464,2.005,473,2.657,523,3.379,639,2.527,886,2.483,938,2.954,1023,2.051,1061,2.894,1288,3.897,2745,8.846,2747,4.233]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[829,0.474]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.571,218,5.627,565,6.542]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.053,21,3.016,117,1.621,323,1.434,713,3.016,2748,5.204,2749,4.791,2750,5.204]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.473,38,2.137,149,4.219,196,5.251,324,2.118,368,2.099,475,3.638,564,5.585,624,4.056,707,5.566,869,4.67,1091,4.535,1830,4.313,2731,7.803,2749,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.293,164,1.888,241,1.707,1160,2.568,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.368,1519,4.133,1520,4.726,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.063,35,0.62,38,2.691,60,2.298,65,2.298,241,1.951,243,2.82,323,2.097,532,4.051,1160,2.934,2284,4.93,2371,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,241,1.584,1160,2.383,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.368,1519,4.133,1520,4.726,2339,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.08,29,1.116,35,0.42,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.553,117,2.25,323,1.99,713,4.186]],["keywords//docs/tools-reference/linux-system-administration-basics/",[117,1.621,199,2.396,757,2.204,780,2.541,793,3.559,2751,5.204,2752,4.791,2753,5.204]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.019,11,0.247,16,0.676,29,1.133,35,0.221,38,0.803,43,1.317,49,1.29,61,0.408,65,1.558,84,1.704,90,1.552,117,1.608,143,1.118,147,3.771,148,2.486,164,0.644,175,2.793,184,1.131,185,1.883,189,0.951,199,1.046,205,2.627,214,4.116,240,0.312,255,1.209,276,1.156,286,1.272,323,1.907,355,2.198,372,0.327,378,1.076,398,2.126,399,0.558,424,1.405,478,1.384,479,1.704,598,2.733,624,1.524,635,1.704,640,2.458,650,0.951,671,1.66,673,1.883,676,0.998,682,2.793,690,1.621,756,1.841,892,1.621,908,3.126,1006,1.166,1047,1.66,1059,1.704,1061,1.553,1068,1.66,1308,1.187,1396,4.043,1444,1.973,1544,1.621,1613,1.973,1869,1.813,1883,1.973,2141,1.973,2404,1.704,2440,1.973,2451,1.973,2541,2.091,2631,1.884,2632,2.091,2754,2.091,2755,2.271]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.984,143,1.765,240,0.849,245,3.822,304,3.144,1132,2.004]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[240,1.061,1863,5.007,2469,6.17]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.299,2054,4.09,2212,2.53,2334,2.905]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.556,1095,3.603,2054,3.39,2055,4.374,2756,5.986,2757,5.986]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1970,4.003,2009,3.625,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.052,14,0.896,29,0.955,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,399,2.159,478,2.253,713,3.694,780,3.112,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[829,0.474]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2489,5.689,2758,5.366]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[749,3.116,2101,5.624,2758,6.118,2759,7.045]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.087,14,0.985,35,0.395,100,2.1,184,2.023,286,3.924,303,1.715,372,1.008,696,2.1,779,2.023,1028,2.647,1344,1.037,2758,9.801]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/apache-access-control/",[240,1.083,464,3.736,639,3.057]],["keywords//docs/web-servers/apache/apache-access-control/",[199,2.563,240,0.765,303,1.363,701,2.786,1548,4.836,2760,5.568,2761,5.568]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.696,18,1.707,199,4.434,240,1.002,320,3.847,464,4.563,509,4.39,639,3.733,751,3.65,942,3.291,1061,4.989,1501,5.824,2424,6.717]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[192,3.087,240,0.915,310,4.062,464,3.155,639,2.581]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[199,2.98,240,0.889,303,1.584,701,3.238,1548,5.621]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.847,156,3.335,192,3.382,310,5.875,464,5.433,475,4.39,623,4.28,639,4.445,2225,6.717]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.859,367,4.003,698,3.769,2212,2.165,2334,2.486]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[698,3.652,2239,6.719,2240,4.779,2241,4.779,2762,5.986]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.006,5,1.219,9,0.08,31,1.71,33,2.099,35,0.634,38,1.773,42,1.661,60,1.515,65,1.515,100,1.503,184,1.448,240,0.689,303,1.227,323,1.382,372,0.721,380,3.5,696,1.503,698,5.374,699,2.84,756,1.789,779,1.448,1028,1.895,1130,3.5,1344,0.743]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,169,2.984,1991,3.194,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.671,90,1.859,367,4.003,698,3.769,2399,2.906,2400,2.864]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2763,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.978,5,1.186,9,0.079,29,0.731,31,1.682,33,2.041,35,0.606,42,1.615,60,1.473,65,2.191,100,1.462,184,1.408,240,0.67,265,2.245,303,1.193,311,1.781,372,0.702,380,3.403,399,1.197,696,1.462,698,5.286,699,2.762,756,1.74,779,1.408,1028,1.843,1130,3.403,1344,0.722]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.239,164,1.752,766,2.323,785,3.769,786,3.171,1132,2.004]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[164,1.835,1132,2.099,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.239,11,0.671,61,1.111,766,2.323,785,3.769,786,3.171]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.703,61,1.164,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[608,4.751,675,2.492,766,2.504,785,4.062,786,3.418]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1133,4.855,1134,5.167,2765,6.473,2766,5.621,2767,6.473]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.753,9,0.072,45,3.891,46,3.841,766,3.287,785,5.332,786,4.486,1280,6.236]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[829,0.474]],["title//docs/platform/linode-beginners-guide/",[89,2.41,1153,5.916,1522,7.262]],["keywords//docs/platform/linode-beginners-guide/",[1659,5.624,2752,6.486,2768,7.045,2769,7.045]],["toc//docs/platform/linode-beginners-guide/",[2,2.126,9,0.033,29,0.598,32,2.546,38,1.412,43,2.315,60,1.206,64,2.415,89,3.515,117,1.244,131,1.722,148,1.225,155,1.643,181,1.027,207,3.701,246,2.731,276,2.032,301,3.188,464,1.892,478,1.412,518,2.996,576,3.188,623,3.655,676,1.755,690,2.849,734,2.47,756,1.425,779,1.153,945,3.468,1022,2.731,1023,1.935,1771,3.084,1827,5.411,1866,3.468,2120,3.468,2434,3.468,2770,3.993,2771,3.993,2772,6.231,2773,3.993,2774,3.993]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[675,2.702,766,2.715,1130,5.04,1131,4.533]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1280,5.026,1692,4.817,2766,6.118,2775,7.045]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.711,9,0.07,202,4.541,766,4.004,786,4.378,941,4.541,1136,5.953,1280,6.086]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[829,0.474]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,169,3.199,378,2.927,532,3.289,2776,6.179,2777,5.689]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1280,5.026,1692,4.817,2766,6.118,2777,6.486]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.08,751,4.854,766,3.648,1280,6.922]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[119,3.581,148,1.895,336,3.718,618,3.67,1022,4.225,2778,5.366]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1710,4.779,1712,4.491,2778,5.199,2779,5.986,2780,5.986,2781,5.986]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.063,14,1.07,131,4.271,232,5.878,233,3.503,372,1.095,643,3.41,942,3.432,1130,5.311,1344,1.127,2778,8.6,2782,7.61]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.671,68,4.515,148,1.895,1022,4.225,1709,4.772,2399,2.906]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.067,14,1.144,131,3.509,232,6.284,233,3.746,372,1.171,643,3.646,942,3.67,1344,1.205,1709,7.984]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,756,2.376,1997,3.956,2212,2.333,2334,2.679]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1997,3.845,2000,4.426,2001,4.855,2783,6.473,2784,5.621]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.723,756,2.376,1997,3.956,2738,4.388,2739,4.388]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2785,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.723,756,2.376,1997,3.956,2399,3.132,2400,3.087]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2786,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2787,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1972,3.219,1973,3.219,1974,3.165,1975,3.165,2009,2.866,2013,3.665,2014,3.219,2788,4.885,2789,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.445,38,2.788,240,1.083]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.365,199,2.98,240,0.889,701,3.238,1979,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.526,35,0.429,38,2.691,61,1.368,148,3.037,181,1.957,217,5.311,240,1.045,366,2.09,671,5.561,951,6.075,960,6.312,2451,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.992,375,4.186,903,5.417,2376,5.417]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.822,375,3.47,624,4.016,1696,3.944,2376,4.491,2790,5.512]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.849,18,1.861,331,6.349,375,5.905,624,5.335,745,5.24,903,7.643,1429,7.322,2376,5.966,2393,5.674]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[174,5.04,175,5.152,240,0.992,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[240,0.968,780,3.44,1696,4.642,2791,7.045]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.353,149,4.369,181,1.61,240,1.479,273,4.998,311,2.287,366,1.719,368,2.174,525,4.055,676,3.816,780,4.241,1006,5.118,1402,4.835,1910,5.764,2720,5.764,2792,6.26,2793,6.26]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[240,0.822,701,2.995,1992,4.374,2794,5.986,2795,5.986,2796,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1045,1.636,1364,2.732,1925,3.264,2282,2.438,2557,3.361,2558,3.361,2559,3.361,2560,3.361,2688,4.006,2797,4.351,2798,4.006]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2799,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,749,2.945,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1648,4.999,2095,4.999,2693,5.369,2800,6.473,2801,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1457,4.642,2080,5.441,2081,5.148,2802,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.582,1055,3.652,1152,4.016,2803,5.986,2804,5.986,2805,5.986]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2399,2.71,2400,2.672]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1863,4.193,2052,3.55,2693,5.369,2806,6.473,2807,6.473]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.936,167,3.132,185,3.202,633,4.468,2808,5.144]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2808,5.441,2809,7.045,2810,7.045,2811,7.045]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.053,14,0.912,16,1.931,29,0.972,45,2.889,46,2.852,65,1.96,117,2.022,136,3.247,148,1.991,157,4.015,167,3.052,185,4.281,233,2.988,323,1.788,633,6.817,643,2.908,696,1.945,2808,5.013]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.15,164,2.048,749,3.194,2212,2.53]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[164,2.191,749,3.418,2692,6.41]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[123,3.674,148,2.215,1022,4.938,2812,6.272]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1710,5.167,1712,4.855,2812,5.621,2813,6.473,2814,6.473]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.074,14,1.26,372,1.289,1130,6.255,1344,1.327,2812,9.536]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.047,49,0.917,61,1.036,2015,3.098,2089,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2815,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2816,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2817,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2818,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2819,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.06,143,1.902,240,0.915,375,3.86,624,4.468]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[240,0.889,375,3.751,624,4.342,2696,5.621,2790,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.084,18,2.097,375,5.195,624,7.366,1402,6.923,2820,8.963]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1970,3.733,2009,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1984,4.312,1985,4.225,1986,3.769,2212,2.165,2334,2.486]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.459,64,3.154,100,2.439,184,2.349,303,1.991,372,1.171,561,5.805,779,2.349,1028,3.075,1344,1.205,1986,4.963]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.059,11,0.784,62,3.527,2821,6.272]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2032,4.651,2821,6.712,2822,7.728]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.851,35,0.6,64,3.306,561,6.086,1023,4.133,2821,10.084]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.065,189,3.301,667,4.811]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[241,1.427,667,3.396,668,3.351,1162,3.669,1683,2.618,1703,5.126,2025,4.177]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.068,14,1.171,29,1.248,35,0.469,64,3.228,189,3.486,667,7.006,696,2.496]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.15,749,3.194,1132,2.342,2823,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1782,5.148,1783,5.285,2824,7.045,2825,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.15,245,4.467,749,3.194,1132,2.342]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1782,5.148,1783,5.285,2826,7.045,2827,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,240,0.915,1164,3.73,2212,2.333,2334,2.679]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.077,12,3.596,14,0.985,29,1.05,60,2.116,80,2.898,205,4.7,240,0.962,296,4.162,311,2.559,372,1.008,399,1.72,1164,5.92,1344,1.037,2333,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.047,11,0.626,240,0.791,1164,3.228,1176,2.837,2699,3.866,2700,3.797]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.616,1968,5.624,2330,5.843,2828,7.045]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.079,12,3.744,14,1.026,60,2.203,80,3.018,205,4.894,240,1.002,296,4.334,311,2.665,372,1.05,1164,6.041,1344,1.08,2333,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2699,3.866,2700,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2829,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.936,123,3.388,131,2.872,643,2.984,2060,4.866]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2060,5.647,2830,7.728,2831,7.728]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.06,131,3.146,151,2.842,181,1.876,185,4.632,335,4.228,368,2.533,643,4.316,938,5.092,1086,4.179,1087,4.39,1456,5.824,2060,7.038]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2832,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1969,3.423,1970,3.733,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1969,3.092,1971,3.803,1972,3.429,1973,3.429,1974,3.371,1975,3.371,2014,3.429,2501,4.791]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.626,756,2.056,1013,2.426,1362,3.797,2343,4.6,2699,3.866,2700,3.797]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1579,5.026,2347,5.624,2348,5.624,2602,6.486]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2738,3.797,2739,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2798,4.498]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.844,14,1.015,1943,6.649,2808,5.578]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2808,5.441,2833,7.045,2834,7.045,2835,7.045]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.8,8,5.199,20,4.37,35,0.614,49,1.186,337,5.315,633,4.997,639,2.887,643,3.338,2808,5.754,2836,7.45]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2738,3.797,2739,3.797]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1863,4.564,2052,3.864,2837,7.045,2838,6.118]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.056,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,372,0.988,639,3.587,734,5.724,793,6.327,1006,3.526,1344,1.017,2052,5.075]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[164,1.752,756,2.205,1013,2.601,1362,4.071,2212,2.165,2343,4.932]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1579,5.026,2347,5.624,2348,5.624,2839,7.045]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.083,65,2.349,100,2.331,148,2.385,184,2.246,303,1.904,323,2.143,696,3.01,779,2.246,1028,2.939,1362,5.125]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[829,0.474]],["title//docs/databases/postgresql/centos-5/",[5,1.502,14,0.869,30,2.665,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/postgresql/centos-5/",[30,3.038,1055,4.297,1152,4.726,2840,7.045]],["toc//docs/databases/postgresql/centos-5/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/centos-5/",[829,0.474]],["title//docs/databases/postgresql/fedora-12/",[5,1.502,14,0.869,30,2.665,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/postgresql/fedora-12/",[1055,4.714,1152,5.185,2841,7.728]],["toc//docs/databases/postgresql/fedora-12/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-12/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.163,5,1.774,9,0.06,30,4.65,35,0.411,324,2.556,372,1.386,1056,4.179,1060,4.807,1344,1.426]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.208,5,1.85,9,0.063,30,4.747,35,0.429,324,2.666,372,1.095,1056,4.359,1060,5.014,1344,1.127]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,2212,2.019,2282,3.228,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2843,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.006,4,2.112,9,0.041,14,1.041,16,2.204,29,1.32,35,0.548,60,1.515,65,1.515,243,1.858,324,2.596,366,1.377,372,0.721,378,3.509,399,1.231,422,2.309,675,1.876,757,2.124,766,1.886,1045,3.313,1344,0.743,1580,3.059,2228,3.429,2282,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,240,0.849,1295,2.844,2212,2.165,2334,2.486,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,2576,5.624]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.058,14,0.985,29,1.05,35,0.395,39,2.788,151,2.73,169,3.628,181,2.412,240,0.962,281,3.118,372,1.008,399,1.72,702,3.448,1295,4.316,1344,1.037,1417,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.671,240,0.849,1295,2.844,2575,4.932,2699,4.145,2700,4.071]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.605,39,2.216,240,0.765,1295,2.563,2576,4.445,2700,3.669,2844,5.568]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.076,14,0.966,35,0.387,39,2.734,64,2.663,151,2.676,169,3.557,181,2.38,240,0.943,281,3.058,372,0.988,702,3.381,1295,4.817,1344,1.017,1417,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,276,2.932,2052,3.16,2212,2.019,2334,2.318]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1863,4.564,2052,3.864,2587,5.441,2697,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.06,35,0.411,123,3.712,183,4.58,303,2.357,372,1.05,639,3.733,734,5.959,793,6.586,1344,1.08,2052,5.283]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.041,101,2.927,102,4.635,368,2.146,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[840,5.285,841,5.026,1566,5.624,1567,5.624]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.053,61,1.744,164,2.375,189,2.488,263,3.164,550,3.078,1013,3.526,1132,1.928,1176,2.926,1238,4.343,1555,3.577,1699,2.563,1794,3.051,2123,2.646,2195,2.858,2212,2.083,2258,2.563,2845,5.944,2846,5.944,2847,5.944,2848,5.944]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[829,0.474]],["title//docs/tools-reference/tools/introduction-to-rsync/",[124,5.097,1937,6.935]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.964,6,4.836,885,3.607,1509,4.836,1937,4.445,2655,5.126,2849,5.568]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[422,3.927,938,5.953,1937,9.269,2850,8.53,2851,8.53,2852,8.53,2853,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.401,14,0.81,30,2.485,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.038,1055,4.297,1152,4.726,2854,7.045]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/how-to-configure-git/",[80,3.263,116,4.048,469,5.197]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.5,61,0.828,116,2.362,1308,2.405,1503,2.847,1622,3.997,1623,3.674,1624,3.674,1625,3.818,2855,4.603]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.42,38,2.634,116,5.591,185,3.582,197,3.966,265,4.496,355,3.174,422,4.496,437,6.179,604,5.443,1530,6.47]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.055,116,3.418,117,2.075,119,3.86,123,3.388]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[116,3.322,1622,5.621,1623,5.167,1624,5.167,1625,5.369]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.076,80,3.805,116,6.162,124,5.395]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[117,2.457,124,4.627,593,6.092]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[117,2.408,1808,5.969,2856,7.728]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.069,22,2.281,49,0.595,80,2.448,84,2.805,89,1.808,100,1.121,101,1.772,117,2.834,131,1.613,148,1.815,160,3.102,167,4.278,264,2.888,303,0.915,324,1.31,368,1.299,369,2.423,392,3.61,422,1.722,433,2.347,469,2.464,509,2.251,576,2.985,640,2.347,680,2.888,690,2.668,779,2.626,960,3.102,1344,0.554,1455,3.248,1468,3.248,1676,3.248,1776,4.908,1808,2.888,1959,3.248,2133,3.443,2857,5.918,2858,3.74,2859,3.74,2860,3.74]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[117,2.457,324,2.763,1061,5.393]],["keywords//docs/tools-reference/linux-users-and-groups/",[117,1.865,324,2.097,392,3.652,2542,4.965,2861,5.986,2862,5.986]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.398,22,2.819,148,2.866,156,2.113,167,3.946,173,3.1,274,3.377,291,3.045,316,3.045,324,3.274,355,1.969,377,2.781,392,6.116,422,3.208,433,4.375,465,2.617,570,3.833,844,4.013,968,4.254,1005,3.689,1061,6.389,1264,3.377,2542,5.781,2546,4.254,2863,4.621]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[323,2.173,2126,6.85,2127,7.262]],["keywords//docs/security/recovering-from-a-system-compromise/",[2864,7.045,2865,8.665,2866,6.486]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.538,35,0.373,89,2.755,207,3.928,234,4.832,623,3.879,885,5.841,1466,4.717,1811,5.484,2125,7.479,2483,6.088,2719,6.088,2867,6.612,2868,6.612,2869,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,240,0.791,304,2.932,675,2.156,766,2.167,2212,2.019,2334,2.318]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1692,4.817,1697,6.486,1863,4.564,2587,5.441]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.293,164,1.888,452,3.48,1188,3.545,2212,2.333]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1189,4.24,1504,4.917,1505,4.358,2870,7.045]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,452,3.228,1188,3.289,2212,2.165,2334,2.486]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1189,4.24,1504,4.917,1505,4.358,1902,6.118]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,2699,3.866,2700,3.797]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1189,4.24,1504,4.917,1505,4.358,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.671,31,1.199,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.055,89,2.035,99,3.691,101,3.155,1514,5.784]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[899,6.41,900,6.712,1019,7.116]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.302,16,1.931,29,0.972,35,0.366,80,2.685,89,2.72,226,3.302,366,2.79,513,4.205,575,6.379,637,3.856,643,2.908,885,4.205,1269,8.197,1516,4.869,2871,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.671,240,0.849,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.064,35,0.438,47,2.737,156,3.556,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,909,5.428,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2699,3.622,2700,3.557]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[240,0.822,701,2.995,1992,4.374,2872,5.986,2873,5.986,2874,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.341,5,1.502,14,0.869,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1457,5.092,2081,5.647,2875,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.341,5,1.502,14,0.869,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1836,5.969,1837,6.41,2876,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1457,4.642,2080,5.441,2081,5.148,2877,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1457,4.642,2080,5.441,2081,5.148,2878,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.251,5,1.401,14,0.81,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1457,4.642,2081,5.148,2366,6.486,2879,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[829,0.474]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.325,61,1.036,309,2.771,611,3.797,2212,2.019,2334,2.318,2880,5.763]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[650,2.949,2881,7.045,2882,7.045,2883,7.045]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.076,35,0.518,309,5.364,372,1.323,1344,1.362]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.051,11,0.671,240,0.849,1164,3.461,2738,4.071,2739,4.071]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.072,1164,3.353,2330,4.965,2838,5.199,2884,5.986,2885,5.986]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.984,61,1.111,143,1.765,1155,3.769,2212,2.165,2334,2.486]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[701,3.238,2886,6.473,2887,6.473,2888,6.473,2889,6.473]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.046,29,0.848,35,0.456,40,2.289,61,1.017,145,4.37,146,4.134,154,4.037,156,2.587,181,2.427,366,2.591,368,1.965,372,0.814,399,1.389,647,4.53,1155,4.933,1158,7.023,1159,4.914,1344,0.838,1501,4.517,1768,4.693,1905,5.209]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[175,5.152,398,3.921,650,3.022,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2865,9.209,2866,7.116]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.335,29,1.285,175,6.12,234,4.495,240,0.845,304,3.13,398,6.102,650,2.574,780,3.004,827,4.495,961,4.614,989,5.663,1669,5.342,1797,3.805,2069,5.987,2173,5.102,2890,6.151,2891,6.151]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.015,89,2.206,369,4.678,905,5.152]],["keywords//docs/networking/using-the-linode-shell-lish/",[369,4.564,905,5.026,916,4.917,1117,5.148]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,131,2.44,143,1.616,151,2.204,155,2.327,233,2.605,304,2.879,316,3.728,349,3.796,355,2.411,416,4.517,475,3.405,720,4.244,736,4.914,905,7.347,1084,3.665,2892,5.658,2893,5.658,2894,5.658,2895,5.658,2896,5.658,2897,5.658,2898,5.658,2899,5.658,2900,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.221,349,5.828]],["keywords//docs/networking/ssh/using-the-terminal/",[2901,7.728,2902,7.728,2903,7.728]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.32,22,2.613,88,3.057,90,1.289,142,2.4,148,2.756,160,5.457,167,4.226,184,1.237,206,3.554,218,3.057,233,1.972,323,1.813,349,2.874,355,3.412,377,3.96,430,3.309,509,2.578,574,3.554,598,6.272,599,3.42,624,2.874,682,3.057,732,2.823,885,2.775,917,3.945,943,3.214,1093,3.721,1743,2.93,1808,3.309,1873,3.554,2404,3.214,2904,4.284,2905,4.284,2906,4.284]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[124,4.627,477,4.811,478,2.788]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1702,5.843,2907,7.045,2908,7.045,2909,7.045]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.946,148,1.823,378,2.816,422,2.736,476,4.93,477,5.109,478,3.722,673,4.027,767,5.473,1230,4.591,1253,4.591,1254,4.745,1396,3.916,1719,4.93,2076,4.064,2754,5.473,2910,5.944,2911,5.473,2912,5.944,2913,5.944,2914,5.944,2915,5.944]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.984,143,1.765,164,1.752,240,0.849,304,3.144,2212,2.165]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[240,1.061,1863,5.007,2692,6.41]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[701,2.995,1492,4.779,1906,5.199,2916,5.986,2917,5.986,2918,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.004,143,1.902,702,3.278,1230,5.144,2919,6.131]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2920,8.559,2921,8.559]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.302,5,1.578,9,0.073,64,2.516,100,1.945,184,1.874,244,2.908,303,1.589,422,2.988,460,3.121,608,4.631,779,1.874,1028,2.453,1230,7.849,2919,9.357,2922,6.491,2923,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[829,0.474]],["title//docs/networking/dns/dns-manager-overview/",[90,2.373,478,2.788,877,5.763]],["keywords//docs/networking/dns/dns-manager-overview/",[1483,5.126,1484,4.836,1654,5.126,1655,5.126,1702,4.618,1822,4.618,2924,5.568]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.568,16,1.201,22,2.464,29,1.156,45,1.798,46,1.775,49,0.643,80,1.671,84,3.03,90,1.215,155,2.586,214,2.71,255,2.15,372,0.581,377,2.431,378,5.111,469,2.661,477,3.835,478,2.729,479,3.03,603,2.661,640,2.536,673,3.023,780,1.972,1006,2.073,1074,2.951,1396,6.874,1554,3.508,1821,3.35,1822,3.35,1909,3.508,1941,3.508,2911,3.719,2925,4.039,2926,4.039]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.06,61,1.197,749,2.945,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1496,6.41,1887,6.712,2927,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.671,49,0.984,749,2.733,1176,3.041,2699,4.145,2700,4.071]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1645,7.116,2928,7.728,2929,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.251,5,1.989,9,0.085,16,1.71,29,0.861,35,0.661,49,1.302,143,1.642,181,2.104,240,0.79,241,1.474,323,1.584,366,2.246]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.723,49,1.06,749,2.945,2738,4.388,2739,4.388]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1648,5.969,2095,5.969,2838,6.712]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/linux-package-management/",[65,2.382,90,2.373,117,2.457]],["keywords//docs/tools-reference/linux-package-management/",[264,4.02,680,4.02,1817,4.791,2930,5.204,2931,4.791,2932,4.791,2933,5.204,2934,4.791]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.192,61,0.614,65,3.327,90,2.94,100,1.023,117,1.714,150,1.752,164,0.968,185,1.642,197,1.817,264,4.25,318,1.429,323,0.941,355,1.454,372,0.491,391,2.334,422,2.533,475,2.055,593,2.637,680,2.637,909,2.383,1132,1.107,1308,2.875,1344,0.506,1503,2.112,1657,2.725,1658,2.725,1687,2.965,2931,5.066,2932,3.143,2934,6.364,2935,3.414,2936,3.414,2937,3.414,2938,3.414,2939,3.414,2940,3.414,2941,3.414,2942,3.414,2943,3.414,2944,3.414,2945,5.502,2946,3.414,2947,3.414]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":550,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2420,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2010,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2660,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":996,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2123,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2269,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2290,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2823,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2175,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2124,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":245,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1699,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2372,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2257,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":764,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1557,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2217,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":824,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2848,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":911,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1761,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1860,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":304,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":777,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1798,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1297,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1780,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1437,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":776,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":106,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2607,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1184,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2212,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1013,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1789,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1730,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1775,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1778,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":189,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":259,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1175,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1770,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":263,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2699,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2738,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2399,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":639,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1548,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2861,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2458,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":465,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":897,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1547,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1215,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":516,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":827,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":672,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":155,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2168,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2108,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1653,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":207,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":793,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2704,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1284,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":713,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2087,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1262,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":475,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":900,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1627,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2035,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":747,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1342,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":982,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":706,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1113,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1114,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1116,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":607,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2283,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2259,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1264,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":784,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1095,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1271,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":681,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1277,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1802,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":725,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1449,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1446,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1450,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1448,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1447,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1451,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1453,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2582,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":484,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":240,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1864,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1799,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1497,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":912,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2916,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2315,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":677,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1491,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2917,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2374,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":409,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2874,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1171,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1493,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2796,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2918,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2625,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2707,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1492,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2321,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1992,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1692,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2330,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2529,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2532,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2381,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1965,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1165,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2623,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2872,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2794,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2873,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2624,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2389,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1906,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":880,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":782,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":129,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1839,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":180,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":870,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":602,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1355,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":151,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":250,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1052,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":680,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2933,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1817,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1308,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1890,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1892,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":474,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2513,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1034,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1037,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2880,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2881,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":790,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2496,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2492,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1939,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":867,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":421,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1373,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1374,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2653,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1378,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2652,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":340,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":384,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2893,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":351,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1638,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1466,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":320,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1261,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2065,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":161,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":804,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":510,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1665,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":204,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2158,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":486,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":192,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":856,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1197,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2721,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2598,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":277,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":279,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1522,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2678,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":781,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1618,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":145,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2820,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1673,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1092,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":579,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1025,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":206,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1776,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1206,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1208,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":346,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":894,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":394,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2782,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":851,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2102,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":758,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1326,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1320,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":437,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2254,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":588,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1194,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2274,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2614,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2278,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":150,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1436,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2596,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1434,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2638,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2519,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2722,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":476,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":819,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2045,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":700,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":703,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2567,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2568,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":761,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2343,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2261,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2264,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1292,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":762,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2702,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":879,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2710,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1356,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":459,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":111,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":382,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":164,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2692,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1015,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":881,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1395,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1392,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1393,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1394,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1293,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2231,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":655,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":766,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1701,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1240,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":433,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1479,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1974,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1572,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1575,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1006,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1523,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1537,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1525,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1538,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1539,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2052,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2059,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2464,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2566,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2837,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2463,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2565,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2053,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":168,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2542,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":205,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2862,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":412,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":986,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":419,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2221,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1997,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2196,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2197,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2589,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1998,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2004,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":482,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2732,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1313,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":470,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":136,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2048,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1243,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1074,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1425,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":238,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1458,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1321,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":836,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":809,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":312,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":668,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":331,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2467,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1973,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1033,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1057,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":355,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1841,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":162,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":955,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1131,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2775,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":174,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2407,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2412,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":884,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":837,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":838,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":517,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":114,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1089,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2127,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":593,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2453,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":183,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2439,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":522,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2132,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1212,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":740,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1312,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1976,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":315,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1755,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2793,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2471,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2472,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2477,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2475,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2474,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2478,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2473,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":131,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1517,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":916,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1128,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":112,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":176,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":935,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":702,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":665,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1690,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1703,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1162,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2671,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":850,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":109,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1695,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":464,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2205,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2486,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1527,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":885,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":937,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":918,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":498,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2071,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1219,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1223,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2282,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2774,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2673,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1120,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1123,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2675,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2674,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2770,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":360,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2110,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":889,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":664,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1810,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":998,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2750,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2748,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2749,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":221,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1916,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1222,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1226,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1227,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1135,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1019,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":899,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2260,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1016,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":841,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1499,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":840,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2778,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2894,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2940,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":818,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":313,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":314,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2772,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":501,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2024,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":869,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2485,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1324,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1325,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2648,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1233,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":796,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1786,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2697,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2350,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2320,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2198,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2349,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1634,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1886,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":875,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1494,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1506,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2351,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2882,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":876,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1495,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1887,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2927,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2587,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2783,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2326,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1931,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2305,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1633,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1957,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1989,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":797,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":578,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1536,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2792,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2042,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":773,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2263,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":281,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":717,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1978,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1102,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1896,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2635,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":352,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":247,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2570,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1669,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":908,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1771,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2207,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2664,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":167,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":397,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2164,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2682,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2521,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1984,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2597,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":226,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":448,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2650,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2215,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1295,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1254,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":220,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":222,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1256,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":478,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2114,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1484,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2354,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1483,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2907,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2908,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2909,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":110,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":113,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":115,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":405,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":658,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":753,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":830,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2072,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2667,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2666,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2100,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":378,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1702,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1563,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1561,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1562,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1559,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1564,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2182,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2185,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1576,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1930,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2230,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1583,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2227,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2592,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1913,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2771,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1599,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2932,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1118,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1774,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":667,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1163,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1689,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":868,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1622,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2041,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2712,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1041,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":959,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1282,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":769,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":255,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":599,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2663,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2468,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2009,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2013,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2011,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2012,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2789,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2818,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2819,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":257,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":679,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":267,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2758,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2759,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":553,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":554,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":756,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2784,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2001,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":311,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2161,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":219,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1216,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2417,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2413,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":395,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":965,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":710,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2034,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":142,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2484,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2017,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1332,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2729,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2706,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2181,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":132,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1259,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1036,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1823,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1980,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2232,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1101,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":601,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1455,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2291,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1881,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":231,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1640,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1213,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":357,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":775,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1345,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1129,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1353,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1018,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":605,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":746,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1160,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2743,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":159,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2006,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1600,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2284,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2606,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":631,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2613,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1132,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2825,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2824,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2827,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2826,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2476,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2466,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2302,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2219,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1862,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1861,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1784,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1781,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2237,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2375,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1012,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2728,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2730,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":148,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2518,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":728,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2544,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":931,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1322,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":490,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2849,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":337,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1709,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":971,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":640,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2538,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2427,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1269,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":309,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1307,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1075,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":789,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":973,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":853,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":854,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2044,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":138,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2604,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2595,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2616,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1676,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2279,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2869,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":663,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":570,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1586,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1985,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1987,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2106,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1087,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2043,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2599,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1237,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2307,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2895,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1193,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2680,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1762,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2654,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2684,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2577,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2580,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1664,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1021,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1710,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":620,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1090,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":128,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1260,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2336,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1390,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2669,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2074,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1078,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1038,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1229,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1649,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1650,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":720,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":751,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1337,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2611,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1503,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":469,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2708,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1938,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":849,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":393,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":715,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2550,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":116,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":888,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1202,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2855,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2470,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1625,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1642,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":939,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":283,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1046,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1743,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2677,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2515,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2516,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1361,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1921,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":752,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1639,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1759,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1760,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1085,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1758,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1764,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":914,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1106,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1290,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1456,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1289,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":693,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":695,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":692,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":892,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1061,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2000,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":906,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1500,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1017,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":407,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2281,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1153,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":139,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1419,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1619,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":539,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":794,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":798,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":130,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":485,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":977,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2084,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2700,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":541,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":972,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":203,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":587,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":589,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2223,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1795,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":178,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2156,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":921,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2647,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1708,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":738,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":744,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1077,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":488,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":644,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1808,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":800,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1258,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":181,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1660,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":399,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":705,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1024,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":891,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":536,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2523,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1205,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1440,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":887,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":621,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":358,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1613,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":199,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1858,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2361,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1140,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1696,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1874,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":186,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":187,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1995,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":904,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2038,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2363,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2268,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2362,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2267,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":458,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1925,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1244,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1706,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2333,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2636,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":299,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":372,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":339,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":365,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1115,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":860,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":714,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1204,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":694,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1170,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":759,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1463,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1459,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2082,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1185,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1663,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1833,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1662,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1030,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":835,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":949,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1403,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":864,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":808,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1977,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":533,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1196,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1363,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1752,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1339,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1970,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1971,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2121,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":523,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":731,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":652,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":656,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":302,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":638,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2115,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2309,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":124,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1898,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1897,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":127,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1630,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1454,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2135,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1275,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1614,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":623,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":642,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2247,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1126,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1346,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2508,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1668,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":611,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1088,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2246,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1740,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1753,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1718,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2679,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2639,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2280,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":175,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2617,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2612,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2016,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1347,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2739,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2331,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2380,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2527,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2530,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2378,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2828,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":925,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":924,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2332,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2528,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2531,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2379,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1967,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2383,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1968,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2382,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1966,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1167,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":562,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1584,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1249,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1408,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":451,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":417,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1238,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":661,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":669,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":927,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2073,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":449,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":783,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1357,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1248,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2400,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":518,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":580,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":839,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":233,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1031,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2023,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":270,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2411,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2410,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":612,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":928,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2204,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1540,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":958,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2584,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":402,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":390,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":901,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1513,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1511,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":723,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":521,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":749,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1498,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2929,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1496,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1647,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1891,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1782,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1488,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":388,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":662,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":670,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1104,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":964,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":975,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2633,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1990,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":396,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1854,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1051,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2694,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":576,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1232,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1014,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1247,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1169,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2334,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1818,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2545,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1217,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1214,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":791,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1534,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":795,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1155,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2887,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2886,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":379,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":376,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":671,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1439,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1838,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2160,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2769,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2768,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1840,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1121,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1654,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1659,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1736,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":934,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1655,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2130,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2159,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1661,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2903,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2865,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":641,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":117,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2835,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2752,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2423,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2866,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":919,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2883,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1714,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1975,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1777,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1783,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1982,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2930,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1711,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1713,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2901,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2751,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1304,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2216,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1888,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":678,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2314,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":905,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":509,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2064,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1821,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2450,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":300,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":487,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1617,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":197,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1856,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":676,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2457,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":370,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":936,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2456,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":558,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1465,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":910,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2634,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2002,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2069,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1176,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2093,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":711,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2258,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":223,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1246,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":119,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2781,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2779,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2780,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":575,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":581,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":165,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":122,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1040,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1042,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1044,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":757,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1849,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1364,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1367,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2063,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":294,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1944,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":608,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":483,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1842,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2162,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2111,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2621,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2107,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":871,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2271,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":742,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2404,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2273,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2701,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2276,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2277,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":424,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":224,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1462,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1769,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":454,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2105,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":191,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1674,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":461,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2270,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2436,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1868,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1608,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1632,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2287,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2709,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":895,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2821,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":398,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2646,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1207,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1263,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":371,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1210,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1950,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":137,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":726,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":727,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1516,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2131,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1273,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1438,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":107,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":687,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":845,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":494,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1474,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2497,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1878,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1300,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2696,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2761,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2747,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2179,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1768,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2493,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2711,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1241,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2575,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2376,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2192,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":585,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":229,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":577,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2180,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":391,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2191,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":244,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2449,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1791,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":697,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1032,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1338,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":184,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1994,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":810,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1291,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2494,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1804,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1963,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":633,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2919,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2920,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":574,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2921,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2335,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2631,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1635,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":169,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1234,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":801,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1358,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1993,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":535,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":350,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1315,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2174,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1316,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1637,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2685,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2310,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2875,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2366,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2365,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2367,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1837,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2876,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2562,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1835,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2877,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1172,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2878,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2802,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2879,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2081,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1836,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2368,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1859,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2431,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1457,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2735,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":833,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2083,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2734,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2622,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2430,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2560,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":832,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1675,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1461,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1183,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2403,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":563,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":943,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2176,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2236,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":160,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1843,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2248,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":595,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2495,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":650,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2834,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1813,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1685,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":874,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":582,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2847,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":237,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1812,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2359,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2742,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":852,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2339,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2244,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1519,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2687,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2370,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2008,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2337,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2250,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1520,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1700,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2253,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2605,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2355,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2007,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1518,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2744,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1433,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1330,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2681,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1748,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":586,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":898,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":190,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":177,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1151,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":423,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1319,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":883,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":450,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1028,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":345,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":718,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2066,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":873,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":600,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":134,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1130,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1141,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2546,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":995,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1000,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":997,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1221,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1741,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1201,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":213,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2203,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2210,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":171,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1375,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2055,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1054,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2078,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1368,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":239,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":954,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":724,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1255,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":999,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1969,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2500,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2311,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2313,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2501,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2603,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2799,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":262,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":976,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1280,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2776,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1029,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":721,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2304,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2303,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":627,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1091,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1535,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":334,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":929,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2323,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2293,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2325,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2324,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2715,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2322,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1250,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2296,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2717,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2716,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2295,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2594,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2294,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2593,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2292,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2318,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":336,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1276,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2445,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2583,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":552,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2705,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":778,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2342,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2661,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":938,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1806,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2482,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":877,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1270,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":834,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1005,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":686,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1423,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2934,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2104,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1331,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":353,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":734,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1964,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1314,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2109,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1658,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":227,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":201,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2224,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":689,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":942,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":645,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1027,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1377,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1911,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2286,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":649,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":515,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1819,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2358,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2923,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1103,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":392,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":157,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1829,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":211,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":321,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":325,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2618,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2642,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2725,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":241,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1173,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2569,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2670,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1857,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1242,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2609,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1069,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1569,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1239,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1986,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2364,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1831,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2242,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":683,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":418,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2054,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2698,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2373,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2391,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2369,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2056,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2740,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2741,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1384,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1907,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":228,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2272,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":748,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2036,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1445,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2206,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":947,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":950,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":948,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":953,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2713,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":597,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":427,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1571,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1705,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":496,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1926,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":335,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":248,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2057,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":530,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1826,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1045,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2229,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1577,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2226,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2690,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2689,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2843,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2571,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2556,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2557,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2798,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2446,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2829,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2688,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2797,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2558,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2559,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":209,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2629,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1152,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2328,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2841,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2620,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2840,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2854,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2842,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2803,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2804,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2805,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2643,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":317,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2733,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1805,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":146,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2695,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1794,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1988,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1473,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1026,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":141,"title":{},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":696,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2719,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":768,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1846,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2167,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1468,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2419,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1475,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":519,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1376,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1285,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1956,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1556,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":286,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":342,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":144,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":513,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":367,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2551,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2240,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2640,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":566,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2089,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2090,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2816,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2817,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2787,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2091,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1544,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":200,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":473,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":251,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2039,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1991,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":212,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1485,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1084,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":442,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":737,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1311,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":739,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1310,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":172,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2060,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2830,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1565,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1566,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1567,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":338,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":684,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":688,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":108,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":825,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2586,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1059,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2581,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2585,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":381,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":674,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2169,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":963,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":383,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":495,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1188,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1903,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1505,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2870,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1902,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2301,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2442,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":389,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2225,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2846,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2298,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1943,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2833,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1481,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1008,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":862,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1750,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2092,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2014,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2125,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2120,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1533,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":477,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2126,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":923,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2262,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":140,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":624,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1181,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":817,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2524,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2503,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2392,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2525,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2505,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2422,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2022,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1179,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2421,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2021,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1178,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1180,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2504,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":698,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2762,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2243,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2239,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2241,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2627,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2238,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2763,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":492,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1510,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1809,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":859,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1354,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2539,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2454,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1053,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1055,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1050,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1177,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2720,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":185,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1125,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":408,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1218,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2408,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1065,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1063,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1064,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1790,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":265,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":202,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1117,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2208,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":940,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2637,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":896,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2076,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2079,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":743,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1591,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2790,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":284,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1482,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":194,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":903,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2103,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":941,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2864,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2085,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":843,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":805,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1266,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":295,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2931,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1007,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1937,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":452,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1504,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1189,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1191,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":310,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":368,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1923,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":926,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1814,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":504,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1404,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1405,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1489,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1487,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":506,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":842,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":505,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2086,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2341,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":480,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":592,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":565,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2163,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1288,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1624,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":275,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":356,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":732,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":930,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":682,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2724,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2483,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":303,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2416,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1464,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1460,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":848,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":978,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":847,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2537,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":983,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":785,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2764,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2765,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1924,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":846,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2233,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1981,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1467,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":628,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1068,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":741,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1920,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1615,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":260,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1211,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1960,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":354,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1380,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1678,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":647,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":691,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1712,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2736,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":327,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":328,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":820,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":236,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1884,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1573,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":369,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1723,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2703,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2113,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1279,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1616,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":786,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":373,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":497,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":493,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":154,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2306,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":217,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1379,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1381,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":532,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2070,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2676,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2723,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1107,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2686,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1047,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1983,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2046,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2574,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2489,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2552,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2101,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1815,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":126,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1816,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":326,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":779,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":709,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2755,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2405,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":278,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":330,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2649,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1209,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1927,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1797,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":537,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2371,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2731,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":745,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":196,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":301,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":893,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1253,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":361,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1435,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2047,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":215,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2297,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":210,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2726,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2195,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2357,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1801,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1848,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1847,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":643,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2809,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2737,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1108,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1105,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2808,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2810,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2811,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":675,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1134,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2767,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1133,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2418,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1693,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1697,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1694,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1698,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2384,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1704,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":258,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":261,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":527,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1142,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1336,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1560,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2672,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1486,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2662,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1417,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1686,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":802,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1251,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1228,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":799,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1252,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2220,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":571,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":158,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":235,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1094,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":922,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1093,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2117,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2116,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":719,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1220,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2541,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":985,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":329,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":430,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2033,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":479,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2777,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1636,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2540,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2745,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2285,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2222,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":915,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":460,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1035,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2746,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1127,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":657,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":659,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":660,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":708,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1779,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1509,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2655,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2657,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":149,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":323,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1949,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2340,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2170,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":704,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1056,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":359,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2543,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":520,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1299,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":974,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1942,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2517,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":218,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1174,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":863,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":865,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":866,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1415,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2062,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1546,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1585,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1588,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1587,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1477,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":410,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2154,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":349,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2902,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":472,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1272,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":598,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":729,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2615,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":858,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1199,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":308,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2155,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":214,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2481,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":648,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1009,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":280,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":735,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":305,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":763,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":772,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":348,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1070,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1139,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1164,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1166,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2885,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1168,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":909,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":538,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":722,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1081,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2438,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2632,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":341,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2275,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":307,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1022,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":736,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":780,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":829,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2718,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2003,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1298,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1471,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1011,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1822,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1010,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":730,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":319,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1590,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1086,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1568,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":807,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2031,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":182,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1080,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1934,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1230,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2491,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2590,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2435,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2448,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2432,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2588,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2177,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2255,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2213,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1763,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2096,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1999,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1192,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1646,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1850,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":882,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":913,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2928,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2884,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2785,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2480,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2800,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2786,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2077,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2234,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1306,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2838,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2693,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2027,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1645,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2095,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1904,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2490,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2691,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2356,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2433,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2178,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2256,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2211,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2214,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1895,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2028,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2097,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1303,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2626,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1648,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2029,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2266,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":616,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1305,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1309,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2075,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2352,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2353,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1200,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1302,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2393,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1187,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1190,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2406,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2656,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":414,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1521,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2061,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1328,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2171,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1023,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1932,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":690,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1598,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":375,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":147,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2579,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2578,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":324,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1940,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1296,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1507,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1508,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1386,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1067,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1623,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":499,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2037,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1910,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":886,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":118,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1203,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":120,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":596,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":787,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":366,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1979,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1478,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1512,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2441,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2871,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":685,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1928,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":271,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2288,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2440,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":411,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1767,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1318,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1317,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":253,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":491,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":447,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1476,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1274,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":230,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":481,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2925,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2098,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":960,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":551,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":143,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1683,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2025,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1157,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1370,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":362,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":712,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":701,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1863,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2822,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":666,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1301,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2289,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1323,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1267,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":760,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1715,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2791,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":619,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":276,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1885,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":125,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1739,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2487,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":462,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":890,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1515,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1555,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1933,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2507,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":363,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2032,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1554,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1245,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":123,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2813,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2814,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2831,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2812,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":446,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":803,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":232,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":531,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2522,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":534,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":422,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":831,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1099,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":179,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1195,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1198,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1545,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":291,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":792,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":618,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1788,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1787,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1785,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2300,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1514,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1154,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1156,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":413,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2015,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1972,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2018,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2520,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":540,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1738,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":774,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":264,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":500,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2099,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":489,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2549,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1362,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2644,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2344,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1365,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1366,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2347,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2645,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2601,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2348,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2839,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2346,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2602,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1369,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2345,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2514,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":590,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1751,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1754,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1096,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2714,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file From c86e164ef02eddf2c769bb62115cdd0954b8e988 Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Wed, 31 Jan 2018 15:57:28 -0500 Subject: [PATCH 09/25] Fix indentation for code blocks in sublists --- .../install-a-chef-server-workstation-on-ubuntu-14-04.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md b/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md index 88a43540c4e..ace42aca9f0 100644 --- a/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md +++ b/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04.md @@ -139,11 +139,11 @@ Your Chef workstation will be where you create and configure any recipes, cookbo - If you are **not** using key pair authentication, then copy the file directly off of the Chef Server. replace `user` with your username on the server, and `123.45.67.89` with the URL or IP of your Chef Server: - scp user@123.45.67.89:~/.chef/*.pem ~/chef-repo/.chef/ + scp user@123.45.67.89:~/.chef/*.pem ~/chef-repo/.chef/ - If you **are** using key pair authentication, then from your **local terminal** copy the .pem files from your server to your workstation using the `scp` command. Replace `user` with the appropriate username, and `123.45.67.89` with the URL or IP for your Chef Server and `987.65.43.21` with the URL or IP for your workstation: - scp -3 user@123.45.67.89:~/.chef/*.pem user@987.65.43.21:~/chef-repo/.chef/ + scp -3 user@123.45.67.89:~/.chef/*.pem user@987.65.43.21:~/chef-repo/.chef/ 2. Confirm that the files have been copied successfully by listing the contents of the `.chef` directory: @@ -236,11 +236,11 @@ Bootstrapping a node installs the chef-client and validates the node, allowing i - As the node's root user, changing `password` to your root password and `nodename` to the desired name for your node. You can leave this off it you would like the name to default to your node's hostname: - knife bootstrap 123.45.67.89 -x root -P password --node-name nodename + knife bootstrap 123.45.67.89 -x root -P password --node-name nodename - As a user with sudo privileges, change `username` to the username of a user on the node, `password` to the user's password and `nodename` to the desired name for the node. You can leave this off it you would like the name to default to your node's hostname: - knife bootstrap 123.45.67.89 -x username -P password --sudo --node-name nodename + knife bootstrap 123.45.67.89 -x username -P password --sudo --node-name nodename 2. Confirm that the node has been bootstrapped by listing the nodes: From 281b24741ce37730de1c638625ff3eb316ac44ac Mon Sep 17 00:00:00 2001 From: Angel Date: Wed, 31 Jan 2018 16:09:18 -0500 Subject: [PATCH 10/25] [NEW] Elasticsearch plugins -Tylerjl (#1368) * WIP: elasticsearch plugins * some better style for the prelude section of the ES plugin guide * draft es plugin tutorial attachment section * draft phonetic analyzer section for es plugin guide * draft geoip section for es plugin guide * draft of user-agent section for es plugin guide * revise es plugin guide from initial draft * es plugin guide conclusion * Copy edit * Finish copy edit * [COPY] Elasticsearch plugins guides (#1410) * copy edit check on elasticsearch plugins * copy edits to elasticsearch shorts --- .../a-guide-to-elasticsearch-plugins.md | 368 ++++++++++++++++++ .../install_elasticsearch_centos.md | 76 ++++ .../install_elasticsearch_debian_ubuntu.md | 74 ++++ 3 files changed, 518 insertions(+) create mode 100644 docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins.md create mode 100644 docs/databases/elasticsearch/install_elasticsearch_centos.md create mode 100644 docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu.md diff --git a/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins.md b/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins.md new file mode 100644 index 00000000000..cc9b2a86426 --- /dev/null +++ b/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins.md @@ -0,0 +1,368 @@ +--- +author: + name: Linode + email: docs@linode.com +contributor: + name: Tyler Langlois + link: https://tjll.net +description: 'This guide shows how to install a variety of useful Elasticsearch plugins.' +og_description: 'Elasticsearch supports a wide variety of plugins which enable more powerful search features. This guide will explore how to manage, install, and use these plugins to better leverage Elasticsearch for different use cases.' +external_resources: + - '[Elastic Documentation](https://www.elastic.co/guide/index.html)' + - '[Elasticsearch reference](https://www.elastic.co/guide/en/elasticsearch/reference/current/index.html)' + - '[Elasticsearch Plugins Reference](https://www.elastic.co/guide/en/elasticsearch/plugins/current/index.html)' +keywords: ['elastic', 'elasticsearch', 'plugins', 'search', 'analytics', 'search engine'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-01-09 +modified: 2018-01-09 +modified_by: + name: Linode +title: 'How to Install and Use Elasticsearch Plugins' +--- + +## What are Elasticsearch Plugins? + +[Elasticsearch](https://www.elastic.co/products/elasticsearch) is an open source, scalable search engine. Although Elasticsearch supports a large number of features out-of-the-box, it can also be extended with a variety of [plugins](https://www.elastic.co/guide/en/elasticsearch/plugins/6.1/index.html) to provide advanced analytics and process different data types. + +This guide will show to how install the following Elasticsearch plugins and interact with them using the Elasticsearch API: + + * **ingest-attachment**: allows Elasticsearch to index and search base64-encoded documents in formats such as RTF, PDF, and PPT. + * **analysis-phonetic**: identifies search results that sound similar to the search term. + * **ingest-geoip**: adds location information to indexed documents based on any IP addresses within the document. + * **ingest-user-agent**: parses the `User-Agent` header of HTTP requests to provide identifying information about the client that sent each request. + +{{< note >}} +This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you're not familiar with the `sudo` command, you can check our [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. +{{< /note >}} + +## Before You Begin + +1. Familiarize yourself with our [Getting Started](/docs/getting-started) guide and complete the steps for setting your Linode's hostname and timezone. + +2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server) to create a standard user account, harden SSH access and remove unnecessary network services. + +3. Update your system: + + sudo apt-get update && sudo apt-get upgrade + +## Installation + +### Java + +As of this writing, Elasticsearch requires Java 8. + +1. OpenJDK 8 is available from the official repositories. Install the headless OpenJDK 8 package: + + sudo apt install openjdk-8-jre-headless + +2. Confirm that Java is installed: + + java -version + + The output should be similar to: + + openjdk version "1.8.0_151" + OpenJDK Runtime Environment (build 1.8.0_151-8u151-b12-1~deb9u1-b12) + OpenJDK 64-Bit Server VM (build 25.151-b12, mixed mode) + +### Elasticsearch + +{{< content "install_elasticsearch_debian_ubuntu.md" >}} + + You are now ready to install and use Elasticsearch plugins. + +## Elasticsearch Plugins + +The remainder of this guide will walk through several plugins and common use cases. Many of the following steps will involve communicating with the Elasticsearch API. For example, in order to index a sample document into Elasticsearch, a `POST` request with a JSON payload must be sent to `/{index name}/{type}/{document id}`: + + POST /exampleindex/doc/1 + { + "message": "this the value for the message field" + } + +There are a number of tools that can be used to issue this request. The simplest approach would be to use `curl` from the command line: + + curl -H'Content-Type: application/json' -XPOST localhost:9200/exampleindex/doc/1 -d '{ "message": "this the value for the message field" }' + +Other alternatives include the [vim-rest-console](https://github.com/diepm/vim-rest-console), the Emacs plugin [es-mode](https://github.com/dakrone/es-mode), or the [Console](https://www.elastic.co/guide/en/kibana/current/console-kibana.html) plugin for Kibana. Use whichever tool is most convenient for you. + +### Prepare an Index + +Before installing any plugins, create a test index. + +1. Create an index named `test` with one shard and no replicas: + + POST /test + { + "settings": { + "index": { + "number_of_replicas": 0, + "number_of_shards": 1 + } + } + } + + {{< note >}} +These settings are suitable for testing, but additional shards and replicas should be used in a production environment. +{{< /note >}} + +2. Add an example document to the index: + + POST /test/doc/1 + { + "message": "this is an example document" + } + +3. Searches can be performed by using the `_search` URL endpoint. Search for "example" in the message field across all documents: + + POST /_search + { + "query": { + "terms": { + "message": ["example"] + } + } + } + + The Elasticsearch API should return the matching document. + +### Elasticsearch Attachment Plugin + +The attachment plugin lets Elasticsearch accept a base64-encoded document and index its contents for easy searching. This is useful for searching PDF or rich text documents with minimal overhead. + +1. Install the `ingest-attachment` plugin using the `elasticsearch-plugin` tool: + + sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment + +2. Restart elasticsearch: + + sudo systemctl restart elasticsearch + +3. Confirm that the plugin is installed as expected by using the `_cat` API: + + GET /_cat/plugins + + The `ingest-attachment` plugin should be under the list of installed plugins. + +In order to use the attachment plugin, a _pipeline_ must be used to process base64-encoded data in the field of a document. An [ingest pipeline](https://www.elastic.co/guide/en/elasticsearch/reference/master/ingest.html) is a way of performing additional steps when indexing a document in Elasticsearch. While Elasticsearch comes pre-installed with some pipeline *processors* (which can perform actions such as removing or adding fields), the attachment plugin installs an additional processor that can be used when defining a pipeline. + +1. Create a pipeline called `doc-parser` which takes data from a field called `encoded_doc` and executes the `attachment` processor on the field: + + PUT /_ingest/pipeline/doc-parser + { + "description" : "Extract text from base-64 encoded documents", + "processors" : [ { "attachment" : { "field" : "encoded_doc" } } ] + } + + The `doc-parser` pipeline can now be specified when indexing documents to extract data from the `encoded_doc` field. + + {{< note >}} +By default, the attachment processor will create a new field called `attachment` with the parsed content of the target field. See the [attachment processor documentation](https://www.elastic.co/guide/en/elasticsearch/plugins/6.1/using-ingest-attachment.html) for additional information. +{{< /note >}} + +2. Index an example RTF (rich-text formatted) document. The following string is an RTF document containing text that we would like to search. It consists of the base64-encoded text "Hello from inside of a rich text RTF document": + + e1xydGYxXGFuc2kKSGVsbG8gZnJvbSBpbnNpZGUgb2YgYSByaWNoIHRleHQgUlRGIGRvY3VtZW50LgpccGFyIH0K + +3. Add this document to the test index, using the `?pipeline=doc_parser` parameter to specify the new pipeline: + + PUT /test/doc/rtf?pipeline=doc-parser + { + "encoded_doc": "e1xydGYxXGFuc2kKSGVsbG8gZnJvbSBpbnNpZGUgb2YgYSByaWNoIHRleHQgUlRGIGRvY3VtZW50LgpccGFyIH0K" + } + +4. Search for the term "rich", which should return the indexed document: + + POST /_search + { + "query": { + "terms": { + "attachment.content": ["rich"] + } + } + } + + This technique may be used to index and search other document types including PDF, PPT, and XLS. See the [Apache Tika Project](http://tika.apache.org/) (which provides the underlying text extraction implementation) for additional supported file formats. + +### Phonetic Analysis Plugin + +Elasticsearch excels when analyzing textual data. Several *analyzers* come bundled with Elasticsearch which can perform powerful analyses on text. + +One of these analyzers is the [Phonetic Analysis](https://www.elastic.co/guide/en/elasticsearch/plugins/6.1/analysis-phonetic.html) plugin. By using this plugin, it is possible to search for terms that sound similar to other words. + +1. Install the plugin the `analysis-phonetic` plugin: + + sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-phonetic + +2. Restart Elasticsearch: + + sudo systemctl restart elasticsearch + +3. Confirm that the plugin has been successfully installed: + + GET /_cat/plugins + +In order to use this plugin, the following changes must be made to the test index: + +* A *filter* must be created. This filter will be used to process the tokens that are created for fields of an indexed document. +* This filter will be used by an *analyzer*. An analyzer determines how a field is tokenized and how those tokenized items are processed by filters. +* Finally, we will configure the test index to use this analyzer for a field in the index with a *mapping*. + +An index must be closed before analyzers and filters can be added. + +1. Close the test index: + + POST /test/_close + +2. Define the analyzer and filter for the test index under the `_settings` API: + + PUT /test/_settings + { + "analysis": { + "analyzer": { + "my_phonetic_analyzer": { + "tokenizer": "standard", + "filter": [ + "standard", + "lowercase", + "my_phonetic_filter" + ] + } + }, + "filter": { + "my_phonetic_filter": { + "type": "phonetic", + "encoder": "metaphone", + "replace": false + } + } + } + } + +3. Re-open the index to enable searching and indexing: + + POST /test/_open + +4. Define a mapping for a field named `phonetic` which will use the `my_phonetic_analyzer` analyzer: + + POST /test/_mapping/doc + { + "properties": { + "phonetic": { + "type": "text", + "analyzer": "my_phonetic_analyzer" + } + } + } + +5. Index a document with a JSON field called `phonetic` with content that should be passed through the phonetic analyzer: + + POST /test/doc + { + "phonetic": "black leather ottoman" + } + +6. Perform a `match` search for the term "ottoman". However, instead of spelling the term correctly, misspell the word such that the misspelled word is phonetically similar: + + POST /_search + { + "query": { + "match": { + "phonetic": "otomen" + } + } + } + + The phonetic analysis plugin should be able to recognize that "otomen" and "ottoman" are phonetically similar, and return the correct result. + +### Geoip Processor Plugin + +When indexing documents such as log files, some fields may contain IP addresses. The Geoip plugin can process IP addresses in order to enrich documents with location data. + +1. Install the plugin: + + sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-geoip + +2. Restart Elasticsearch: + + sudo systemctl restart elasticsearch + +3. Confirm the plugin is installed by checking the API: + + GET /_cat/plugins + + +As with the `ingest-attachment` pipeline plugin, the `ingest-geoip` plugin is used as a processor within an ingest pipeline. The [Geoip plugin documentation](https://www.elastic.co/guide/en/elasticsearch/plugins/6.1/using-ingest-geoip.html) outlines the available settings when creating processors within a pipeline. + +1. Create a pipeline called `parse-ip` which consumes an IP address from a field called `ip` and creates regional information underneath the default field (`geoip`): + + PUT /_ingest/pipeline/parse-ip + { + "description" : "Geolocate an IP address", + "processors" : [ { "geoip" : { "field" : "ip" } } ] + } + +2. Add a mapping to the index to indicate that the `ip` field should be stored as an IP address in the underlying storage engine: + + POST /test/_mapping/doc + { + "properties": { + "ip": { + "type": "ip" + } + } + } + +3. Index a document with the `ip` field set to an example address and pass the `pipeline=parse-ip` in the request to use the `parse-ip` pipeline to process the document: + + PUT /test/doc/ipexample?pipeline=parse-ip + { + "ip": "8.8.8.8" + } + +4. Retrieve the document to view the fields created by the pipeline: + + GET /test/doc/ipexample + + The response should include a `geoip` JSON key with fields such as `city_name` derived from the source IP address. The plugin should correctly determine that the IP address is located in California. + +### User Agent Processor Plugin + +A common use case for Elasticsearch is to index log files. By parsing certain fields from web server access logs, requests can be more effectively searched by response code, URL, and more. The `ingest-user-agent` adds the capability to parse the contents of the `User-Agent` header of web requests to more precisely create additional fields identifying the client platform that performed the request. + +1. Install the plugin: + + sudo /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-user-agent + +2. Restart Elasticsearch: + + sudo systemctl restart elasticsearch + +3. Confirm the plugin is installed: + + GET /_cat/plugins + +4. Create an ingest pipeline which instructs Elasticsearch which field to reference when parsing a user agent string: + + PUT /_ingest/pipeline/useragent + { + "description" : "Parse User-Agent content", + "processors" : [ { "user_agent" : { "field" : "agent" } } ] + } + +5. Index a document with the `agent` field set to an example `User-Agent` string: + + PUT /test/doc/agentexample?pipeline=useragent + { + "agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36" + } + +6. Retrieve the document to view the fields created by the pipeline: + + GET /test/doc/agentexample + + The indexed document will include user data underneath the `user_agent` JSON key. The User Agent plugin understands a variety of `User-Agent` strings and can reliably parse `User-Agent` fields from access logs generated by web servers such as Apache and NGINX. + +## Conclusion + +The plugins covered in this tutorial are a small subset of those available from Elastic or written by third parties. For additional resources regarding Elasticsearch and plugin use, see the links in the **More Information** section below. diff --git a/docs/databases/elasticsearch/install_elasticsearch_centos.md b/docs/databases/elasticsearch/install_elasticsearch_centos.md new file mode 100644 index 00000000000..673296f7566 --- /dev/null +++ b/docs/databases/elasticsearch/install_elasticsearch_centos.md @@ -0,0 +1,76 @@ +--- +author: + name: Jared Kobos + email: sfoo@linode.com +description: 'Shortguide for installing Elasticsearch on Fedora systems' +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +keywords: ["elasticsearch", "elastic stack", "fedora", "red hat", "centos"] +modified: 2018-01-08 +modified_by: + name: Linode +title: "Install Elasticsearch on Fedora, Red Hat, and CentOS" +published: 2018-01-09 +shortguide: true +--- + +1. Trust the Elastic signing key: + + sudo rpm --import https://artifacts.elastic.co/GPG-KEY-elasticsearch + +2. Create a yum repository configuration to use the Elastic yum repository: + + {{< file-excerpt "/etc/yum.repos.d/elastic.repo" ini >}} +[elasticsearch-6.x] name=Elastic repository for 6.x packages baseurl=https://artifacts.elastic.co/packages/6.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md +{{< /file-excerpt >}} + +3. Update the yum cache to ensure the latest packages will be installed: + + sudo yum update + Debian Based Distributions + +4. Install the official Elastic APT package signing key: + + wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - + +5. Install the `elasticsearch` package: + + sudo yum install -y elasticsearch + +6. Set the JVM heap size to approximately half of your server's available memory. For example, if your server has 1GB of RAM, change the Xms and Xmx values in the `/etc/elasticsearch/jvm.options` file to `512m`, and leave the other values in this file unchanged: + + {{< file "/etc/elasticsearch/jvm.options" aconf >}} +-Xms512m -Xmx512m +{{< /file >}} + +7. Enable and start the `elasticsearch` service: + + sudo systemctl enable elasticsearch + sudo systemctl start elasticsearch + +8. Wait a few moments for the service to start, then confirm that the Elasticsearch API is available: + + curl localhost:9200 + + The Elasticsearch REST API should return a JSON response similar to the following: + + {{< output >}} +{ + "name" : "Sch1T0D", + "cluster_name" : "docker-cluster", + "cluster_uuid" : "MH6WKAm0Qz2r8jFK-TcbNg", + "version" : { + "number" : "6.1.1", + "build_hash" : "bd92e7f", + "build_date" : "2017-12-17T20:23:25.338Z", + "build_snapshot" : false, + "lucene_version" : "7.1.0", + "minimum_wire_compatibility_version" : "5.6.0", + "minimum_index_compatibility_version" : "5.0.0" + }, + "tagline" : "You Know, for Search" +} +{{}} + +9. To determine whether or not the service has started successfully, view the most recent logs: + + systemctl status elasticsearch \ No newline at end of file diff --git a/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu.md b/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu.md new file mode 100644 index 00000000000..a8a48993a2d --- /dev/null +++ b/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu.md @@ -0,0 +1,74 @@ +--- +author: + name: Jared Kobos + email: sfoo@linode.com +description: 'Shortguide for installing Elasticsearch on Debian systems' +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +keywords: ["elasticsearch", "elastic stack", "fedora", "red hat", "centos"] +modified: 2018-01-08 +modified_by: + name: Linode +title: "Install Elasticsearch on Debian and Ubuntu" +published: 2018-01-09 +shortguide: true +--- + +1. Install the official Elastic APT package signing key: + + wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - + +2. Install the `apt-transport-https` package, which is required to retrieve deb packages served over HTTPS: + + sudo apt-get install apt-transport-https + +3. Add the APT repository information to your server's list of sources: + + echo "deb https://artifacts.elastic.co/packages/6.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic.list + +4. Update the list of available packages: + + sudo apt-get update + +5. Install the `elasticsearch` package: + + sudo apt-get install -y elasticsearch + +6. Set the JVM heap size to approximately half of your server's available memory. For example, if your server has 1GB of RAM, change the `Xms` and `Xmx` values in the `/etc/elasticsearch/jvm.options` file to `512m`. Leave the other values in this file unchanged: + + {{< file "/etc/elasticsearch/jvm.options" conf >}} +-Xms512m +-Xmx512m +{{< /file >}} + +7. Enable and start the `elasticsearch` service: + + sudo systemctl enable elasticsearch + sudo systemctl start elasticsearch + +8. Wait a few moments for the service to start, then confirm that the Elasticsearch API is available: + + curl localhost:9200 + + The Elasticsearch REST API should return a JSON response similar to the following: + + {{< output >}} +{ + "name" : "Sch1T0D", + "cluster_name" : "docker-cluster", + "cluster_uuid" : "MH6WKAm0Qz2r8jFK-TcbNg", + "version" : { + "number" : "6.1.1", + "build_hash" : "bd92e7f", + "build_date" : "2017-12-17T20:23:25.338Z", + "build_snapshot" : false, + "lucene_version" : "7.1.0", + "minimum_wire_compatibility_version" : "5.6.0", + "minimum_index_compatibility_version" : "5.0.0" + }, + "tagline" : "You Know, for Search" +} +{{}} + +9. To determine whether or not the service has started successfully, view the most recent logs: + + systemctl status elasticsearch From ae178f79f92b595d5262d14e6bc9624f741d7884 Mon Sep 17 00:00:00 2001 From: Jared Kobos Date: Wed, 31 Jan 2018 16:11:40 -0500 Subject: [PATCH 11/25] Update index --- themes/docsmith/layouts/partials/includes_body_end_prod.html | 2 +- themes/docsmith/static/build/js/libs-de389cd58b.min.js | 0 themes/docsmith/static/build/js/libs.js | 0 themes/docsmith/static/build/js/libs.min.js | 0 .../build/js/{main-fdd67cf8b1.min.js => main-759de68ba6.min.js} | 2 +- themes/docsmith/static/build/js/main.min.js | 2 +- themes/docsmith/static/build/lunr-7c09ba2575.json | 1 + themes/docsmith/static/build/lunr-d279bb9616.json | 1 - themes/docsmith/static/build/lunr.json | 2 +- 9 files changed, 5 insertions(+), 5 deletions(-) mode change 100644 => 100755 themes/docsmith/static/build/js/libs-de389cd58b.min.js mode change 100644 => 100755 themes/docsmith/static/build/js/libs.js mode change 100644 => 100755 themes/docsmith/static/build/js/libs.min.js rename themes/docsmith/static/build/js/{main-fdd67cf8b1.min.js => main-759de68ba6.min.js} (98%) create mode 100644 themes/docsmith/static/build/lunr-7c09ba2575.json delete mode 100644 themes/docsmith/static/build/lunr-d279bb9616.json diff --git a/themes/docsmith/layouts/partials/includes_body_end_prod.html b/themes/docsmith/layouts/partials/includes_body_end_prod.html index 2c1b9dab4df..e9bd82be023 100644 --- a/themes/docsmith/layouts/partials/includes_body_end_prod.html +++ b/themes/docsmith/layouts/partials/includes_body_end_prod.html @@ -11,4 +11,4 @@ --> - + diff --git a/themes/docsmith/static/build/js/libs-de389cd58b.min.js b/themes/docsmith/static/build/js/libs-de389cd58b.min.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/js/libs.js b/themes/docsmith/static/build/js/libs.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/js/libs.min.js b/themes/docsmith/static/build/js/libs.min.js old mode 100644 new mode 100755 diff --git a/themes/docsmith/static/build/js/main-fdd67cf8b1.min.js b/themes/docsmith/static/build/js/main-759de68ba6.min.js similarity index 98% rename from themes/docsmith/static/build/js/main-fdd67cf8b1.min.js rename to themes/docsmith/static/build/js/main-759de68ba6.min.js index 84c73b25a6c..271f7cf7b29 100644 --- a/themes/docsmith/static/build/js/main-fdd67cf8b1.min.js +++ b/themes/docsmith/static/build/js/main-759de68ba6.min.js @@ -1 +1 @@ -!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-d279bb9616.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file +!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-7c09ba2575.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file diff --git a/themes/docsmith/static/build/js/main.min.js b/themes/docsmith/static/build/js/main.min.js index 84c73b25a6c..271f7cf7b29 100644 --- a/themes/docsmith/static/build/js/main.min.js +++ b/themes/docsmith/static/build/js/main.min.js @@ -1 +1 @@ -!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-d279bb9616.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file +!function(e){function t(t,o){e(t).tooltip("hide").attr("data-original-title",o).tooltip("show")}function o(t){setTimeout(function(){e(t).tooltip("destroy")},500)}e("pre").each(function(){e(this).closest("td").length||e(this).before('
    ')}),e("tr td.lntd:odd pre").each(function(){e(this).before('
    ')}),function(){var n=e("",{class:"copy-code"}).append(e("",{class:"glyphicon glyphicon-copy",text:""}));e(".btn-copy").prepend(n);var r=new Clipboard(".copy-code",{target:function(e){return e.parentNode.nextElementSibling}});r.on("success",function(e){t(e.trigger,"Copied!"),o(e.trigger)}),r.on("error",function(e){t(e.trigger,"Press Ctrl + c"),o(e.trigger)})}(),e(".copy-code").tooltip({trigger:"click"}),e("pre").hover(function(){e(this).prev(".btn-copy").find(".copy-code").css({opacity:1,transition:"opacity .25s ease-in-out"})},function(){e(this).prev(".btn-copy").find(".copy-code").css("opacity","")})}(jQuery),function(e){Page={isMobile:function(){return e(window).width()<=768},param:function(e){return decodeURI(window.location.search.replace(new RegExp("^(?:.*[&\\?]"+encodeURI(e).replace(/[\.\+\*]/g,"\\$&")+"(?:\\=([^&]*))?)?.*$","i"),"$1"))},Toggle:{init:function(t){var o=e(t);e(o.data("target")).hasClass("in")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())},update:function(t){var o=e(t);o.find(".toggle-closed").is(":visible")?(o.find(".toggle-open").show(),o.find(".toggle-closed").hide()):(o.find(".toggle-closed").show(),o.find(".toggle-open").hide())}}},Handlebars.registerHelper("formatDate",function(e){var t=new Date(e);return["January","February","March","April","May","June","July","August","September","October","November","December"][t.getMonth()]+" "+(t.getDay()+1)+", "+t.getFullYear()}),e(".toggle").each(function(e,t){Page.Toggle.init(t)}),e(".toggle").click(function(t){Page.Toggle.update(e(t.target).parent()[0])}),"app"===Page.param("format")&&(e("header").hide(),e(".breadcrumb-row").hide(),e(".first-section").addClass("library-section-app"),e("footer").hide(),e("[href^='/docs']").each(function(){var e;this.href.match(/format=app/)||((e=new URL(this.href)).search=e.search+(e.search.match(/^\?/)?"&":"?")+"format=app",this.href=e.toString())}))}(jQuery),function(e){function t(t,o){var n=o.index.search(t+"~1"),r=e("#ds-search-list");r.empty();for(var a=[],i=[],c=0;c30)break;var d=o.store[s.ref].title,l=s.ref,h="",f=o.store[s.ref].deprecated,p=o.store[s.ref].shortguide;f&&(h='DEPRECATED');var u='
  • '+d+h+"
  • ";f?a.push(u):p?i.push(u):r.append(u),console.log(p)}a.forEach(function(e){r.append(e),r=r.filter(function(e){return-1==i.indexOf(e)})}),r.show()}function o(o,n){e("#ds-search-modal").modal("toggle"),n=n||e("#ss_keyword").val(),e("#ds-search").val(n),t(n,o)}function n(){var t={backdrop:!0,show:!1},o=e("#ds-search-modal");o.modal(t),o.on("shown.bs.modal",function(){e("#ds-search").focus()})}Search={init:function(){e(document).ready(function(){n();e.getJSON("/docs/build/lunr-7c09ba2575.json",function(n){var r={};if(r.index=lunr.Index.load(n.index),r.store=n.store,"/docs/search/"==window.location.pathname&&Page.param("q")){var a=decodeURIComponent(Page.param("q").replace(/\+/g,"%20"));o(r,a)}e(document).on("keypress","#ss_keyword",function(t){if(13===t.keyCode){var n=e(this).val();o(r,n)}}),e("#ds-search").keyup(function(o){t(e(this).val(),r)}),e(document).on("click","#ds-search-btn",function(e){o(r)}),e(document).on("click","#ds-search-btn-modal",function(o){t(a=e("#ds-search").val(),r)})})})}},Search.init()}(jQuery),function(e){SidebarScroll={init:function(){var t=e("#doc-sidebar"),o=e("footer"),n=(Math.round(e(document).height()-o.offset().top),e(document.body)),r=t.outerHeight(!0)+10;n.scrollspy({target:"#doc-sidebar",offset:r}),e("a[href*=\\#]:not([href=\\#])").click(function(){if(location.pathname.replace(/^\//,"")==this.pathname.replace(/^\//,"")&&location.hostname==this.hostname){var t=e(this.hash);if((t=t.length?t:e("[name="+this.hash.slice(1)+"]")).length)return e("html,body").animate({scrollTop:t.offset().top-50},1e3),!1}})}}}(jQuery); \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr-7c09ba2575.json b/themes/docsmith/static/build/lunr-7c09ba2575.json new file mode 100644 index 00000000000..e04d30e606a --- /dev/null +++ b/themes/docsmith/static/build/lunr-7c09ba2575.json @@ -0,0 +1 @@ +{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{"title":"How to Install and Use Elasticsearch Plugins","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{"title":"Install Elasticsearch on Debian and Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{"title":"Install Elasticsearch on Fedora, Red Hat, and CentOS","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.242,1,6.181,2,3.292,3,3.502,4,1.344,5,1.505]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.449,3,3.669,4,1.408,6,5.625,7,5.171]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.95,2,6.137,8,6.775]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.063,10,5.63,11,0.858]],["keywords//docs/development/java/install-java-jdk/",[10,5.518,12,3.936,13,6.415]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.502,4,1.344,7,4.935,14,0.869,15,3.721,16,1.841]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.449,3,3.669,4,1.408,6,5.625,7,5.171]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.989,5,1.937,8,5.551,15,4.788,16,2.368,17,1.846,18,1.858,19,4.196,20,4.667,21,4.611]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.408,23,6.651,24,3.197,25,6.651]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.49,26,7.049,27,7.049,28,5.628]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.119,9,0.064,16,2.381,22,3.396,24,3.538,25,9.413,29,1.201,30,2.402,31,1.083,32,3.549,33,2.331,34,3.885,35,0.316,36,5.566,37,5.566,38,1.97,39,2.217,40,2.253,41,3.972,42,1.845,43,3.227,44,5.125,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.121,32,3.675,33,2.414,47,2.031,48,5.006,49,0.92]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.847,51,4.189,52,6.49,53,6.49]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.065,16,2.423,17,1.889,18,1.901,29,1.222,32,5.188,33,3.408,48,8.98,49,1.65]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.063,11,0.858,54,4.882]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.766,54,4.362,55,7.049,56,5.847]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.087,54,6.692,57,5.263,58,7.593,59,5.979,60,2.643]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.058,11,0.785,50,5.993,61,1.298]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.847,51,4.189,52,6.49,53,6.49]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.062,11,0.845,48,6.755,50,8.332,61,1.398,62,3.8,63,5.319,64,3.017,65,2.351,66,7.777,67,7.161,68,5.684]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.768,70,7.224,71,6.274,72,6.274]],["keywords//docs/platform/meltdown_statement/",[71,6.122,72,6.122,73,5.289,74,3.471]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.222,71,5.457,72,3.505,73,3.028,74,3.8,75,4.036,76,4.036,77,7.223,78,4.036,79,4.036,80,1.671,81,4.036,82,4.036,83,6.283,84,3.028,85,4.484,86,4.592,87,6.283,88,2.88,89,2.886,90,1.216,91,6.283,92,3.505,93,4.036,94,4.036,95,4.592,96,2.02,97,3.716,98,2.817,99,2.238,100,2.315,101,1.913,102,3.028,103,3.505,104,4.036,105,4.036]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[9,0.058,14,1.016,106,4.847,107,4.093]],["keywords//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[106,4.019,107,3.394,108,4.378,109,4.181,110,3.559,111,5.99]],["toc//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[9,0.049,12,3.13,17,1.427,18,1.436,106,7.172,107,6.597,112,2.227,113,5.34,114,4.909,115,6.149,116,6.149,117,6.149,118,7.45,119,2.147,120,4.494,121,3.805]],["deprecated//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.058,39,2.877,122,5.58,123,6.651]],["keywords//docs/development/python/install_python_miniconda/",[123,7.12,124,7.733,125,7.733]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[9,0.058,11,0.785,61,1.298,106,4.847]],["keywords//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[106,4.346,126,5.625,127,2.077,128,5.963,129,1.819]],["toc//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_centos/",[9,0.05,106,4.147,127,1.982,129,1.736,130,6.181,131,6.181]],["keywords//docs/databases/elasticsearch/install_elasticsearch_centos/",[106,4.346,126,5.625,127,2.077,128,5.963,129,1.819]],["toc//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.063,132,3.426,133,6.095]],["keywords//docs/applications/containers/install_docker_ce/",[132,3.358,134,4.118,135,7.733]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.063,132,3.426,136,5.766]],["keywords//docs/applications/containers/install_docker_compose/",[132,3.358,134,4.118,137,7.733]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.063,138,4.051,139,2.461]],["keywords//docs/development/version-control/how-to-install-git-linux/",[138,3.971,139,2.412,140,4.595]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.063,138,4.051,141,4.575]],["keywords//docs/development/version-control/how-to-install-git-mac/",[138,3.971,140,4.595,141,4.483]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.094,65,2.351,138,5.713,142,7.209,143,7.161,144,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.063,138,4.051,145,4.016]],["keywords//docs/development/version-control/how-to-install-git-windows/",[138,3.971,140,4.595,145,3.936]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[146,5.1,147,7.21]],["keywords//docs/development/introduction-to-websockets/",[147,5.847,148,4.646,149,7.049,150,7.049]],["toc//docs/development/introduction-to-websockets/",[0,1.408,49,1.118,147,10.426,151,4.616,152,7.004,153,3.023,154,5.255,155,5.81,156,6.449,157,6.449,158,3.506]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.779,132,3.426,159,6.853]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.404,31,1.084,132,2.419,159,4.839,160,4.839,161,5.13,162,2.939]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.071,14,0.912,17,1.506,18,1.516,30,2.8,31,1.262,60,1.962,112,2.35,132,4.413,134,3.456,136,6.507,159,7.732,163,3.636,164,1.855,165,5.012,166,5.012,167,4.742]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,132,3.426,136,5.766]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[132,3.718,136,6.258]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.063,17,1.272,18,1.28,24,2.425,31,1.066,38,1.939,42,3.073,45,2.441,46,2.409,132,4.026,133,4.233,136,6.776,168,4.005,169,1.682,170,3.825,171,2.814,172,2.137,173,5.045,174,4.759,175,3.91,176,3.254,177,2.507,178,3.391,179,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[169,2.218,180,7.224,181,5.993,182,6.274]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.079,182,6.716,183,7.733]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.065,14,1.137,39,2.252,90,1.703,129,1.588,142,3.665,169,1.736,182,9.462,184,5.655,185,4.912,186,9.437,187,4.441,188,5.655,189,2.93,190,5.655,191,3.727,192,5.655,193,3.795,194,3.948,195,4.036]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[132,3.426,134,4.202,153,3.405]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.717,132,3.061,134,3.754,196,7.049]],["toc//docs/applications/containers/docker-container-communication/",[0,1.084,5,1.314,9,0.063,14,0.759,16,1.607,17,1.252,18,1.26,19,2.847,29,0.811,30,2.328,35,0.307,121,3.339,132,4.376,133,4.168,134,5.367,136,3.943,153,3.966,172,2.104,197,3.766,198,3.85,199,3.766,200,3.057,201,1.39,202,3.206]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[201,1.861,203,2.088,204,3.476,205,5.993]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,203,2.038,205,5.847,206,5.628]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.684,17,1.313,18,1.321,29,0.85,35,0.321,120,5.909,129,1.588,142,5.239,158,2.831,175,4.036,201,2.431,203,3.15,204,3.89,206,7.535,207,2.369,208,3.204,209,3.135,210,2.623,211,5.207]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.016,31,1.405,32,4.606,33,3.025]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.504,33,3.239,212,7.12]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.571,9,0.063,17,1.252,18,1.26,31,1.05,32,4.984,33,3.274,35,0.307,39,3.113,49,1.248,60,1.631,200,3.057,201,1.39,213,3.496,214,4.686,215,2.874,216,3.556,217,2.485,218,4.686,219,4.168,220,2.874,221,4.476,222,3.85,223,3.62,224,4.476,225,3.206,226,4.968]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.759,15,4.349,16,2.151,30,3.117]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.19,30,2.585,227,3.881,228,5.99,229,5.99,230,5.99]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.806,5,2.6,17,1.659,18,1.669,20,4.194,21,4.143,45,3.183,46,3.142,204,3.438,231,4.631,232,4.795,233,5.1,234,7.146,235,4.989,236,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.197,237,4.47,238,6.651,239,6.651]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[237,5.827,240,7.049,241,5.628]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.747,8,3.601,14,1.064,17,1.197,18,1.205,90,1.554,169,1.584,221,4.279,237,3.192,238,9.084,239,9.084,241,8.387,242,3.985,243,5.159,244,2.626,245,4.75,246,7.565,247,4.75,248,4.48,249,3.681,250,3.985,251,2.376,252,3.77]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[129,1.736,169,1.898,207,2.589,253,3.324,254,5.127,255,5.368]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[255,6.716,256,4.785,257,7.733]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.817,5,1.641,9,0.089,17,1.564,18,1.574,49,1.458,54,4.169,164,1.926,255,5.851,258,0.928,259,1.729,260,6.737,261,2.498,262,3.02,263,4.169,264,4.607]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.314,89,1.89,164,1.767,204,2.974,265,3.627]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.181,89,1.832,132,2.601,134,3.19,204,2.882,266,5.515]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.067,14,1.17,16,1.357,29,0.685,31,0.887,34,3.182,45,2.03,46,2.004,89,1.394,90,1.373,132,1.979,134,4.433,153,2.977,163,5.201,169,1.4,187,2.145,201,1.174,204,4.004,215,2.428,224,3.781,265,4.884,266,6.352,267,4.558,268,4.558,269,3.959,270,4.558,271,3.781,272,4.558,273,2.428,274,4.558]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.988,49,0.811,108,3.713,129,1.427,164,1.453,203,1.469,207,2.128,275,2.911]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.084,129,1.565,164,1.593,275,3.193,276,5.571,277,5.571,278,5.571]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.068,9,0.073,14,0.747,17,1.234,18,1.241,28,4.243,31,1.034,35,0.302,106,5.187,108,5.65,275,5.222,279,4.408,280,2.83,281,4.105,282,2.448,283,3.792,284,9.112,285,9.112,286,6.413,287,4.243,288,5.314,289,4.243,290,3.884]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[291,6.274,292,3.677,293,6.651,294,6.651]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.866,39,2.579,291,5.625,295,6.476,296,6.476]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.068,16,1.412,21,2.749,24,2.099,29,0.712,39,1.889,59,3.243,156,4.366,164,1.356,171,2.435,176,1.952,261,1.759,262,2.126,291,4.119,293,7.849,294,8.718,297,2.112,298,4.742,299,3.558,300,5.674,301,4.742,302,2.657,303,3.663,304,3.934,305,4.742,306,2.783,307,3.125,308,7.107,309,4.742,310,4.366,311,4.742,312,2.818,313,3.663]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.053,61,1.197,63,4.556,203,1.926,206,5.319]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,203,2.038,205,5.847,206,5.628]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.979,5,1.187,9,0.058,14,0.685,17,1.131,18,1.138,35,0.412,142,4.7,164,2.477,205,4.043,206,8.192,211,4.487,217,3.341,314,4.873,315,4.487,316,3.402,317,3.891,318,4.706,319,1.195,320,2.481,321,3.562,322,3.402,323,4.867,324,3.06,325,2.345,326,2.974,327,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.751,35,0.494]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.357,30,2.404,227,3.61,328,2.45,329,5.571,330,5.571,331,5.571]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.552,17,1.479,18,1.488,30,3.794,35,0.5,119,3.069,169,1.956,194,4.447,227,4.128,324,4.001,332,4.199,333,6.371,334,3.682,335,3.942,336,3.361,337,6.371,338,6.371,339,1.758,340,6.371]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.085,11,0.587,33,2.262,49,0.862,129,1.517,207,2.262,341,5.401,342,4.691]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.651,33,2.509,129,1.682,342,5.202,343,5.99,344,5.99]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.022,9,0.071,17,1.18,18,1.188,35,0.289,41,3.628,42,1.685,49,1.195,54,3.146,64,1.972,141,2.948,145,2.588,158,4.904,191,3.351,264,3.477,297,2.265,325,2.446,342,9.808,345,2.236,346,4.059,347,5.084,348,4.681,349,3.477,350,2.948,351,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[154,5.42,203,2.088,352,5.155,353,6.274]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.579,203,1.872,353,5.625,354,6.476,355,6.476]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.931,9,0.066,16,1.74,29,0.878,39,2.327,40,2.365,60,1.767,80,2.419,90,1.76,118,5.075,122,4.514,154,6.209,176,2.405,216,3.851,352,4.169,353,5.075,356,3.786,357,9.609,358,5.843,359,4.169,360,4.079,361,5.843]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.016,362,6.274,363,4.847,364,6.651]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[114,4.448,362,4.839,363,3.738,364,5.13,365,4.839,366,5.13,367,3.975]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.304,9,0.052,35,0.369,90,3.061,114,5.18,145,3.303,169,1.992,362,10.725,365,5.635,366,5.974,367,6.353,368,2.766]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.735,369,5.368,370,4.935,371,5.691,372,5.368]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.579,369,5.625,373,5.963,374,5.963,375,6.476]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.759,9,0.067,14,0.531,17,0.877,18,0.882,29,1.11,39,1.504,61,0.679,63,2.583,80,1.563,85,2.695,122,2.917,129,1.061,140,2.244,163,3.342,176,1.555,203,1.092,207,1.582,217,1.74,220,2.011,273,2.011,304,3.133,307,2.489,339,2.039,368,1.61,369,7.293,373,3.477,374,6.806,376,3.477,377,2.636,378,3.777,379,1.038,380,3.865,381,2.073,382,2.447,383,3.777,384,3.777,385,0.545,386,3.477,387,2.76,388,2.19,389,2.273,390,2.273,391,1.79,392,2.695,393,2.636]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.841,29,0.929,236,4.41,394,5.691,395,5.368,396,5.691]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.579,236,4.621,328,2.848,395,5.625,397,6.476]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.084,17,1.197,18,1.205,39,3.013,80,3.708,122,3.985,163,4.239,172,2.011,203,2.187,236,3.681,307,3.4,328,3.326,339,1.423,376,4.75,379,1.418,395,9.124,396,4.75,398,6.04,399,3.681,400,5.159,401,5.159]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.779,200,4.47,402,6.853]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[132,3.061,134,3.754,402,6.122,403,5.847]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.081,42,2.151,47,2.286,112,2.35,132,2.817,133,5.012,163,3.636,176,2.671,200,3.676,201,1.671,402,9.5,404,4.438,405,3.959,406,5.012,407,4.529,408,5.974,409,4.868]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.05,31,1.202,35,0.351,47,2.177,328,2.718,403,5.127]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.26,47,2.281,132,2.812,134,3.449,403,5.372]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.069,17,1.116,18,1.123,29,0.722,31,0.935,35,0.273,47,1.693,89,2.196,112,1.741,132,3.117,176,1.979,201,1.238,208,4.869,209,3.98,252,3.513,328,3.157,403,9.457,410,3.065,411,2.611,412,1.766,413,3.987,414,4.807,415,4.807,416,4.807,417,3.065]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.222,132,3.774]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[132,3.358,134,4.118,418,7.733]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,121,5.547,132,5.157,419,7.436]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.517,256,3.825,258,0.851,379,1.699,420,5.691]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[421,4.839,422,5.571,423,5.571,424,4.072,425,5.571,426,5.571,427,5.571]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.654,9,0.061,49,1.214,89,2.327,96,3.809,132,3.304,153,3.284,336,4.015,420,10.137,424,5.561,428,4.581,429,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.785,20,4.239,171,3.709,430,6.274]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.137,430,6.122,431,6.49,432,7.049]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.043,16,0.997,17,0.777,18,0.782,19,1.765,20,1.964,28,2.672,29,0.503,35,0.19,40,1.355,47,1.179,59,2.289,60,1.637,80,1.385,107,1.896,120,2.446,170,2.336,171,1.718,172,2.111,220,1.782,248,2.906,302,1.875,307,2.205,312,1.988,313,2.585,332,2.205,381,1.163,430,7.475,431,7.215,433,3.346,434,3.346,435,3.141,436,2.906,437,2.071,438,5.415,439,5.415,440,3.346,441,3.346,442,2.585,443,3.081,444,2.776,445,2.101,446,3.346,447,8.606,448,3.346,449,2.776,450,3.346,451,5.415,452,3.346,453,3.346,454,2.776,455,3.346,456,3.346,457,3.346]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.724,16,1.984,29,1.001,458,5.526,459,3.451]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[458,7.104,459,4.436]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.051,16,1.897,29,0.957,35,0.362,42,2.112,45,2.838,46,2.801,49,1.403,60,1.926,74,3.138,80,2.638,100,1.912,153,3.794,158,4.401,325,3.065,326,3.887,458,9.003]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[460,6.651,461,5.768,462,5.993,463,6.274]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.807,461,5.628,463,6.122,464,3.685]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.174,9,0.047,14,0.821,17,1.356,18,1.365,35,0.332,96,2.925,169,1.794,176,2.405,404,3.996,407,4.079,461,6.607,462,6.865,463,7.188,464,3.054,465,5.075,466,4.982,467,5.843,468,3.851,469,5.843,470,3.274,471,5.843,472,2.811,473,5.843]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.937,47,2.347,172,2.597,265,3.909,474,5.786]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[132,3.358,265,4.538,474,6.716]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.138,17,1.116,18,1.123,19,5.851,29,1.079,35,0.408,45,2.141,46,2.114,56,3.987,80,1.99,140,2.856,167,3.513,172,3.351,176,1.979,474,8.86,475,4.807,476,2.278,477,2.723,478,4.807,479,4.807,480,7.18,481,3.168,482,5.123,483,4.807]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.937,89,2.038,163,3.733,269,5.786,484,5.786]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.156,98,4.921,107,3.994,484,6.122]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.069,11,0.523,17,1.116,18,1.123,19,2.536,35,0.542,38,2.541,47,1.693,49,1.372,56,3.987,57,2.894,60,1.453,62,2.349,89,2.915,90,1.448,98,5.012,107,2.723,171,2.468,202,2.856,235,3.355,262,3.219,442,3.713,484,7.464,485,3.018,486,4.175,487,2.894]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.038,90,2.007,176,2.742,488,5.526,489,4.065]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[391,3.07,488,5.372,489,3.952,490,2.292,491,4.859]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[176,4.452,189,4.529,235,6.102,488,8.972,489,6.599]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[492,6.545,493,7.89,494,6.095]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.859,492,5.372,494,5.003,495,6.476,496,6.476]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.072,17,2.081,18,2.094,146,5.261,339,2.473,492,7.436,494,6.925]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.016,316,5.043,497,5.58,498,5.42]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[497,5.973,499,6.174,500,5.802]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.065,17,1.889,18,1.901,35,0.588,203,2.352,316,5.68,381,2.828,428,4.898,497,6.285,498,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.785,14,1.016,62,3.53,501,6.274]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[501,4.523,502,4.794,503,5.207,504,4.157,505,5.207,506,4.157,507,4.794,508,4.022]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.953,9,0.038,16,1.412,17,1.101,18,1.108,24,2.099,216,3.125,235,3.31,244,2.414,317,3.786,377,3.31,435,2.184,442,3.663,501,9.589,504,3.786,506,5.674,507,7.849,508,7.834,509,4.742,510,4.742,511,8.524,512,8.524,513,4.742,514,4.366,515,4.742]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.307,242,4.172,256,4.84,269,4.691,339,1.49,516,3.559]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[516,5.096,517,7.12,518,7.733]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.435,9,0.029,14,0.504,16,1.704,17,0.832,18,0.837,29,0.86,35,0.463,40,1.451,89,1.096,90,1.08,96,1.794,142,2.323,163,2.009,169,1.757,193,2.405,242,5.517,256,6.772,318,1.947,381,1.246,385,0.517,470,2.009,485,2.251,516,6.824,519,3.113,520,5.323,521,2.158,522,2.286,523,2.769,524,3.113,525,2.323,526,3.3,527,2.558,528,3.3,529,3.584]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.735,256,3.825,530,4.637,531,3.771,532,5.691,533,5.691]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[179,3.447,237,3.447,352,3.975,504,4.448,531,3.399,534,5.571,535,4.448]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.034,14,0.925,16,1.959,17,0.994,18,1,29,0.988,35,0.243,45,1.907,46,1.882,49,0.683,89,1.309,90,1.29,158,2.143,164,1.224,176,1.762,179,4.07,208,3.726,215,2.28,261,1.588,312,2.544,318,3.572,368,1.825,377,2.989,389,2.577,532,9.424,533,8.273,536,6.577,537,2.774,538,6.577,539,3.551,540,3.551,541,6.577,542,3.718]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.513,29,0.763,89,1.554,189,2.632,235,3.546,258,0.7,381,1.766,543,2.847,544,2.706]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[545,6.122,546,6.122,547,7.049,548,6.122]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.062,17,1.805,18,1.817,35,0.571,189,4.029,201,2.003,258,1.071,379,2.138,520,4.358,543,6.235]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.043,35,0.307,328,2.375,381,1.877,549,4.691,550,4.312,551,4.312,552,4.312]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[549,6.122,551,5.628,552,5.628,553,6.122]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.916,18,0.922,35,0.489,45,1.757,54,2.442,64,1.531,134,2.101,158,3.09,172,2.965,203,1.141,209,2.188,247,4.775,328,3.344,332,2.6,381,1.371,382,2.557,411,5.071,535,3.15,549,9.56,552,6.071,554,3.427,555,7.471,556,3.633,557,3.633,558,2.754,559,3.633,560,3.946,561,3.273,562,2.044]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.862,108,3.947,129,1.517,207,2.262,275,3.095,287,4.312,319,1.324,563,4.973]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[564,6.415,565,7.12,566,7.733]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.08,16,1.188,17,0.926,18,0.932,29,0.599,31,0.776,32,3.971,33,2.608,35,0.354,49,0.637,54,2.469,90,1.202,100,1.197,106,5.14,108,4.552,151,2.63,153,1.722,176,1.643,191,2.63,201,1.028,258,0.55,264,2.729,275,4.389,286,7.786,339,1.101,350,2.314,490,1.412,491,4.673,563,7.968,564,3.31,567,3.99,568,3.99,569,3.99,570,5.409]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.046,16,1.717,29,0.866,122,4.453,208,3.266,328,2.535,551,4.602]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[551,6.174,552,6.174,553,6.716]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.594,17,0.686,18,0.69,24,1.307,29,1.21,35,0.493,45,1.316,46,1.299,58,2.565,59,2.02,64,1.146,80,2.024,101,1.4,119,1.031,163,1.655,169,1.501,201,0.761,203,1.808,208,4.119,209,1.637,213,1.914,251,1.36,328,2.15,336,1.558,339,0.815,381,1.699,411,2.655,417,1.883,486,2.565,523,2.282,551,5.805,552,6.93,553,7.539,554,2.565,555,4.246,561,2.45,571,4.246,572,2.45,573,2.108,574,2.954,575,2.954,576,3.222,577,2.45,578,2.719,579,2.719,580,2.565,581,2.45,582,2.45,583,3.07,584,2.565,585,2.954]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[165,5.146,586,5.526,587,4.183,588,5.319,589,6.134]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.219,160,4.839,590,5.571,591,5.13,592,5.13,593,5.571,594,5.571]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.137,5,1.377,9,0.045,16,2.408,17,1.313,18,1.321,29,1.215,39,2.252,45,2.519,46,2.487,60,1.71,112,2.048,151,6.22,160,7.023,163,3.169,201,1.457,379,2.223,588,4.515,589,7.445,592,5.207,595,5.655,596,5.655,597,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.937,20,3.909,598,5.786,599,6.134,600,6.134]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.137,197,4.921,598,6.122,601,7.049]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.466,9,0.077,17,1.693,18,1.704,20,5.653,21,4.229,40,3.899,176,3.003,197,5.092,381,3.348,576,4.807,598,6.335]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.344,14,0.869,35,0.351,49,0.986,132,2.684,602,4.774]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[132,3.358,356,5.011,602,5.973]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.938,4,1.191,5,1.334,9,0.044,17,1.272,18,1.28,24,2.425,35,0.527,42,1.816,49,1.48,60,1.657,65,1.657,132,3.432,136,4.005,297,2.441,325,3.803,602,7.841,603,4.375,604,5.045,605,4.233,606,5.48]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.053,107,3.774,607,5.786,608,5.146,609,5.319]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[107,3.394,607,5.202,608,4.627,610,4.181,611,4.782,612,5.515]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.073,17,1.234,18,1.241,35,0.302,88,3.792,90,2.329,107,5.669,334,2.226,381,1.847,607,9.234,608,5.972,609,4.243,612,4.893,613,4.893,614,5.314,615,3.502,616,3.884,617,5.314,618,5.314,619,3.288,620,3.792,621,5.314,622,5.314]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.411,459,3.742,623,4.761,624,7.224]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[319,2.099,459,4.436]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.479,18,1.488,34,4.447,35,0.362,158,4.401,185,5.534,325,4.23,351,3.835,385,0.919,459,4.554,562,3.3,623,4.199,625,5.285,626,6.371,627,6.371,628,4.78,629,6.371,630,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.151,29,1.085,49,1.153,602,5.58]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[356,5.549,602,6.615]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.062,17,1.234,18,1.241,35,0.604,49,1.697,60,1.607,65,2.337,164,2.211,213,3.444,297,3.443,325,3.719,339,1.466,412,1.307,602,7.729,603,4.243,604,4.893,631,5.314,632,3.884]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.984,29,1.001,169,2.045,258,0.918,633,4.183]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[258,1.18,633,5.377]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.28,17,1.479,18,1.488,29,0.957,146,3.739,187,2.998,303,4.922,304,5.285,327,2.329,360,4.447,521,3.835,558,4.447,633,6.321,634,7.636,635,5.908,636,4.275,637,6.371,638,4.546]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.058,61,1.298,63,4.941,639,6.274]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[132,3.358,379,2.126,639,6.716]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.84,9,0.033,17,0.97,18,0.976,35,0.448,41,2.983,47,1.472,54,2.586,64,1.621,65,1.264,74,2.058,134,4.201,176,1.721,245,5.944,264,2.859,271,5.356,282,1.925,334,1.75,351,2.516,390,3.887,582,3.467,639,8.329,640,2.918,641,5.607,642,6.456,643,3.467,644,5.944,645,2.805,646,3.848,647,3.136,648,4.18,649,2.484,650,6.544,651,3.06]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[225,4.293,635,4.239,652,4.536,653,7.224]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[225,5.596,654,7.518]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.968,90,2.923,367,6.925,655,4.351]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.085,14,0.759,30,2.331,328,2.375,497,4.172,522,3.444,656,5.401,657,4.973]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.883,30,3.337,328,3.4]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.086,17,1.453,18,1.462,30,3.747,35,0.567,45,2.787,46,2.752,60,1.892,84,4.695,85,4.466,497,6.708,542,5.435,657,7.995,658,8.683,659,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.841,29,0.929,459,3.202,660,5.368,661,7.926]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.704,129,1.819,319,1.587,459,3.355,660,5.625]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.817,9,0.035,11,0.471,14,0.609,17,1.006,18,1.012,35,0.377,38,1.534,40,1.754,47,1.527,60,1.31,62,2.118,88,3.093,169,2.477,187,2.039,201,1.116,202,2.575,208,3.761,256,2.682,385,0.625,435,1.996,459,4.685,476,2.054,625,3.595,659,2.429,660,9.297,662,1.815,663,3.99,664,4.334,665,3.093,666,4.334,667,4.334,668,4.334]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.242,89,1.89,90,1.862,132,2.684,208,3.502,669,5.368]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[132,2.812,134,3.449,670,6.476,671,6.476,672,6.476]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.563,17,1.805,18,1.817,42,2.578,47,2.74,90,3.025,132,4.361,208,4.406,669,8.724,673,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.169,49,0.862,89,1.652,164,1.544,674,4.691,675,4.973,676,4.973]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[259,1.255,543,2.739,674,4.245,677,4.245,678,4.888,679,2.982,680,2.943,681,3.572,682,4.888]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.215,17,1.403,18,1.412,42,2.003,47,2.129,49,0.965,89,1.848,151,3.983,176,3.489,251,2.784,282,2.784,345,2.657,391,4.017,476,2.864,674,5.249,675,7.803,683,4.417,684,4.513,685,4.077,686,5.013,687,2.263]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.765,61,0.862,108,3.505,164,1.371,258,0.661,275,2.748,280,2.554,287,3.829,688,2.109]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[106,3.738,126,4.839,286,4.621,565,5.13,570,4.839,689,5.13,690,4.448]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.074,17,1.252,18,1.26,22,3.292,24,3.459,35,0.307,106,5.245,108,7.365,109,3.766,275,5.267,279,4.476,280,2.874,282,2.485,286,6.484,289,4.308,290,3.943,570,6.789,688,3.437,691,4.168,692,6.789]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.339,39,2.653,65,2.014,282,3.069,531,4.065]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.579,693,6.476,694,6.476,695,5.625,696,6.476]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.053,14,0.929,17,1.534,18,1.544,39,3.591,49,1.055,64,2.564,65,2.726,90,1.991,158,3.309,204,3.18,258,0.911,304,5.483,336,3.487,697,6.61,698,6.61,699,6.61,700,4.717,701,6.61]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.053,35,0.379,61,1.197,63,4.556,702,6.662]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[703,7.12,704,7.733,705,7.733]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.09,12,3.496,17,1.594,18,1.604,35,0.526,45,3.059,46,3.02,49,1.096,106,4.608,651,2.664,703,9.636,706,2.061,707,3.255]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.053,11,0.724,35,0.379,62,3.255,708,4.065]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.841,31,1.504,708,4.718]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.493,9,0.094,17,1.594,18,1.604,31,1.336,35,0.39,45,3.059,46,3.02,297,3.059,464,3.59,609,5.483,708,6.386,709,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.053,35,0.379,129,1.871,207,2.79,710,5.786]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[710,7.437,711,4.286]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.064,17,1.846,18,1.858,35,0.452,42,2.636,164,2.274,176,3.274,327,2.907,710,8.85,712,3.917,713,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.016,169,2.218,201,1.861,714,7.224]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[201,1.816,412,1.733,715,7.049,716,6.49]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.853,42,3.049,201,2.369,685,4.425,717,8.469,718,7.344]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.693,109,4.65,176,2.742,544,3.548,719,5.146]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[719,5.445,720,7.049,721,7.049,722,7.049]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.304,9,0.071,12,3.303,17,1.506,18,1.516,54,4.015,64,2.517,258,0.894,264,4.438,319,1.59,325,3.122,326,3.959,638,6.353,651,2.517,719,8.449,723,5.162]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,406,5.146,680,4.01]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[406,5.003,724,6.476,725,6.476,726,6.476,727,6.476]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.586,9,0.096,17,1.693,18,1.704,31,1.419,88,5.205,197,5.092,406,7.441,482,5.205,659,4.088,728,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.151,29,1.085,729,6.274,730,5.42]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[319,1.276,458,4.32,459,2.698,729,4.523,731,2.628,732,5.207,733,5.207,734,5.207]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.078,14,1.047,17,1.729,18,1.74,45,3.318,46,3.275,153,3.214,297,3.318,381,2.589,459,3.859,729,8.482,730,5.588,735,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.862,169,1.898,287,4.935,368,2.635,736,5.691]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[737,7.049,738,7.049,739,7.049,740,7.049]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.052,14,1.252,17,1.506,18,1.516,121,4.015,146,3.808,169,1.992,187,3.053,202,3.856,368,3.795,409,4.868,435,2.989,736,8.197,741,5.974,742,4.276,743,5.974,744,4.015,745,5.382,746,5.635]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.174,5,1.315,9,0.043,11,0.587,62,2.639,90,1.627,747,4.052,748,4.48]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.302,5,1.459,748,4.969,749,5.515,750,5.202,751,4.627]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.07,9,0.083,17,1.334,18,1.343,35,0.541,65,1.738,163,3.221,174,4.992,176,2.366,262,2.577,428,3.46,747,8.225,748,6.785,752,5.748,753,4.101,754,5.748,755,3.788]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.038,35,0.273,90,1.444,164,1.371,200,2.717,489,2.926,530,3.598,756,4.165,757,4.795,758,4.165]],["keywords//docs/applications/project-management/install-farmos/",[679,4.718,756,6.716,759,3.422]],["toc//docs/applications/project-management/install-farmos/",[4,1.385,9,0.051,17,1.479,18,1.488,35,0.362,45,2.838,46,2.801,119,2.224,151,4.199,176,2.623,251,2.935,259,1.636,349,4.357,391,3.02,659,3.57,685,3.065,756,9.426,760,6.371,761,3.189,762,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.339,132,2.893,372,5.786,470,3.733,700,4.754]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[470,4.799,763,8.563]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.529,132,4.3,140,4.522,372,6.609,444,6.312,445,4.778,470,6.535,476,3.607,764,7.006,765,7.006]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.339,49,1.063,766,2.379,767,2.823,768,5.319]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[769,6.476,770,6.476,771,6.476,772,6.476,773,6.476]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.081,11,0.705,17,1.506,18,1.516,35,0.369,46,2.853,49,1.036,121,4.015,176,2.671,321,4.742,391,3.075,409,4.868,489,3.959,685,3.122,767,2.75,768,5.18,774,3.597,775,6.488,776,2.442,777,5.974]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,778,6.274]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[680,4.655,778,6.716,779,5.398]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.517,9,0.079,14,0.625,16,1.323,17,1.031,18,1.038,29,0.668,35,0.385,45,1.979,46,1.954,49,0.709,64,1.723,112,1.609,163,2.49,169,2.077,237,2.749,258,0.932,261,1.648,292,2.262,297,3.014,321,3.247,323,2.981,327,1.624,349,3.039,558,3.102,633,2.79,687,1.664,767,1.883,776,1.672,778,9.02,780,4.091,781,4.443,782,4.443,783,3.247]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,202,3.425,319,1.413,336,3.041,382,3.735,784,4.602,785,4.453]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[655,2.904,784,5.171,786,5.963,787,6.476,788,6.476]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.062,15,4.682,17,1.805,18,1.817,35,0.442,69,6.209,336,4.103,688,3.42,784,8.883,789,2.248,790,3.8]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.041,32,3.239,33,2.128,49,0.811,89,1.554,258,0.7,461,4.056,462,4.214,791,5.08]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[147,5.847,687,2.64,792,7.049,793,7.049]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.354,9,0.054,17,1.564,18,1.574,32,4.295,33,2.821,35,0.519,65,2.037,90,2.029,258,0.928,381,2.341,461,7.292,462,7.576,776,2.535,794,6.737,795,4.11,796,3.459]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.374,146,4.63,608,6.095]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[608,6.615,611,6.837]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.119,9,0.064,17,1.292,18,1.3,54,3.444,90,1.677,99,5.186,169,2.454,215,2.964,264,3.807,299,4.176,520,3.119,535,4.444,608,7.897,609,8.645,797,9.354,798,5.566,799,3.972]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.046,11,0.627,62,2.816,381,2.004,687,2.159,800,5.006,801,5.006]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.579,161,5.963,800,5.625,801,5.625,802,3.325]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.304,5,1.58,9,0.071,16,1.932,17,1.506,18,1.516,29,0.975,35,0.369,45,2.89,46,2.853,47,2.286,297,2.89,477,3.676,687,2.43,800,9.955,801,5.635,803,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.041,11,0.552,49,0.811,61,0.913,320,2.586,804,4.677,805,4.677,806,4.677,807,3.474]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[201,1.543,806,5.515,808,5.99,809,4.181,810,5.99,811,5.99]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.041,14,0.725,17,1.197,18,1.205,35,0.293,40,2.088,49,1.752,99,2.86,148,3.4,242,5.844,320,4.56,381,2.629,583,3.239,742,4.986,804,8.248,805,8.248,809,3.601,812,3.77,813,4.279,814,4.48,815,3.985,816,5.159]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.058,11,0.785,49,1.153,817,6.651]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.766,818,7.049,819,7.049,820,7.049]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.072,17,1.534,18,1.544,45,2.944,46,2.907,194,6.294,297,2.944,817,6.086,821,9.017,822,9.017,823,9.017,824,9.017,825,9.017,826,6.61]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.05,11,0.672,35,0.351,62,3.02,162,3.261,328,2.718]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[827,7.049,828,7.049,829,4.426,830,6.122]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.194,9,0.048,14,0.835,35,0.338,40,2.405,89,1.817,153,2.564,162,3.135,176,3.447,208,3.366,209,5.376,251,2.737,328,2.612,417,6.714,464,3.106,571,5.16,572,4.929,830,5.16,831,5.941,832,5.16,833,5.941]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.242,11,0.672,39,2.461,163,3.463,379,1.699,834,5.691]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.079,695,6.716,835,7.733]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.812,9,0.053,17,1.534,18,1.544,39,4.087,96,3.309,122,5.106,163,6.177,187,3.11,379,2.479,695,5.741,836,4.831,837,4.831,838,6.61]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[839,0.476]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.222,840,6.352]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[132,3.358,134,4.118,840,5.651]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.714,38,3.769,132,3.704,171,4.38,470,4.78,840,8.489]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.344,9,0.05,11,0.672,35,0.351,62,3.02,841,4.935]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.681,842,7.12,843,7.733]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.474,5,1.74,9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,213,4.631,316,4.989,334,2.993,381,2.484,841,8.524]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.053,11,0.724,35,0.379,62,3.255,844,5.146]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[844,5.973,845,7.733,846,7.733]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.497,4,1.619,9,0.078,17,1.729,18,1.74,35,0.555,319,1.826,339,2.055,477,4.22,494,5.754,723,4.319,844,7.544]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.672,61,1.111,74,3.044,99,3.427,562,3.202,847,2.827]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.651,61,1.076,848,4.627,849,4.627,850,4.494,851,4.274]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.061,35,0.563,64,2.952,74,5.743,89,2.327,112,2.756,339,2.099,345,3.346,847,4.53]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.351,89,1.89,90,1.862,516,4.073,655,2.771]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[516,5.096,517,7.12,852,7.733]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.051,16,1.897,17,1.479,18,1.488,29,0.957,142,5.697,146,3.739,169,1.956,204,4.23,368,2.716,516,7.505,655,4.513,853,6.371,854,5.534,855,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.266,481,5.2,856,5.766]],["keywords//docs/security/getting-started-with-selinux/",[325,3.116,856,4.733,857,6.476,858,6.476,859,6.476]],["toc//docs/security/getting-started-with-selinux/",[9,0.064,17,1.846,18,1.858,45,3.542,46,3.497,247,4.994,856,8.666,860,7.953,861,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.296,47,2.347,89,2.038,132,2.893,134,3.548]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[132,3.061,134,3.754,840,5.152,862,7.049]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.934,132,4.556,134,6.119,170,5.814,193,5.589,368,3.551,583,5.23]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.053,35,0.379,381,2.315,382,4.317,863,5.786]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[863,5.202,864,5.99,865,5.99,866,4.494,867,5.99,868,5.99]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.065,14,1.144,45,3.624,46,3.578,99,4.511,306,4.775,863,10.386,869,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.05,47,2.177,132,2.684,134,3.292,454,5.127,470,3.463]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[132,3.061,134,3.754,840,5.152,870,7.049]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.057,17,1.659,18,1.669,31,1.39,54,4.422,80,2.959,132,4.636,327,2.612,454,5.928,470,5.325,530,5.362,652,4.487,871,7.146,872,6.58]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.058,11,0.785,834,6.651,873,6.651]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[874,7.733,875,7.733,876,7.733]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.053,17,1.534,18,1.544,45,2.944,46,2.907,88,4.717,90,1.991,176,2.721,236,8.232,287,5.278,390,3.979,873,9.449,877,5.741,878,6.61,879,5.106]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[839,0.476]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.063,11,0.858,856,5.766]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[139,2.02,856,4.733,880,5.963,881,6.476,882,5.372]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.07,17,2.029,18,2.042,45,3.894,46,3.844,390,5.263,856,6.389,880,8.049]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[132,3.774,146,5.1]],["keywords//docs/applications/containers/introduction-to-docker/",[132,3.358,134,4.118,840,5.651]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.894,46,3.844,132,5.099,470,4.899,669,7.593,840,6.389]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.05,61,1.111,203,1.787,280,3.292,662,2.589,883,5.368]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[883,6.122,884,7.049,885,4.495,886,6.122]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.979,9,0.039,17,1.131,18,1.138,35,0.412,45,2.171,46,2.143,100,1.462,119,1.701,164,1.394,169,1.496,176,2.986,191,3.212,201,1.255,203,1.409,282,2.245,318,2.647,319,1.195,327,1.781,339,2.39,348,4.487,350,2.826,508,3.764,623,3.212,628,3.656,651,1.89,662,2.041,883,9.675,887,3.562,888,4.873]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.494,16,1.352,29,0.682,62,2.219,129,1.275,165,3.508,207,1.902,208,2.573,328,1.997,872,4.181,889,3.508]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.459,889,4.627,890,5.99,891,4.181,892,4.494,893,3.023]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.072,18,1.079,20,2.71,29,1.047,35,0.262,54,2.858,60,1.396,112,1.672,169,2.139,191,3.043,208,5.293,237,4.311,258,0.636,264,3.158,273,2.459,325,2.222,327,1.688,328,3.689,350,2.677,571,4.011,649,2.744,659,3.904,687,3.141,761,3.487,776,1.738,889,7.217,894,2.944,895,2.992,896,2.71]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[247,4.954,445,4.954,856,5.766]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[856,7.012]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.937,138,3.421,140,3.959,339,1.838,476,3.158]],["keywords//docs/quick-answers/linux/how-to-use-git/",[139,2.198,897,7.049,898,5.847,899,7.049]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.222,900,6.714]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[139,2.198,900,5.445,901,5.847,902,5.03]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.328,64,3.664,169,2.9,900,7.296,903,9.445]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.016,89,2.209,179,4.47,360,5.043]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[179,3.706,244,3.049,271,4.969,904,5.99,905,4.378,906,4.494]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.589,54,3.557,89,2.912,176,3.92,179,6.419,193,3.857,264,3.931,271,9.724,360,7.242,365,4.992,521,3.46,906,4.312,907,5.748]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.058,35,0.411,89,2.209,908,6.274]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[908,6.122,909,5.847,910,6.122,911,4.921]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.539,9,0.083,16,1.188,17,0.926,18,0.932,29,0.599,34,2.786,35,0.533,89,1.905,112,2.255,120,2.916,163,2.236,193,2.678,244,3.17,273,2.125,318,2.167,327,2.277,334,1.671,381,1.387,399,2.847,410,2.544,470,2.236,525,4.036,649,2.371,655,1.789,685,1.92,908,7.517,912,3.99,913,2.994,914,3.674,915,2.847,916,2.342,917,3.99,918,3.186,919,2.786,920,2.729]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.046,11,0.627,129,1.619,207,2.414,258,0.794,889,4.453,921,5.764]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.459,889,4.627,891,4.181,893,3.023,922,5.99,923,5.99]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.063,17,1.252,18,1.26,35,0.444,54,3.339,146,3.166,169,1.657,172,2.104,176,3.218,251,2.485,258,0.743,264,3.69,273,2.874,282,2.485,319,1.323,327,1.972,328,2.372,472,2.596,643,4.476,723,3.128,837,3.943,889,8.262,924,3.85,925,4.968,926,3.766,927,4.968]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.937,89,2.038,134,3.548,139,2.078,928,4.754]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[132,3.358,928,5.518,929,7.733]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.993,34,4.614,35,0.376,95,4.831,100,1.983,134,5.465,139,3.2,247,4.151,360,4.614,525,4.283,649,3.928,688,2.907,877,5.741,930,6.61,931,5.278,932,5.741,933,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.058,12,3.677,129,2.029,207,3.025]],["keywords//docs/development/java/install-java-on-centos/",[13,5.372,129,2.497,934,6.476,935,5.963]],["toc//docs/development/java/install-java-on-centos/",[9,0.079,10,5.43,12,5.936,17,1.766,18,1.777,163,4.264,265,4.466,936,7.006,937,6.075,938,7.006]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.058,12,3.677,61,1.298,280,3.847]],["keywords//docs/development/java/install-java-on-debian/",[13,5.847,61,1.267,279,5.847,935,6.49]],["toc//docs/development/java/install-java-on-debian/",[9,0.079,10,5.43,12,5.936,17,1.766,18,1.777,163,4.264,265,4.466,936,7.006,937,6.075,938,7.006]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.058,11,0.785,12,3.677,62,3.53]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.621,11,0.704,12,3.297,13,5.372,939,4.008]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.067,10,5.943,12,4.24,17,1.933,18,1.945,29,1.251,163,4.667,279,6.909,836,6.087,939,5.154]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.053,11,0.724,31,1.296,62,3.255,940,5.786]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.165,254,4.969,892,4.494,905,4.378,940,5.202,941,5.99]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.28,4,1.385,9,0.081,11,0.693,14,0.896,31,1.71,35,0.572,80,2.638,100,1.912,112,2.307,312,3.786,321,4.656,776,2.398,940,8.743,942,6.371,943,6.371]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.779,89,2.413,470,4.421]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.202,89,2.413,327,2.884]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[134,3.847,139,2.253,688,3.176,928,5.155]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[928,5.03,945,7.049,946,4.646,947,5.628]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[324,5.23,655,3.734,688,4.614,915,5.943,926,5.814,928,7.488,948,5.814,949,6.909]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.209,950,4.47,951,3.847,952,3.26]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.413,244,4.016,906,5.92]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.937,139,2.078,169,2.045,273,3.548,953,4.998]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[363,4.73,382,4.568,953,5.289,954,5.628]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,169,2.684,191,5.761,339,2.412,953,8.114,955,7.593,956,8.742]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.05,49,0.986,129,1.736,207,2.589,905,4.517,957,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[958,7.12,959,7.12,960,7.733]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,153,3.084,176,2.942,377,4.989,410,4.557,428,4.302,659,4.005,905,5.223,957,8.856,961,5.706,962,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.05,11,0.672,49,0.986,62,3.02,905,4.517,957,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[958,7.12,959,7.12,963,7.733]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,153,3.084,176,2.942,377,4.989,410,4.557,428,4.302,659,4.005,905,5.223,957,8.856,961,5.706,962,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.058,129,2.029,207,3.025,964,4.847]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[129,1.819,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.354,5,1.641,9,0.073,17,1.564,18,1.574,35,0.383,45,3,46,2.962,64,2.613,119,2.352,259,1.729,377,4.702,381,2.341,405,4.11,659,3.775,964,7.455]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[139,2.253,368,3.08,389,4.349,745,5.993]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[363,3.738,382,3.61,482,3.975,745,4.621,746,4.839,954,4.448,966,5.571]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.215,139,1.952,363,5.827,368,3.702,610,4.368,647,4.695,652,3.93,813,5.191,967,5.762,968,5.762,969,6.258,970,5.191,971,4.695,972,6.258,973,6.258,974,6.258,975,5.191,976,6.258,977,5.191,978,5.762,979,5.435,980,6.258]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,368,3.364,902,5.63]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[139,2.198,901,5.847,902,5.03,981,4.495]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,368,3.364,982,6.299]],["keywords//docs/quick-answers/linux/how-to-use-head/",[139,2.02,169,1.988,901,5.372,982,5.171,983,6.476]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,368,3.364,984,6.299]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[139,2.02,169,1.988,901,5.372,984,5.171,985,6.476]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.763,487,3.47,643,4.782,651,2.236,986,5.006,987,4.024]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.566,49,0.831,129,1.462,139,1.624,319,1.276,655,2.335,786,4.794,988,4.794]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.086,18,1.093,19,2.469,99,2.594,100,1.404,119,2.952,232,3.14,251,3.895,326,2.855,334,1.96,476,2.218,521,2.817,558,3.266,572,3.882,651,1.815,655,2.098,761,2.342,946,3.084,952,2.112,989,4.679,990,3.339,991,3.339,992,4.308,993,5.837,994,4.064,995,4.679,996,4.308,997,4.308,998,3.339,999,4.308,1000,4.064,1001,4.308,1002,4.679,1003,4.679,1004,4.679]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,1005,5.146,1006,6.662]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.566,680,3.135,892,3.907,1005,4.022,1007,4.794,1008,4.794,1009,4.794,1010,5.207]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.576,5,1.143,9,0.072,17,0.653,18,0.657,30,2.025,35,0.481,39,1.12,42,1.556,45,1.253,46,1.237,49,0.964,60,2.718,100,1.408,112,1.018,119,2.462,140,1.671,142,1.822,163,3.385,165,3.626,169,1.441,172,1.096,297,2.69,325,2.258,327,1.028,339,1.295,405,2.864,436,2.442,445,2.947,628,3.521,640,1.963,688,2.064,728,2.333,1005,8.009,1011,2.589,1012,2.589,1013,2.442,1014,2.589,1015,3.747,1016,1.444]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[129,1.517,201,1.391,207,2.262,1017,5.717,1018,4.973,1019,7.202]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[129,1.682,258,0.825,1017,4.378,1018,5.515,1020,5.99,1021,5.99]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.523,9,0.056,14,0.985,17,1.626,18,1.636,35,0.398,100,2.102,112,3.395,172,2.731,258,0.965,1017,6.853,1019,10.393,1022,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.66,101,2.56,102,4.052,129,1.517,916,3.169,1023,2.275,1024,4.973]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1025,6.174,1026,7.733,1027,7.733]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.078,35,0.552,74,4.779,916,5.695]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1028,3.823]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.058,89,2.209,99,4.005,101,3.424]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[909,5.847,910,6.122,911,4.921,1029,6.49]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.066,35,0.465,64,2.229,89,3.173,90,1.731,99,3.187,100,1.725,101,2.724,112,2.962,244,2.926,352,4.101,470,3.221,644,5.292,646,5.292,651,2.229,911,4.012,915,4.101,916,4.8,951,3.061,1030,5.748,1031,5.748,1032,3.931]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1033,3.825,1034,6.853,1035,5.766]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1034,6.122,1035,5.152,1036,5.847,1037,5.289]],["toc//docs/platform/upgrade-to-hourly-billing/",[542,8.668,1033,4.838,1038,3.774]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.658,906,6.521]],["keywords//docs/platform/disk-images/resizing-a-linode/",[906,6.425,1033,4.152]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.141,906,7.706]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,280,3.548,1039,5.786]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.841,1039,6.716,1040,7.733]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.06,17,1.729,18,1.74,35,0.423,119,2.6,204,3.584,336,3.93,339,2.055,492,6.179,651,2.889,790,3.639,1039,10.045]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.058,129,2.029,207,3.025,707,3.424]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.459,11,0.651,707,2.839,893,3.023,1041,4.097,1042,5.515]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.258,5,1.524,9,0.05,17,1.453,18,1.462,24,2.769,35,0.356,80,2.591,90,1.885,119,3.032,176,2.576,177,2.863,282,2.883,306,3.673,315,5.762,392,4.466,583,3.93,707,5.363,1043,4.996]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.158,11,0.627,49,0.92,62,2.816,1044,5.307,1045,5.307,1046,5.764]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.841,49,1.234,1047,7.733]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.194,9,0.048,17,1.379,18,1.388,29,0.893,35,0.338,41,4.24,49,1.838,57,3.577,153,2.564,158,2.974,339,1.639,521,3.577,663,5.471,812,4.342,1044,9.695,1048,5.845,1049,5.941]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.058,129,2.029,207,3.025,1050,4.847]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[129,1.98,1050,4.73,1051,6.49,1052,7.049]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.916,4,0.991,5,1.11,9,0.074,17,1.058,18,1.065,21,2.643,29,1.036,35,0.567,45,2.03,46,2.004,49,0.727,64,1.768,112,1.651,119,2.408,133,3.521,187,2.145,207,1.909,258,0.628,259,1.17,273,2.428,319,1.117,334,1.909,405,4.209,544,2.428,576,3.004,630,2.709,687,1.707,894,2.906,1050,6.69,1053,4.197]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,1050,4.847]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.766,1050,4.73,1051,6.49,1054,7.049]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.953,4,1.031,5,1.155,9,0.057,17,1.101,18,1.108,21,2.749,29,1.068,35,0.576,45,2.112,46,2.085,49,0.757,64,1.839,112,1.717,119,2.481,133,3.663,187,2.231,258,0.653,259,1.217,273,2.526,319,1.162,334,1.986,405,4.337,544,2.526,576,3.125,630,2.818,687,1.776,894,3.024,1050,6.805,1053,4.366]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.273,43,2.78,61,0.862,200,2.717,762,3.16,767,2.032,1055,1.805,1056,3.978]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.704,61,1.164,1055,2.437,1056,5.372,1057,4.733]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.334,9,0.044,17,1.272,18,1.28,35,0.311,49,0.875,60,1.657,169,1.682,176,2.256,200,3.105,319,1.937,327,2.003,651,2.125,761,2.743,766,1.957,790,2.677,952,4.185,1055,4.219,1056,4.545,1058,4.375,1059,5.045,1060,4.545,1061,5.48,1062,5.48]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.505,9,0.05,30,2.667,129,1.736,207,2.589,1063,3.357]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.042,891,4.921,1064,5.628,1065,4.301]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.345,5,2.333,9,0.054,17,0.755,18,0.76,22,1.985,30,3.326,35,0.185,100,0.976,119,1.136,129,0.914,153,1.404,176,2.179,193,4.489,204,1.565,215,1.733,227,3.429,282,2.438,319,1.889,336,1.717,382,2.108,390,1.959,435,3.082,521,4.028,556,2.996,651,2.99,661,2.996,712,1.602,1066,5.209,1067,5.293,1068,5.293,1069,2.441,1070,6.315,1071,2.225,1072,3.254]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.452,29,1.085,707,3.424,1073,7.224]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[328,3.099,707,3.341,893,3.558,1074,7.049]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.194,16,1.769,17,1.379,18,1.388,29,0.893,35,0.551,45,2.646,46,2.612,60,1.796,80,2.46,119,2.074,169,2.571,176,2.446,201,1.53,251,2.737,336,3.135,662,2.488,707,3.969,723,3.445,761,2.974,1075,4.693,1076,4.929]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.839,61,0.775,217,1.986,280,2.297,543,2.416,562,3.426,687,1.615,948,3.01,1077,3.331,1078,3.152]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.165,543,3.357,687,2.243,829,3.761,1077,4.627,1079,5.202]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.084,9,0.074,17,1.252,18,1.26,31,1.52,35,0.608,45,2.403,46,2.372,60,1.631,99,2.991,107,3.057,169,1.657,217,2.485,259,1.385,273,2.874,435,2.485,543,3.024,659,3.024,1077,7.785,1080,4.686,1081,4.048,1082,5.396,1083,5.396]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.658,1084,6.352]],["keywords//docs/platform/disk-images/clone-your-linode/",[944,5.651,1084,7.314]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.141,1084,7.506]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.058,129,2.029,207,3.025,258,0.995]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[129,2.172,258,1.065,891,5.398]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.072,17,1.215,18,1.223,35,0.565,45,2.332,46,2.302,164,1.497,176,2.155,201,1.348,210,2.428,258,1.053,319,1.874,323,3.513,379,1.439,522,4.876,544,2.788,558,3.655,685,2.519,687,2.864,1085,4.18,1086,7.041,1087,5.589,1088,4.18,1089,4.82]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,129,1.347,202,2.85,207,2.008,231,3.107,232,3.218,336,2.53,655,2.15,785,3.704,952,2.164]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[655,3.467,1090,7.12,1091,7.733]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.056,17,1.626,18,1.636,29,1.052,35,0.398,45,3.12,46,3.08,65,2.118,202,4.162,251,4.319,336,4.947,761,3.506,785,5.411,1092,7.004,1093,6.083,1094,4.539]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.469,14,0.606,61,0.775,62,2.107,202,2.562,231,2.794,232,2.893,280,2.297,336,2.275,655,1.933,785,3.331,952,1.946]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.704,61,1.164,655,2.904,1090,5.963,1095,6.476]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.056,17,1.626,18,1.636,29,1.052,35,0.398,45,3.12,46,3.08,202,4.162,251,4.319,336,5.576,761,3.506,762,4.616,785,5.411,1093,6.083,1094,4.539]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.351,49,0.986,323,4.147,651,2.397,731,3.12,1096,3.542]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[459,3.652,662,2.952,731,3.558,1096,4.039]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.172,17,1.693,18,1.704,29,1.096,49,1.164,60,2.205,327,2.666,410,4.651,635,4.281,651,2.829,731,3.682,790,3.564,1096,4.18,1097,4.391,1098,5.473,1099,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,139,1.928,237,3.825,241,4.935,244,3.146,632,4.517]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,241,5.628,882,5.847,1100,7.049]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.28,9,0.07,14,0.896,17,1.479,18,1.488,35,0.362,61,1.58,89,1.949,112,2.307,237,6.229,241,5.087,244,4.475,280,3.393,319,1.562,339,1.758,413,5.285,916,3.739,1101,4.78]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.31,89,1.554,256,3.143,258,0.7,302,2.847,1102,5.08,1103,4.412,1104,4.412]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[110,4.189,591,6.49,1104,6.122,1105,6.49]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.535,16,0.799,17,0.623,18,0.627,29,0.403,60,0.811,80,1.868,89,0.821,90,0.808,96,2.259,151,1.769,169,1.386,193,3.028,203,1.305,208,3.879,251,1.236,261,0.995,328,5.178,351,1.616,368,1.924,381,1.569,470,3.837,526,4.155,583,2.834,685,1.291,895,2.924,1101,3.386,1104,9.579,1105,8.845,1106,2.684,1107,2.226,1108,2.226,1109,2.684,1110,2.471,1111,4.513]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,543,4.048]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[545,6.122,546,6.122,548,6.122,1112,6.49]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.084,9,0.063,17,1.252,18,1.26,29,0.811,31,1.05,35,0.573,169,2.4,249,3.85,258,0.743,259,1.385,334,3.274,524,4.686,543,5.994,557,4.968,558,6.416,700,3.85,1112,8.463,1113,5.396]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.937,251,3.069,336,3.515,655,2.987,924,4.754]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[336,2.747,655,2.335,784,4.157,924,3.716,1114,5.207,1115,5.207,1116,4.794,1117,4.794]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.252,18,1.26,89,1.65,96,2.701,176,2.221,251,5.137,319,1.916,334,2.26,336,2.847,465,4.686,586,4.476,655,2.419,761,3.912,784,4.308,924,6.559,1032,3.69,1078,3.943,1094,3.496,1116,4.968,1118,5.396,1119,7.817,1120,4.686,1121,5.396]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.058,89,2.209,139,2.253,1122,6.274]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.321,909,4.969,1122,5.202,1123,5.99,1124,5.99,1125,5.99]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.072,17,1.215,18,1.223,35,0.565,45,2.332,46,2.302,49,0.836,64,2.031,65,1.583,74,2.578,89,1.601,95,3.826,112,1.896,139,2.385,244,2.665,247,3.287,319,1.283,339,1.444,470,2.934,525,3.392,645,3.513,649,3.111,919,3.655,1122,7.846,1126,3.826,1127,4.18,1128,5.235]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.063,129,2.216,1129,4.814]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1129,4.301,1130,7.049,1131,7.049,1132,7.049]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.056,14,1.318,35,0.533,42,2.322,74,3.449,89,2.142,90,2.11,490,3.74,706,2.814,795,4.274,1129,5.721,1133,6.449]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[204,4.181,651,3.371]],["keywords//docs/networking/remote-access/",[654,5.171,1134,6.476,1135,6.476,1136,6.476,1137,6.476]],["toc//docs/networking/remote-access/",[14,1.124,29,0.836,32,5.097,35,0.316,225,5.559,252,4.068,490,2.829,531,3.396,634,4.834,635,6,651,3.101,655,2.495,662,3.348,684,4.258,915,3.972,926,5.58,950,3.444,1094,3.607,1138,4.444]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[127,1.849,129,1.619,687,2.159,776,2.169,796,2.96,1139,4.024,1140,3.62]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[127,1.921,129,1.682,1140,3.761,1141,4.494,1142,4.782,1143,4.627]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.408,17,1.626,18,1.636,112,2.536,176,2.883,220,3.73,687,2.623,776,4.248,796,3.597,951,4.994,1144,6.545,1145,6.449,1146,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.587,61,0.97,562,2.798,687,2.022,776,2.032,796,2.773,1139,3.77,1140,3.391]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.651,61,1.076,1140,3.761,1141,4.494,1142,4.782,1143,4.627]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.408,17,1.626,18,1.636,112,2.536,176,2.883,220,3.73,687,2.623,776,4.248,796,3.597,951,4.994,1144,6.545,1145,6.449,1146,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.202,47,2.177,166,4.774,167,4.517,321,4.517,687,2.314]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.504,321,5.651,687,2.896]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.068,17,1.234,18,1.241,31,1.034,35,0.302,49,0.848,60,1.607,99,2.946,217,4.197,251,2.448,319,1.303,323,3.566,327,1.943,392,3.792,410,5.81,472,2.557,636,3.566,712,2.617,990,3.792,991,3.792,1147,4.105,1148,5.314,1149,5.314,1150,5.314,1151,5.314,1152,5.314,1153,5.314,1154,5.314,1155,5.314,1156,5.314]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.281,99,3.693,129,1.871,207,2.79,847,3.047]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[129,1.819,848,5.003,849,5.003,850,4.859,851,4.621]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.061,35,0.563,64,2.952,74,5.743,89,2.327,112,2.756,339,2.099,345,3.346,847,4.53]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[201,1.861,292,3.677,522,4.606,1087,5.28]],["keywords//docs/websites/host-a-website-with-high-availability/",[500,5.289,562,3.652,711,3.528,1138,5.628]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.06,17,0.906,18,0.911,35,0.56,49,0.623,60,2.283,90,1.175,176,3.108,208,2.211,258,0.843,319,0.956,323,2.618,325,3.633,326,4.607,328,1.716,334,1.634,352,2.784,489,2.381,490,1.381,531,2.381,543,2.187,558,2.724,635,2.29,645,2.618,1075,3.429,1086,7.872,1088,6.028,1089,5.635,1138,3.115,1157,3.902,1158,6.12,1159,2.618]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[146,4.63,522,5.031,1087,5.766]],["keywords//docs/websites/introduction-to-high-availability/",[201,1.816,292,3.588,500,5.289,1138,5.628]],["toc//docs/websites/introduction-to-high-availability/",[5,1.58,49,1.036,164,1.855,169,1.992,203,1.876,316,4.529,339,1.79,435,2.989,498,4.868,504,5.18,522,6.974,743,5.974,887,4.742,1087,7.994,1138,7.108]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,424,5.28]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.766,62,3.444,421,6.122,424,5.152]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.045,17,1.292,18,1.3,35,0.316,49,1.276,68,6.836,80,2.304,89,1.702,139,2.493,141,4.635,145,4.069,153,3.45,319,1.364,351,4.812,424,7.913,630,4.75,632,4.068,649,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.058,11,0.785,30,3.117,62,3.53]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.795,892,4.859,1064,5.171,1065,3.952,1160,4.346]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.88,5,1.947,9,0.064,11,0.605,17,1.292,18,1.3,30,4.864,35,0.316,62,2.72,119,1.943,204,2.678,215,2.964,227,3.607,319,1.959,404,3.807,651,3.101,1063,3.023,1066,3.19,1070,3.668,1161,4.176]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,707,3.158,1162,6.134]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.459,11,0.651,707,2.839,893,3.023,1041,4.097,1042,5.515]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.328,5,1.61,9,0.053,17,1.534,18,1.544,24,2.925,35,0.376,80,2.737,90,1.991,119,2.308,176,2.721,177,3.024,282,3.045,306,3.879,583,4.151,707,5.468,1043,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.587,14,0.759,49,0.862,62,2.639,164,1.544,1162,4.973,1163,3.295,1164,5.401]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[711,3.87,1163,4.718,1165,7.12]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.037,9,0.041,17,1.197,18,1.205,35,0.293,40,2.088,142,3.343,166,3.985,167,3.77,175,3.681,187,2.427,201,2.541,262,2.313,327,1.886,368,2.199,379,2.712,381,1.793,389,3.106,410,3.289,530,3.87,659,4.239,967,4.75,1163,4.616,1166,6.57,1167,4.48,1168,1.991,1169,5.159]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.672,61,1.111,100,1.855,280,3.292,319,1.515,679,3.771]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.672,258,0.767,259,1.43,679,3.399,680,3.354,1170,3.672,1171,5.13]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.436,2,3.806,17,1.659,18,1.669,64,2.772,77,5.928,100,2.144,169,2.194,177,3.269,247,4.487,319,1.752,339,1.972,544,5.061,584,6.207,647,5.362,1033,3.465]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,258,0.918,1172,3.733]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1173,7.049,1174,7.049,1175,7.049,1176,7.049]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.07,14,1.229,17,2.029,18,2.042,60,2.643,258,1.204,1172,6.061]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.105,9,0.041,11,0.552,31,0.988,62,2.482,139,1.584,259,1.304,275,2.911,1177,2.586]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.371,259,1.81,892,5.289,1177,3.588]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.361,5,1.524,9,0.07,17,1.453,18,1.462,31,1.94,35,0.356,47,2.205,49,1.386,60,1.892,164,1.789,201,1.612,259,1.606,275,3.586,334,2.621,379,1.721,790,4.243,1168,2.415,1177,3.186]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,275,3.818,759,2.948]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[892,4.859,1178,6.476,1179,6.476,1180,6.476,1181,6.476]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.194,4,2.108,5,1.447,9,0.078,14,0.835,17,1.379,18,1.388,35,0.476,60,1.796,201,1.53,258,1.154,259,1.525,275,3.405,334,2.488,379,1.633,686,4.929,759,2.629,790,4.091,1182,5.941,1183,5.941]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.785,62,3.53,1033,3.502,1184,3.558]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.841,62,3.778,1033,3.749]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.051,11,1.094,15,3.835,16,1.897,42,2.112,62,3.113,74,3.138,89,1.949,100,1.912,112,2.307,522,4.062,583,4.001,774,3.532,977,5.285,1016,3.271,1033,4.88,1184,4.33,1185,5.285]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.05,11,0.672,49,0.986,61,1.111,162,3.261,280,3.292]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[162,3.16,885,3.819,1186,5.99,1187,5.99,1188,5.99,1189,5.515]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.078,11,0.545,16,1.493,17,1.163,18,1.171,29,0.753,35,0.553,38,1.774,61,0.901,89,2.694,100,1.504,101,2.376,112,1.815,162,5.133,178,3.101,202,2.978,209,2.779,319,1.229,334,2.099,335,3.101,339,1.383,413,4.158,417,3.196,896,2.941,1075,4.15,1190,4.615]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.053,35,0.379,129,1.871,162,3.515,207,2.79]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[129,1.98,162,3.719,891,4.921,1189,6.49]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.071,14,0.705,16,1.493,17,1.163,18,1.171,29,0.753,35,0.501,38,1.774,89,2.694,101,2.376,112,1.815,162,5.477,177,2.293,178,3.101,209,2.779,252,3.663,319,1.229,334,2.099,335,3.101,336,2.644,339,1.383,413,4.158,417,3.196,896,2.941,952,2.262,1075,4.15,1190,4.615]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.05,11,0.672,61,1.111,280,3.292,1191,3.673,1192,5.127]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.651,203,1.732,885,3.819,1191,3.559,1193,5.99,1194,5.99]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.174,9,0.066,17,1.356,18,1.365,35,0.332,41,4.169,45,2.602,46,2.569,107,3.311,112,2.116,119,2.04,164,2.366,171,3,258,0.805,318,4.495,345,2.569,346,4.665,651,2.266,1071,3.996,1191,6.555,1192,4.847]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.988,35,0.289,172,1.981,464,2.656,774,2.816,1195,4.677,1196,2.706]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.165,212,5.515,1197,3.606,1198,5.99,1199,5.99,1200,4.019]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.466,9,0.092,17,1.693,18,1.704,31,1.419,35,0.547,80,3.02,172,2.844,464,3.813,1195,8.869,1196,3.885]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.063,89,2.413,1201,6.853]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1201,7.437,1202,8.563]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.068,89,2.609,112,3.089,139,2.66,146,5.006,248,7.409,1201,10.088]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.046,11,0.627,14,0.81,482,4.113,543,3.23,774,3.196,1203,5.006]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.566,107,2.95,258,0.717,543,2.918,1204,5.207,1205,5.207,1206,5.207,1207,4.022]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.423,9,0.088,16,1.74,29,0.878,38,2.068,88,4.169,100,2.883,107,3.311,121,3.616,194,4.079,310,5.38,368,2.491,482,5.905,543,4.637,706,1.753,837,4.27,866,4.384,1203,7.188,1207,4.514]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.121,189,2.986,292,2.934,1078,4.213,1208,5.307,1209,5.307,1210,4.453]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[138,3.325,1210,5.003,1211,5.003,1212,6.476,1213,6.476]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.436,9,0.076,17,1.659,18,1.669,31,1.848,96,3.577,201,1.841,379,1.965,464,3.736,709,4.049,1208,6.58,1209,8.75,1210,7.341]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.053,11,0.724,61,1.197,1214,6.134,1215,6.134]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[809,4.521,812,4.733,1216,6.476,1217,5.963,1218,5.963]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.042,17,1.215,18,1.223,35,0.298,40,2.119,49,1.586,99,2.903,153,2.259,242,6.979,381,1.82,706,1.571,742,3.45,807,6.179,814,4.547,815,4.044,1214,9.148,1215,9.148,1217,4.82,1218,4.82,1219,4.82,1220,5.235,1221,5.235]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.242,9,0.05,237,3.825,687,2.314,776,2.326,1222,6.181]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[776,2.91,1223,7.733,1224,7.733]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.101,9,0.044,17,1.272,18,1.28,64,2.125,77,4.545,100,2.372,121,3.391,187,2.578,237,6.281,312,4.697,334,3.31,442,4.233,687,3.472,776,3.82,1225,10.15,1226,7.904]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.811,299,3.811,409,3.811,774,2.816,1227,4.677,1228,4.677,1229,4.677,1230,4.677]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1048,3.039,1200,2.922,1230,4.009,1231,4.354,1232,4.354,1233,4.354,1234,4.354,1235,4.354,1236,4.009,1237,3.363]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.047,17,1.356,18,1.365,29,0.878,35,0.332,49,1.534,80,2.419,247,3.669,299,6.209,673,4.847,706,1.753,946,3.851,1048,7.295,1147,4.514,1227,7.62,1228,7.62,1229,7.62,1238,4.514,1239,5.38]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.046,49,0.92,320,2.934,1192,4.782,1240,5.307,1241,5.307,1242,5.006]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[809,4.921,1237,5.445,1243,7.049,1244,7.049]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.055,14,0.966,17,1.594,18,1.604,35,0.39,49,1.477,89,2.101,112,2.487,320,4.71,809,4.794,975,5.697,1192,7.676,1240,8.52,1241,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.046,61,1.036,258,0.794,259,1.48,280,3.07,1245,4.782,1246,4.213]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[258,0.673,259,1.255,885,3.117,1079,4.245,1168,1.886,1247,4.888,1248,2.71,1249,4.501,1250,4.501]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.06,17,1.729,18,1.74,35,0.555,258,1.026,259,2.797,419,6.179,508,5.754,948,5.199,1245,8.101,1249,6.858]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.672,47,2.177,774,3.427,1251,5.691,1252,5.368,1253,4.774]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1251,4.794,1252,4.523,1253,4.022,1254,5.207,1255,4.794,1256,5.207,1257,4.523,1258,5.207]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.28,9,0.081,10,4.546,17,1.479,18,1.488,31,1.239,33,2.668,47,2.244,49,1.017,172,3.925,213,5.697,280,3.393,939,3.942,1252,5.534,1253,6.791,1255,5.866,1257,5.534]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.053,49,1.063,809,4.65,812,4.869,1048,4.65]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[809,3.889,812,4.072,1048,3.889,1236,5.13,1237,4.304,1259,5.13,1260,5.571]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.075,17,1.626,45,3.12,46,3.08,49,1.118,65,2.118,176,2.883,282,3.226,303,5.411,319,1.717,377,4.889,381,2.434,437,4.334,809,6.545,971,5.255,1048,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.351,61,1.111,280,3.292,1055,2.326,1261,4.774,1262,4.935]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[490,1.843,766,1.86,885,3.32,1055,1.96,1261,4.022,1262,4.157,1263,4.523,1264,4.794]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.033,16,2.841,29,1.433,35,0.364,60,1.249,120,3.019,167,3.019,176,2.634,251,1.903,313,3.191,334,2.679,336,2.179,391,3.032,489,2.52,490,2.264,796,2.121,815,3.191,896,2.424,1055,2.947,1101,3.099,1261,6.811,1262,5.108,1263,5.556,1264,3.803,1265,4.131,1266,4.131,1267,4.131,1268,4.131,1269,3.588,1270,4.131,1271,2.367,1272,3.019,1273,4.131]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.058,11,0.785,62,3.53,1274,6.274]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.766,766,2.517,1274,6.122,1275,6.49]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.386,4,1.5,5,1.11,9,0.074,17,1.058,18,1.065,35,0.259,64,1.768,65,1.378,100,1.368,112,1.651,119,1.591,121,2.821,139,1.422,187,2.145,201,1.777,258,1.147,259,1.17,275,3.953,327,1.666,379,1.897,390,2.744,393,3.182,530,3.42,687,1.707,759,3.053,896,2.675,1274,9.11,1276,4.558]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.063,89,2.413,928,5.63]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.591,911,4.521,915,4.621,928,4.621,1277,5.963]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.074,17,1.594,18,1.604,35,0.39,89,2.83,112,2.487,169,2.841,244,3.496,256,4.25,581,5.697,649,4.081,688,3.02,928,7.468,1043,5.483]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[839,0.476]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.043,49,0.862,110,3.209,164,1.544,191,3.559,409,4.052,562,2.798,1278,4.973]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[164,2.211,191,5.096,1279,7.733]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.811,9,0.067,14,1.171,16,2.48,17,1.933,18,1.945,29,1.251,35,0.473,1278,9.662]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.153,139,2.253,659,4.048,1280,6.274]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[812,5.152,1048,4.921,1280,6.122,1281,4.189]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.084,9,0.043,17,1.252,18,1.26,35,0.444,38,1.909,40,2.184,41,3.85,42,1.788,49,1.467,80,2.234,85,3.85,90,1.625,114,4.308,325,2.596,327,1.972,381,1.875,583,3.388,623,3.556,628,4.048,723,3.128,742,3.556,926,3.766,1085,4.308,1280,9.686]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.043,35,0.411,158,3.616,731,3.646]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[141,3.019,145,2.651,459,2.698,731,2.628,1282,4.523,1283,4.157,1284,4.794,1285,4.794]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.564,18,1.574,35,0.383,60,2.037,139,2.101,145,3.429,153,2.907,158,5.187,351,4.055,459,3.49,630,4.003,776,2.535,998,4.807,1032,4.607,1283,5.378,1285,6.203,1286,4.807,1287,6.203]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.717,29,0.866,49,0.92,61,1.036,63,3.942,731,2.909,987,4.024]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[459,3.652,731,3.558,1282,6.122,1288,5.03]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.038,17,1.101,18,1.66,35,0.605,45,2.112,46,2.085,49,1.134,90,1.428,101,2.248,158,3.557,163,2.657,169,2.617,203,1.371,325,2.282,326,2.894,410,3.024,428,2.855,459,2.457,662,1.986,688,2.085,731,4.302,776,1.785,1081,3.558,1098,3.558,1269,4.119,1286,6.083,1289,4.366,1290,4.742]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.986,323,4.147,324,3.881,650,5.127,731,3.12,1096,3.542]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[459,3.652,731,3.558,1282,6.122,1288,5.03]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.98,18,1.993,35,0.485,45,3.799,46,3.751,326,5.205,662,3.573,731,4.305,1291,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.448,5,1.622,9,0.053,723,3.862,841,5.319]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.533,841,5.628,842,6.49,1292,7.049]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.993,4,2.101,5,1.785,9,0.04,17,1.147,18,1.154,24,3.866,29,0.742,35,0.281,49,0.789,119,1.725,153,2.132,176,4.248,381,1.718,435,2.276,465,6.365,562,2.56,615,4.83,841,5.851,1066,4.2,1069,3.708,1293,4.942,1294,4.942,1295,4.942,1296,4.55]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.724,47,2.347,774,3.693,1297,5.786,1298,5.786]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[110,3.559,203,2.435,1297,5.202,1298,5.202,1299,5.99]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.052,9,0.072,11,0.569,16,1.559,17,1.215,18,1.223,24,3.384,29,0.787,30,2.259,35,0.601,39,2.085,176,2.155,203,1.513,213,3.392,258,1.053,345,2.302,789,1.513,919,3.655,1297,9.178,1298,7.846,1300,5.235]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[129,2.216,207,3.304,759,3.492]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.211,129,1.565,258,0.767,259,1.43,759,2.465,891,3.889,1301,5.13]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.328,3,3.745,4,1.437,5,1.61,9,0.082,17,1.534,18,1.544,35,0.626,201,1.703,210,3.066,258,0.911,259,1.697,379,1.817,562,3.424,685,3.18,1302,6.61]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.587,14,0.759,31,1.05,47,1.902,172,2.106,774,2.994,1303,2.488,1304,2.798]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.371,39,2.807,1303,3.247,1304,3.652]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.058,16,2.172,17,1.693,18,1.704,29,1.096,31,1.874,35,0.547,39,2.905,172,2.844,213,4.727,919,5.092,1303,3.36,1304,4.99]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.058,35,0.411,280,3.847,679,4.408]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[258,0.825,259,1.538,679,3.655,680,3.606,1170,3.948,1171,5.515]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.766,18,1.777,35,0.432,54,4.709,64,2.952,80,3.15,112,2.756,258,1.048,264,5.204,280,4.053,679,6.043,799,5.43,1305,7.006]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.672,258,0.851,597,3.825,774,3.427,1306,5.691,1307,5.368]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.054,17,1.564,18,1.574,35,0.66,38,2.384,198,4.807,199,4.702,258,0.928,297,3,387,4.923,802,5.705,1303,3.103,1309,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.448,325,3.796,628,5.92]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.407,61,0.672,325,1.8,623,2.466,628,2.807,662,1.567,981,2.385,1310,3.741,1311,3.741,1312,3.741,1313,3.741,1314,3.741,1315,3.741,1316,1.956]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.043,11,0.587,14,0.759,17,1.252,18,1.26,29,0.811,35,0.307,61,0.97,85,3.85,90,1.625,139,1.683,169,1.657,176,2.221,273,2.874,325,3.761,326,6.527,327,1.972,390,3.248,468,3.556,487,3.248,562,2.795,628,7.561,688,2.372,1316,2.821,1317,5.396]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.242,14,0.869,262,2.771,275,3.542,747,4.637,759,2.735]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.269,262,2.498,747,4.18,751,4.304,1318,5.571,1319,5.571,1320,5.13]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.217,4,1.27,5,1.423,14,1.163,35,0.332,60,1.767,90,1.76,169,2.541,201,1.505,258,1.14,259,1.5,262,4.685,379,1.606,381,2.031,428,3.517,748,4.847,1321,5.38,1322,4.169]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.058,35,0.411,61,1.298,1323,6.274]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1048,4.181,1323,5.202,1324,5.99,1325,4.782,1326,5.99]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.076,17,1.659,18,1.669,29,1.074,35,0.406,49,1.517,119,2.495,153,4.101,158,3.577,925,6.58,1323,9.273,1327,7.146]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.209,477,4.093,651,2.802,1328,6.651]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[169,1.501,256,3.025,768,3.903,1328,4.501,1329,4.245,1330,4.888,1331,4.501,1332,4.888,1333,4.888]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.172,17,1.693,18,1.704,29,1.096,35,0.415,119,2.547,405,4.451,645,6.464,768,5.824,1127,5.824,1331,6.716,1334,7.294,1335,6.716,1336,7.294,1337,7.294]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.05,11,0.672,31,1.202,62,3.02,262,2.771,1338,5.127]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.841,31,1.504,1339,6.415]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.079,17,1.766,18,1.777,31,2.142,35,0.432,64,2.952,80,3.15,171,3.907,1016,3.907,1338,8.215]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.05,11,0.672,63,4.227,774,3.427,1005,4.774,1340,6.181]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.651,680,3.606,1005,4.627,1007,5.515,1008,5.515,1009,5.515]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.199,5,0.92,9,0.073,17,0.877,18,0.882,30,1.63,35,0.215,39,1.504,40,2.414,49,1.459,60,1.803,100,1.133,119,2.082,140,2.244,142,2.447,169,1.831,172,1.473,187,1.777,191,2.489,297,3.292,325,1.817,345,1.661,350,2.19,381,1.313,405,2.304,436,3.28,649,3.544,688,1.661,728,3.133,755,2.489,1005,7.86,1011,3.477,1012,3.477,1014,3.477,1015,3.015,1081,2.833,1341,3.777,1342,3.477,1343,3.777]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.672,16,1.841,29,0.929,31,1.202,774,3.427,1339,5.127]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.606,31,1.084,562,2.886,1200,3.738,1338,4.621,1339,6.636]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.052,29,0.975,31,1.977,35,0.369,64,3.453,65,1.962,80,2.686,171,3.332,261,2.406,262,3.991,339,1.79,412,1.596,435,2.989,659,3.636,1016,3.332,1338,7.385,1339,5.382]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.046,31,1.121,61,1.036,280,3.07,776,2.169,1246,4.213,1344,4.453]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.26,885,4.129,1141,4.859,1344,5.003,1345,6.476]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.071,16,1.514,17,1.18,18,1.188,31,1.456,35,0.289,60,1.537,169,1.561,177,2.326,220,3.986,251,2.342,261,1.885,345,2.236,391,2.41,531,3.102,561,4.218,625,4.218,685,2.446,761,2.545,776,3.687,796,4.561,847,2.326,896,2.984,1143,3.927,1344,7.568]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.058,49,1.153,203,2.088,1346,6.651]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1347,9.594]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.045,11,0.615,35,0.46,42,1.875,61,1.016,127,1.814,129,1.588,164,1.617,201,1.457,204,2.721,302,3.169,339,1.56,352,4.036,399,4.036,528,5.207,537,3.665,562,2.93,832,4.912,1016,2.904,1316,2.956,1346,9.482,1348,4.515,1349,5.655,1350,3.948,1351,5.655,1352,0.84]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.016,49,1.153,319,1.771,1353,4.761]],["keywords//docs/security/using-fail2ban-for-security/",[1353,5.096,1354,7.733,1355,7.12]],["toc//docs/security/using-fail2ban-for-security/",[9,0.043,11,0.578,14,0.747,29,0.798,35,0.569,61,0.955,127,1.704,129,1.492,158,2.66,207,2.226,232,3.566,307,3.502,635,3.119,766,1.898,1107,4.408,1350,3.71,1353,7.007,1355,4.893,1356,5.314,1357,5.314,1358,5.314,1359,5.314,1360,4.893,1361,7.731,1362,4.893,1363,4.616]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.627,47,2.031,49,0.92,320,2.934,774,3.196,1242,5.006,1364,5.307]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.606,809,3.889,812,4.072,1200,3.738,1237,4.304,1365,5.571,1366,5.571]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.056,17,1.626,18,1.636,35,0.398,49,1.496,80,2.9,320,5.38,706,2.102,975,5.81,1242,6.083,1364,9.732,1367,7.004,1368,7.004]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.05,30,2.667,31,1.202,61,1.111,63,4.227,1369,5.368]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.795,31,1.26,56,5.372,138,3.325,1369,5.625]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.094,14,0.896,17,1.479,30,2.749,31,1.239,35,0.362,41,4.546,54,3.942,164,1.822,217,2.935,312,3.786,410,4.062,651,2.471,1081,4.78,1369,9.426]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.046,11,0.627,191,3.799,273,3.07,345,2.535,774,3.196,1370,3.799]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1055,1.345,1200,2.398,1263,3.104,1370,2.355,1371,3.573,1372,2.244,1373,3.573,1374,3.573,1375,3.573,1376,3.573,1377,3.573,1378,3.573,1379,3.104,1380,3.573]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.607,9,0.075,16,1.658,29,1.201,35,0.316,42,1.845,49,0.888,64,2.159,89,1.702,90,1.677,119,1.943,220,2.964,299,4.176,477,5.3,687,2.084,776,3.52,796,2.858,1143,4.3,1321,5.125,1370,6.738]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.058,129,2.029,207,3.025,1381,5.28]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[129,1.159,891,2.882,1382,4.129,1383,4.129,1384,4.129,1385,3.586,1386,4.129,1387,4.129,1388,4.129,1389,4.129,1390,4.129,1391,4.129]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.088,17,1.197,18,1.205,35,0.43,45,2.298,46,2.268,74,2.541,80,2.136,129,1.449,171,3.884,297,2.298,325,2.482,327,1.886,334,2.161,345,2.268,472,2.482,623,3.4,649,3.066,1381,7.21,1392,5.159,1393,6.965,1394,4.279,1395,5.159,1396,5.159,1397,4.48]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.672,89,1.89,651,2.397,762,4.073,774,3.427,1127,4.935]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.651,691,4.627,762,3.948,926,4.181,1127,4.782,1398,5.99]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.061,151,5.015,223,5.106,645,5.106,651,3.842,762,6.527,789,2.2,790,3.718,1127,7.907,1269,6.609,1399,7.609]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[129,2.216,146,4.63,1085,6.299]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.201,127,1.259,129,1.102,139,1.224,256,2.429,319,0.962,325,1.889,623,2.587,1085,3.134,1400,3.925,1401,3.925,1402,3.925,1403,3.925]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.048,29,0.893,35,0.551,42,1.969,90,1.79,318,3.227,325,2.859,326,3.625,350,3.445,435,2.737,487,3.577,558,4.147,623,3.916,994,5.16,1085,7.742,1097,3.577,1404,3.916,1405,5.941,1406,5.941,1407,5.941,1408,5.471,1409,5.941,1410,4.59]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.05,35,0.351,49,0.986,209,3.427,516,4.073,855,4.774]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1411,7.733,1412,7.733,1413,7.733]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.071,17,1.506,18,1.516,35,0.578,47,2.286,65,1.962,176,2.671,209,3.597,282,2.989,516,7.803,799,4.63,855,5.012,1414,5.974,1415,6.488]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.391,129,1.871,207,2.79,265,3.909,1253,5.146]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.157,4,1.211,12,2.836,258,0.767,1253,4.304,1257,4.839,1416,5.571]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.21,9,0.075,12,2.833,14,0.783,17,1.292,18,1.3,32,3.549,33,2.331,35,0.454,49,0.888,176,2.291,217,3.682,258,1.101,280,2.964,559,5.125,603,4.444,939,3.444,1253,7.226,1272,4.068,1417,5.566,1418,5.566,1419,5.566,1420,5.566,1421,5.566]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.063,35,0.448,747,5.92]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[749,7.12,750,6.716,751,5.973]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.059,17,1.147,18,1.154,29,0.742,35,0.549,119,1.725,120,7.543,176,3.978,208,4.152,209,4.843,262,3.286,273,2.632,392,3.526,623,3.257,655,2.215,747,8.111,761,2.473,776,1.86,796,2.537]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.405,35,0.411,349,4.941,527,5.155]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.26,335,4.008,349,4.429,527,4.621,711,3.242]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.959,19,2.179,88,2.948,145,2.103,153,3.379,158,2.068,169,1.964,203,1.194,217,1.903,226,3.803,302,2.315,303,3.191,349,4.376,350,2.395,352,2.948,394,3.803,398,6.251,524,3.588,530,3.099,688,3.443,712,2.034,837,3.019,1000,3.588,1078,3.019,1422,3.588,1423,4.017,1424,4.131,1425,2.455,1426,4.131,1427,3.588,1428,4.131,1429,4.131,1430,4.131,1431,3.803,1432,3.803,1433,4.131,1434,3.427,1435,3.803,1436,4.131,1437,3.803,1438,3.803,1439,4.131,1440,4.131,1441,3.803]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.841,29,0.929,49,0.986,683,4.517,1442,5.368,1443,4.935]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[683,3.572,1281,2.905,1442,4.245,1443,3.903,1444,4.888,1445,4.888,1446,4.888,1447,4.888,1448,4.888]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.058,16,2.16,29,1.09,35,0.492,49,1.383,89,2.218,100,1.462,153,2.103,208,2.761,250,3.764,325,3.49,381,1.694,706,1.462,718,3.891,789,1.409,790,2.381,1016,2.502,1281,2.896,1442,8.911,1443,5.791,1449,4.873,1450,4.873,1451,6.017,1452,6.3]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.053,381,2.315,588,5.319,735,5.526,1453,6.134]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[735,4.32,1454,7.617,1455,5.207,1456,5.207,1457,5.207,1458,5.207,1459,5.207]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.966,9,0.058,11,0.523,14,0.676,35,0.488,38,1.701,46,2.114,49,0.767,119,1.678,142,4.652,164,1.374,169,1.476,185,4.175,210,2.23,236,3.43,275,2.755,289,3.838,339,1.981,381,2.495,659,2.694,706,1.442,735,8.462,799,3.43,1238,3.713,1453,7.912,1460,4.807,1461,4.807,1462,4.807,1463,4.175]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.448,687,2.955,1159,5.294]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.042,35,0.296,89,1.593,499,4.157,636,3.494,687,1.95,776,1.96,1159,3.494]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.056,17,1.626,18,1.636,31,1.362,35,0.533,49,1.496,164,2.681,251,3.226,258,0.965,531,4.274,687,2.623,745,5.81,776,2.636,790,3.422,1159,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.937,89,2.038,382,4.317,949,5.526,1464,5.319]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[382,4.568,926,4.921,949,5.847,1464,5.628]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.742,102,6.726,327,3.277,470,5.023,651,3.477,949,9.112]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.571,9,0.058,129,2.029,207,3.025]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1465,2.87,1466,3.476,1467,3.476,1468,3.612,1469,3.107]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.093,9,0.058,129,2.029,207,3.025]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1466,3.476,1469,3.107,1470,4.354,1471,4.354,1472,4.354]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.703,3,6.561,5,1.472,9,0.048,14,0.85,17,1.403,18,1.412,49,0.965,80,2.502,96,3.025,119,2.11,213,3.916,335,3.74,946,3.983,950,3.74,951,4.513,952,2.727,987,4.219,1066,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[203,2.088,339,1.993,688,3.176,1473,4.14]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[319,1.587,688,3.91,1473,3.711,1474,4.621]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.043,11,0.578,21,3.081,35,0.302,61,0.955,127,1.704,129,1.492,139,1.657,169,1.632,187,2.501,207,2.226,324,3.337,381,3.167,437,3.288,688,2.337,766,1.898,926,3.71,1316,2.778,1473,6.723,1475,5.314,1476,4.616,1477,9.112,1478,4.243]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.672,49,0.986,164,1.767,258,0.851,774,3.427,1184,3.044]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.651,217,2.759,258,0.825,711,2.998,1200,4.019,1479,5.99]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.079,17,1.427,18,1.436,35,0.487,40,3.472,154,4.613,201,1.584,258,1.361,262,4.792,302,3.446,334,2.575,379,1.69,472,2.958,1480,4.292,1481,5.34,1482,4.75]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.627,49,0.92,90,1.736,459,2.986,744,3.567,774,3.196,1483,5.006]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.704,459,3.355,1200,4.346,1483,5.625,1484,6.476]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.07,17,2.029,18,2.042,35,0.497,49,1.395,153,3.772,1483,9.393]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.058,49,1.153,89,2.209,1485,6.274]],["keywords//docs/game-servers/install-teamspeak/",[1237,5.445,1485,6.122,1486,7.049,1487,5.445]],["toc//docs/game-servers/install-teamspeak/",[9,0.056,17,1.626,18,1.636,35,0.398,64,2.717,80,2.9,312,4.162,325,3.37,370,5.592,381,2.434,481,4.616,620,4.998,1485,10.221,1488,7.004]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.248,35,0.379,89,2.038,490,2.357,1489,6.134]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[654,5.171,1490,6.476,1491,5.963,1492,5.625,1493,6.476]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.499,32,6.363,490,3.532]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.05,31,1.202,49,0.986,61,1.111,164,1.767,280,3.292]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.165,61,1.076,217,2.759,711,2.998,885,3.819,886,5.202]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.067,17,1.933,18,1.945,31,2.041,61,1.497,65,2.518,282,4.833,345,3.662]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.328,275,3.303,516,3.799,759,2.551,855,4.453,1494,4.602]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.211,139,1.737,258,0.767,259,1.43,516,3.672,885,3.552,1495,5.13]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.174,35,0.497,169,2.684,201,2.252,379,2.403,759,3.869,1494,6.979]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.021,14,0.714,275,2.911,516,4.93,759,2.248,855,3.924,1353,3.348,1494,4.056]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.063,258,0.673,259,1.255,516,3.221,885,3.117,1353,3.221,1495,4.501,1496,3.903,1497,4.888]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.048,35,0.452,169,2.442,177,3.638,209,4.409,516,6.716,550,6.349,855,6.143,1494,6.349,1498,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.986,61,1.111,164,1.767,258,0.851,280,3.292,1246,4.517]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,258,0.717,689,4.794,690,4.157,711,2.606,1499,5.207,1500,4.157,1501,5.207]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.078,17,1.403,18,1.412,35,0.482,40,3.43,154,4.534,201,1.557,258,1.461,262,4.756,302,3.387,334,2.531,379,1.662,472,2.908,1480,4.219,1481,5.249,1482,4.668]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.298,280,3.847,759,3.197,1246,5.28]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.898,61,0.742,258,0.569,259,1.06,292,2.102,759,1.827,885,2.632,1502,4.129,1503,4.129,1504,3.425,1505,3.801,1506,4.129]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.275,5,1.673,9,0.074,16,2.045,17,1.594,18,1.604,29,1.032,35,0.526,201,1.769,210,3.186,258,1.275,259,1.763,379,1.888,685,3.304]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.558,101,3.424,102,5.42,381,2.511]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.95,851,4.274,911,4.181,916,3.515,1507,5.515,1508,5.515]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.068,35,0.485,74,4.201,101,5.049,377,5.955,916,5.006,1509,6.811,1510,7.854]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.044,89,1.89,101,2.929,102,4.637,381,2.148,911,4.314]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.744,851,3.975,882,4.621,911,3.889,916,3.269,1507,5.13,1508,5.13]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.049,11,0.932,35,0.349,61,1.541,74,3.028,101,4.682,127,2.751,129,2.409,139,1.918,207,2.575,377,4.292,485,3.861,916,3.608,1316,4.484,1509,4.909,1510,5.661,1511,5.308]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.296,61,1.197,63,4.556,464,3.482,1196,3.548]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.084,61,1.001,464,2.912,1197,3.354,1512,3.889,1513,3.447,1514,5.13]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.361,9,0.086,17,1.453,18,1.462,31,1.689,45,2.787,46,2.752,47,2.205,80,2.591,200,3.546,297,2.787,327,2.288,334,2.621,464,3.271,472,4.178,709,4.92,1196,4.625]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.937,89,2.038,90,2.007,163,3.733,1515,5.786]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.703,89,1.409,90,1.387,151,3.035,258,0.634,265,2.703,464,2.408,677,4,1515,4,1516,4.241]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.074,16,2.045,29,1.032,35,0.526,49,1.096,89,2.101,107,3.891,169,2.109,258,0.946,520,3.849,649,4.081,706,2.061,768,5.483,1515,8.037,1516,6.323,1517,5.965]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[911,6.067,1518,7.21]],["keywords//docs/platform/kvm-reference/",[911,4.521,1519,6.476,1520,6.476,1521,6.476,1522,5.625]],["toc//docs/platform/kvm-reference/",[34,4.368,35,0.356,74,3.082,99,3.469,129,1.758,139,1.952,244,3.186,247,3.93,327,2.288,360,4.368,379,1.721,445,3.93,587,3.93,649,3.719,790,3.058,877,5.435,911,4.368,926,4.368,1023,2.636,1316,3.271,1410,4.834,1522,5.435,1523,6.258,1524,4.695]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.571,9,0.058,61,1.298,280,3.847]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.339,4,0.898,5,1.005,61,0.742,139,1.288,256,2.555,885,2.632,1465,2.721,1466,3.296,1467,3.296,1468,3.425,1469,2.946]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.046,11,0.627,31,1.121,35,0.328,62,2.816,259,1.48,1168,2.224]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.371,259,1.81,892,5.289,1168,2.72]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.054,17,1.564,18,1.574,31,1.777,35,0.383,60,2.037,65,2.037,118,5.851,201,1.735,259,2.66,261,2.498,302,3.775,319,1.651,379,1.852,615,4.44,1168,2.6,1525,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.724,31,1.296,259,1.71,774,3.693,1168,2.571]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.606,31,1.084,259,1.43,1168,2.15,1526,5.571,1527,3.269,1528,3.738]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.551,42,1.969,60,1.796,65,1.796,80,2.46,148,5.519,187,2.796,201,1.53,259,1.525,261,2.203,319,1.456,327,2.172,379,1.633,412,1.461,615,3.916,1168,2.293,1423,3.731,1525,3.731,1529,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1161,5.92,1530,7.265,1531,5.63]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.869,751,3.776,1320,4.501,1531,3.488,1532,4.888,1533,4.501,1534,4.888,1535,3.776,1536,4.501]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.036,157,5.974,158,3.248,163,3.636,169,1.992,208,3.676,381,2.255,485,4.074,521,3.906,641,5.635,753,4.63,1108,5.382,1531,7.252,1535,5.012,1537,6.488,1538,5.635,1539,6.488,1540,6.488,1541,6.488,1542,5.974]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.452,799,5.155,1531,5.155,1535,5.58]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.056,751,4.022,759,2.304,1496,4.157,1531,3.716,1535,4.022,1536,4.794,1543,5.207]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.767,4,2.36,9,0.051,16,1.897,29,0.957,35,0.5,64,2.471,201,1.641,237,3.942,258,1.211,259,1.636,327,2.329,379,1.752,952,2.875,1535,4.922,1542,5.866,1544,6.371]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.05,11,0.672,49,0.986,774,3.427,1108,5.127,1531,4.41]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[750,4.245,751,3.776,1211,3.776,1531,3.488,1533,4.501,1545,4.888,1546,4.888,1547,4.888,1548,4.501]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.194,9,0.048,16,1.769,29,0.893,49,1.336,64,2.305,119,2.074,140,3.531,176,3.447,208,3.366,251,2.737,334,2.488,476,2.816,519,5.16,531,3.625,706,1.783,761,2.974,961,4.744,1108,6.946,1531,5.975,1535,4.59,1548,5.471,1549,5.941]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.046,49,0.92,139,1.798,319,1.413,651,2.236,731,2.909,894,3.675]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.606,61,1.001,127,1.787,129,1.565,459,2.886,662,2.333,731,2.812]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.07,29,0.957,35,0.362,49,1.017,90,1.919,119,2.224,139,1.987,141,3.694,145,3.243,158,4.401,351,3.835,525,4.128,651,2.471,731,5.748,789,1.842,1550,6.371,1551,6.371]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.209,1423,4.536,1552,5.155,1553,5.28]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[319,1.587,325,3.116,1554,6.476,1555,6.476,1556,5.625]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.268,19,3.487,273,3.521,435,3.045,558,4.614,688,2.907,968,6.086,994,5.741,1423,6.444,1553,7.5,1557,6.086,1558,6.61,1559,6.61,1560,6.086,1561,6.61,1562,5.741]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.298,280,3.847,1033,3.502,1246,5.28]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1033,3.417,1246,5.152,1563,4.243]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.054,15,4.055,16,2.006,42,2.233,61,1.211,74,3.318,80,2.789,89,2.06,100,2.021,112,2.439,280,3.588,367,4.807,522,4.295,583,4.23,742,4.44,790,3.291,1016,3.459,1033,4.428,1564,5.851]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.627,49,0.92,381,2.004,774,3.196,1281,3.425,1443,4.602,1565,5.764]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1281,5.089,1443,6.837]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.529,9,0.061,35,0.432,49,1.214,80,3.15,99,4.219,107,4.311,112,2.756,119,2.657,578,7.006,649,4.522,1281,4.522,1566,9.904]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.043,11,0.587,49,0.862,774,2.994,1048,3.77,1080,4.691,1567,5.401,1568,4.973]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,809,3.412,1048,3.412,1147,3.776,1200,3.28,1237,3.776,1259,4.501,1569,4.888,1570,4.888]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.054,17,1.564,18,1.574,35,0.383,49,1.458,80,2.789,336,3.554,706,2.021,975,5.588,1080,9,1147,5.204,1568,9.541,1571,6.737,1572,9.133]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.587,61,0.97,74,2.66,99,2.994,562,2.798,847,2.471,916,3.169,1573,3.854]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.566,61,0.936,848,4.022,849,4.022,850,3.907,851,3.716,1574,4.157,1575,4.157]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[839,0.476]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.937,109,4.65,543,3.733,719,5.146,1576,6.662]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.704,61,1.164,109,4.521,543,3.629,719,5.003]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.802,8,2.786,9,0.083,12,2.031,15,2.402,16,1.188,24,2.756,35,0.533,42,1.323,44,5.734,60,1.883,64,1.548,96,1.997,107,3.529,109,5.347,119,2.174,169,1.225,225,2.371,334,1.671,350,2.314,445,2.506,477,2.261,523,3.082,635,2.342,706,1.197,719,7.683,780,3.674,1071,2.729,1081,2.994,1577,3.99,1578,8.654]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.153,61,1.298,207,3.025,1579,6.274]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1281,4.595,1579,6.716]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.085,49,1.7,107,4.833,153,3.681,381,2.965,706,2.56,1579,7.409]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,2.684,368,2.635,686,5.127,1518,5.127,1580,6.181,1581,6.181]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,3.061,368,3.005,1582,7.049,1583,7.049]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,3.616,134,5.589,385,1.202,435,3.836,470,6.438,676,7.669,765,7.669]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.502,129,1.736,207,2.589,766,2.207,1055,2.326,1584,3.261]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[766,2.313,891,4.521,1585,6.476,1586,6.476,1587,4.621]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.634,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.344,129,1.736,766,2.207,1023,2.604,1055,2.326,1584,3.261]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[766,2.313,1025,5.171,1587,4.621,1590,6.476,1591,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.778,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.177,49,0.986,132,2.684,164,1.767,197,4.314,813,5.127]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.566,61,0.936,132,2.261,134,2.773,197,3.635,208,2.95,711,2.606,1592,4.794]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.062,49,1.603,64,3.017,132,4.831,134,4.142,164,2.224,197,7.012,381,2.703,470,4.358]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.724,61,1.197,320,3.391,1593,5.146,1594,6.134]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.704,61,1.164,812,4.733,1595,6.476,1596,6.476]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.049,14,0.864,17,1.427,18,1.436,35,0.349,40,2.489,49,0.981,242,4.75,320,5.028,368,2.621,706,1.845,1081,4.613,1219,5.661,1239,7.898,1271,3.524,1593,7.631,1594,9.095,1597,5.661]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.448,14,0.937,349,4.556,527,4.754,1469,4.754]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.533,1469,5.03,1598,7.049,1599,6.49]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.184,335,4.813,349,5.319,919,5.429,955,6.755,1469,5.55,1600,7.777,1601,7.777,1602,7.777,1603,7.777,1604,7.777,1605,7.777]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.766,1045,7.265,1161,5.92]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.152,1606,7.049,1607,7.049,1608,7.049]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.423,11,0.635,15,4.982,16,2.464,42,1.937,60,1.767,61,1.05,95,6.048,129,2.324,169,1.794,195,4.169,207,2.447,316,4.079,325,2.811,326,3.565,498,4.384,615,3.851,687,2.188,814,5.075,1023,2.461,1609,5.843,1610,5.843,1611,5.843]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.259,258,1.087,335,4.882]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.401,258,0.971,711,3.528,1599,6.49]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[154,5.153,258,0.946,262,4.149,302,3.849,398,5.483,832,5.965,919,4.794,1480,4.794,1481,5.965,1612,6.323,1613,6.868,1614,6.868,1615,6.868,1616,6.868,1617,6.868,1618,6.868,1619,6.868,1620,6.868]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.053,47,2.347,132,2.893,275,3.818,759,2.948]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.704,61,1.164,132,2.812,759,3.935]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.586,9,0.077,29,1.096,35,0.415,64,2.829,132,4.683,134,3.885,258,1.005,381,2.535,470,4.088,652,4.58,706,2.189,759,3.228]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[839,0.476]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.937,49,1.063,203,1.926,527,4.754,550,5.319]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[203,1.872,550,5.171,1621,5.625,1622,5.963,1623,5.171]],["toc//docs/uptime/monitoring/top-htop-iotop/",[177,3.558,290,5.684,334,3.257,368,4.743,389,4.682,550,6.209,741,7.161,742,5.126,1557,7.161,1621,6.755,1622,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.063,60,2.014,164,1.905,316,4.65,1624,5.786]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1624,6.716,1625,7.733,1626,7.733]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.598,35,0.579,64,3.085,169,2.442,289,6.349,368,4.344,381,2.764,388,4.611,1624,8.85]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.266,11,0.627,16,1.717,29,0.866,61,1.036,328,2.535,1088,4.602]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.95,4,1.132,11,0.566,61,0.936,328,2.29,500,3.907,1088,4.157,1627,4.794]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.028,9,0.067,29,1.251,35,0.473,60,2.518,65,2.518,261,3.089,325,4.007,1075,4.667,1088,6.65]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.266,481,5.2,1159,5.294]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[499,7.472,500,4.18,1159,5.367,1627,5.13]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.432,177,3.481,201,1.96,222,5.43,379,2.092,584,6.609,643,6.312,684,4.053,887,5.561,1159,7.388,1628,4.709,1629,7.609]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.053,138,3.421,282,3.069,898,5.526,1084,4.869]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[138,3.076,898,4.969,1630,5.202,1631,4.782,1632,4.782,1633,4.969]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.745,9,0.05,35,0.356,60,2.625,138,3.213,220,3.333,282,2.883,454,5.191,477,3.546,764,5.762,898,7.203,1084,6.346,1538,8.661,1634,8.683,1635,6.258,1636,6.258,1637,6.258]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.053,35,0.379,61,1.197,207,2.79,564,5.526]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.885,1638,8.563]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.042,29,0.787,35,0.435,64,2.031,96,3.828,99,2.903,169,2.774,187,3.598,203,1.513,232,3.513,326,3.194,360,3.655,404,6.795,537,3.392,564,8.766,613,4.82,706,1.571,766,1.87,837,3.826,896,3.072,1350,3.655,1435,4.82,1639,4.82]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.058,61,1.298,1281,4.293,1640,6.274]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,885,3.117,886,4.245,1246,3.572,1281,2.905,1563,2.943,1640,4.245,1641,4.245,1642,3.412]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.08,17,1.805,18,1.817,35,0.442,49,1.241,80,3.22,90,2.343,325,3.742,706,2.334,789,2.248,1281,4.622,1640,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.063,61,1.418,1643,6.095]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1281,4.595,1643,5.973]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.087,35,0.497,476,4.143,706,2.623,744,5.409,1281,5.195,1643,6.753]],["deprecated//docs/game-servers/multicraft-on-debian/",[839,0.476]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.063,11,0.858,1643,6.095]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.841,1281,4.595,1643,5.973]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.087,35,0.497,476,4.143,706,2.623,744,5.409,1281,5.195,1643,6.753]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.038,11,0.521,49,0.765,61,0.862,89,1.467,324,3.011,905,3.505,1103,4.165,1644,4.165,1645,4.415]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1644,6.716,1645,7.12,1646,7.733]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.072,14,1.26,35,0.509,112,3.246,339,2.473,1644,9.54]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[110,4.689,292,4.016,762,5.2]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.849,110,5.284,356,4.196,1647,5.963]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.423,110,4.835,176,4.256,259,2.089,324,6.492,762,5.362,796,4.178,1592,7.491,1648,5.362]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[110,4.689,543,4.421,762,5.2]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.559,110,5.005,356,3.881,543,3.357,1647,5.515]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.969,28,5.278,107,3.745,110,6.856,176,3.712,324,5.662,762,7.603,796,3.394,1203,5.741,1207,5.106,1649,6.61]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.42,406,5.58,1033,3.502,1650,6.651]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.572,127,1.568,129,1.373,319,1.198,406,3.776,866,3.667,1033,2.37]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.073,11,0.993,60,2.037,61,1.641,103,5.851,127,2.16,129,2.565,140,4.003,207,2.821,1016,3.459,1023,2.838,1033,3.266,1272,4.923,1650,6.203,1651,6.737,1652,6.737]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.672,16,1.841,29,0.929,49,0.986,61,1.111,1281,3.673]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.841,61,1.39,1281,4.595]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.07,49,1.395,153,3.772,381,3.038,706,2.623,1281,6.979]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.858,759,3.492,774,4.374]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.132,258,0.717,259,1.337,1200,3.494,1653,4.794,1654,5.207,1655,5.207,1656,4.022]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.497,4,2.123,5,1.814,9,0.078,17,1.729,18,1.74,35,0.619,201,1.919,258,1.026,259,1.912,379,2.048]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[129,2.029,207,3.025,1482,5.58,1657,7.224]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[129,2.172,891,5.398,1658,7.733]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.048,14,0.85,17,1.403,18,1.412,35,0.343,40,3.43,49,1.562,95,4.417,100,1.813,169,1.856,312,3.591,581,5.013,706,1.813,1081,6.358,1482,7.56,1659,9.787,1660,6.043,1661,6.043]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.448,194,5.508,490,2.792]],["keywords//docs/networking/dns/common-dns-configurations/",[1492,6.716,1662,7.12,1663,7.12]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.831,29,0.924,35,0.349,42,2.038,49,1.369,189,4.444,201,1.584,231,3.984,235,4.292,391,4.682,489,3.752,490,2.176,491,4.613,766,2.196,767,2.606,1562,5.34,1664,5.661,1665,4.909,1666,4.909]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.058,31,1.405,61,1.298,197,5.043]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,292,2.488,1667,3.903,1668,4.245,1669,4.888,1670,4.888,1671,4.245,1672,4.888,1673,4.888]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.936,9,0.077,31,1.419,35,0.415,49,1.164,113,6.335,164,2.086,169,2.958,187,3.432,197,5.092,307,4.807,371,6.716,1674,7.294]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.05,139,1.928,317,4.935,662,2.589,1675,5.368,1676,5.368]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[317,5.628,662,2.952,918,5.628,1675,6.122]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.052,11,0.705,14,0.912,49,1.421,60,1.962,61,1.166,139,2.024,158,4.456,334,2.717,1272,6.507,1316,3.392,1423,4.074,1511,4.015,1675,7.732,1677,6.488,1678,5.382,1679,5.974,1680,6.488]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[201,1.861,522,4.606,543,4.048,1087,5.28]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.408,500,4.859,543,3.629,1075,3.629,1681,5.963]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.155,5,1.4,9,0.066,16,1.712,29,0.863,35,0.623,65,1.738,119,2.007,209,4.535,258,0.792,261,2.131,273,3.061,543,3.221,706,1.725,789,1.662,1075,5.336,1159,3.857,1517,4.992,1682,4.312,1683,4.992,1684,5.748]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.344,5,1.505,35,0.351,209,4.773,1075,3.463]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[500,5.289,1075,3.95,1681,6.49,1685,7.049]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.497,4,2.123,5,1.814,9,0.06,35,0.555,119,2.6,209,5.415,273,3.967,1075,6.106,1682,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.07,197,6.067]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[292,3.588,1667,5.628,1668,6.122,1686,6.49]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.056,65,2.835,90,3.184,140,4.162,171,3.597,208,5.313,345,3.08,554,6.083,620,4.998,686,5.81,728,5.81,1687,7.004,1688,7.004,1689,7.004]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.05,129,1.736,207,2.589,275,3.542,1168,2.385,1177,3.146]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.084,129,1.565,139,1.737,259,1.43,1168,2.15,1177,2.836,1690,2.621]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.07,29,0.957,31,2.111,35,0.572,41,4.546,42,2.112,47,2.244,80,2.638,201,1.641,259,2.257,379,1.752,412,1.567,1168,3.393,1691,4.78]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[662,3.64,931,6.939]],["keywords//docs/platform/network-helper/",[562,2.886,635,3.269,654,4.448,662,3.35,1692,5.571,1693,5.571]],["toc//docs/platform/network-helper/",[11,0.668,29,0.924,35,0.349,61,1.105,103,5.34,127,1.972,129,1.727,169,1.888,299,4.613,381,2.137,404,4.205,525,3.984,662,3.592,931,6.848,1272,6.269,1316,3.214,1414,5.661,1438,5.661,1511,3.805,1678,5.101,1694,5.34,1695,6.149]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.876,61,0.97,207,2.262,262,2.421,562,2.798,679,3.295,1207,4.172,1696,4.312]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,543,2.918,679,3.177,680,3.135,681,3.806,1170,3.432,1696,4.157,1697,4.794]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.061,9,0.076,20,4.194,45,3.183,46,3.142,89,2.186,262,3.204,544,3.806,679,4.361,706,2.144,1207,5.52,1696,9.085]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.046,14,0.81,61,1.036,207,2.414,562,2.986,679,3.517,1696,4.602]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,543,2.918,562,2.698,679,3.177,680,3.135,681,3.806,1170,3.432,1697,4.794]],["toc//docs/websites/cms/drush-drupal/",[0,1.101,9,0.074,14,0.77,29,0.823,49,1.262,119,2.76,136,4.005,138,2.814,169,1.682,177,2.507,292,2.789,319,1.343,334,2.295,405,4.823,544,2.918,679,3.343,706,1.644,837,4.005,1015,6.311,1272,4.005,1480,3.825,1696,8.104,1698,5.48]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[129,1.871,207,2.79,258,0.918,687,2.495,776,2.507]],["keywords//docs/security/ssl/ssl-apache2-centos/",[127,1.67,258,0.717,687,1.95,1699,3.561,1700,4.794,1701,4.523,1702,5.207,1703,3.432]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.98,18,1.993,35,0.605,60,2.579,258,1.175,687,3.194,776,3.21]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.672,61,1.111,258,0.851,562,3.202,687,2.314,776,2.326]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.566,61,0.936,258,0.717,687,1.95,711,2.606,1699,3.561,1704,4.794,1705,4.794]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.98,18,1.993,35,0.605,60,2.579,258,1.175,687,3.194,776,3.21]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.785,774,4.005,1033,3.502,1184,3.558]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.841,1033,3.749,1200,5.189]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.054,11,0.993,15,4.055,16,2.006,42,2.233,74,3.318,89,2.06,100,2.021,112,2.439,522,4.295,583,4.23,977,5.588,1016,3.459,1033,5.024,1184,3.318,1185,5.588,1706,2.907]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[839,0.476]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.046,31,1.121,61,1.036,207,2.414,776,2.169,1344,4.453,1563,3.47]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.896,1141,3.455,1143,3.558,1344,3.558,1563,2.773,1642,3.215,1671,4,1707,4.606,1708,4.241,1709,3.82]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.059,16,1.493,31,1.441,60,1.515,61,0.901,65,1.515,89,1.533,169,1.539,176,2.063,177,2.293,220,3.944,251,2.309,261,1.859,282,2.309,345,2.204,391,2.376,531,3.058,561,4.158,625,4.158,685,2.411,706,1.504,761,2.509,776,3.661,796,4.523,896,2.941,1143,3.872,1344,7.516]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1028,3.823]],["title//docs/websites/cms/cms-overview/",[90,2.176,339,1.993,712,3.558,887,5.28]],["keywords//docs/websites/cms/cms-overview/",[543,3.122,562,2.886,679,3.399,680,3.354,681,4.072,1170,3.672,1710,5.13]],["toc//docs/websites/cms/cms-overview/",[45,3.389,46,3.346,89,2.327,90,2.292,339,2.099,543,5.55,641,6.609,679,6.043,681,7.238,712,3.747,1207,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[410,5.031,1711,6.853,1712,7.265]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.566,61,0.936,86,3.806,127,1.67,129,1.462,319,1.276,1711,4.523,1712,4.794]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.39,60,2.161,258,1.309,410,6.059,497,5.52,731,3.607,1055,2.689,1057,5.223,1584,3.77,1711,9.273,1713,7.146,1714,6.58,1715,7.146]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[169,2.423,1032,5.396,1716,6.095]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1716,4.627,1717,4.782,1718,5.515,1719,4.494,1720,5.515,1721,5.515]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.076,14,1.328,706,2.834,1716,8.758]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.046,11,0.627,62,2.816,262,2.584,476,2.732,744,3.567,1722,5.006]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[476,3.341,744,4.362,1722,6.122,1723,7.049]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.077,17,1.356,18,1.365,35,0.332,90,1.76,169,1.794,250,4.514,262,4.308,412,1.437,476,2.769,655,2.62,688,2.569,744,3.616,1016,3,1272,4.27,1665,4.665,1666,4.665,1722,9.949,1724,4.847]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.046,11,0.627,49,0.92,191,3.799,345,2.535,767,2.443,1725,5.006]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[766,2.762,767,3.277,1725,6.716]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.043,49,0.861,60,1.631,119,1.884,121,4.837,176,2.221,258,0.743,336,2.847,377,3.766,381,1.875,393,3.766,489,3.292,706,1.619,767,2.287,776,2.942,946,3.556,971,4.048,1261,7.1,1262,7.338,1489,8.463,1725,4.686,1726,4.476,1727,5.396,1728,5.396,1729,5.396]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.42,866,5.42,1033,3.502,1730,6.651]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.572,127,1.568,129,1.373,319,1.198,866,3.667,1033,2.37,1730,4.501]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.04,11,0.545,61,0.901,73,3.76,127,1.607,129,1.408,139,1.563,866,7.789,1016,2.573,1033,2.43,1316,2.62,1511,3.101,1678,4.158,1694,4.353,1731,10.381,1732,10.381,1733,5.012,1734,5.012,1735,5.012,1736,5.012,1737,5.012,1738,5.012,1739,5.012,1740,5.012,1741,5.012,1742,5.012]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.658,470,4.87]],["keywords//docs/platform/linode-images/",[470,4.799,1743,8.563]],["toc//docs/platform/linode-images/",[47,3.158,90,2.7,470,6.655,1478,7.157,1744,8.964]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.344,31,1.202,61,1.111,207,2.589,1563,3.721,1745,5.368]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.533,31,1.371,1642,4.921,1745,6.122]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.586,9,0.077,14,1.025,31,1.874,35,0.415,47,2.57,65,2.205,112,2.641,261,2.705,435,3.36,706,2.189,1745,9.367]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.05,11,0.672,774,3.427,1210,4.774,1306,5.691,1307,5.368]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.132,30,2.247,31,1.013,138,2.674,464,2.722,1197,3.135,1210,4.022,1211,4.022]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.447,9,0.078,16,1.769,29,0.893,30,2.564,31,1.156,47,2.093,65,1.796,112,2.152,191,3.916,201,1.53,261,2.203,297,2.646,319,1.456,339,2.31,379,1.633,429,4.744,464,3.106,659,3.329,1210,8.575]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.937,650,5.526,1060,5.526,1487,5.146,1746,5.786]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1487,5.003,1746,5.625,1747,4.521,1748,5.625,1749,5.625]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.047,11,0.406,14,0.831,17,0.867,18,0.873,29,0.889,35,0.212,43,2.166,49,0.596,61,0.671,107,2.117,127,1.198,129,1.049,139,1.165,141,3.429,143,3.44,144,3.44,145,1.902,153,1.612,351,3.56,368,1.593,381,1.299,445,2.346,468,3.898,520,2.094,531,2.28,562,1.936,630,3.515,651,1.449,673,3.1,684,1.99,685,1.798,718,2.983,742,2.463,1058,2.983,1271,2.141,1316,1.953,1746,8.801,1747,2.608,1750,2.556,1751,3.44,1752,3.737,1753,5.446,1754,3.737,1755,5.446,1756,3.737,1757,3.737]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.058,61,1.298,345,3.176,1758,6.274]],["keywords//docs/applications/messaging/install-znc-debian/",[1758,5.625,1759,6.476,1760,6.476,1761,6.476,1762,6.476]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.06,17,1.729,18,1.74,35,0.423,153,3.214,158,3.728,237,4.609,334,3.119,687,2.789,776,2.803,796,3.825,1758,8.482,1763,7.448,1764,7.448]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.016,200,4.093,762,4.761,766,2.58]],["keywords//docs/email/using-google-apps-for-email/",[1765,7.733,1766,7.733,1767,7.733]],["toc//docs/email/using-google-apps-for-email/",[0,1.849,391,4.36,489,5.613,896,5.398,1015,7.344,1726,7.63]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.411,139,2.253,635,4.239,1425,4.293]],["keywords//docs/networking/linux-static-ip-configuration/",[225,4.595,654,6.174,1425,4.595]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.338,60,1.796,61,1.068,127,1.905,129,2.352,134,3.164,139,1.853,153,2.564,207,2.488,225,3.531,385,0.857,410,3.788,445,3.731,662,2.488,761,2.974,928,4.24,931,4.744,1023,2.503,1316,3.106,1363,5.16,1425,3.531,1511,3.677,1678,4.929,1768,5.941]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.627,42,1.911,47,2.031,1325,4.602,1381,4.213,1706,2.488,1769,4.453]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[258,0.634,259,1.182,916,2.703,1325,3.677,1381,3.366,1385,4,1496,3.677,1769,3.558,1770,3.035,1771,4.606]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.686,9,0.084,16,1.375,29,0.694,35,0.57,64,1.791,65,1.396,74,2.274,100,1.386,119,1.612,249,3.295,261,1.713,262,2.07,273,2.459,275,2.646,339,1.274,370,3.687,525,2.992,535,3.687,706,1.386,759,2.044,762,3.043,790,2.256,896,2.71,916,2.71,1381,5.092,1769,6.48,1772,4.618,1773,4.252,1774,4.618]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.97,207,2.262,258,0.744,259,1.386,381,1.877,1245,4.48,1563,3.251,1775,4.48]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[258,0.892,259,1.663,1079,5.625,1168,2.499,1250,5.963]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.064,35,0.579,258,1.096,259,2.886,334,3.331,508,6.143,1245,8.453,1775,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.774,16,1.984,29,1.001,61,1.197,63,4.556]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.669,4,1.408,5,1.577,61,1.164,1514,5.963]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.823,9,0.055,14,0.966,35,0.39,49,1.096,119,2.398,153,2.964,204,3.304,319,1.683,335,4.25,950,4.25,951,3.658,952,3.1,1776,6.868]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.053,35,0.379,61,1.197,844,5.146,1777,6.662]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.533,61,1.267,844,5.445,1329,6.122]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.811,9,0.084,35,0.596,385,1.202,706,2.499,844,8.106,1352,1.237]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.307,43,3.131,49,0.862,767,2.289,1055,2.032,1057,3.947,1648,3.559]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[766,2.313,767,2.744,1055,2.437,1057,4.733,1642,4.521]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.356,9,0.045,19,2.937,29,1.201,35,0.532,49,0.888,60,1.683,100,1.67,169,1.709,200,3.154,319,1.364,485,3.495,706,1.67,762,3.668,952,3.608,1055,3.52,1056,4.617,1057,4.068,1058,4.444,1059,5.125,1060,4.617,1161,4.176,1778,4.3,1779,5.566,1780,5.566]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.063,35,0.448,1781,6.853]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.566,61,0.936,127,1.67,129,1.462,179,3.222,599,4.794,1329,4.523,1781,4.523]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.076,35,0.537,60,2.856,683,6.903,1781,8.203]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.281,139,2.078,718,5.319,1782,5.786,1783,5.526]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[244,3.297,1524,4.859,1784,6.476,1785,6.476,1786,6.476]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.865,61,1.429,74,3.917,127,2.55,129,2.233,139,2.48,718,6.349,1316,4.157,1511,4.921,1525,4.994,1782,6.907,1783,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1028,3.823]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.153,127,2.317,759,3.197,1787,6.651]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[127,1.921,759,2.651,1788,5.99,1789,4.378,1790,4.494,1791,5.99]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[839,0.476]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.763,381,2.004,630,3.425,789,1.666,1097,3.47,1464,4.602]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,655,2.498,885,3.552,1792,4.621,1793,5.571,1794,5.13,1795,5.13]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.083,60,2.46,89,2.489,139,2.537,141,4.717,145,4.142,153,3.511,158,4.073,1792,8.577]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.587,89,1.652,381,1.877,630,3.209,789,1.561,1097,3.251,1464,4.312,1706,2.331]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.651,655,2.685,1770,3.948,1792,4.969,1794,5.515,1795,5.515]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.083,60,2.46,89,2.489,139,2.537,141,4.717,145,4.142,153,3.511,158,4.073,1792,8.577]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[839,0.476]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.672,14,0.869,68,4.517,424,4.517,1101,4.637,1706,2.667]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.766,421,6.122,424,5.152,1706,3.042]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.047,35,0.332,49,0.933,68,7.023,80,2.419,89,1.787,139,2.581,141,4.798,145,4.213,153,3.571,319,1.432,351,4.982,424,8.062,630,4.918,632,4.27,649,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.242,29,0.929,129,1.736,707,2.929,1075,3.463,1796,5.368]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.158,29,0.866,61,1.036,207,2.414,707,2.732,1075,3.23,1563,3.47]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.158,11,0.627,29,0.866,707,2.732,1075,3.23,1706,2.488,1801,2.96]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.42,86,5.28,1288,5.155,1802,6.651]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.566,61,0.936,86,3.806,127,1.67,129,1.462,319,1.276,1288,3.716,1802,4.794]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.064,11,0.865,46,3.497,61,1.429,86,5.812,127,2.55,129,2.233,140,4.726,177,3.638,319,1.949,776,2.993,1803,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.053,11,0.724,767,2.823,981,4.248,1706,2.875]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,1.001,11,0.501,494,3.558,766,1.645,767,1.952,1055,1.733,1379,4,1584,2.43,1706,1.987,1804,2.85]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.061,29,1.143,35,0.432,60,2.994,327,2.782,334,3.187,359,5.43,494,7.65,706,2.283,1379,6.609,1804,6.128]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[839,0.476]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.811,100,1.621,201,1.391,258,1.078,379,1.485,1305,4.973,1805,5.401]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.501,61,0.828,100,1.382,127,1.477,129,1.293,1033,2.233,1316,2.408,1505,4.241,1511,2.85,1806,4.606]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.273,35,0.343,61,1.086,100,2.543,101,2.864,201,2.183,216,3.983,249,4.312,258,0.833,262,2.709,303,4.668,379,2.33,405,3.687,468,3.983,620,4.312,684,3.219,879,4.668,1033,2.93,1799,5.013,1807,5.564]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.158,14,0.81,33,2.414,129,1.619,217,2.655,1796,5.006,1808,4.453]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.712,129,1.819,217,2.983,1796,5.625,1808,5.003]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.064,33,3.331,35,0.452,38,2.814,217,3.663,323,5.336,336,4.196,487,4.788,659,4.457,1808,7.871,1809,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.158,11,0.627,14,0.81,33,2.414,217,2.655,1706,2.488,1808,4.453]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.651,33,2.509,217,2.759,562,3.103,1706,2.585,1808,4.627]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.064,33,3.331,35,0.452,38,2.814,217,3.663,323,5.336,336,4.196,487,4.788,659,4.457,1808,7.871,1809,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[839,0.476]],["title//docs/platform/billing-and-payments/",[1035,6.352,1037,6.521]],["keywords//docs/platform/billing-and-payments/",[1035,6.258,1037,6.425]],["toc//docs/platform/billing-and-payments/",[2,2.366,22,2.711,42,2.243,84,3.334,89,2.506,100,1.333,155,3.686,177,2.033,201,1.144,256,2.749,385,0.976,390,2.675,411,2.413,435,2.047,477,2.517,498,3.334,620,3.171,651,1.723,758,5.876,1032,4.628,1034,3.859,1035,6.695,1037,5.076,1087,3.247,1120,3.859,1352,0.66,1724,3.686,1810,4.443,1811,4.443,1812,3.432,1813,4.091,1814,4.443,1815,3.432,1816,3.859,1817,5.876,1818,3.686]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.556,254,5.526,645,4.47,1819,5.786]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1819,7.437,1820,8.563]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.398,49,1.496,158,4.693,169,2.151,334,3.927,339,1.932,487,4.217,659,5.254,662,2.933,706,2.102,1819,9.18]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.717,29,0.866,89,1.763,600,5.307,655,2.584,1096,3.303,1821,5.764]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.712,1096,5.095,1822,5.963,1823,6.476]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.316,29,1.168,49,1.241,139,2.425,141,4.509,145,3.959,351,4.682,409,5.835,429,6.209,630,4.622,706,2.334,1525,4.884,1822,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.628,506,6.939]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.478,89,1.495,129,1.373,281,3.776,282,2.252,506,3.903,1824,4.501]],["toc//docs/platform/package-mirrors/",[11,0.865,29,1.781,61,1.429,65,2.405,129,2.233,339,3.102,506,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.202,61,1.111,207,2.589,464,3.231,1196,3.292,1563,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.554,9,0.086,29,1.074,31,1.848,65,2.161,80,2.959,261,2.65,327,2.612,334,2.993,412,1.757,472,4.572,709,5.384]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.878,9,0.041,31,0.988,61,0.913,139,1.584,259,1.304,275,2.911,280,2.706,1177,2.586]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.586,5,1.776,9,0.077,17,1.693,18,1.704,31,1.419,35,0.415,47,2.57,49,1.721,164,2.086,259,1.873,360,5.092,1168,2.815]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.063,61,1.197,207,2.79,1177,3.391,1563,4.01]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.493,5,1.673,9,0.084,29,1.032,31,1.8,35,0.39,47,2.419,49,1.477,164,1.964,201,1.769,259,1.763,379,1.888,412,1.689,706,2.061,1168,2.65]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.991,481,4.761,829,4.536,1077,5.58]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.704,61,1.164,562,3.355,829,4.067,1077,5.003]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.886,18,0.892,35,0.555,41,2.724,60,1.154,89,1.168,92,3.316,99,2.116,164,1.092,222,4.292,232,2.562,323,2.562,325,1.837,326,2.329,334,1.599,404,2.611,487,2.298,522,2.434,712,2.962,829,6.648,1077,8.415,1078,4.396,1087,2.79,1348,3.048,1827,3.817,1828,4.99,1829,3.167,1830,3.817,1831,3.817,1832,3.817,1833,4.396,1834,3.316,1835,3.817]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[129,1.871,203,1.926,1023,2.806,1055,2.507,1836,5.786]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[203,2.038,1055,2.653,1372,4.426,1836,6.122]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.068,21,4.946,60,2.579,290,6.234,313,6.589,577,7.076,706,2.56,1836,7.409,1837,6.087]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.627,31,1.121,464,3.013,1184,2.839,1196,3.07,1706,2.488,1801,2.96]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.654,9,0.079,17,1.766,18,1.777,31,1.926,80,3.15,327,2.782,334,3.187,472,4.765,709,5.611]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.053,35,0.379,129,1.871,1023,2.806,1838,3.482]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.533,129,1.98,233,5.03,1838,3.685]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.083,17,1.889,18,1.901,35,0.462,60,2.46,322,5.68,687,3.047,1838,5.941]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[132,4.2]],["keywords//docs/applications/containers/what-is-docker/",[11,0.704,129,1.819,132,2.812,134,3.449,1706,2.795]],["toc//docs/applications/containers/what-is-docker/",[9,0.06,11,0.81,31,1.449,129,2.092,132,3.234,198,5.315,199,5.199,307,4.909,385,1.075,840,5.444,1023,3.138,1352,1.106,1706,3.214,1839,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[839,0.476]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.053,31,1.296,61,1.197,207,2.79,1563,4.01]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.013,61,0.936,217,2.399,711,2.606,1641,4.523,1642,3.635,1671,4.523,1840,5.207]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.215,9,0.078,29,0.908,31,2.063,40,2.446,61,1.086,64,2.344,90,1.82,100,1.813,101,2.864,203,1.747,282,2.784,319,1.481,345,2.657,412,1.486,706,1.813,789,1.747,847,3.877,1038,2.286,1841,3.131]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,1787,5.691]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1842,7.733,1843,5.973,1844,6.415]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.494,9,0.058,14,1.025,35,0.547,335,4.514,339,2.012,385,1.052,950,4.514,951,3.885,952,3.292,1352,1.083,1682,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[839,0.476]],["title//docs/platform/api/api-key/",[151,5.728,251,4.003]],["keywords//docs/platform/api/api-key/",[251,3.562,1845,7.733,1846,7.12]],["toc//docs/platform/api/api-key/",[390,6.183,761,5.141]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.658,482,6.202]],["keywords//docs/platform/linode-cli/",[1846,6.49,1847,7.049,1848,7.049,1849,7.049]],["toc//docs/platform/linode-cli/",[9,0.06,11,0.814,14,0.715,61,1.345,89,1.555,100,1.526,119,1.775,127,1.631,139,1.586,141,4.34,151,3.351,189,2.634,251,2.342,334,3.72,351,4.506,391,2.41,437,3.146,477,2.881,482,6.338,539,4.218,630,4.448,659,2.849,1159,3.412,1807,4.681,1850,5.084,1851,5.084,1852,5.084]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.571,9,0.058,129,2.029,1023,3.043]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1465,2.87,1466,3.476,1467,3.476,1468,3.612,1469,3.107]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.703,4,2.518,5,1.472,9,0.048,14,0.85,17,1.403,18,1.412,49,0.965,80,2.502,96,3.025,119,2.11,213,3.916,335,3.74,946,3.983,950,3.74,951,4.513,952,2.727,987,4.219,1066,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[250,5.58,292,3.677,490,2.556,1853,6.651]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[292,3.936,490,2.736,1853,7.12]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.161,100,2.144,139,2.229,141,4.143,145,3.638,169,3.278,201,2.75,225,4.247,351,4.302,630,4.247,635,4.194,652,5.967]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.571,9,0.058,61,1.298,207,3.025]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.224,4,0.853,5,0.956,61,0.705,139,1.224,256,2.429,1465,2.587,1466,3.134,1467,3.134,1468,3.256,1469,2.801,1641,3.409,1642,2.74]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.05,11,0.672,61,1.111,62,3.02,280,3.292,1854,4.41]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.606,61,1.001,885,3.552,1854,3.975,1855,5.571,1856,4.839,1857,5.571]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.058,61,1.298,207,3.025,1854,5.155]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1642,4.921,1854,5.03,1856,6.122]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[839,0.476]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.058,11,0.785,1706,3.117,1854,5.155]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.766,1706,3.042,1854,5.03,1856,6.122]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[129,1.736,258,0.851,259,1.587,381,2.148,1023,2.604,1248,3.427]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[217,2.399,258,0.717,259,1.337,1248,2.887,1690,2.45,1858,3.561,1859,3.561,1860,4.523]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.068,17,1.98,18,1.993,35,0.485,258,1.467,259,2.734,1248,4.729]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,207,2.414,258,0.794,259,1.48,381,2.004,1248,3.196,1563,3.47]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[258,0.767,259,1.43,1248,3.089,1690,2.621,1858,3.81,1859,3.81,1860,4.839]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.064,17,1.846,18,1.858,35,0.452,258,1.404,259,2.616,327,2.907,1248,4.409,1861,5.967,1862,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[839,0.476]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.448,9,0.053,61,1.197,207,2.79,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.211,61,1.001,233,3.975,1838,2.912,1863,4.621,1864,4.621,1865,4.621]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.053,35,0.379,61,1.197,280,3.548,1838,3.482]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,1.001,61,0.828,233,3.286,259,1.182,885,2.937,1838,2.408,1863,3.82,1864,3.82,1865,3.82,1866,4.606]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.153,127,2.317,759,3.197,1867,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1789,5.152,1790,5.289,1868,7.049,1869,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.063,129,1.871,164,1.905,258,0.918,1023,2.806]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[129,1.682,258,0.825,1025,4.782,1703,3.948,1870,3.881,1871,5.515]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.086,17,1.659,18,1.669,35,0.406,40,3.847,201,1.841,258,1.568,262,3.204,379,1.965,472,3.438,1482,5.52]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.715,200,4.47,920,5.396]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.681,51,4.595,920,5.289]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.768,5,1.632,9,0.035,11,0.477,22,2.677,35,0.462,51,2.607,61,0.788,85,3.131,101,2.08,153,3.928,244,2.234,302,2.459,312,3.982,385,0.633,411,2.383,437,2.715,790,2.144,829,2.755,1043,3.503,1069,6.1,1283,3.503,1286,3.131,1434,3.64,1451,7.55,1872,4.04,1873,3.811,1874,4.388,1875,4.388,1876,3.503,1877,3.64,1878,4.04,1879,4.388,1880,3.64]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.535,200,4.47,920,5.396]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.371,51,4.189,920,4.821,1881,7.049]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.042,11,0.569,22,3.194,31,1.757,35,0.435,49,0.836,51,3.111,61,0.941,85,5.457,101,2.481,153,2.259,220,2.788,244,2.665,302,2.934,312,3.111,398,4.18,411,2.843,437,3.24,638,5.457,651,2.031,790,2.558,1283,4.18,1434,4.343,1451,4.343,1876,4.18,1877,4.343,1880,4.343,1882,4.547,1883,4.547,1884,4.343]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[200,4.47,258,1.087,920,5.396]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.189,258,0.971,920,4.821,1885,7.049]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.037,11,0.509,22,2.855,35,0.4,49,0.747,51,2.781,61,0.841,85,5.021,101,2.218,215,2.492,220,2.492,244,2.382,258,1.165,302,2.622,312,2.781,327,1.711,398,3.736,411,2.541,437,2.895,638,3.339,651,1.815,790,2.286,1283,3.736,1434,5.837,1451,3.882,1612,4.308,1714,4.308,1872,4.308,1876,3.736,1877,3.882,1878,4.308,1880,3.882,1882,4.064,1883,4.064,1884,3.882,1886,4.679,1887,4.064,1888,4.679]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.259,759,3.492,1511,4.882]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[759,3.422,1511,4.785,1889,7.12]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.655,49,1.336,164,1.699,201,1.53,258,0.819,259,1.525,379,1.633,412,1.461,1890,5.16]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[839,0.476]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.209,201,1.861,254,5.993,1524,5.42]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1524,5.802,1891,7.733,1892,7.733]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.05,15,3.767,16,1.864,17,1.453,18,1.462,38,2.215,45,2.787,46,2.752,49,0.999,89,1.914,112,2.266,164,1.789,275,3.586,292,4.42,391,4.116,586,7.203,685,3.011,759,2.769,766,2.235,1628,3.872,1828,5.191]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.063,61,1.197,207,2.79,759,2.948,1563,4.01]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.947,61,0.782,258,0.6,259,1.118,759,1.927,1504,3.612,1642,3.039,1789,3.182,1893,4.354,1894,3.782,1895,4.354]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.436,4,2.066,5,1.74,9,0.076,17,1.659,18,1.669,35,0.607,201,1.841,210,3.315,258,0.985,259,1.835,379,1.965,685,3.438]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.053,139,2.078,275,3.818,759,2.948,1316,3.482]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.898,258,0.569,259,1.06,759,1.827,1316,2.158,1496,3.296,1896,4.129,1897,4.129,1898,4.129,1899,4.129,1900,4.129,1901,3.586]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.215,4,1.843,5,1.472,9,0.078,17,1.403,18,1.412,35,0.556,49,0.965,139,2.643,176,2.488,201,1.557,210,2.803,258,1.167,259,2.175,379,1.662,685,2.908,759,2.674,1316,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.785,89,2.209,1281,4.293,1706,3.117]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.766,1281,4.189,1706,3.042,1902,6.49]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.07,16,1.897,29,0.957,35,0.572,49,1.017,100,1.912,112,2.307,158,3.189,169,1.956,187,2.998,273,3.393,339,1.758,385,0.919,937,5.087,939,3.942,1281,5.982,1352,0.946,1903,6.371]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[839,0.476]],["title//docs/development/version-control/introduction-to-version-control/",[140,4.689,146,4.63,476,3.74]],["keywords//docs/development/version-control/introduction-to-version-control/",[138,3.619,1211,5.445,1904,7.049,1905,7.049]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.054,14,0.947,16,2.006,19,3.554,29,1.012,80,2.789,138,3.459,140,6.158,163,3.775,339,1.859,476,4.912,481,4.44,1906,6.737,1907,7.933,1908,6.737]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,207,2.589,258,0.851,464,3.231,1196,3.292,1563,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1197,4.243,1513,4.362,1909,6.122,1910,5.289]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.448,9,0.053,11,0.724,1706,2.875,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.947,11,0.473,233,3.107,1184,2.144,1770,2.87,1801,2.236,1838,2.276,1863,3.612,1864,3.612,1865,3.612,1911,4.009]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.448,9,0.053,11,0.724,774,3.693,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.947,11,0.473,233,3.107,1184,2.144,1200,2.922,1801,2.236,1838,2.276,1863,3.612,1864,3.612,1865,3.612,1911,4.009]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.672,49,0.986,164,1.767,1163,3.771,1706,2.667,1801,3.174]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[711,3.87,1163,4.718,1165,7.12]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.037,9,0.041,11,0.561,29,0.775,35,0.509,40,2.088,166,3.985,167,3.77,175,6.392,177,2.36,201,2.541,262,2.313,379,2.712,381,1.793,412,1.269,659,4.239,1163,4.616,1166,7.78,1167,4.48,1509,4.119,1775,4.279,1912,4.75]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.986,61,1.111,164,1.767,207,2.589,258,0.851,1563,3.721]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,258,0.825,1563,3.606,1642,4.181,1871,5.515,1913,5.202]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.086,17,1.659,18,1.669,35,0.406,40,3.847,201,1.841,258,1.568,262,4.26,379,1.965,472,3.438]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.587,61,0.97,207,2.262,319,1.324,731,2.726,894,3.444,1706,2.331,1801,2.773]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.566,61,0.936,459,2.698,662,2.181,731,2.628,1642,3.635,1706,2.247,1902,4.794]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.058,29,0.722,35,0.273,49,0.767,89,1.47,98,3.355,153,3.098,158,4.301,251,3.958,319,1.178,324,3.018,428,2.894,435,2.214,459,4.452,531,2.933,651,1.865,731,3.624,761,3.594,776,2.702,789,1.39,948,3.355,990,3.43,991,3.43,998,3.43,1094,3.115,1096,2.755,1287,4.426,1322,3.43,1914,3.513,1915,3.606]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[839,0.476]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.448,790,3.255,1055,2.507,1564,5.786,1584,3.515]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.681,1055,2.91,1584,4.08]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.888,16,1.216,29,0.613,35,0.232,38,2.244,46,2.788,89,1.249,119,2.213,141,2.367,215,2.175,237,2.526,327,1.493,336,2.154,350,2.367,379,1.743,381,1.419,391,3.005,522,2.603,687,1.529,688,2.788,692,3.546,783,2.984,790,1.995,896,2.396,946,2.691,1016,4.871,1055,3.297,1057,2.984,1286,2.913,1584,4.623,1588,2.491,1916,3.546,1917,3.759,1918,4.083,1919,4.083,1920,4.083,1921,4.083,1922,4.083]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.05,61,1.111,258,0.851,280,3.292,464,3.231,1196,3.292]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1197,4.243,1513,4.362,1909,6.122,1910,5.289]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.062,17,1.805,18,1.817,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[237,4.882,244,4.016,632,5.766]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,237,3.447,244,2.836,319,1.366,632,4.072,1563,3.354,1923,5.571]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.38,9,0.055,16,2.045,35,0.526,61,1.663,80,2.843,237,4.25,244,4.71,327,2.511,481,4.526,525,4.45,632,5.019,645,4.608,1924,6.323,1925,6.323,1926,6.868]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[839,0.476]],["title//docs/platform/automating-server-builds/",[20,4.63,49,1.259,171,4.051]],["keywords//docs/platform/automating-server-builds/",[244,3.297,747,4.859,1531,4.621,1927,6.476,1928,6.476]],["toc//docs/platform/automating-server-builds/",[2,3.658,20,4.03,42,2.276,49,1.096,89,3.201,100,2.061,171,3.526,225,4.081,244,3.496,412,1.689,616,5.019,635,4.03,807,4.697,919,4.794,1665,5.483,1666,5.483,1929,6.868]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.259,381,2.742,767,3.344]],["keywords//docs/email/running-a-mail-server/",[1372,4.426,1667,5.628,1930,7.049,1931,7.049]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.434,35,0.217,42,1.265,49,1.631,120,4.396,158,3.011,171,1.96,223,2.562,232,2.562,283,2.724,302,2.139,381,1.327,419,3.167,435,1.758,489,4.542,490,2.129,687,1.43,767,4.726,776,1.437,783,2.79,789,1.104,1032,2.611,1261,2.949,1275,3.515,1352,0.567,1552,4.292,1648,2.516,1726,3.167,1828,3.167,1829,3.167,1925,3.515,1932,2.864,1933,3.515,1934,6.015,1935,6.015,1936,3.817]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.571,766,2.58,1055,2.719,1584,3.811]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.063,11,0.531,49,0.78,61,0.878,766,1.746,767,2.071,1055,1.839,1584,2.579,1937,4.888]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.292,9,0.067,17,1.379,18,1.388,24,2.629,35,0.338,60,2.532,65,1.796,96,2.974,225,4.976,391,3.969,490,2.103,684,4.46,687,2.225,766,3.463,776,2.236,1055,2.236,1584,3.135,1588,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.298,207,3.025,1033,3.502,1563,4.349]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1563,4.243,1938,6.49,1939,6.49,1940,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.054,15,4.055,16,2.006,42,2.233,61,1.211,74,3.318,80,2.789,89,2.06,100,2.021,112,2.439,207,2.821,367,4.807,522,4.295,583,4.23,742,4.44,790,3.291,1016,3.459,1033,4.428,1564,5.851]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[839,0.476]],["title//docs/security/linode-manager-security-controls/",[89,2.209,90,2.176,319,1.771,476,3.424]],["keywords//docs/security/linode-manager-security-controls/",[319,1.587,944,4.733,952,2.923,1147,5.003,1941,6.476]],["toc//docs/security/linode-manager-security-controls/",[35,0.238,45,1.862,46,1.838,96,2.092,119,1.459,151,2.755,154,3.136,172,1.63,173,3.848,176,1.721,177,1.912,202,5.272,204,2.011,225,3.837,251,1.925,319,1.025,322,2.918,327,2.36,336,4.681,346,3.337,359,2.983,410,4.117,477,2.368,635,3.789,651,1.621,688,1.838,761,2.092,766,1.493,785,6.854,933,2.983,952,1.886,993,3.467,1017,3.055,1107,6.544,1147,3.229,1942,4.18,1943,4.18]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.75,16,2.35,24,3.492]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.735,21,3.755,1944,5.171,1945,6.476]],["toc//docs/security/backups/backing-up-your-data/",[2,5.935,4,0.772,8,2.477,15,3.417,16,2.414,21,2.057,29,0.853,42,1.176,49,0.906,68,2.593,69,2.833,139,1.77,141,2.057,142,2.299,145,1.806,223,2.381,244,1.806,253,1.908,312,3.373,332,2.339,345,1.56,351,2.136,368,1.513,437,2.196,523,5.48,540,2.943,603,2.833,630,2.109,815,2.741,1778,2.741,1884,2.943,1944,7.079,1946,3.267,1947,2.741,1948,4.93,1949,2.943,1950,3.267,1951,2.943,1952,3.548,1953,3.548,1954,3.548,1955,3.548]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.222,920,5.944]],["keywords//docs/platform/longview/longview/",[920,5.289,1956,7.733,1957,7.733]],["toc//docs/platform/longview/longview/",[9,0.055,24,3.023,38,1.592,100,1.35,151,2.966,158,4.133,200,2.55,244,2.291,247,2.826,251,3.147,281,3.476,302,2.522,325,2.165,326,2.746,339,1.242,437,2.785,472,2.165,662,1.885,691,3.476,790,2.199,887,3.289,896,2.641,918,3.593,920,7.138,1084,3.289,1463,3.908,1887,3.908,1958,4.5,1959,4.5,1960,4.5,1961,4.5,1962,4.5,1963,4.5,1964,4.5,1965,3.733,1966,3.908]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.658,90,2.618]],["keywords//docs/platform/linode-managed/",[944,6.258,1967,8.563]],["toc//docs/platform/linode-managed/",[9,0.059,19,2.644,29,0.753,35,0.285,42,3.726,80,2.075,89,1.533,96,2.509,119,1.75,203,1.449,214,4.353,251,2.309,390,3.017,410,4.722,428,3.017,481,3.303,655,2.247,684,4.691,951,2.669,1094,3.248,1286,5.285,1834,4.353,1883,4.353,1916,4.353,1965,4.158,1968,5.012,1969,5.012]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.05,49,0.986,139,1.928,619,3.825,655,2.771,1970,5.368]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[562,4.006,655,3.467,1970,6.716]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.07,11,0.68,61,1.125,68,4.574,89,1.914,101,2.966,112,2.266,139,2.708,141,3.628,145,3.186,153,2.701,325,3.011,351,3.767,419,5.191,540,5.191,630,3.719,655,2.806,1316,3.271,1970,9.354]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.672,258,0.851,1172,3.463,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.297,1972,6.476,1973,6.476,1974,5.963,1975,5.171]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.072,14,1.26,60,2.71,258,1.235,706,2.69,1172,6.155]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.05,11,0.672,1271,3.542,1706,2.667,1976,3.673,1977,4.005]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[562,2.386,937,3.677,1770,3.035,1976,2.737,1978,3.366,1979,3.035,1980,3.035,1981,2.984,1982,2.984,1983,4.606]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.07,29,1.313,35,0.497,57,5.263,325,4.206,706,2.623,1976,6.427]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[839,0.476]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.587,14,0.759,31,1.05,39,2.151,47,1.902,200,3.06,1304,2.798,1706,2.331]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.566,31,1.013,39,2.074,802,2.674,1304,2.698,1984,5.207,1985,5.207,1986,4.794]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.064,31,1.547,35,0.579,49,1.269,172,3.101,177,3.638,385,1.147,706,2.386,1304,5.279,1352,1.181]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[839,0.476]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.627,43,3.342,47,2.031,49,0.92,767,2.443,1706,2.488,1987,3.425]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1372,3.761,1770,3.948,1987,3.559,1988,5.99,1989,4.494,1990,4.494]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.062,29,1.168,35,0.571,42,2.578,60,2.351,65,2.351,215,4.142,261,2.884,412,1.913,767,4.257,1987,4.622]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.587,409,4.052,1706,2.331,1801,2.773,1971,3.095,1991,3.77,1992,3.694,1993,3.295]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[259,1.538,1690,2.818,1770,3.948,1993,3.655,1994,4.378,1995,4.969]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.079,35,0.349,64,2.385,65,1.859,100,1.845,140,3.654,203,1.778,319,1.507,345,2.704,573,4.388,651,2.385,706,1.845,789,1.778,847,2.813,1038,2.325,1993,7.105,1996,5.661,1997,6.149]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[839,0.476]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.627,47,2.031,49,0.92,164,1.648,189,2.986,1706,2.488,1998,3.196]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[258,0.892,1163,3.952,1998,3.591,1999,4.733,2000,4.621]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.812,262,3.734,327,3.045,388,4.829,391,3.948,755,5.489,1163,6.403]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.724,42,2.208,203,1.926,1191,3.959,1706,2.875]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[217,2.006,359,3.107,562,2.256,655,1.952,1057,3.182,1191,2.587,1350,3.039,1770,2.87,1933,4.009,2001,4.354,2002,4.009]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.057,35,0.406,45,3.183,46,3.142,164,2.043,318,3.881,359,6.781,368,3.047,651,2.772,766,2.552,1191,5.647,1350,4.989,1648,4.71,1747,4.989,2003,6.58]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.627,766,2.059,1184,2.839,1706,2.488,1801,2.96,1971,3.303,2004,3.425]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[2004,3.849,2005,6.476,2006,6.476,2007,4.429,2008,4.859]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.056,29,1.052,327,2.56,381,3.259,385,1.011,412,1.722,706,2.102,933,4.998,952,3.161,981,4.466,1352,1.04,1628,4.334,1804,4.334,2004,6.281,2009,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.627,766,2.059,774,3.196,1184,2.839,1307,5.006,2004,3.425,2010,5.764]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[2004,3.849,2007,4.429,2008,4.859,2011,6.476,2012,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.058,29,1.096,327,2.666,381,3.348,412,1.794,706,2.189,933,5.205,952,3.292,981,4.651,1628,4.514,1804,4.514,2004,6.409,2009,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1028,3.823]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.587,31,1.05,1168,2.084,1184,2.66,1706,2.331,1801,2.773,1826,2.66,1971,3.095]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.26,1527,3.801,2013,5.003,2014,5.625,2015,4.521]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.236,9,0.049,19,4.525,29,0.924,35,0.607,60,1.859,65,1.859,148,5.653,187,2.893,201,1.584,261,2.28,327,2.248,379,1.69,412,1.512,490,2.176,544,3.275,1168,2.373,1423,3.861,1529,3.805,1826,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,258,0.7,259,1.304,381,1.766,1184,2.502,1248,2.816,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[258,0.767,259,1.43,1248,3.089,1690,2.621,1858,3.81,1859,3.81,1860,4.839]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.064,17,1.846,18,1.858,35,0.452,258,1.404,259,2.616,327,2.907,1248,4.409,1861,5.967,1862,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[839,0.476]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.627,14,0.81,263,3.567,1271,3.303,1977,3.735,2016,3.383,2017,5.764]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1978,3.017,1980,2.721,1981,2.675,1982,2.675,2016,2.423,2018,4.129,2019,4.129,2020,3.098,2021,2.721,2022,2.22,2023,4.129,2024,4.129]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.053,14,0.929,35,0.376,38,2.339,119,2.308,177,3.024,201,1.703,306,3.879,350,3.833,379,1.817,412,1.626,490,2.339,723,3.833,790,3.23,2016,6.022,2022,3.555,2025,4.959,2026,4.614,2027,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.724,162,3.515,1706,2.875,1801,3.421,1971,3.818]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.577,893,3.269,2028,6.476,2029,6.476,2030,4.621]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.069,24,2.721,35,0.349,64,2.385,90,2.584,101,2.914,112,2.227,162,6.143,178,3.805,209,3.409,253,3.307,339,1.696,381,2.137,417,3.921,520,3.446,1075,3.446,2031,6.121]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1309,3.862,1706,2.875,1801,3.421,1971,3.818]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.046,11,0.627,31,1.121,1184,2.839,1706,2.488,1801,2.96,1971,3.303]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.606,31,1.084,217,2.566,711,2.789,2014,4.839,2034,5.571,2035,5.571]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.094,17,1.626,18,1.636,31,2.196,60,2.118,101,3.32,282,4.319,345,3.08,2036,7.004,2037,7.004]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2038,3.818]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.964,11,0.521,14,0.674,407,3.347,1706,2.069,1801,2.462,1971,2.748,2042,3.16,2043,3.107,2044,4.415]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.587,203,1.561,339,1.49,688,2.375,1473,3.095,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.672,258,0.851,597,3.825,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.807,258,0.971,597,4.362,1303,3.247]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.054,17,1.564,18,1.574,35,0.66,38,2.384,198,4.807,199,4.702,258,0.928,297,3,387,4.923,802,5.705,1303,3.103,1309,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2045,3.655]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.606,138,2.861,466,3.354,1826,2.744,1995,4.621,2039,3.354,2045,3.057]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.128,42,1.684,258,0.7,328,2.234,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.627,14,0.81,203,1.666,753,4.113,1706,2.488,1947,4.453,2052,4.113]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.651,1770,3.948,2052,4.274,2053,5.202,2054,4.969,2055,5.99]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.074,14,0.966,29,1.032,35,0.526,158,3.438,282,3.163,297,3.059,327,2.511,399,4.901,587,4.312,706,2.061,1348,5.483,2052,6.603,2054,5.697,2056,5.305,2057,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.587,49,0.862,164,1.544,258,0.744,1184,2.66,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.566,258,0.717,562,2.698,711,2.606,1770,3.432,1801,2.674,1913,4.523,2058,5.207]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.086,17,1.693,18,1.704,35,0.415,40,3.899,201,1.879,258,1.486,262,3.27,379,2.005,472,3.509,1482,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.627,47,2.031,49,0.92,164,1.648,292,2.934,1706,2.488,2059,3.163]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1770,4.268,1870,4.196,1995,5.372,2059,3.553,2060,6.476]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.055,29,1.032,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,412,1.689,651,3.589,744,5.726,803,6.329,1016,3.526,2059,5.077]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2061,3.774]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2063,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.672,14,0.869,49,0.986,164,1.767,1706,2.667,2059,3.391]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[655,2.191,1770,3.221,1870,3.167,1995,4.055,2059,2.682,2064,4.888,2065,3.903,2066,4.888,2067,3.572]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.055,29,1.032,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,412,1.689,651,3.589,744,5.726,803,6.329,1016,3.526,2059,5.077]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.041,11,0.552,31,0.988,142,3.292,259,1.304,1168,1.96,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.013,259,1.337,1168,2.009,1527,3.056,1528,3.494,2014,4.523,2068,5.207,2069,5.207]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.672,49,0.986,1177,3.146,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.191,5,1.334,9,0.063,11,0.596,29,0.823,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,412,1.348,789,1.584,847,2.507,1038,2.072,1168,2.115]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.53,521,3.058,766,1.814,1706,2.192,1750,3.474,1801,2.608,1971,2.911,2070,3.1]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.627,42,1.911,485,3.62,490,2.04,1706,2.488,2072,4.113,2073,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.651,490,2.12,662,2.509,2073,3.286,2074,5.99,2075,5.99]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.328,9,0.053,29,0.993,35,0.512,42,2.191,57,3.979,169,2.03,201,1.703,261,2.451,411,3.59,412,1.626,789,1.911,1404,5.943,2073,6.048,2076,4.614,2077,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.587,14,0.759,24,2.39,179,3.342,210,2.505,1706,2.331,2078,2.904,2079,3.854]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.704,893,3.269,2078,3.483,2080,4.621,2081,5.372]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.078,14,1.364,2078,6.197]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,215,2.554,490,1.697,1184,2.362,1706,2.069,1801,2.462,1971,2.748,2082,2.554,2083,3.28]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.174,5,1.315,11,0.587,47,1.902,1063,2.933,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.408,1465,4.268,1770,4.268,2087,5.003,2088,4.733]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.745,4,2.546,5,1.524,9,0.05,47,2.205,49,0.999,96,3.132,119,2.185,213,4.055,335,3.872,706,1.878,946,4.124,950,3.872,951,4.625,952,2.824,987,4.368,1066,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.571,9,0.058,11,0.785,774,4.005]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.898,11,0.449,139,1.288,1200,2.77,1465,2.721,1467,3.296,1469,2.946,2089,4.129,2090,4.129,2091,4.129,2092,4.129,2093,4.129]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,1706,2.331,1801,2.773]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.061,35,0.432,49,1.581,80,3.15,177,3.481,306,4.466,385,1.098,583,4.778,707,5.527,1352,1.13]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.505,11,0.672,14,0.869,30,2.667,1063,3.357,1706,2.667]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.795,1064,5.171,1065,3.952,1160,4.346,1770,4.268]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.043,5,2.168,9,0.071,29,0.975,30,4.386,35,0.369,119,2.265,204,3.122,227,4.204,319,1.59,651,2.517,952,2.928,1066,3.718,1070,4.276,2094,5.012,2095,5.012]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.043,11,0.587,49,0.862,1706,2.331,1801,2.773,1971,3.095,2022,2.904,2096,3.169]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2022,3.221,2096,3.515,2097,5.99,2098,4.494,2099,4.494,2100,4.494]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.06,14,1.047,35,0.423,49,1.189,282,3.431,283,5.315,327,2.723,490,2.636,684,3.967,789,2.153,2022,4.006,2027,4.826,2096,5.731,2101,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.672,49,0.986,759,2.735,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.063,11,0.531,258,0.673,259,1.255,759,2.163,1496,3.903,2102,3.776,2103,4.888,2104,4.888]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.436,4,2.066,5,1.74,9,0.076,17,1.659,18,1.669,35,0.607,201,1.841,210,3.315,258,0.985,259,1.835,379,1.965,685,3.438]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.259,203,2.281,1951,6.545]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.372,203,2.57,882,5.372,1951,5.372]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.036,14,0.96,35,0.388,65,1.361,69,3.593,74,2.216,80,1.863,89,2.526,90,2.487,96,2.252,100,2.478,203,2.387,339,1.242,481,2.966,522,2.869,527,3.211,652,2.826,688,3.631,766,1.607,789,1.301,815,3.476,919,4.769,920,3.078,1033,2.182,1185,3.733,1342,4.143,1350,3.141,1363,3.908,1665,3.593,1666,3.593,1884,3.733,1946,4.143,2105,4.5]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.259,203,2.281,2106,6.853]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[203,2.038,1623,7.518,2106,6.122]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.189,4,1.286,9,0.084,14,0.525,29,0.561,35,0.517,49,0.596,64,1.449,65,1.13,80,3.039,88,2.666,96,2.96,119,2.065,120,4.322,164,1.068,169,1.816,201,0.962,203,1.08,258,0.515,259,1.518,312,2.22,318,2.029,345,1.643,385,0.539,573,2.666,649,2.22,684,1.99,688,1.643,706,1.121,847,3.358,895,2.421,1352,0.555,1887,3.245,1996,3.44,2106,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[839,0.476]],["title//docs/applications/social-networking/dolphin/",[2107,8.402]],["keywords//docs/applications/social-networking/dolphin/",[2107,6.716,2108,6.174,2109,7.12]],["toc//docs/applications/social-networking/dolphin/",[4,1.074,5,1.203,9,0.087,16,1.472,29,0.742,35,0.417,40,2,49,0.789,64,1.917,100,1.483,119,1.725,249,3.526,259,2.242,262,2.215,381,1.718,405,4.472,684,2.632,688,2.173,706,1.483,744,3.058,766,1.765,803,3.38,905,3.612,937,3.945,2107,8.963,2110,4.942]],["deprecated//docs/applications/social-networking/dolphin/",[609,0.697,836,0.638,839,0.087,2109,2.146,2111,0.873,2112,0.873,2113,0.873]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.622,14,0.937,90,2.007,391,3.158,1129,4.065]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,1.001,5,1.122,491,3.455,1129,2.81,1838,2.408,2114,4.606,2115,4.606,2116,4.606,2117,4.606,2118,4.606]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.563,4,1.691,5,2.446,90,3.025,119,2.715,176,3.201,391,5.273,491,5.835,2119,7.777]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.053,49,1.063,139,2.078,2120,5.786,2121,6.134]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2120,6.122,2122,7.049,2123,7.049,2124,7.049]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.069,35,0.487,64,3.327,80,3.551,345,2.704,789,1.778,2120,10.754,2121,5.661,2125,10.689,2126,6.149]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[244,3.677,655,3.239,895,4.681,948,5.043]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[244,3.936,655,3.467,895,5.011]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.236,80,2.546,89,1.881,112,2.227,145,3.13,244,5.927,247,3.861,252,4.494,352,4.388,540,5.101,649,3.654,700,4.388,895,3.984,896,5.034,1110,5.661,1126,4.494,1751,5.661,2127,5.34,2128,5.101]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[244,3.677,477,4.093,895,4.681,1778,5.58]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[244,3.936,1524,5.802,2129,7.733]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.745,35,0.356,89,3.05,96,3.132,112,3.144,244,5.483,247,3.93,345,2.752,525,4.055,649,5.926,895,4.055,896,3.673,1126,4.574,2127,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.785,1033,3.502,1706,3.117,1801,3.709]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.841,1033,3.749,1801,3.971]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.048,11,1.064,15,3.638,16,1.8,42,2.003,74,2.976,80,2.502,89,1.848,100,1.813,112,2.188,367,4.312,522,3.853,583,3.795,742,3.983,977,5.013,1016,3.103,1033,5.143,1184,2.976,1185,5.013,2130,2.692,2131,5.013]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[839,0.476]],["title//docs/troubleshooting/rescue-and-rebuild/",[1126,6.352,2132,7.21]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1126,6.258,2132,7.104]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.964,8,3.885,9,0.045,65,1.683,80,3.309,89,1.702,153,2.402,169,1.709,244,2.833,247,5.02,339,2.206,381,1.935,445,3.495,527,3.972,645,3.735,649,3.308,655,2.495,948,3.885,951,2.964,1016,2.858,1126,6.836,1560,5.125,2132,4.617,2133,4.834,2134,5.125,2135,5.566]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.259,89,2.413,1524,5.92]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2136,7.733,2137,7.733,2138,7.733]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.52,29,0.775,34,3.601,35,0.561,42,1.71,89,2.314,96,2.582,112,1.868,142,3.343,169,1.584,178,3.192,208,2.923,225,3.066,244,4.56,247,3.239,326,3.148,428,3.106,525,3.343,583,3.239,635,3.027,645,3.461,649,4.495,895,3.343,971,3.87,996,4.75,1032,3.528,1126,3.77,1335,4.75]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[839,0.476]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.448,244,4.016,525,5.113]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[244,4.359,2139,8.563]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.727,9,0.039,14,1.009,35,0.608,80,1.99,101,2.278,139,1.499,244,5.645,273,2.56,390,4.322,481,3.168,525,6.934,580,4.175,652,3.018,906,3.606,970,3.987,993,3.987,1084,3.513,1924,4.426,2140,4.426,2141,4.807]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1024,6.651,1035,5.28,1036,5.993,1037,5.42]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1035,4.378,1036,4.969,1037,4.494,1816,5.202,1817,5.202,2142,5.99]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.074,100,1.878,155,5.191,385,0.903,390,3.767,435,2.883,477,3.546,620,4.466,651,2.427,1035,6.346,1036,5.191,1037,6.515,1120,5.435,1813,5.762,1815,4.834,1816,5.435,1817,7.542,1818,5.191,2143,6.258,2144,6.258,2145,6.258]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[839,0.476]],["title//docs/troubleshooting/troubleshooting/",[790,4.726]],["keywords//docs/troubleshooting/troubleshooting/",[790,4.687]],["toc//docs/troubleshooting/troubleshooting/",[5,0.778,14,0.449,35,0.182,49,0.51,89,2.908,90,1.571,96,1.599,119,1.115,142,2.07,153,1.379,164,0.913,169,1.601,176,2.146,177,1.461,179,1.977,187,1.503,193,2.144,195,2.28,201,0.823,225,1.898,244,2.654,292,1.626,316,2.23,350,3.023,360,3.64,379,0.878,381,1.812,385,0.461,411,1.735,445,2.006,460,2.941,477,1.81,489,1.949,490,1.13,632,2.335,635,1.875,655,1.432,662,1.338,684,1.701,688,1.405,915,2.28,952,2.353,1058,2.551,1397,2.775,1452,2.775,1717,4.163,1812,2.468,1873,2.775,2146,3.195,2147,3.195,2148,2.775,2149,3.195,2150,3.195,2151,3.195,2152,3.195,2153,3.195,2154,3.195,2155,3.195,2156,2.941,2157,3.195,2158,3.195,2159,3.195,2160,3.195]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[477,4.924,952,3.922]],["keywords//docs/platform/accounts-and-passwords/",[90,2.123,477,3.994,944,5.152,952,3.181]],["toc//docs/platform/accounts-and-passwords/",[29,0.787,45,2.332,46,2.302,89,2.339,90,2.303,100,1.571,119,3.154,225,4.544,385,1.103,390,3.152,405,4.666,445,4.802,684,2.788,766,2.731,950,4.732,951,2.788,952,4.484,1058,4.18,1965,6.343,2009,3.826,2133,4.547]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[472,4.654]],["keywords//docs/platform/support/",[472,3.391,2161,7.049,2162,7.049,2163,7.049]],["toc//docs/platform/support/",[89,2.813,313,7.105,472,4.425,706,2.76,1965,7.63,2164,9.198]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.07,14,0.81,24,2.551,42,1.911,89,1.763,319,1.413,1552,4.113]],["keywords//docs/platform/linode-backup-service/",[2165,4.888,2166,4.888,2167,4.888,2168,4.888,2169,4.888,2170,4.888,2171,4.888,2172,4.888,2173,4.888]],["toc//docs/platform/linode-backup-service/",[2,6.127,8,6.416,42,2.591,89,2.811,90,1.625,92,4.686,96,2.701,327,1.972,392,3.85,411,2.93,435,2.485,437,3.339,514,4.968,577,4.476,616,3.943,649,3.206,758,6.789,1087,3.943,1724,4.476,1818,4.476,2174,5.396]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[201,2.239,292,4.424]],["keywords//docs/websites/hosting-a-website/",[292,3.588,1667,5.628,1668,6.122,1686,6.49]],["toc//docs/websites/hosting-a-website/",[0,0.966,4,1.561,5,2.093,9,0.069,29,0.722,32,3.065,35,0.273,49,0.767,60,1.453,89,2.628,164,1.374,169,1.476,176,1.979,201,1.238,210,2.23,258,0.989,259,2.206,292,2.447,349,5.878,379,1.322,489,2.933,490,2.541,579,7.912,615,3.168,685,2.313,700,3.43]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.387,319,2.13]],["keywords//docs/security/securing-your-server/",[319,2.064,325,2.882,655,2.685,2175,5.99,2176,5.99]],["toc//docs/security/securing-your-server/",[0,0.871,11,0.471,14,0.609,35,0.246,42,2.997,45,1.93,46,1.906,61,0.779,100,1.992,119,1.513,127,1.39,129,1.217,176,1.784,251,1.996,312,2.575,319,1.062,325,2.085,334,1.815,336,2.287,381,1.506,390,3.996,392,3.093,399,3.093,477,2.456,562,2.245,572,3.595,651,1.681,655,3.617,662,1.815,946,2.856,987,3.025,1353,2.856,1423,2.721,1552,3.093,1679,3.99,1966,3.764,2026,3.025,2177,4.334,2178,3.99,2179,4.334,2180,5.507]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.984,29,1.001,49,1.063,759,2.948,1511,4.122]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[759,3.422,1511,4.785,1889,7.12]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.655,49,1.336,164,1.699,201,1.53,258,0.819,259,1.525,379,1.633,412,1.461,1890,5.16]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.672,49,0.986,203,1.787,2181,4.41,2182,4.41,2183,4.314]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.651,203,1.732,2181,4.274,2183,4.181,2184,5.99,2185,5.515]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[258,1.197,2186,7.549]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[258,0.971,2186,6.122,2187,7.049,2188,7.049]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.056,35,0.398,225,4.162,334,2.933,635,4.111,706,2.102,1107,5.81,2186,8.144,2189,7.004,2190,7.004,2191,7.004,2192,7.004,2193,7.004,2194,7.004,2195,7.004,2196,7.004,2197,7.004]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.448,258,1.087,2198,7.265]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[258,1.18,2199,8.563]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.061,29,1.143,45,3.389,46,3.346,60,2.301,129,2.137,146,4.466,326,4.643,947,6.075,2198,10.137,2200,7.609,2201,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,766,2.379,1023,2.806,2004,3.959,2202,3.205]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2007,4.429,2008,4.859,2203,6.476,2204,6.476,2205,5.963]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.051,29,0.957,35,0.362,327,2.329,381,2.214,385,0.919,412,1.567,687,2.386,776,3.309,795,3.887,796,3.271,933,4.546,952,2.875,981,4.062,1140,4.001,1352,0.946,1804,3.942,2004,5.224,2009,4.656,2128,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[839,0.476]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,139,1.928,368,2.635,610,4.314,611,4.935,953,4.637]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[611,6.837,953,6.425]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.458,2,2.596,16,1.451,29,0.732,35,0.277,38,1.725,54,3.016,109,5.063,169,3.15,191,5.71,273,2.596,368,2.078,389,4.367,610,6.699,647,3.656,652,3.06,953,3.656,979,6.3,1016,2.502,1362,4.487,1478,6.917,2206,4.873,2207,4.873,2208,4.233,2209,4.873]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.724,49,1.063,1177,3.391,2131,5.526,2210,5.786]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.984,29,1.001,42,2.208,490,2.357,1129,4.065]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[490,3.03,1129,5.225]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.569,417,5.439,489,5.205,490,3.019,993,7.076,1133,9.808,1948,7.409]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1161,6.521,2211,7.21]],["keywords//docs/websites/cms/kloxo-guides/",[1129,4.301,2211,5.847,2212,5.03,2213,5.03]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.153,129,2.029,1023,3.043,1177,3.677]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.21,5,1.356,9,0.064,29,0.836,31,1.819,35,0.316,47,3.295,49,1.276,65,1.683,100,1.67,112,2.016,164,1.592,201,1.434,203,1.609,259,1.429,319,1.364,339,1.536,345,2.447,379,1.53,412,1.369,789,1.609,847,2.546,1038,2.105,1168,2.148,1691,4.176]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.586,477,4.47,2214,6.545]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[477,4.381,2214,6.415,2215,7.12]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.344,65,2.994,119,3.458,385,1.098,477,5.611,1352,1.13,2215,9.119]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[839,0.476]],["title//docs/websites/cms/directadmin/",[2214,8.025]],["keywords//docs/websites/cms/directadmin/",[2214,7.958]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.724,49,1.063,759,2.948,2131,5.526,2210,5.786]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1656,5.003,2102,5.003,2216,6.476,2217,6.476,2218,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.058,129,2.029,2211,5.993,2219,2.533]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1129,4.301,2211,5.847,2212,5.03,2213,5.03]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.08,428,6.008,659,5.592]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.785,1033,3.502,2131,5.993,2210,6.274]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2220,7.049,2221,7.049,2222,5.847,2223,5.847]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[112,3.614,1033,5.679]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.05,14,0.869,687,2.314,776,2.326,1129,3.771,1140,3.881]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[635,4.538,687,2.896,1129,4.718]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.635,9,0.065,17,1.889,18,1.901,220,4.333,687,3.047,776,3.891,790,3.975,796,4.178,1140,5.109]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[127,2.53,964,5.294,2224,6.545]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[127,2.077,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[839,0.476]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[129,2.216,964,5.294,1023,3.324]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[129,1.819,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.298,964,4.847,1023,3.043,2202,3.476]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,253,3.221,779,4.181,964,4.019,965,4.969,2202,2.882]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.153,127,2.317,759,3.197,2224,5.993]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1789,5.152,1790,5.289,2225,7.049,2226,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.239,5,1.969,9,0.082,16,1.684,29,1.215,35,0.619,49,1.29,164,1.617,201,1.457,210,2.623,258,1.114,259,1.452,379,1.555,412,1.391,537,3.665,685,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[839,0.476]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[129,2.216,759,3.492,1023,3.324]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.211,129,1.565,258,0.767,259,1.43,759,2.465,1025,4.448,1301,5.13]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.38,4,2.012,5,1.673,9,0.084,17,1.594,18,1.604,35,0.636,164,1.964,201,1.769,258,1.275,259,1.763,379,1.888]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1159,5.294,1161,5.92,1518,6.545]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[499,6.837,1159,5.746]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.811,31,1.05,35,0.307,85,3.85,208,5.208,218,4.686,221,4.476,225,3.206,247,3.388,251,2.485,258,0.743,321,3.943,350,3.128,367,3.85,531,3.292,630,3.206,635,3.166,684,2.874,776,2.031,837,3.943,992,4.968,1016,2.771,1097,3.248,1159,5.245,2227,5.396,2228,5.396,2229,5.396,2230,5.396,2231,5.396,2232,4.968]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.253,61,1.036,766,2.059,1023,2.428,1055,2.169,1584,3.041,2202,2.773]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,766,1.99,1584,2.939,2202,2.68,2205,5.13,2233,5.571,2234,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.344,129,1.736,766,2.207,1055,2.326,1584,3.261,2219,2.167]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[766,2.313,1587,4.621,2236,6.476,2237,6.476,2238,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.778,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.153,127,2.317,1177,3.677,2224,5.993]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.23,5,1.377,9,0.076,29,0.85,31,1.573,35,0.536,49,1.29,65,1.71,100,1.697,164,1.617,201,1.457,203,1.635,259,1.452,319,1.982,379,1.555,385,0.816,412,1.391,615,3.727,789,1.635,1038,2.139,1168,2.182,1352,0.84,1525,3.551]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.063,61,1.197,1023,2.806,1177,3.391,2202,3.205]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.155,5,1.294,9,0.062,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,61,0.955,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,385,0.767,412,1.307,789,1.536,847,2.431,1013,4.616,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2182,4.113,2183,4.024]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2239,5.571,2240,4.839,2241,4.621]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.195,35,0.579,42,2.636,60,2.405,215,4.236,385,1.147,412,1.956,767,4.318,1352,1.181,1987,4.726]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.724,49,1.063,759,2.948,2182,4.754,2183,4.65]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1656,5.003,2102,5.003,2185,5.963,2242,6.476,2243,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.79,61,0.97,485,3.391,490,1.911,1023,2.275,2072,3.854,2073,2.963,2202,2.598]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2182,3.854,2183,3.77]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2224,4.782]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.053,14,0.929,29,0.993,35,0.583,318,3.59,339,1.824,385,0.954,412,1.626,476,3.133,490,2.339,520,3.704,651,2.564,1352,0.982,2082,6.144,2086,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2182,3.854,2183,3.77]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.672,90,1.862,380,4.005,708,3.771,2182,4.41,2183,4.314]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[708,3.952,2245,6.476,2246,5.171,2247,5.171,2248,5.171]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.862,380,4.005,708,3.771,1023,2.604,2202,2.974]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2250,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.202,61,1.111,259,1.587,1023,2.604,1168,2.385,2202,2.974]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.371,1527,4.137,1528,4.73,2251,7.049]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.672,31,1.202,259,1.587,1168,2.385,2182,4.41,2183,4.314]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.371,1527,4.137,1528,4.73,2252,7.049]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.413,887,5.766,1098,5.92]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2253,8.563,2254,8.563]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.423,177,3.407,225,5.804,468,4.909,508,5.754,652,4.677,1097,4.484,1098,9.009,2255,7.448,2256,7.448]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2182,4.41,2183,4.314]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2013,5.003,2257,6.476,2258,5.963,2259,6.476,2260,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.984,29,1.001,89,2.038,1096,3.818,1098,4.998]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[662,2.952,1096,4.039,1098,5.289,2261,7.049]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.626,18,1.636,35,0.398,61,1.259,127,2.246,129,2.633,139,2.924,207,2.933,437,4.334,659,3.925,761,3.506,1023,2.951,1316,3.661,1511,4.334,2156,6.449]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.785,1033,3.502,2182,5.155,2183,5.043]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2222,5.847,2223,5.847,2262,7.049,2263,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[112,3.614,1033,5.679]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[839,0.476]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.92,61,1.036,164,1.648,189,2.986,1023,2.428,1998,3.196,2202,2.773]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[258,0.971,1500,5.628,1998,3.908,2000,5.03]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,258,0.918,597,4.122,1023,2.806,2202,3.205]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[127,2.317,258,0.995,597,4.47,2264,3.964]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.724,258,0.918,597,4.122,2130,2.967,2265,2.875]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/platform/stackscripts/",[20,4.63,47,2.779,539,6.545]],["keywords//docs/platform/stackscripts/",[20,3.801,108,4.733,256,4.008,2266,6.476,2267,6.476]],["toc//docs/platform/stackscripts/",[0,1.084,14,1.292,47,2.754,59,3.69,89,1.65,96,2.701,101,2.557,146,3.166,151,3.556,265,3.166,328,2.372,519,4.686,520,3.024,539,9.773,789,1.56,894,3.44,2047,3.62,2268,5.396,2269,4.968,2270,5.396,2271,5.396,2272,5.396,2273,5.396]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1023,2.604,1991,4.314,1992,4.227,1993,3.771,2202,2.974]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[127,2.136,1991,4.65,1992,4.556,1993,4.065,2264,3.655]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[127,2.136,258,0.918,597,4.122,1303,3.069,2264,3.655]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.807,258,0.971,597,4.362,1303,3.247]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.076,29,1.074,35,0.54,47,2.517,172,3.705,258,1.309,297,3.183,385,1.031,412,1.757,802,3.669,1303,4.377,1352,1.061]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.298,1023,3.043,2045,3.964,2202,3.476]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,138,2.674,466,3.135,1826,2.564,2039,3.135,2045,2.857,2274,5.207,2275,5.207]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.785,2045,3.964,2130,3.218,2265,3.117]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.785,2045,3.964,2276,3.53,2277,3.502]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.736,466,3.47,712,2.839,1023,2.428,2202,2.773,2278,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.862,127,1.982,466,3.721,712,3.044,2264,3.391,2278,4.517]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.627,90,1.736,466,3.47,712,2.839,2276,2.816,2277,2.795,2278,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.736,129,1.619,265,3.383,2219,2.021,2280,4.113,2281,4.453,2282,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[265,3.801,2280,4.621,2283,5.963,2284,5.625,2285,5.171]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.083,35,0.462,100,2.441,203,2.352,319,1.994,706,2.441,789,2.352,1038,3.077,2280,7.378]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.736,127,1.849,265,3.383,2264,3.163,2280,4.113,2281,4.453,2282,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[265,3.801,2280,4.621,2283,5.963,2284,5.625,2285,5.171]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.08,35,0.442,100,2.334,203,2.248,319,1.906,385,1.122,706,2.334,789,2.248,1038,2.941,1352,1.155,2280,7.168]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.97,90,1.627,521,3.251,766,1.929,1023,2.275,1750,3.694,2070,3.295,2202,2.598]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.057,29,1.074,35,0.607,385,1.031,389,4.302,404,4.888,412,1.757,616,5.223,619,4.422,767,3.028,1352,1.061,2070,6.514,2286,6.207]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.89,90,1.862,1023,2.604,2202,2.974,2287,3.627]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.038,90,2.007,127,2.136,2264,3.655,2287,3.909]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,1.619,112,1.954,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[127,1.982,203,1.787,339,1.705,688,2.718,1473,3.542,2264,3.391]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.627,203,1.666,339,1.59,688,2.535,1473,3.303,2276,2.816,2277,2.795]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.986,61,1.111,203,1.787,1023,2.604,2181,4.41,2202,2.974]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[203,2.476,2181,6.111]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.627,273,3.07,939,3.567,2276,2.816,2277,2.795,2297,4.602,2298,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1065,2.982,2299,4.888,2300,4.888,2301,4.888,2302,4.245,2303,3.903,2304,3.903,2305,3.776,2306,3.903]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.298,162,3.811,1023,3.043,2202,3.476]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.717,162,3.719,893,3.558,2030,5.03]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,258,0.851,464,3.231,1023,2.604,1196,3.292,2202,2.974]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[127,1.982,258,0.851,320,3.146,687,2.314,776,2.326,2264,3.391]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[711,3.528,1699,4.821,1701,6.122,2309,5.847]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,319,1.515,731,3.12,894,3.941,1023,2.604,2202,2.974]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2310,7.733,2311,7.733,2312,7.733]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,4.312,531,4.209,662,2.889,731,3.482,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.296,127,2.136,2264,3.655,2313,4.754,2314,5.526]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[839,0.476]],["title//docs/websites/wikis/twiki-on-centos-5/",[129,2.216,2038,4.521,2219,2.767]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[839,0.476]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.298,1023,3.043,2038,4.14,2202,3.476]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/twiki-on-fedora-14/",[127,2.53,2038,4.521,2264,4.329]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[839,0.476]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.937,251,3.069,336,3.515,655,2.987,1094,4.317]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[459,3.103,655,2.685,988,5.515,1096,3.432,1117,5.515,1914,4.378]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.336,139,1.853,145,3.024,153,3.614,204,4.029,215,3.164,237,3.677,251,4.85,336,3.135,339,2.31,655,2.664,700,4.24,761,4.191,1101,6.283,1529,3.677,2067,4.342,2316,8.374]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.344,5,1.505,14,0.869,139,1.928,1063,3.357,1316,3.231]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1843,5.973,1901,6.716,2317,7.733]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.494,9,0.058,14,1.025,35,0.547,335,4.514,339,2.012,385,1.052,950,4.514,951,3.885,952,3.292,1352,1.083,1682,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[839,0.476]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.724,258,0.918,597,4.122,2276,3.255,2277,3.23]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.911,61,1.036,1023,2.428,1271,3.303,1976,3.425,1977,3.735,2202,2.773]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1978,3.572,1979,3.221,1981,3.167,1982,3.167,2021,3.221,2318,4.888,2319,4.888,2320,4.055,2321,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.08,29,1.509,35,0.442,57,4.682,325,3.742,385,1.122,412,1.913,706,2.334,1352,1.155,1976,5.969]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.92,61,1.036,164,1.648,258,0.794,320,2.934,1023,2.428,2202,2.773]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[690,5.171,1500,5.171,2322,6.476,2323,6.476,2324,6.476]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.078,17,1.403,18,1.412,35,0.482,40,2.446,201,1.557,210,2.803,258,1.348,262,3.799,302,3.387,320,3.076,334,3.549,379,1.662,385,0.872,472,2.908,685,2.908,1352,0.898,1480,4.219,2325,5.249]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[139,2.461,1316,4.124,2045,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.093,31,1.449,35,0.423,49,1.189,164,2.13,258,1.026,385,1.075,723,4.319,1352,1.106,1628,4.609,2045,5.358]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2276,2.816,2277,2.795]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2326,5.515]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.063,61,1.197,759,2.948,1023,2.806,2202,3.205]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1504,6.415,1894,6.716,2327,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.986,127,1.982,164,1.767,189,3.202,1998,3.427,2264,3.391]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[258,0.971,1998,3.908,2000,5.03,2328,6.49]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,273,3.07,939,3.567,1023,2.428,2202,2.773,2297,4.602,2298,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1065,2.982,2303,3.903,2304,3.903,2305,3.776,2306,3.903,2329,4.888,2330,4.888,2331,4.888,2332,4.501]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.248,61,0.913,179,3.143,210,2.356,1023,2.14,2078,2.732,2079,3.625,2202,2.444]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.414,42,1.911,127,1.849,258,0.794,328,2.535,2264,3.163]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.121,61,1.036,802,2.96,1023,2.428,1304,2.986,2202,2.773]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.296,61,1.197,292,3.391,1023,2.806,2202,3.205]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.165,61,1.076,217,2.759,711,2.998,2333,5.515,2334,5.99]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,61,1.068,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.404,14,0.81,30,2.488,61,1.036,1023,2.428,1063,3.131,2202,2.773]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1065,4.301,1160,4.73,2335,7.049,2336,7.049]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.083,5,1.641,9,0.073,29,1.012,30,4.472,35,0.383,119,2.352,227,4.365,385,0.972,952,3.04,1066,3.86,1070,4.44,1352,1,2094,5.204,2095,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,258,0.918,1023,2.806,1172,3.733,2202,3.205]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.588,2337,5.847,2338,6.49,2339,6.49]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,258,0.918,597,4.122,2219,2.336,2341,2.682]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.04,61,1.036,730,4.325,766,2.059,1023,2.428,1055,2.169,2202,2.773]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,258,0.851,597,3.825,1023,2.604,1303,2.847,2202,2.974]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.202,61,1.111,1023,2.604,1168,2.385,1826,3.044,2202,2.974]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2013,5.003,2258,5.963,2344,6.476,2345,6.476,2346,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.97,119,1.885,339,1.49,477,3.06,1055,2.032,1584,2.849,2219,1.894,2341,2.174]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[766,2.517,1055,2.653,1584,3.719,2347,7.049]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.048,29,0.908,35,0.603,42,2.809,204,2.908,336,3.188,385,0.872,412,1.486,651,2.344,687,2.263,767,4.496,783,4.417,789,1.747,961,4.825,1055,2.274,1352,0.898,1584,3.188,2348,6.043,2349,6.043]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.672,258,0.851,464,3.231,1196,3.292,2276,3.02,2277,2.996]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.202,61,1.111,1023,2.604,2202,2.974,2313,4.41,2314,5.127]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.056,29,1.052,31,1.824,35,0.533,49,1.496,172,2.731,177,3.204,385,1.011,412,1.722,472,3.37,847,3.204,1304,5.476,1352,1.04]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.298,1023,3.043,1309,4.188,2202,3.476]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,766,2.059,1023,3.453,1370,3.799,2202,2.773,2350,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1587,4.274,2351,5.99,2352,5.99,2353,5.515,2354,4.782,2355,4.782]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.078,35,0.423,38,2.636,65,2.252,100,2.235,203,2.153,319,1.826,339,2.055,385,1.075,706,2.235,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.736,466,3.47,712,2.839,2219,2.021,2278,4.213,2341,2.321]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.342,49,0.92,61,1.036,767,2.443,1023,2.428,1987,3.425,2202,2.773]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1372,3.498,1989,4.18,1990,4.18,2333,5.13,2356,5.571,2357,5.571,2358,5.13]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.785,2038,4.14,2130,3.218,2265,3.117]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.785,2038,4.14,2276,3.53,2277,3.502]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.97,215,2.876,490,1.911,1023,2.275,2082,2.876,2083,3.694,2202,2.598]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,490,1.843,829,3.27,2082,2.773,2086,2.8,2359,5.207,2360,5.207,2361,5.207]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.724,31,1.296,292,3.391,2276,3.255,2277,3.23]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.651,31,1.165,217,2.759,711,2.998,2362,5.202,2363,4.969]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.194,9,0.078,11,0.646,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.298,1023,3.043,1033,3.502,2202,3.476]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1938,6.49,1939,6.49,2202,3.391,2364,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[112,3.42,303,7.296,339,2.606,1033,5.496]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.296,139,2.078,1168,2.571,1316,3.482,1826,3.281]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1168,2.499,2015,4.521,2365,6.476,2366,5.625,2367,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.058,29,1.096,35,0.547,60,2.205,65,2.205,201,1.879,261,2.705,379,2.005,385,1.052,412,1.794,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.296,139,2.078,259,1.71,1168,2.571,1316,3.482]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1527,4.137,1528,4.73,2366,6.122,2367,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.064,29,1.195,35,0.452,60,2.405,201,2.048,259,2.042,379,2.186,385,1.147,412,1.956,789,2.299,1168,3.069,1352,1.181]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2264,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.053,14,0.929,29,0.993,35,0.583,318,3.59,339,1.824,385,0.954,412,1.626,476,3.133,490,2.339,520,3.704,651,2.564,1352,0.982,2082,6.144,2086,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2276,2.639,2277,2.618]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.405,139,2.253,292,3.677,1316,3.776]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.26,711,3.242,2366,5.625,2367,5.625,2368,6.476]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.074,29,1.382,31,1.789,385,1.327,412,2.262,1352,1.366]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.298,2045,3.964,2219,2.533,2341,2.908]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,138,2.674,466,3.135,1826,2.564,2039,3.135,2045,2.857,2369,5.207,2370,5.207]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/social-networking/phpfox/",[2371,7.723]],["keywords//docs/applications/social-networking/phpfox/",[894,4.931,2108,6.174,2371,6.174]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[839,0.476]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.298,2038,4.14,2219,2.533,2341,2.908]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.253,5,1.404,14,0.81,61,1.036,1023,2.428,1063,3.131,2202,2.773]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1843,5.003,2372,6.476,2373,5.963,2374,6.476,2375,6.476]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.785,2061,4.093,2276,3.53,2277,3.502]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2376,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.911,127,1.849,485,3.62,490,2.04,2072,4.113,2073,3.163,2264,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2309,5.372]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2276,2.639,2277,2.618]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.785,1309,4.188,2276,3.53,2277,3.502]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.202,61,1.111,2219,2.167,2313,4.41,2314,5.127,2341,2.488]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.448,5,1.622,14,0.937,1063,3.618,1511,4.122]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.533,5,1.717,1511,4.362,2305,5.445]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.622,9,0.067,14,1.171,35,0.473,335,5.154,385,1.202,1352,1.237]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[839,0.476]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.344,11,0.672,90,1.862,1838,3.231,2276,3.02,2277,2.996]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.533,11,0.766,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.077,35,0.547,60,2.205,112,2.641,169,2.24,258,1.005,319,1.788,322,5.092,633,4.58,687,2.732,1838,5.997]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.296,127,2.136,259,1.71,1168,2.571,2264,3.655]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.371,1527,4.137,1528,4.73,2377,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.06,29,1.119,35,0.555,60,2.252,65,2.252,259,1.912,261,2.762,385,1.075,412,1.832,544,3.967,1168,2.874,1352,1.106,2291,4.826,2378,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.296,127,2.136,1168,2.571,1826,3.281,2264,3.655]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.371,1527,4.137,2015,4.921,2377,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.06,29,1.119,35,0.555,60,2.252,65,2.252,261,2.762,385,1.075,412,1.832,544,3.967,1168,3.769,1352,1.106,1553,5.444,1826,3.668]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.785,1309,4.188,2130,3.218,2265,3.117]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[127,2.53,2061,4.47,2379,4.329]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.311,110,3.311,129,1.565,356,3.61,2061,3.157,2062,4.072,2380,5.571]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.202,139,1.928,802,3.174,1304,3.202,1316,3.231]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.26,39,2.579,802,3.325,1304,3.355,1901,5.625]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.466,9,0.058,29,1.096,31,1.419,35,0.415,40,2.953,49,1.537,172,2.844,177,3.337,385,1.052,412,1.794,1304,4.99,1352,1.083,1841,3.779]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.202,127,1.982,802,3.174,1304,3.202,2264,3.391]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.078,29,1.119,31,1.9,35,0.555,49,1.189,172,2.904,177,3.407,385,1.075,412,1.832,1304,5.059,1352,1.106]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.986,127,1.982,164,1.767,258,0.851,320,3.146,2264,3.391]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[690,6.174,2381,7.733,2382,7.12]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.074,29,0.823,35,0.577,40,2.218,49,0.875,187,2.578,201,1.411,210,2.542,217,2.524,258,1.277,262,2.457,332,3.611,334,2.295,379,1.506,385,0.791,388,3.177,412,1.348,472,2.636,633,3.441,685,2.636,913,4.111,952,2.473,1352,0.814,1552,3.91,2383,4.111]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[127,2.317,258,0.995,1172,4.048,2264,3.964]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.297,2384,6.476,2385,6.476,2386,6.476,2387,5.625]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.067,14,1.171,29,1.251,60,2.518,258,1.147,385,1.202,412,2.048,1172,5.88,1352,1.237]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.724,258,0.918,1172,3.733,2276,3.255,2277,3.23]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.297,1975,5.171,2388,6.476,2389,6.476,2390,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2276,2.816,2277,2.795]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.651,1699,4.097,1870,3.881,2363,4.969,2391,5.515,2392,5.515]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,2264,3.391]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1843,5.973,1844,6.415,2393,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.394,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13,1682,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.405,127,2.317,292,3.677,2264,3.964]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.165,217,2.759,711,2.998,2309,4.969,2377,5.202,2394,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.215,9,0.068,29,0.908,31,2.063,40,2.446,64,2.344,65,1.827,90,1.82,100,1.813,101,2.864,203,1.747,319,1.481,345,2.657,385,0.872,412,1.486,706,1.813,789,1.747,847,2.765,1038,2.286,1352,0.898,1691,4.534,1841,3.131]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.627,49,0.92,164,1.648,258,0.794,320,2.934,2276,2.816,2277,2.795]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[258,0.825,711,2.998,1999,4.378,2395,5.99,2396,5.99,2397,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2130,2.567,2265,2.488]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2326,5.515]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2276,2.639,2277,2.618]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.785,2061,4.093,2130,3.218,2265,3.117]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2398,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2130,2.405,2265,2.331]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/redis/redis-on-fedora-14/",[127,2.53,162,4.163,2264,4.329]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.577,162,3.417,893,3.269,2030,4.621,2399,6.476]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,464,3.231,1196,3.292,2276,3.02,2277,2.996]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2276,2.482,2277,2.463,2400,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1690,2.621,1858,3.81,1859,3.81,2401,5.571,2402,5.571,2403,4.072,2404,4.072]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.058,29,1.096,35,0.415,219,5.635,258,1.327,259,2.473,262,3.27,327,2.666,385,1.052,412,1.794,1248,4.044,1271,4.18,1352,1.083,1861,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2276,2.816,2277,2.795]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2240,4.839,2241,4.621,2405,5.571]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.39,127,1.732,179,3.342,210,2.505,2078,2.904,2079,3.854,2264,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2276,2.482,2277,2.463]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.085,14,1.199,385,1.231,789,2.466,1352,1.267,2078,6.246]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2276,2.639,2277,2.618]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.153,127,2.317,1177,3.677,2264,3.964]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.155,5,1.294,9,0.062,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,127,1.704,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.724,49,1.063,1177,3.391,2406,3.135,2407,3.09]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.191,5,1.334,9,0.063,11,0.596,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,385,0.791,789,1.584,847,2.507,1038,2.072,1168,2.115,1352,0.814]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.153,127,2.317,759,3.197,2264,3.964]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1789,5.152,1790,5.289,2408,7.049,2409,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.239,5,1.969,9,0.082,16,1.684,29,1.215,35,0.619,49,1.29,164,1.617,201,1.457,210,2.623,258,1.114,259,1.452,379,1.555,412,1.391,537,3.665,685,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[839,0.476]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.259,203,2.281,1191,4.689]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1191,4.595,1623,6.174,2410,7.733]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[839,0.476]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[521,4.349,2411,5.42,2412,6.274,2413,6.274]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[139,1.868,382,3.881,866,4.494,2412,5.202,2413,5.202,2414,4.969]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,168,3.826,389,5.981,390,4.604,521,4.604,580,8.629,1476,4.547,1639,7.041,1778,4.044,1877,4.343,2047,5.131,2208,4.547,2325,4.547,2412,8.629,2413,9.178,2415,7.647,2416,5.235]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.672,319,1.515,731,3.12,894,3.941,2276,3.02,2277,2.996]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.651,459,3.103,662,2.509,731,3.023,2363,4.969,2392,5.515]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,139,1.798,302,3.23,368,2.457,583,3.62,2417,5.006,2418,5.006]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[139,2.198,2417,6.122,2418,6.122,2419,7.049]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[168,5.946,302,5.794,339,2.245,363,5.46,381,2.828,386,7.491,652,5.109,896,4.775,2417,7.067,2418,7.067]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.771,169,1.898,610,4.314,984,4.935,2286,5.368,2420,4.774]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[139,1.868,482,4.274,984,4.782,1529,3.706,2414,4.969,2421,5.515]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,389,4.581,476,3.607,688,4.355,902,5.43,981,4.852,984,8.79,1837,5.43,2286,8.601,2422,7.006]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,707,2.732,2264,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.724,49,1.063,1177,3.391,2276,3.255,2277,3.23]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.208,139,2.078,203,1.926,1191,3.959,1511,4.122]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.079,35,0.607,38,2.176,43,3.565,112,2.227,258,0.847,359,4.388,381,2.137,385,0.887,706,1.845,767,2.606,1191,6.681,1350,5.988,1352,0.913,1747,4.292]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.672,42,2.049,203,1.787,1191,3.673,2276,3.02,2277,2.996]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.979,9,0.086,35,0.492,38,1.725,43,2.826,64,1.89,107,2.761,112,1.765,119,1.701,171,3.724,297,2.171,359,3.478,381,1.694,385,0.703,706,1.462,767,2.065,789,1.409,947,5.791,1071,3.333,1191,6.802,1350,5.063,1352,0.724,1747,3.402]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.202,129,1.736,802,3.174,1304,3.202,2219,2.167]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.077,29,1.096,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,412,1.794,1304,4.99,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.202,127,1.982,802,3.174,1304,3.202,2379,3.391]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.058,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,472,3.509,847,3.337,1304,5.587,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2406,2.712,2407,2.674]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.058,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,472,3.509,847,3.337,1304,5.587,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.627,38,2.04,730,4.325,766,2.059,1055,2.169,2130,2.567,2265,2.488]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.627,38,2.04,730,4.325,766,2.059,1055,2.169,2276,2.816,2277,2.795]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.296,35,0.379,217,3.069,327,2.435,687,2.495]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.013,217,2.399,321,3.806,687,1.95,1708,4.794,2423,5.207,2424,5.207,2425,5.207]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.871,9,0.035,14,0.933,31,1.759,35,0.377,38,1.534,90,1.305,140,3.945,189,2.245,201,1.71,217,3.058,220,2.308,235,3.025,349,2.964,379,1.825,472,2.085,544,2.308,636,2.908,687,4.135,761,3.323,776,3.669,795,2.644,796,3.409,1140,2.721,2426,4.334,2427,6.639]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.121,61,1.036,802,2.96,1304,2.986,2219,2.021,2341,2.321]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2276,2.816,2277,2.795]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2276,3.02,2277,2.996,2287,3.627]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.785,162,3.811,2276,3.53,2277,3.502]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.577,893,3.269,2030,4.621,2428,6.476,2429,6.476]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.916,9,0.037,24,2.017,35,0.473,40,1.845,64,3.228,90,2.078,100,1.368,101,2.16,112,1.651,162,5.747,178,2.821,203,1.318,209,2.527,253,2.451,319,1.117,339,1.258,381,1.584,385,0.658,417,2.906,520,2.554,789,2.683,847,3.807,1038,1.724,1075,2.554,1352,0.677,1841,2.361,2031,4.923]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.672,258,0.851,597,3.825,1303,2.847,2276,3.02,2277,2.996]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.584,368,2.84,389,4.01,753,4.754,900,5.146]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[900,5.973,954,6.174,2430,7.733]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.292,64,4.149,97,4.968,102,4.048,169,1.657,217,3.601,221,4.476,392,3.85,504,4.308,712,2.657,753,5.578,776,2.031,795,3.292,796,2.771,900,6.038,1101,4.048,1286,3.85,1724,4.476,1837,3.85,2003,4.968,2269,4.968,2431,4.968,2432,4.968,2433,4.968]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,139,1.928,169,1.898,368,2.635,389,3.721,652,3.881]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[139,2.412,954,6.174,2434,7.733]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.682,38,1.799,139,2.77,169,3.206,170,3.549,193,3.412,194,3.549,210,2.358,232,3.412,249,3.628,302,2.849,334,2.129,349,3.477,368,3.787,389,3.061,652,7.276,685,2.446,712,2.504,902,3.628,1422,4.416]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.038,90,2.007,127,2.136,2287,3.909,2379,3.655]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[127,1.982,203,1.787,339,1.705,688,2.718,1473,3.542,2379,3.391]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2276,2.816,2277,2.795]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.585,1064,4.782,1065,3.655,1160,4.019,2435,5.99,2436,5.99]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.556,22,4.065,169,2.045,610,4.65,982,5.319]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[139,2.198,482,5.03,982,5.628,2414,5.847]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.777,22,4.643,169,2.336,189,3.942,368,3.244,476,3.607,982,9.31,1093,6.609,1837,5.43,2422,7.006]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2276,2.816,2277,2.795]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2276,2.816,2277,2.795]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1465,4.268,2087,5.003,2088,4.733,2437,6.476,2438,6.476]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.471,9,0.065,14,1.144,35,0.588,38,2.879,339,2.245,385,1.174,1352,1.208]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2276,3.02,2277,2.996]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2362,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.785,1033,3.502,2276,3.53,2277,3.502]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2222,5.847,2223,5.847,2439,7.049,2440,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[339,2.606,971,7.086,1033,4.579,2128,7.835,2441,8.203]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.724,49,1.063,759,2.948,2276,3.255,2277,3.23]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1656,5.003,2102,5.003,2363,5.372,2442,6.476,2443,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,437,3.825,490,2.187,527,4.41,1069,4.637,2444,5.368]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[490,2.494,790,3.444,1709,5.847,2444,6.122]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.048,14,1.561,49,0.948,300,4.744,489,3.625,490,2.963,603,4.744,755,3.916,761,2.974,1069,4.458,1238,4.59,1778,4.59,1837,4.24,2444,10.279,2445,5.941,2446,5.941]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.937,203,1.926,339,1.838,527,4.754,2447,5.786]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[139,1.868,168,4.378,411,3.253,790,2.927,2448,5.99,2449,5.99]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,252,5.561,339,2.099,368,3.244,411,4.133,1837,5.43,1876,6.075,2148,6.609,2447,10.128,2450,7.609,2451,7.609]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[127,2.53,2379,4.329,2452,6.095]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[127,2.261,253,3.791,779,4.921,2452,5.445]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.253,11,0.627,766,2.059,1055,2.169,1584,3.041,2276,2.816,2277,2.795]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.606,766,1.99,1584,2.939,2277,2.701,2453,5.571,2454,5.571,2455,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,259,1.587,1168,2.385,2276,3.02,2277,2.996]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.371,1527,4.137,1528,4.73,2362,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2276,2.639,2277,2.618]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.339,169,2.045,339,1.838,683,4.869,2457,6.134]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[139,2.02,502,5.963,954,5.171,1529,4.008,2414,5.372]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.931,14,0.821,19,3.083,58,7.188,169,1.794,319,1.432,339,1.612,368,2.491,683,8.372,2047,3.921,2457,5.38,2458,9.077,2459,8.276,2460,5.843,2461,5.843,2462,5.843]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.937,90,2.007,169,2.045,688,2.929,2463,5.786]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2463,6.716,2464,7.733,2465,7.733]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.536,169,2.898,249,4.036,332,3.727,368,2.411,381,2.81,405,3.451,476,2.681,688,4.79,815,6.246,1001,5.207,1099,6.456,1951,4.691,2463,8.197,2466,5.655,2467,5.655]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.759,171,3.709,328,3.176,707,3.424]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.717,328,3.099,707,3.341,893,3.558]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.953,5,1.155,16,1.412,17,1.101,18,1.108,29,0.712,35,0.484,45,2.112,46,2.085,49,0.757,60,1.434,119,1.656,169,2.182,176,1.952,201,1.221,251,2.184,327,2.598,328,3.748,336,2.502,428,2.855,486,4.119,581,3.934,707,2.248,723,2.749,761,2.374,830,8.809,932,4.119,1043,3.786,1069,3.558,2468,4.366,2469,7.107]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.672,1991,4.314,1992,4.227,1993,3.771,2130,2.753,2265,2.667]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[127,1.849,164,1.648,200,3.266,259,1.48,1168,2.224,2059,3.163,2379,3.163]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2059,3.553,2470,5.963,2471,5.963,2472,5.963,2473,6.476]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.068,35,0.605,60,2.579,65,2.579,261,3.163,385,1.231,544,4.543,1352,1.267]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[127,1.982,1593,4.774,1812,4.774,2379,3.391,2474,4.41,2475,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[127,2.261,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[127,2.53,2045,4.329,2379,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[127,1.787,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2476,4.448]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.049,127,1.982,1271,3.542,1977,4.005,2016,3.627,2379,3.391]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.049,14,0.864,29,0.924,35,0.349,38,2.176,119,2.147,177,2.813,201,1.584,306,3.608,350,3.565,379,1.69,385,0.887,412,2.109,490,2.176,723,3.565,790,3.004,1352,0.913,2016,5.797,2022,3.307,2025,4.613,2026,4.292,2027,3.984]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,203,1.666,339,1.59,688,2.535,1473,3.303,2219,2.021,2341,2.321]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.627,203,1.666,339,1.59,688,2.535,1473,3.303,2130,2.567,2265,2.488]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[203,2.281,688,3.469,1473,4.521]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[839,0.476]],["title//docs/websites/wikis/confluence-on-centos-5/",[129,2.216,2219,2.767,2478,5.031]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2478,4.495,2479,7.049,2480,5.628,2481,5.628]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.91,5,1.74,9,0.076,10,5.1,12,3.638,29,1.074,35,0.406,201,1.841,379,1.965,412,1.757,1023,3.011,2478,7.256]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[839,0.476]],["title//docs/websites/wikis/confluence-on-fedora-13/",[127,2.53,2379,4.329,2478,5.031]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2478,4.495,2480,5.628,2481,5.628,2482,7.049]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.86,5,1.673,9,0.074,10,4.901,12,3.496,29,1.032,35,0.39,201,1.769,379,1.888,385,0.991,412,1.689,1023,2.893,1352,1.02,2478,7.14]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.911,127,1.849,485,3.62,490,2.04,2072,4.113,2073,3.163,2379,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2483,5.625]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.328,9,0.053,35,0.512,42,2.191,57,3.979,169,2.03,201,1.703,261,2.451,385,0.954,411,3.59,789,1.911,1352,0.982,1404,5.943,2073,6.048,2076,4.614,2077,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2379,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.055,14,0.966,35,0.595,318,3.73,339,1.895,385,0.991,476,3.255,490,2.43,520,3.849,651,2.664,1352,1.02,2082,6.226,2086,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2406,2.541,2407,2.505]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.055,14,0.966,35,0.595,318,3.73,339,1.895,385,0.991,476,3.255,490,2.43,520,3.849,651,2.664,1352,1.02,2082,6.226,2086,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2478,4.495,2480,5.628,2481,5.628,2484,7.049]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.785,2406,3.399,2407,3.351,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2478,4.495,2480,5.628,2481,5.628,2485,7.049]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.785,2130,3.218,2265,3.117,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2478,4.495,2480,5.628,2481,5.628,2486,7.049]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2406,2.541,2407,2.505]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2487,5.171]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.304,9,0.052,35,0.369,57,3.906,169,1.992,201,1.671,261,2.406,282,2.989,327,2.372,385,0.936,399,4.63,411,3.524,789,1.876,1352,0.964,1404,5.867,2057,4.354,2073,5.576,2076,4.529,2077,4.63]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.016,139,2.253,368,3.08,879,5.58]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[232,4.346,382,4.196,879,5.003,2421,5.963,2488,6.476]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.823,40,2.218,139,2.465,334,2.295,363,3.677,368,3.37,437,3.391,485,3.441,582,4.545,879,8.313,1597,5.045,2056,4.233,2180,4.545,2489,5.48,2490,7.278,2491,9.272,2492,5.48,2493,5.48,2494,5.48,2495,5.48]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,662,2.589,2219,2.167,2341,2.488,2371,4.935,2496,5.691]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[894,4.931,2108,6.174,2371,6.174]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.074,64,3.568,385,1.327,706,2.76,1352,1.366,2371,7.344]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.021,11,0.552,14,0.714,407,3.546,2042,3.348,2043,3.292,2044,4.677,2130,2.263,2265,2.192]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.085,11,0.587,14,0.759,407,3.77,2042,3.559,2043,3.499,2406,2.541,2407,2.505]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.06,35,0.619,38,2.636,282,3.431,327,2.723,381,2.589,789,2.153,2042,4.909,2043,7.494,2057,4.998]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2130,2.567,2265,2.488]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.651,1699,4.097,1870,3.881,2391,5.515,2497,4.627,2498,5.515]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.97,171,2.773,172,2.106,258,0.744,2219,1.894,2341,2.174,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.703,4,1.843,5,1.472,9,0.085,29,0.908,35,0.343,60,1.827,172,2.356,175,4.312,258,1.167,261,2.241,385,0.872,412,1.486,789,1.747,1352,0.898,2500,4.668,2503,6.546,2505,5.249,2506,5.249]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.587,171,2.773,172,2.106,258,0.744,2130,2.405,2265,2.331,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.644,4,1.778,5,1.4,9,0.083,29,0.863,35,0.327,60,1.738,172,2.241,175,4.101,258,1.127,261,2.131,282,2.648,327,2.101,385,0.829,412,1.413,789,1.662,1352,0.854,2057,3.857,2500,4.44,2503,6.318,2505,4.992,2506,4.992]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.049,129,1.736,1271,3.542,1976,3.673,1977,4.005,2219,2.167]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2507,4.888,2508,4.501]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.085,29,1.282,35,0.485,57,5.135,325,4.104,706,2.56,1976,6.33]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2130,2.405,2265,2.331]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1022,6.095,2042,5.2,2043,5.113]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2043,5.549,2108,6.837]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[839,0.476]],["title//docs/databases/redis/redis-on-centos-5/",[129,2.216,162,4.163,2219,2.767]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.577,162,3.417,893,3.269,2030,4.621,2509,6.476]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.043,24,2.388,35,0.307,40,2.184,47,1.901,64,2.093,90,2.354,100,1.619,101,2.557,112,1.954,162,5.643,178,3.339,203,1.56,209,2.991,253,2.902,319,1.323,339,1.489,381,1.875,417,3.44,520,3.024,789,2.26,847,2.468,1038,2.041,1075,3.024,1841,2.795,2031,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[839,0.476]],["title//docs/databases/redis/redis-on-fedora-13/",[127,2.53,162,4.163,2379,4.329]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.577,162,3.417,893,3.269,2030,4.621,2510,6.476]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.785,162,3.811,2406,3.399,2407,3.351]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.577,893,3.269,2030,4.621,2511,6.476,2512,5.963]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[127,1.732,172,2.106,258,0.744,259,1.386,381,1.877,1248,2.994,2379,2.963,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.065,29,1.222,35,0.462,258,1.424,259,2.654,385,1.174,412,2.001,1248,4.511,1352,1.208]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,464,3.231,1196,3.292,2130,2.753,2265,2.667]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.587,171,2.773,172,2.106,258,0.744,2406,2.541,2407,2.505,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.644,4,1.778,5,1.4,9,0.083,29,0.863,35,0.327,60,1.738,172,2.241,175,4.101,258,1.127,261,2.131,282,2.648,327,2.101,385,0.829,412,1.413,789,1.662,1352,0.854,2057,3.857,2500,4.44,2503,6.318,2505,4.992,2506,4.992]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[323,4.847,476,3.424,623,4.761,662,3.025]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[325,3.391,623,4.646,662,2.952,981,4.495]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.02,11,0.275,14,0.786,15,1.523,16,0.753,22,1.543,35,0.244,38,1.979,47,0.891,61,0.455,84,1.898,90,1.293,95,3.138,127,0.811,129,0.71,139,1.339,146,1.484,170,1.766,178,4.964,193,1.697,216,1.667,225,1.503,261,0.938,323,5.383,324,1.588,325,1.217,326,4.895,334,1.059,350,2.489,360,2.997,368,1.078,468,1.667,555,2.197,558,1.766,562,2.224,623,7.256,635,1.484,647,1.898,662,1.059,790,1.236,896,1.484,1066,1.45,1098,4.945,1289,3.953,1316,1.322,1322,1.805,1397,2.197,1408,5.15,1425,1.503,1432,2.329,1478,2.02,1882,2.197,2208,2.197,2513,2.329,2514,2.53,2515,2.53,2516,2.53,2517,2.53,2518,2.53]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,464,3.231,1196,3.292,2406,2.908,2407,2.867]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.058,35,0.415,47,2.57,172,2.844,189,3.779,200,4.133,258,1.005,297,3.249,404,4.989,435,4.437,709,6.111,1196,5.13]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.672,31,1.202,464,3.231,1196,3.292,2130,2.753,2265,2.667]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.785,162,3.811,2130,3.218,2265,3.117]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.577,893,3.269,2030,4.621,2512,5.963,2519,6.476]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[169,1.77,1099,4.602,1750,5.606,1949,4.782,2520,5.307,2521,5.764]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1427,5.202,1949,4.969,2522,5.99,2523,5.99,2524,5.99,2525,5.99]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.022,14,1.249,169,2.727,210,2.358,249,3.628,312,3.021,368,3.191,370,4.059,688,2.236,712,2.504,1099,8.72,1427,7.715,1949,7.368,2180,4.218,2520,10.056,2526,5.084,2527,5.084,2528,5.084]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.063,35,0.448,543,4.421]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[545,5.625,546,5.625,548,5.625,2529,6.476,2530,6.476]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.074,17,2.135,18,2.149,35,0.523,543,6.253]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.153,129,2.029,1177,3.677,2219,2.533]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.173,5,1.314,9,0.063,29,0.811,31,1.788,35,0.307,47,3.238,49,1.248,65,1.631,100,1.619,112,1.954,164,1.543,201,1.39,203,1.56,259,1.385,319,1.323,339,1.489,345,2.372,379,1.483,385,0.779,412,1.327,789,1.56,847,2.468,1038,2.041,1168,2.082,1352,0.801,1691,4.048]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[839,0.476]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.298,162,3.811,2219,2.533,2341,2.908]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.577,893,3.269,2030,4.621,2531,6.476,2532,6.476]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[127,2.317,258,0.995,263,4.47,1172,4.048]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.297,2387,5.625,2533,6.476,2534,6.476,2535,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.07,14,1.229,60,2.643,258,1.204,385,1.261,1172,6.061,1352,1.298]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[127,2.317,258,0.995,1172,4.048,2379,3.964]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.297,2387,5.625,2536,6.476,2537,6.476,2538,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.07,14,1.229,60,2.643,258,1.204,385,1.261,1172,6.061,1352,1.298]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.724,258,0.918,1172,3.733,2130,2.967,2265,2.875]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.297,1974,5.963,1975,5.171,2539,6.476,2540,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.724,258,0.918,1172,3.733,2406,3.135,2407,3.09]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.297,1975,5.171,2541,6.476,2542,6.476,2543,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.082,12,4.048,14,1.118,60,2.405,223,5.336,258,1.096,385,1.147,1172,5.71,1352,1.181,2340,5.967]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.839,99,3.196,139,1.798,847,2.637,916,3.383,1316,3.013,1573,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[848,4.304,849,4.304,850,4.18,851,3.975,1316,2.912,1574,4.448,1575,4.448]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.839,99,3.196,129,1.619,207,2.414,847,2.637,916,3.383,1573,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[129,1.565,848,4.304,849,4.304,850,4.18,851,3.975,1574,4.448,1575,4.448]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.044,99,3.427,381,2.148,847,2.827,916,3.627,1573,4.41]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[848,4.627,849,4.627,850,4.494,851,4.274,1574,4.782,1575,4.782]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.153,139,2.253,1177,3.677,1316,3.776]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.493,5,1.673,9,0.074,29,1.032,31,1.8,35,0.39,47,2.419,49,1.477,164,1.964,201,1.769,259,1.763,379,1.888,385,0.991,412,1.689,1168,2.65,1352,1.02]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[839,0.476]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[368,2.84,389,4.01,610,4.65,2411,4.998,2544,5.786]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1529,4.362,2544,6.122,2545,7.049,2546,6.49]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,169,3.121,193,4.354,249,4.63,368,2.766,389,3.906,445,4.074,647,4.868,652,4.074,813,5.382,2544,10.283,2547,6.488,2548,5.974]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[169,2.218,404,4.941,405,4.408,2549,5.993]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[368,3.005,1518,5.847,2550,7.049,2551,7.049]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.601,14,1.064,38,1.826,139,2.359,169,3.225,170,3.601,199,3.601,290,3.77,307,3.4,334,2.161,368,2.199,390,3.106,405,6.41,445,3.239,468,3.4,620,3.681,634,4.48,651,2.001,854,4.48,1071,3.528,2549,7.431,2552,5.159,2553,4.75,2554,5.159]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[169,2.423,610,5.508,902,5.63]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[109,4.521,169,1.988,902,4.621,981,4.129,2546,5.963]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,169,2.194,368,4.051,688,3.142,887,5.223,902,8.454,981,6.059,1099,5.706,2298,5.362,2555,6.207,2556,7.146]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.153,127,2.317,1177,3.677,2379,3.964]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.191,5,1.334,9,0.063,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,127,1.757,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,385,0.791,789,1.584,847,2.507,1038,2.072,1168,2.115,1352,0.814]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.724,49,1.063,1177,3.391,2130,2.967,2265,2.875]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.04,61,1.036,730,4.325,766,2.059,1055,2.169,2219,2.021,2341,2.321]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.97,138,2.773,210,2.505,265,3.169,662,2.262,2219,1.894,2341,2.174,2557,4.691]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[138,3.325,1633,5.372,2557,5.625,2558,6.476,2559,6.476]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.078,35,0.603,40,2.446,49,0.965,164,1.728,169,1.856,171,3.103,236,4.312,339,1.667,381,2.1,385,0.872,477,3.424,706,1.813,931,4.825,1033,2.93,1352,0.898,2555,5.249,2557,9.214]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.063,61,1.197,1177,3.391,2219,2.336,2341,2.682]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.09,5,1.221,9,0.059,29,0.753,31,1.713,35,0.285,47,3.427,49,1.182,61,1.331,65,2.239,100,1.504,112,1.815,164,1.433,201,1.291,203,1.449,259,1.287,319,1.229,339,1.383,345,2.204,379,1.378,385,0.723,412,1.233,789,1.449,847,2.293,1013,4.353,1038,1.895,1168,1.934,1352,0.744,2560,5.012]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,164,1.453,200,2.878,259,1.304,1168,1.96,1184,2.502,2059,2.787,2130,2.263,2265,2.192]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1870,3.881,2470,5.515,2471,5.515,2497,4.627,2561,5.515,2562,5.515]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.067,35,0.596,60,2.518,65,2.518,261,3.089,385,1.202,544,4.436,706,2.499,1352,1.237]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.344,127,1.982,766,2.207,1055,2.326,2289,3.463,2379,3.391]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2563,4.888,2564,3.776,2565,3.776,2566,3.776,2567,3.776]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.993,4,2.101,9,0.059,14,1.03,16,2.183,29,1.101,35,0.549,60,1.494,65,1.494,119,2.559,171,2.537,261,1.833,379,1.359,385,0.713,391,3.474,435,2.276,687,1.851,767,2.094,776,1.86,1055,3.287,1352,0.734,1588,3.015,2235,3.38,2289,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.986,127,1.982,164,1.767,258,0.851,320,3.146,2379,3.391]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[690,6.174,2382,7.12,2568,7.733]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.077,35,0.594,40,2.365,49,0.933,187,2.749,201,1.505,217,2.691,258,1.324,262,2.62,332,3.851,334,2.447,379,1.606,385,0.843,388,3.388,472,2.811,633,3.669,913,4.384,952,2.637,1352,0.868,1552,4.169,2383,4.384]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,2379,3.391]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1843,5.973,1844,6.415,2569,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.394,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13,1682,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[839,0.476]],["title//docs/databases/postgresql/fedora-13/",[5,1.505,14,0.869,30,2.667,127,1.982,1063,3.357,2379,3.391]],["keywords//docs/databases/postgresql/fedora-13/",[1065,4.718,1160,5.189,2570,7.733]],["toc//docs/databases/postgresql/fedora-13/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.296,127,2.136,259,1.71,1168,2.571,2379,3.655]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.371,1527,4.137,1528,4.73,2571,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,259,1.873,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.296,127,2.136,1168,2.571,1826,3.281,2379,3.655]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.371,1527,4.137,2015,4.921,2571,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,261,2.705,339,2.012,385,1.052,544,3.885,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.39,127,1.732,179,3.342,210,2.505,2078,2.904,2079,3.854,2379,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,707,2.732,2379,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.986,127,1.982,164,1.767,292,3.146,2059,3.391,2379,3.391]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2059,3.867,2472,6.49,2483,6.122,2572,6.49]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.056,29,1.052,35,0.398,121,4.334,145,3.565,319,2.298,385,1.011,412,1.722,651,3.637,744,5.802,803,6.413,1352,1.04,2059,5.145]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.986,127,1.982,164,1.767,292,3.146,2059,3.391,2264,3.391]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2059,3.867,2309,5.847,2572,6.49,2573,7.049]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.056,29,1.052,35,0.398,121,4.334,145,3.565,319,2.298,385,1.011,412,1.722,651,3.637,744,5.802,803,6.413,1352,1.04,2059,5.145]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2574,6.274]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2574,5.625,2575,6.476,2576,6.476,2577,6.476]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.074,60,2.781,165,7.105,385,1.327,1352,1.366,2574,7.989]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.344,127,1.982,263,3.825,766,2.207,1055,2.326,2289,3.463]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2578,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.993,4,2.101,9,0.059,14,1.03,16,2.183,29,1.101,35,0.549,60,1.494,65,1.494,119,2.559,171,2.537,261,1.833,379,1.359,385,0.713,391,3.474,435,2.276,687,1.851,767,2.094,776,1.86,1055,3.287,1352,0.734,1588,3.015,2235,3.38,2289,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.672,42,2.049,203,1.787,1191,3.673,2130,2.753,2265,2.667]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.979,9,0.086,35,0.492,38,1.725,43,2.826,64,1.89,107,2.761,112,1.765,119,1.701,171,3.724,297,2.171,359,3.478,381,1.694,385,0.703,706,1.462,767,2.065,789,1.409,947,5.791,1071,3.333,1191,6.802,1350,5.063,1352,0.724,1747,3.402]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.153,127,2.317,759,3.197,2379,3.964]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1789,5.152,1790,5.289,2579,7.049,2580,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.405,127,2.317,292,3.677,2379,3.964]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.165,217,2.759,711,2.998,2394,5.202,2483,5.202,2571,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.236,9,0.079,31,2.079,40,2.489,64,2.385,65,1.859,90,1.852,100,1.845,101,2.914,203,1.778,319,1.507,345,2.704,385,0.887,706,1.845,789,1.778,847,2.813,1038,2.325,1352,0.913,1691,4.613,1841,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.672,49,0.986,203,1.787,2130,2.753,2181,4.41,2265,2.667]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[203,2.476,2181,6.111]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2130,2.753,2265,2.667,2287,3.627]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[129,1.871,258,0.918,597,4.122,1303,3.069,2219,2.336]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.078,29,1.119,35,0.555,47,2.624,172,3.808,258,1.345,297,3.318,412,1.832,802,3.825,1303,4.499]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,597,3.825,1303,2.847,2130,2.753,2265,2.667]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,597,3.825,1303,2.847,2406,2.908,2407,2.867]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.082,35,0.579,172,3.101,258,1.096,297,3.542,385,1.147,802,4.084,1303,4.694,1352,1.181]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.627,203,1.666,753,4.113,1947,4.453,2052,4.113,2130,2.567,2265,2.488]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.704,2052,4.621,2053,5.625,2265,2.795,2497,5.003]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.07,14,0.896,29,0.957,35,0.572,158,3.189,282,2.935,297,2.838,327,2.329,385,0.919,399,4.546,587,4.001,706,1.912,1348,5.087,1352,0.946,2052,6.274,2054,5.285,2056,4.922,2057,4.275,2581,5.866]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,1303,2.847,2130,2.753,2265,2.667,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.606,39,2.219,258,0.767,1303,2.566,2265,2.404,2498,5.13,2583,4.448]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.053,14,0.929,29,0.993,35,0.376,39,2.632,112,2.394,172,2.577,189,3.424,201,2.322,258,0.911,297,2.944,339,1.824,385,0.954,412,1.626,712,3.255,1303,4.727,1352,0.982,1425,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,258,0.851,597,3.825,1303,2.847,2219,2.167,2341,2.488]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[839,0.476]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.05,33,2.262,316,3.77,498,4.052,789,1.561,2420,4.172,2584,4.691]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.847,33,1.824,217,2.006,258,0.6,328,1.914,499,5.319,711,2.179,2585,4.354,2586,4.354,2587,4.354]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.31,33,2.821,35,0.383,38,2.384,42,2.233,217,3.103,258,0.928,316,6.376,328,2.962,350,3.906,435,3.103,487,4.055,498,6.853,706,2.021,789,1.947,2026,4.702,2420,5.204,2584,5.851]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,894,3.675,2219,2.021,2341,2.321,2588,5.764,2589,5.764,2590,5.307]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2591,7.049,2592,7.049,2593,7.049,2594,5.445]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.076,35,0.406,47,2.517,64,2.772,100,2.144,172,2.786,203,2.066,319,1.752,385,1.031,706,2.144,789,2.747,1038,2.703,1352,1.061,2590,8.75]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.672,319,1.515,731,3.12,894,3.941,2130,2.753,2265,2.667]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.651,459,3.103,662,2.509,731,3.023,2497,4.627,2595,5.99]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.672,766,2.207,1184,3.044,2004,3.673,2130,2.753,2265,2.667]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[2004,3.849,2007,4.429,2008,4.859,2596,6.476,2597,5.963]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.057,29,1.074,327,2.612,381,3.303,385,1.031,412,1.757,933,5.1,952,3.225,981,4.557,1352,1.061,1628,4.422,1804,4.422,2004,6.344,2009,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.174,11,0.587,766,1.929,1055,2.032,1184,2.66,1584,2.849,2130,2.405,2265,2.331]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.606,766,1.99,1584,2.939,2265,2.404,2597,5.13,2598,5.571,2599,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.627,273,3.07,939,3.567,2297,4.602,2298,4.325,2406,2.712,2407,2.674]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1065,3.399,2302,4.839,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2600,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.587,273,2.876,939,3.342,1184,2.66,2130,2.405,2265,2.331,2297,4.312,2298,4.052]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1065,3.399,2302,4.839,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2601,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2130,2.405,2265,2.331]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1991,5.508,1992,5.396,2602,6.853]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1992,4.821,2602,6.122,2603,7.049,2604,6.49]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2602,7.067]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1394,5.993,1991,5.043,1992,6.546]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[759,2.866,1394,5.372,2604,5.963,2605,6.476,2606,6.476]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.089,385,1.327,706,2.76,1352,1.366,1394,7.63]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.587,766,1.929,1023,2.275,1184,2.66,1370,3.559,2130,2.405,2265,2.331,2350,4.312]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1587,4.274,2354,4.782,2355,4.782,2607,5.99,2608,5.99,2609,5.515]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.587,42,1.79,1184,2.66,1271,3.095,1976,3.209,1977,3.499,2130,2.405,2265,2.331]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2610,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.176,164,2.066,712,3.558,2611,6.274]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[259,1.663,677,5.625,680,3.899,1170,4.268,2611,5.625]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2611,7.067]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2130,2.567,2265,2.488]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.627,31,1.121,1168,2.224,1184,2.839,1826,2.839,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2612,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.966,9,0.076,11,0.78,19,3.788,29,0.722,31,0.935,35,0.542,60,1.453,65,1.453,148,4.732,187,2.262,201,1.238,261,1.783,327,1.757,379,1.322,385,0.694,412,1.182,490,1.701,544,2.56,1168,1.855,1352,0.714,1423,3.018,1529,2.974,1782,4.175,1783,5.956,1826,2.367,2291,3.115,2378,3.606,2613,7.18,2614,4.807]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,172,1.87,258,0.661,259,1.231,381,1.667,1184,2.362,1248,2.659,2130,2.136,2265,2.069,2400,3.422]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1690,2.621,1858,3.81,1859,3.81,2403,4.072,2404,4.072,2615,5.571,2616,5.571]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.055,29,1.032,35,0.39,219,5.305,258,1.275,259,2.375,262,3.079,282,3.163,327,3.383,385,0.991,412,1.689,1248,3.808,1271,3.936,1352,1.02,1861,5.153,2057,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.587,43,3.131,49,0.862,767,2.289,1184,2.66,1987,3.209,2130,2.405,2265,2.331]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2240,4.839,2241,4.621,2617,5.571]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.862,265,3.627,356,4.005,2281,6.65,2618,5.691]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2285,5.171,2619,6.476,2620,5.963,2621,6.476,2622,6.476]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.082,100,2.386,203,2.299,319,1.949,385,1.147,706,2.386,789,2.299,1038,3.008,1352,1.181,2281,6.143,2618,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[839,0.476]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.007,265,3.909,356,4.317,2281,5.146,2623,5.786]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2285,5.628,2620,6.49,2623,6.122,2624,7.049]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2623,7.067]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2130,2.263,2265,2.192]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2130,2.405,2265,2.331]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,215,2.706,490,1.798,1184,2.502,2082,2.706,2083,3.474,2130,2.263,2265,2.192]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.587,49,0.862,164,1.544,292,2.749,1184,2.66,2059,2.963,2130,2.405,2265,2.331]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1870,4.196,2059,3.553,2497,5.003,2561,5.963,2562,5.963]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.053,29,0.993,35,0.376,65,1.999,121,4.09,145,3.365,319,2.21,345,2.907,385,0.954,412,1.626,651,3.497,744,5.579,803,6.167,1016,3.394,1352,0.982,2059,4.947]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.192,49,0.811,90,1.53,141,2.945,204,2.444,319,1.245,351,3.058,630,3.019,2625,3.924]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2065,5.171,2625,5.003,2626,6.476,2627,5.963,2628,5.963]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.072,14,1.26,35,0.509,655,4.019,1096,5.137,2625,8.485]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.174,5,1.315,11,0.587,14,0.759,1063,2.933,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1465,4.646,2087,5.445,2088,5.152,2629,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.471,9,0.065,14,1.144,35,0.588,38,2.879,339,2.245,385,1.174,1352,1.208]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.587,49,0.862,164,1.544,258,0.744,320,2.749,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[258,0.825,711,2.998,1999,4.378,2630,5.99,2631,5.99,2632,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.724,1033,3.23,1184,3.281,2130,2.967,2265,2.875]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2222,6.415,2223,6.415,2633,7.733]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[339,2.606,971,7.086,1033,4.579,2128,7.835,2441,8.203]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.627,90,1.736,380,3.735,708,3.517,1184,2.839,2130,2.567,2265,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2634,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.315,11,0.587,14,0.759,30,2.331,1063,2.933,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.585,1064,4.782,1065,3.655,1160,4.019,2635,5.99,2636,5.99]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.672,31,1.202,292,3.146,1184,3.044,2130,2.753,2265,2.667]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.606,31,1.084,217,2.566,711,2.789,2497,4.304,2612,4.839,2637,5.571]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.194,9,0.078,11,0.646,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[195,5.155,662,3.025,1676,6.274,2638,5.993]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2638,5.847,2639,6.49,2640,6.49,2641,6.49]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.065,14,0.804,35,0.325,139,1.118,141,2.078,145,2.913,194,2.502,195,2.558,201,0.923,210,1.663,290,2.62,313,6.884,332,2.362,339,1.579,351,2.158,392,2.558,487,2.158,630,2.13,662,3.415,692,3.113,761,1.794,896,2.104,914,3.3,918,2.862,1000,3.113,1431,3.3,1529,2.218,1664,3.3,2002,3.3,2086,1.928,2432,3.3,2433,3.3,2468,5.269,2638,8.854,2640,3.3,2641,3.3,2642,3.584,2643,3.584,2644,3.584,2645,3.584,2646,3.584,2647,3.584,2648,3.584]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.404,14,0.81,30,2.488,145,2.934,204,2.773,651,2.236,2625,4.453]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2065,4.782,2625,4.627,2627,5.515,2628,5.515,2649,5.99,2650,5.99]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.072,14,1.26,35,0.509,655,4.019,1096,5.137,2625,8.485]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,766,2.059,1023,2.428,1370,3.799,2219,2.021,2341,2.321,2350,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1587,4.274,2353,5.515,2354,4.782,2355,4.782,2651,5.99,2652,5.99]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.007,101,3.158,140,3.959,476,3.158,2653,5.786]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1211,4.022,1631,4.157,1632,4.157,2653,4.523,2654,5.207,2655,4.794,2656,4.794,2657,5.207]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.88,9,0.045,22,3.396,86,4.068,101,2.638,169,2.454,204,2.678,215,2.964,282,3.682,300,4.444,444,4.617,684,2.964,712,3.937,1422,4.834,1815,6.175,1907,6.943,2411,4.176,2474,3.972,2513,5.125,2653,8.879,2658,5.125]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.587,42,1.79,47,1.902,1325,4.312,1381,3.947,1769,4.172,2406,2.541,2407,2.505]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1325,4.448,1381,4.072,1385,4.839,1769,4.304,2659,5.571,2660,5.571,2661,5.571]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.537,9,0.08,16,1.559,29,0.787,35,0.565,64,2.031,74,2.578,119,1.828,262,2.347,273,4.073,275,3,345,2.302,370,4.18,385,0.755,521,3.152,525,3.392,706,1.571,759,2.317,790,2.558,916,3.072,1352,0.778,1381,5.589,1393,4.82,1769,5.907,1773,4.82]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.049,61,1.111,203,1.787,1191,3.673,2219,2.167,2341,2.488]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.085,35,0.513,38,1.853,43,3.035,64,2.031,107,2.966,112,1.896,171,3.927,359,3.736,381,1.82,385,0.755,706,1.571,767,2.219,789,1.513,947,6.105,1191,6.943,1350,5.338,1352,0.778,1747,3.655]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.627,31,1.121,259,1.48,1168,2.224,1184,2.839,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.371,1527,4.137,1528,4.73,2612,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[169,2.423,2662,7.265,2663,6.853]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.449,61,1.164,2594,5.003,2663,5.625,2664,6.476]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.075,11,0.761,61,1.259,89,2.142,127,2.246,129,1.967,139,2.184,215,3.73,587,4.398,1316,3.661,2130,3.12,2219,3.288,2265,3.023,2341,2.82,2663,8.144]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[839,0.476]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.571,5,1.759,15,4.349,16,2.151]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.118,4,1.681,7,6.174]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.869,2,5.594,4,1.644,5,1.493,7,4.896,8,5.656,14,1.204,24,2.282,90,1.178,158,2.581,169,0.697,187,1.841,235,5.976,320,3.121,334,3.586,339,1.079,443,6.963,895,2.535,932,1.971,1066,4.334,1525,1.425,1682,1.702,1947,3.022,2665,2.269,2666,6.917,2667,6.132,2668,3.912,2669,3.912,2670,2.269,2671,2.089,2672,2.269]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[839,0.476]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.89,90,1.862,2219,2.167,2287,3.627,2341,2.488]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2287,3.627,2406,2.908,2407,2.867]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/wikis/dokuwiki-engine/",[408,8.002,2673,8.002]],["keywords//docs/websites/wikis/dokuwiki-engine/",[259,1.985,2039,4.655,2674,7.733]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.085,100,2.56,203,2.466,319,2.091,706,2.56,789,2.466,1038,3.226,2673,7.854]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.344,11,0.672,90,1.862,1838,3.231,2406,2.908,2407,2.867]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.533,11,0.766,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.074,35,0.526,60,2.077,112,2.487,169,2.109,258,0.946,282,3.163,319,1.683,322,4.794,327,2.511,633,4.312,687,2.572,1838,5.854,2675,6.323]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.007,164,1.905,259,1.71,712,3.281,2676,6.134]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[680,4.243,759,3.119,2677,7.049,2678,7.049]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.082,100,2.386,203,2.299,259,2.042,319,1.949,385,1.147,706,2.386,789,2.299,1038,3.008,1352,1.181,2676,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[839,0.476]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[129,2.216,2219,2.767,2296,5.2]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.559,110,3.559,129,1.682,1623,4.782,2296,3.948,2679,5.515]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.174,9,0.077,21,3.388,29,0.878,35,0.47,40,2.365,60,1.767,187,2.749,201,1.505,258,0.805,261,2.167,319,1.432,379,1.606,393,4.079,412,1.437,576,3.851,789,1.689,1525,3.669,1837,4.169,2296,7.549]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[839,0.476]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.298,1309,4.188,2219,2.533,2341,2.908]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[839,0.476]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.176,262,3.239,2680,6.651,2681,6.651]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1826,3.808,2680,7.12,2682,7.733]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.093,14,1.047,38,2.636,65,2.252,168,5.444,204,3.584,297,3.318,385,1.075,388,4.319,2681,8.992,2683,7.448]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.085,14,0.759,61,0.97,407,3.77,2042,3.559,2043,3.499,2219,1.894,2341,2.174]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[129,1.871,1991,4.65,1992,4.556,1993,4.065,2219,2.336]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.473,64,3.231,100,2.499,203,2.408,319,2.041,573,5.943,706,2.499,789,2.408,1038,3.15,1993,5.082]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[839,0.476]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.736,178,3.567,363,3.868,367,4.113,742,3.799,1750,3.942]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[139,2.02,363,4.346,742,4.268,926,4.521,2684,6.476]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.053,14,0.929,38,2.339,90,1.991,99,3.665,114,5.278,367,4.717,368,2.818,445,4.151,468,4.357,655,2.964,742,8.031,1750,4.521,2411,4.959,2685,6.61]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2038,5.543]],["keywords//docs/websites/wikis/twiki/",[466,4.243,1826,3.471,2038,4.039,2039,4.243]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[839,0.476]],["title//docs/applications/messaging/advanced-irssi-usage/",[168,5.766,487,4.75,2686,6.299]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1487,4.627,1747,4.181,1748,5.202,1749,5.202,2686,4.782,2687,5.515]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,107,4.833,224,7.076,251,3.929,385,1.231,1352,1.267,1478,6.811,1494,6.811,1588,5.205]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.937,650,5.526,1060,5.526,1487,5.146,2686,5.319]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1487,4.627,1747,4.181,1748,5.202,1749,5.202,2686,4.782,2687,5.515]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.039,35,0.488,38,1.701,43,2.787,80,1.99,90,2.163,107,2.723,119,1.678,145,3.655,168,3.513,181,3.987,368,2.049,468,4.732,662,3.007,673,5.956,684,2.56,706,1.442,979,4.175,1271,2.755,1747,5.012,1753,4.426,1755,6.611,2411,3.606,2686,8.144,2688,4.807,2689,4.807,2690,4.807,2691,4.807]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.551,129,1.619,172,2.248,253,3.1,707,2.732,2219,2.021]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2406,2.541,2407,2.505]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.262,42,1.79,61,0.97,258,0.744,328,2.375,2219,1.894,2341,2.174]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.135,42,1.685,47,1.791,49,0.811,202,3.021,216,3.351,220,2.708,231,3.294,258,0.7,328,2.236,385,0.734,587,3.193,619,3.146,640,3.549,665,3.628,712,4.374,1097,3.061,1352,0.755,1425,4.448,1648,3.351,1998,2.819,2047,7.007,2048,3.628,2049,3.716,2050,3.716,2051,3.716,2420,3.927]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2406,2.541,2407,2.505]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[127,2.53,263,4.882,2045,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[127,1.787,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2476,4.448]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.785,2045,3.964,2406,3.399,2407,3.351]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2407,2.584]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,263,3.567,707,2.732]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.414,42,1.911,129,1.619,258,0.794,328,2.535,2219,2.021]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.203,42,1.735,47,1.844,49,0.836,202,3.111,216,3.45,220,2.788,231,3.392,258,0.721,328,2.302,587,3.287,619,3.24,640,3.655,665,3.736,712,4.449,1097,3.152,1425,4.544,1648,3.45,1998,2.903,2047,7.091,2048,3.736,2049,3.826,2050,3.826,2051,3.826,2420,4.044]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2406,2.541,2407,2.505]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.061,35,0.663,201,1.96,379,2.092,385,1.098,619,4.709,767,3.225,1352,1.13,2070,6.718]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1991,5.508,1992,5.396,2692,6.853]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[259,1.81,1690,3.317,1994,5.152,2692,6.122]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.067,100,2.499,203,2.408,319,2.041,385,1.202,706,2.499,789,2.408,1038,3.15,1352,1.237,2692,7.234]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[839,0.476]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.046,139,1.798,175,4.113,587,3.62,1991,4.024,1992,3.942,2693,5.006]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[259,1.81,1690,3.317,1994,5.152,2693,6.122]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.08,706,2.995,2693,8.668]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1028,3.823]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.296,127,2.136,259,1.71,263,4.122,1168,2.571]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.371,1527,4.137,1528,4.73,2694,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,259,1.873,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.296,127,2.136,263,4.122,1168,2.571,1826,3.281]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.371,1527,4.137,2015,4.921,2694,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.057,35,0.607,38,2.529,60,2.161,65,2.161,201,1.841,261,2.65,339,1.972,379,1.965,385,1.031,1168,3.667,1352,1.061,1553,5.223,1826,3.519]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.414,42,1.911,127,1.849,258,0.794,263,3.567,328,2.535]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.253,11,0.627,766,2.059,1055,2.169,1584,3.041,2406,2.712,2407,2.674]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1587,4.621,2695,5.963,2696,6.476,2697,6.476,2698,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.966,4,1.868,9,0.039,14,0.676,16,2.138,29,1.079,35,0.58,38,1.701,60,2.171,65,1.453,119,2.507,261,1.783,339,1.326,379,1.322,385,0.694,391,3.403,435,2.214,687,1.8,688,2.114,767,2.037,776,1.809,1016,2.468,1055,3.234,1352,0.714,1584,2.536,1588,2.933,1589,3.513,2235,3.288]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[129,1.871,258,0.918,320,3.391,687,2.495,776,2.507]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[711,2.998,891,4.181,1025,4.782,1699,4.097,1700,5.515,2699,4.969]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[127,1.982,258,0.851,263,3.825,320,3.146,687,2.314,776,2.326]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[711,3.528,1699,4.821,1701,6.122,2476,5.628]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2406,2.712,2407,2.674]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.606,687,2.086,1699,3.81,1705,5.13,1870,3.61,2487,4.448,2700,4.621]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[129,1.871,319,1.633,731,3.362,894,4.248,1023,2.806]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[129,1.98,459,3.652,662,2.952,731,3.558]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.037,14,0.658,35,0.4,59,3.2,98,4.912,153,3.649,158,2.342,204,2.251,251,4.332,319,1.725,324,2.938,379,1.286,428,2.817,459,3.645,531,4.293,662,2.947,731,4.268,761,3.522,776,2.648,990,3.339,991,3.339,998,3.339,1094,4.559,1096,2.681,1322,3.339,1914,3.42,1915,3.511]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.405,129,2.029,292,3.677,2219,2.533]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.165,129,2.365,217,2.759,711,2.998,2699,4.969]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1691,4.458,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.448,258,1.087,442,6.095]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.439,258,1.065,1703,5.096]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[169,2.336,187,3.58,334,4.884,523,5.878,633,4.778,1410,5.878,2298,5.709,2325,6.609,2555,6.609,2701,7.609,2702,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.176,258,0.995,753,5.155,2703,6.274]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.678,169,1.711,217,2.566,258,0.767,716,5.13,753,3.975,2703,4.839]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.064,1588,6.267]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,319,1.515,731,3.12,894,3.941,2219,2.167,2341,2.488]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,459,3.355,662,2.712,731,3.269,2341,2.607]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,4.312,531,4.209,662,2.889,731,3.482,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.672,319,1.515,731,3.12,894,3.941,2406,2.908,2407,2.867]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.651,459,3.103,662,2.509,731,3.023,2487,4.782,2700,4.969]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.296,61,1.197,292,3.391,2219,2.336,2341,2.682]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.165,61,1.076,217,2.759,711,2.998,2594,4.627,2704,5.515]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,61,1.068,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.405,127,2.317,263,4.47,292,3.677]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.165,217,2.759,711,2.998,2394,5.202,2476,4.782,2694,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.236,9,0.079,31,2.079,40,2.489,64,2.385,65,1.859,90,1.852,100,1.845,101,2.914,203,1.778,319,1.507,345,2.704,385,0.887,706,1.845,789,1.778,847,2.813,1038,2.325,1352,0.913,1691,4.613,1841,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-centos-5/",[129,2.216,2061,4.47,2219,2.767]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.311,110,3.311,129,1.565,356,3.61,2061,3.157,2062,4.072,2705,5.571]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.672,31,1.202,464,3.231,1196,3.292,2406,2.908,2407,2.867]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2400,3.625,2706,3.409,2707,3.348]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.061,35,0.432,219,5.878,258,1.364,259,2.542,262,3.411,327,2.782,385,1.098,1248,4.219,1271,4.361,1352,1.13,1861,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.39,129,1.517,179,3.342,210,2.505,2078,2.904,2079,3.854,2219,1.894]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.078,14,1.364,2078,6.197]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2406,2.39,2407,2.356]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.082,14,1.118,282,3.663,327,2.907,385,1.147,789,2.299,1352,1.181,2057,5.336,2078,6.047]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2400,3.625,2406,2.39,2407,2.356]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.057,35,0.406,219,5.52,258,1.309,259,2.439,262,3.204,282,3.292,327,3.474,385,1.031,1248,3.962,1271,4.095,1352,1.061,1861,5.362,2057,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.97,90,1.627,265,3.169,2219,1.894,2280,3.854,2281,4.172,2282,4.691,2341,2.174]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[265,3.801,2280,4.621,2284,5.625,2285,5.171,2708,6.476]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.08,35,0.442,100,2.334,203,2.248,319,1.906,385,1.122,706,2.334,789,2.248,1038,2.941,1352,1.155,2280,7.168]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.97,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2219,1.894,2341,2.174]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.253,61,1.036,766,2.059,1055,2.169,1584,3.041,2219,2.021,2341,2.321]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,766,2.313,1055,2.437,1584,3.417,2341,2.607]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.248,61,0.913,179,3.143,210,2.356,2078,2.732,2079,3.625,2219,1.782,2341,2.045]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.785,2406,3.399,2407,3.351,2452,5.58]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[253,3.221,779,4.181,2452,4.627,2709,5.515,2710,7.754]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,1303,2.847,2406,2.908,2407,2.867,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.606,39,2.219,258,0.767,1303,2.566,2407,2.584,2487,4.448,2583,4.448]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.055,14,0.966,35,0.39,39,2.735,172,2.678,189,3.558,201,2.383,258,0.946,282,3.163,297,3.059,327,2.511,385,0.991,712,3.382,1303,4.262,1352,1.02,1425,4.081,2675,6.323]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.785,1050,4.847,2406,3.399,2407,3.351]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[253,3.221,779,4.181,1050,4.019,2709,5.515,2710,7.754]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.091,164,2.327,210,3.774,385,1.174,687,3.047,706,2.441,776,3.062,1050,5.46,1352,1.208]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[651,2.397,655,2.771,948,4.314,2078,3.324,2081,5.127,2711,5.691]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[145,2.651,258,0.717,655,2.335,1284,4.794,2067,3.806,2078,2.8,2081,4.32,2712,5.207]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[153,3.868,164,2.563,429,7.157,651,3.477,655,4.019,2081,7.436,2713,8.964]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.986,129,1.736,164,1.767,189,3.202,1998,3.427,2219,2.167]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[258,0.971,1998,3.908,2000,5.03,2714,7.049]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.812,262,3.734,327,3.045,388,4.829,391,3.948,755,5.489,1163,6.403]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.986,127,1.982,164,1.767,189,3.202,263,3.825,1998,3.427]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[258,0.971,1998,3.908,2000,5.03,2328,6.49]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2406,2.712,2407,2.674]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[129,1.871,258,0.918,1303,3.069,2219,2.336,2582,5.319]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.579,129,1.819,258,0.892,1303,2.983,2583,5.171]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.641,9,0.073,14,0.947,29,1.012,35,0.383,172,2.627,189,3.49,201,2.353,258,0.928,385,0.972,412,1.657,472,3.241,712,3.318,1303,4.773,1352,1,1425,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[129,1.736,1593,4.774,1812,4.774,2219,2.167,2474,4.41,2475,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[129,1.98,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.072,35,0.624,651,3.477,2475,8.679]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[129,1.517,172,2.106,258,0.744,259,1.386,381,1.877,1248,2.994,2219,1.894,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.065,29,1.222,35,0.462,258,1.424,259,2.654,385,1.174,412,2.001,1248,4.511,1352,1.208]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[127,1.732,172,2.106,258,0.744,259,1.386,263,3.342,381,1.877,1248,2.994,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.068,35,0.485,258,1.467,259,2.734,385,1.231,1248,4.729,1352,1.267]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.39,61,0.97,172,2.106,253,2.904,707,2.56,2219,1.894,2341,2.174]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.627,1593,4.453,1812,4.453,2406,2.712,2407,2.674,2474,4.113,2475,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.704,766,2.313,2007,4.429,2407,3.004,2474,4.621]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.016,300,5.768,766,2.58,2715,6.274]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[766,2.762,2715,6.716,2716,7.12]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.053,14,1.268,21,3.833,35,0.512,38,2.339,189,3.424,477,3.745,487,3.979,766,3.22,981,4.215,997,6.086,1016,4.63,1648,4.357,1947,5.106,2715,8.913]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2717,7.549,2718,8.002]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1690,3.638,2717,6.716,2719,7.733]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.065,16,1.684,29,0.85,35,0.46,47,1.992,49,0.903,112,2.048,172,2.205,177,2.587,201,1.457,258,1.419,297,2.519,339,1.56,379,1.555,385,0.816,712,2.785,1078,4.133,1352,0.84,1425,3.361,2671,5.207,2717,8.197,2718,7.445]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.736,164,1.648,712,2.839,2219,2.021,2341,2.321,2720,5.006]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.219,61,1.001,680,3.354,1170,3.672,2032,4.18,2720,4.839,2721,5.571]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.056,14,0.985,31,1.362,33,3.927,35,0.533,163,3.925,165,5.411,258,0.965,385,1.011,1352,1.04,2420,7.243,2584,8.144,2720,8.144]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.344,61,1.111,90,1.862,1838,3.231,2219,2.167,2341,2.488]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.533,61,1.267,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.077,35,0.547,60,2.205,112,2.641,169,2.24,258,1.005,319,1.788,322,5.092,633,4.58,687,2.732,1838,5.997]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,273,3.07,939,3.567,2219,2.021,2297,4.602,2298,4.325,2341,2.321]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1065,3.399,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2332,5.13,2722,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[319,1.515,655,2.771,939,3.825,1096,3.542,2307,4.774,2711,5.691]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2065,6.174,2723,7.733,2724,7.733]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.91,16,2.128,29,1.074,89,2.186,139,2.229,141,4.143,145,3.638,153,3.084,351,4.302,630,4.247,939,4.422,1096,6.521,2067,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[839,0.476]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.298,2219,2.533,2296,4.761,2341,2.908]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.559,61,1.076,110,3.559,1623,4.782,2296,3.948,2679,5.515]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.068,9,0.073,21,3.081,29,0.798,35,0.439,40,2.151,60,1.607,187,2.501,201,1.369,258,1.065,319,1.303,379,1.461,385,0.767,393,3.71,410,3.389,412,1.307,544,2.83,576,3.502,789,1.536,1352,0.789,1525,3.337,1837,3.792,2178,4.893,2296,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1593,4.453,1812,4.453,2219,2.021,2341,2.321,2474,4.113,2475,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2725,4.789]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.79,61,0.97,485,3.391,490,1.911,2072,3.854,2073,2.963,2219,1.894,2341,2.174]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.176,164,2.066,681,5.28,712,3.558]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[680,4.655,681,5.651,1170,5.096]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.082,35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,681,7.447,706,2.386,789,2.299,1038,3.008]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.97,215,2.876,490,1.911,2082,2.876,2083,3.694,2219,1.894,2341,2.174]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,490,2.292,829,4.067,2082,3.449,2086,3.483]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2452,5.58]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,253,3.791,779,4.921,2452,5.445]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.691,35,0.494]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.056,31,1.371,711,3.528,1441,6.49]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.131,31,0.948,35,0.545,49,0.778,80,3.003,113,4.233,146,2.86,166,3.764,167,3.562,169,1.496,170,3.402,174,4.233,201,1.255,210,2.261,217,2.245,332,3.212,350,2.826,379,1.994,391,2.31,435,3.341,523,5.603,583,3.06,651,1.89,685,2.345,688,2.143,706,1.462,951,2.596,1410,3.764,1683,4.233,2026,3.402,2057,3.27,2726,4.487,2727,4.487]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.298,1050,4.847,2219,2.533,2341,2.908]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,253,3.791,779,4.921,1050,4.73]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.091,164,2.327,210,3.774,385,1.174,687,3.047,706,2.441,776,3.062,1050,5.46,1352,1.208]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.007,101,3.158,345,2.929,449,5.526,2728,5.786]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1631,5.171,1632,5.171,2655,5.963,2728,5.625,2729,6.476]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.497,9,0.06,14,1.047,90,2.244,194,5.199,368,3.175,380,6.328,428,4.484,444,6.179,449,6.179,2658,6.858,2728,9.464]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,203,1.666,753,4.113,1947,4.453,2052,4.113,2219,2.021,2341,2.321]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2052,5.03,2053,6.122,2341,2.838]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.082,14,0.929,29,0.993,35,0.583,158,3.309,297,2.944,385,0.954,399,4.717,587,4.151,706,1.983,1348,5.278,1352,0.982,2052,6.434,2054,5.483,2056,5.106,2581,6.086]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.545,172,2.817,2730,6.274,2731,6.274]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[258,0.825,2314,4.969,2730,5.202,2731,5.202,2732,5.99,2733,5.99]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.041,33,3.168,35,0.561,163,2.891,201,1.948,202,3.066,220,2.747,231,4.902,258,1.359,328,2.268,379,2.08,385,0.744,712,3.726,1078,5.529,1352,0.766,1425,4.495,2047,5.076,2048,5.398,2730,4.48,2731,4.48,2734,5.159]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[839,0.476]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.016,300,5.768,766,2.58,2735,6.274]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[767,2.744,1529,4.008,2716,5.963,2735,5.625,2736,6.476]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.045,14,0.783,29,0.836,119,1.943,146,3.266,155,4.617,170,5.58,177,3.657,218,4.834,231,3.607,247,3.495,299,4.176,306,3.266,336,2.937,381,1.935,399,3.972,619,4.947,688,2.447,767,2.359,1907,4.834,2735,8.879,2737,5.566,2738,5.125,2739,5.566,2740,5.566]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[839,0.476]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.242,4,1.344,204,2.974,651,2.397,655,2.771,1096,3.542]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2065,6.174,2741,7.733,2742,7.733]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.789,4,1.936,16,1.932,29,0.975,139,2.024,141,3.762,153,2.8,178,4.015,204,3.122,351,3.906,630,3.856,651,2.517,655,3.991,706,1.947,1096,6.268,2067,4.742]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.672,61,1.111,392,4.41,651,2.397,1360,5.691,1719,4.637]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[986,6.122,1719,5.289,2743,7.049,2744,7.049]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.509,119,3.13,404,6.131,477,5.079,986,7.786,1719,6.726]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.785,2061,4.093,2745,4.761,2746,4.761]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2747,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.785,2061,4.093,2406,3.399,2407,3.351]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2748,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.06,29,1.119,35,0.555,49,1.189,164,2.13,201,1.919,259,1.912,379,2.048,411,4.045,537,4.826,706,2.235,807,5.094,2061,5.533]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2219,1.782,2341,2.045,2400,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.415,219,5.635,258,1.327,259,2.473,262,3.27,327,2.666,385,1.052,412,1.794,1248,4.044,1271,4.18,1352,1.083,1861,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.342,49,0.92,61,1.036,767,2.443,1987,3.425,2219,2.021,2341,2.321]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1372,3.761,1987,3.559,1989,4.494,1990,4.494,2358,5.515,2594,4.627]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2406,2.712,2407,2.674]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1372,3.761,1987,3.559,1989,4.494,1990,4.494,2241,4.969,2487,4.782]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.062,35,0.571,42,2.578,60,2.351,65,2.351,215,4.142,261,2.884,385,1.122,767,4.257,1352,1.155,1987,4.622]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.296,129,1.871,1168,2.571,1826,3.281,2219,2.336]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.371,1527,4.137,2015,4.921,2749,6.49]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.061,29,1.143,35,0.563,60,2.301,65,2.301,201,1.96,261,2.822,379,2.092,412,1.871,1168,3.822,1553,5.561,1826,3.747]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.202,61,1.111,1168,2.385,1826,3.044,2219,2.167,2341,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.26,1527,3.801,2015,4.521,2346,5.625,2750,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.547,60,2.205,65,2.205,201,1.879,261,2.705,379,2.005,385,1.052,412,1.794,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2406,2.908,2407,2.867]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2751,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,1826,3.592,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.007,140,3.959,345,2.929,346,5.319,2752,5.786]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1211,5.445,2656,6.49,2752,6.122,2753,7.049]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.85,9,0.052,14,0.595,15,2.546,16,1.26,17,0.982,18,0.988,35,0.37,49,0.675,90,2.394,119,1.477,140,2.514,164,1.21,176,1.741,189,2.191,194,2.953,217,1.948,235,2.953,258,0.898,282,4.888,290,3.091,368,1.803,405,2.581,476,2.005,485,2.656,535,3.377,651,2.527,896,2.482,948,2.953,1033,2.051,1071,2.893,1296,3.895,2752,8.846,2754,4.23]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[839,0.476]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.575,236,5.63,577,6.545]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.056,21,3.019,139,1.624,339,1.437,723,3.019,2755,5.207,2756,4.794,2757,5.207]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.477,38,2.139,119,2.11,170,4.219,214,5.249,381,2.1,487,3.638,576,5.585,636,4.055,717,5.564,879,4.668,1101,4.534,1837,4.312,2738,7.803,2756,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.296,129,1.871,259,1.71,1168,2.571,2219,2.336]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.371,1527,4.137,1528,4.73,2749,6.49]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.061,35,0.626,38,2.693,60,2.301,65,2.301,259,1.953,261,2.822,339,2.099,544,4.053,1168,2.936,2291,4.931,2378,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.202,61,1.111,259,1.587,1168,2.385,2219,2.167,2341,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.371,1527,4.137,1528,4.73,2346,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.078,29,1.119,35,0.423,60,2.252,65,2.252,259,1.912,261,2.762,385,1.075,412,1.832,544,3.967,1168,2.874,1352,1.106,2291,4.826,2378,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[839,0.476]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.556,139,2.253,339,1.993,723,4.188]],["keywords//docs/tools-reference/linux-system-administration-basics/",[139,1.624,217,2.399,767,2.207,790,2.544,803,3.561,2758,5.207,2759,4.794,2760,5.207]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.018,11,0.247,16,0.676,29,1.136,35,0.222,38,0.803,43,1.316,49,1.293,61,0.408,65,1.559,84,1.702,90,1.553,109,2.731,129,0.637,139,1.608,164,1.119,168,3.769,169,2.488,195,2.791,203,1.131,204,1.882,207,0.95,217,1.045,223,2.625,232,4.115,258,0.313,273,1.208,292,1.155,302,1.271,339,1.908,368,2.198,385,0.327,391,1.075,411,2.125,412,0.558,437,1.404,490,1.384,491,1.702,610,2.731,636,1.522,647,1.702,652,2.456,662,0.95,683,1.658,685,1.882,688,0.998,700,1.619,766,1.841,902,1.619,918,3.123,1016,1.165,1057,1.658,1069,1.702,1071,1.552,1078,1.658,1316,1.186,1404,4.041,1452,1.971,1552,1.619,1621,1.971,1876,1.812,1890,1.971,2148,1.971,2411,1.702,2447,1.971,2458,1.971,2548,2.089,2638,1.882,2639,2.089,2761,2.089,2762,2.269]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.986,127,1.982,164,1.767,258,0.851,263,3.825,320,3.146]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[258,1.065,1870,5.011,2476,6.174]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.077,35,0.594,40,2.365,49,0.933,187,2.749,201,1.505,217,2.691,258,1.324,262,2.62,332,3.851,334,2.447,379,1.606,385,0.843,388,3.388,472,2.811,633,3.669,913,4.384,952,2.637,1352,0.868,1552,4.169,2383,4.384]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.298,2061,4.093,2219,2.533,2341,2.908]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.559,110,3.559,2061,3.394,2062,4.378,2763,5.99,2764,5.99]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.049,129,1.736,1271,3.542,1977,4.005,2016,3.627,2219,2.167]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.051,14,0.896,29,0.957,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,412,2.162,490,2.255,723,3.694,790,3.113,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[839,0.476]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,662,2.589,2219,2.167,2341,2.488,2496,5.691,2765,5.368]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[759,3.119,2108,5.628,2765,6.122,2766,7.049]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.085,14,0.985,35,0.398,100,2.102,203,2.025,302,3.925,319,1.717,385,1.011,706,2.102,789,2.025,1038,2.649,1352,1.04,2765,9.804]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/apache/apache-access-control/",[258,1.087,476,3.74,651,3.06]],["keywords//docs/web-servers/apache/apache-access-control/",[217,2.566,258,0.767,319,1.366,711,2.789,1556,4.839,2767,5.571,2768,5.571]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.693,18,1.704,217,4.437,258,1.005,336,3.848,476,4.566,521,4.391,651,3.737,761,3.651,952,3.292,1071,4.989,1509,5.824,2431,6.716]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[210,3.09,258,0.918,326,4.065,476,3.158,651,2.584]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[217,2.983,258,0.892,319,1.587,711,3.242,1556,5.625]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.848,177,3.337,210,3.384,326,5.878,476,5.437,487,4.391,635,4.281,651,4.45,2232,6.716]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.862,380,4.005,708,3.771,2219,2.167,2341,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[708,3.655,2246,6.724,2247,4.782,2248,4.782,2769,5.99]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.007,5,1.221,9,0.078,31,1.713,33,2.099,35,0.639,38,1.774,42,1.661,60,1.515,65,1.515,100,1.504,203,1.449,258,0.69,319,1.229,339,1.383,385,0.723,393,3.499,706,1.504,708,5.375,709,2.84,766,1.79,789,1.449,1038,1.895,1139,3.499,1352,0.744]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,189,2.986,1998,3.196,2219,2.021,2341,2.321]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[258,0.971,1500,5.628,1998,3.908,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.672,90,1.862,380,4.005,708,3.771,2406,2.908,2407,2.867]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2770,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.979,5,1.187,9,0.077,29,0.732,31,1.685,33,2.041,35,0.611,42,1.615,60,1.473,65,2.193,100,1.462,203,1.409,258,0.671,282,2.245,319,1.195,327,1.781,385,0.703,393,3.402,412,1.198,706,1.462,708,5.287,709,2.761,766,1.74,789,1.409,1038,1.843,1139,3.402,1352,0.724]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.242,127,1.982,129,1.736,776,2.326,795,3.771,796,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[127,2.077,129,1.819,1141,4.859,1142,5.171,2771,5.963]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.849,17,2.135,18,2.149,776,3.462,795,5.613,796,4.723]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.242,11,0.672,61,1.111,776,2.326,795,3.771,796,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.704,61,1.164,1141,4.859,1142,5.171,2771,5.963]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.849,17,2.135,18,2.149,776,3.462,795,5.613,796,4.723]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[620,4.754,687,2.495,776,2.507,795,4.065,796,3.421]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1141,4.859,1142,5.171,2772,6.476,2773,5.625,2774,6.476]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.757,9,0.07,45,3.894,46,3.844,776,3.29,795,5.334,796,4.489,1288,6.238]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[839,0.476]],["title//docs/platform/linode-beginners-guide/",[89,2.413,1161,5.92,1530,7.265]],["keywords//docs/platform/linode-beginners-guide/",[1667,5.628,2759,6.49,2775,7.049,2776,7.049]],["toc//docs/platform/linode-beginners-guide/",[2,2.125,9,0.032,29,0.599,32,2.544,38,1.412,43,2.314,60,1.207,64,2.416,89,3.52,139,1.244,153,1.722,169,1.225,176,1.643,201,1.028,225,3.701,264,2.729,292,2.031,317,3.186,476,1.891,490,1.412,530,2.994,588,3.186,635,3.655,688,1.755,700,2.847,744,2.469,766,1.425,789,1.154,955,3.466,1032,2.729,1033,1.935,1778,3.082,1834,5.409,1873,3.466,2127,3.466,2441,3.466,2777,3.99,2778,3.99,2779,6.228,2780,3.99,2781,3.99]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[687,2.705,776,2.719,1139,5.043,1140,4.536]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1288,5.03,1699,4.821,2773,6.122,2782,7.049]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.714,9,0.068,220,4.543,776,4.009,796,4.38,951,4.543,1144,5.955,1288,6.087]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[839,0.476]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,189,3.202,391,2.929,544,3.292,2783,6.181,2784,5.691]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1288,5.03,1699,4.821,2773,6.122,2784,6.49]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.078,761,4.858,776,3.652,1288,6.925]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[141,3.584,169,1.898,351,3.721,630,3.673,1032,4.227,2785,5.368]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1717,4.782,1719,4.494,2785,5.202,2786,5.99,2787,5.99,2788,5.99]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.061,14,1.07,153,4.274,250,5.878,251,3.505,385,1.098,655,3.411,952,3.434,1139,5.312,1352,1.13,2785,8.601,2789,7.609]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[839,0.476]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.672,68,4.517,169,1.898,1032,4.227,1716,4.774,2406,2.908]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1716,4.627,1717,4.782,1718,5.515,1719,4.494,1720,5.515,1721,5.515]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.065,14,1.144,153,3.511,250,6.285,251,3.748,385,1.174,655,3.648,952,3.672,1352,1.208,1716,7.987]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,766,2.379,2004,3.959,2219,2.336,2341,2.682]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[2004,3.849,2007,4.429,2008,4.859,2790,6.476,2791,5.625]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.057,29,1.074,327,2.612,381,3.303,385,1.031,412,1.757,933,5.1,952,3.225,981,4.557,1352,1.061,1628,4.422,1804,4.422,2004,6.344,2009,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.724,766,2.379,2004,3.959,2745,4.39,2746,4.39]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[2004,3.849,2007,4.429,2008,4.859,2791,5.625,2792,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.051,29,1.321,35,0.362,65,1.926,327,2.329,345,2.801,381,3.056,385,0.919,412,1.567,706,1.912,933,4.546,952,2.875,981,4.062,1352,0.946,1628,3.942,1804,3.942,2004,5.982,2009,4.656,2056,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.724,766,2.379,2004,3.959,2406,3.135,2407,3.09]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[2004,3.849,2007,4.429,2008,4.859,2791,5.625,2793,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.051,29,1.321,35,0.362,65,1.926,327,2.329,345,2.801,381,3.056,385,0.919,412,1.567,706,1.912,933,4.546,952,2.875,981,4.062,1352,0.946,1628,3.942,1804,3.942,2004,5.982,2009,4.656,2056,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2794,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1979,3.221,1980,3.221,1981,3.167,1982,3.167,2016,2.869,2020,3.667,2021,3.221,2795,4.888,2796,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.048,14,0.85,35,0.343,38,2.139,119,2.11,177,2.765,201,1.557,282,2.784,306,3.547,327,2.209,350,3.504,379,1.662,385,0.872,412,1.486,490,2.139,723,3.504,790,2.953,1352,0.898,2016,5.743,2022,3.25,2025,4.534,2026,4.219,2027,3.916,2057,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.448,38,2.792,258,1.087]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.368,217,2.983,258,0.892,711,3.242,1986,5.963]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.529,35,0.432,38,2.693,61,1.367,169,3.041,201,1.96,235,5.312,258,1.048,379,2.092,683,5.561,961,6.075,970,6.312,2458,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[258,0.995,388,4.188,913,5.42,2383,5.42]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[258,0.825,388,3.473,636,4.019,1703,3.948,2383,4.494,2797,5.515]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.846,18,1.858,346,6.349,388,5.908,636,5.336,755,5.241,913,7.645,1437,7.322,2383,5.967,2400,5.675]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[194,5.043,195,5.155,258,0.995,790,3.53]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[258,0.971,790,3.444,1703,4.646,2798,7.049]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.356,170,4.368,201,1.612,258,1.484,289,4.996,327,2.288,379,1.721,381,2.175,537,4.055,688,3.818,790,4.243,1016,5.12,1410,4.834,1917,5.762,2727,5.762,2799,6.258,2800,6.258]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,258,0.794,320,2.934,2406,2.712,2407,2.674]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[258,0.825,711,2.998,1999,4.378,2801,5.99,2802,5.99,2803,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.079,35,0.561,38,2.176,40,2.489,201,1.584,210,2.852,258,1.361,262,3.846,302,3.446,320,3.13,334,2.575,339,1.696,379,1.69,385,0.887,472,2.958,685,2.958,1352,0.913,1480,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2406,2.712,2407,2.674]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1055,1.639,1372,2.734,1932,3.267,2289,2.44,2564,3.363,2565,3.363,2566,3.363,2567,3.363,2695,4.009,2804,4.354,2805,4.009]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.627,42,1.911,1271,3.303,1976,3.425,1977,3.735,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2806,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.724,49,1.063,759,2.948,2406,3.135,2407,3.09]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1656,5.003,2102,5.003,2700,5.372,2807,6.476,2808,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,210,2.582,258,0.767,259,1.429,339,1.536,379,2.198,685,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2406,2.712,2407,2.674]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1465,4.646,2087,5.445,2088,5.152,2809,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2406,2.712,2407,2.674]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.585,1065,3.655,1160,4.019,2810,5.99,2811,5.99,2812,5.99]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,292,2.934,2059,3.163,2406,2.712,2407,2.674]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1870,4.196,2059,3.553,2700,5.372,2813,6.476,2814,6.476]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.053,29,0.993,35,0.376,65,1.999,121,4.09,145,3.365,319,2.21,345,2.907,385,0.954,412,1.626,651,3.497,744,5.579,803,6.167,1016,3.394,1352,0.982,2059,4.947]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.937,187,3.135,204,3.205,645,4.47,2815,5.146]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2815,5.445,2816,7.049,2817,7.049,2818,7.049]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.052,14,0.912,16,1.932,29,0.975,45,2.89,46,2.853,65,1.962,139,2.024,158,3.248,169,1.992,178,4.015,187,3.053,204,4.283,251,2.989,339,1.79,645,6.82,655,2.909,706,1.947,2815,5.012]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.153,129,2.029,759,3.197,2219,2.533]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[129,2.172,759,3.422,2699,6.415]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[839,0.476]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[145,3.677,169,2.218,1032,4.941,2819,6.274]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1717,5.171,1719,4.859,2819,5.625,2820,6.476,2821,6.476]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.072,14,1.26,385,1.293,1139,6.258,1352,1.331,2819,9.54]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.046,49,0.92,61,1.036,2022,3.1,2096,3.383,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2822,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2706,3.868,2707,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2823,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2824,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2706,3.868,2707,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1979,3.432,1980,3.432,1981,3.374,1982,3.374,2016,3.056,2020,3.907,2021,3.432,2825,5.207]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.051,14,0.896,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,385,0.919,412,1.567,490,2.255,723,3.694,790,3.113,1352,0.946,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1979,3.432,1980,3.432,1981,3.374,1982,3.374,2016,3.056,2020,3.907,2021,3.432,2826,5.207]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.048,14,0.85,35,0.343,38,2.139,119,2.11,177,2.765,201,1.557,282,2.784,306,3.547,327,2.209,350,3.504,379,1.662,385,0.872,412,1.486,490,2.139,723,3.504,790,2.953,1352,0.898,2016,5.743,2022,3.25,2025,4.534,2026,4.219,2027,3.916,2057,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.063,164,1.905,258,0.918,388,3.862,636,4.47]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[258,0.892,388,3.755,636,4.346,2703,5.625,2797,5.963]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.081,18,2.094,388,5.197,636,7.37,1410,6.925,2827,8.964]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.911,61,1.036,1271,3.303,1977,3.735,2016,3.383,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.051,14,0.896,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,385,0.919,412,1.567,490,2.255,723,3.694,790,3.113,1352,0.946,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1991,4.314,1992,4.227,1993,3.771,2219,2.167,2341,2.488]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.462,64,3.156,100,2.441,203,2.352,319,1.994,385,1.174,573,5.806,789,2.352,1038,3.077,1352,1.208,1993,4.965]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.058,11,0.785,62,3.53,2828,6.274]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2039,4.655,2828,6.716,2829,7.733]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.855,35,0.605,64,3.309,573,6.087,1033,4.136,2828,10.088]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.063,207,3.304,679,4.814]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[259,1.43,679,3.399,680,3.354,1170,3.672,1690,2.621,1710,5.13,2032,4.18]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.067,14,1.171,29,1.251,35,0.473,64,3.231,207,3.488,679,7.01,706,2.499]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.153,127,2.317,759,3.197,2830,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1789,5.152,1790,5.289,2831,7.049,2832,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.153,127,2.317,263,4.47,759,3.197]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1789,5.152,1790,5.289,2833,7.049,2834,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,258,0.918,1172,3.733,2219,2.336,2341,2.682]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.588,2337,5.847,2338,6.49,2339,6.49]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.075,12,3.565,14,0.985,29,1.052,60,2.118,80,2.9,223,4.7,258,0.965,312,4.162,327,2.56,385,1.011,412,1.722,1172,5.923,1352,1.04,2340,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.046,11,0.627,258,0.794,1172,3.23,1184,2.839,2706,3.868,2707,3.799]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.588,1975,5.628,2337,5.847,2835,7.049]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.077,12,3.713,14,1.025,60,2.205,80,3.02,223,4.895,258,1.005,312,4.335,327,2.666,385,1.052,1172,6.044,1352,1.083,2340,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2706,3.868,2707,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2836,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.937,145,3.391,153,2.875,655,2.987,2067,4.869]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2067,5.651,2837,7.733,2838,7.733]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.058,153,3.148,172,2.844,201,1.879,204,4.634,350,4.229,381,2.535,655,4.319,948,5.092,1096,4.18,1097,4.391,1464,5.824,2067,7.04]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.627,42,1.911,1271,3.303,1976,3.425,1977,3.735,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2839,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.911,61,1.036,1271,3.303,1976,3.425,1977,3.735,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1976,3.094,1978,3.806,1979,3.432,1980,3.432,1981,3.374,1982,3.374,2021,3.432,2508,4.794]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.627,766,2.059,1023,2.428,1370,3.799,2350,4.602,2706,3.868,2707,3.799]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1587,5.03,2354,5.628,2355,5.628,2609,6.49]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2745,3.799,2746,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2805,4.501]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.847,14,1.016,1950,6.651,2815,5.58]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2815,5.445,2840,7.049,2841,7.049,2842,7.049]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.803,8,5.199,20,4.371,35,0.619,49,1.189,352,5.315,645,4.998,651,2.889,655,3.339,2815,5.754,2843,7.448]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.627,49,0.92,164,1.648,292,2.934,2059,3.163,2745,3.799,2746,3.799]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1870,4.568,2059,3.867,2844,7.049,2845,6.122]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.055,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,385,0.991,651,3.589,744,5.726,803,6.329,1016,3.526,1352,1.02,2059,5.077]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[129,1.736,766,2.207,1023,2.604,1370,4.073,2219,2.167,2350,4.935]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1587,5.03,2354,5.628,2355,5.628,2846,7.049]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.08,65,2.351,100,2.334,169,2.388,203,2.248,319,1.906,339,2.146,706,3.014,789,2.248,1038,2.941,1370,5.126]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[839,0.476]],["title//docs/databases/postgresql/centos-5/",[5,1.505,14,0.869,30,2.667,129,1.736,1063,3.357,2219,2.167]],["keywords//docs/databases/postgresql/centos-5/",[30,3.042,1065,4.301,1160,4.73,2847,7.049]],["toc//docs/databases/postgresql/centos-5/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/centos-5/",[839,0.476]],["title//docs/databases/postgresql/fedora-12/",[5,1.505,14,0.869,30,2.667,127,1.982,263,3.825,1063,3.357]],["keywords//docs/databases/postgresql/fedora-12/",[1065,4.718,1160,5.189,2848,7.733]],["toc//docs/databases/postgresql/fedora-12/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/fedora-12/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2706,3.868,2707,3.799]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.042,1065,4.301,1160,4.73,2849,6.49]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.168,5,1.776,9,0.058,30,4.654,35,0.415,119,2.547,385,1.39,1066,4.18,1070,4.807,1352,1.431]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2745,3.799,2746,3.799]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.042,1065,4.301,1160,4.73,2849,6.49]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.213,5,1.853,9,0.061,30,4.751,35,0.432,119,2.657,385,1.098,1066,4.361,1070,5.015,1352,1.13]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.253,61,1.036,766,2.059,1055,2.169,2219,2.021,2289,3.23,2341,2.321]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2850,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.007,4,2.115,9,0.04,14,1.041,16,2.206,29,1.323,35,0.553,60,1.515,65,1.515,119,2.586,261,1.859,379,1.378,385,0.723,391,3.51,412,1.233,435,2.309,687,1.877,767,2.124,776,1.886,1055,3.315,1352,0.744,1588,3.058,2235,3.428,2289,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,258,0.851,1303,2.847,2219,2.167,2341,2.488,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.807,258,0.971,1303,3.247,2583,5.628]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.056,14,0.985,29,1.052,35,0.398,39,2.789,172,2.731,189,3.629,201,2.415,258,0.965,297,3.12,385,1.011,412,1.722,712,3.449,1303,4.319,1352,1.04,1425,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.672,258,0.851,1303,2.847,2582,4.935,2706,4.147,2707,4.073]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.606,39,2.219,258,0.767,1303,2.566,2583,4.448,2707,3.672,2851,5.571]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.074,14,0.966,35,0.39,39,2.735,64,2.664,172,2.678,189,3.558,201,2.383,258,0.946,297,3.059,385,0.991,712,3.382,1303,4.82,1352,1.02,1425,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,292,2.934,2059,3.163,2219,2.021,2341,2.321]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1870,4.568,2059,3.867,2594,5.445,2704,6.49]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.058,35,0.415,121,4.514,145,3.713,319,2.361,385,1.052,651,3.737,744,5.961,803,6.588,1352,1.083,2059,5.285]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.044,101,2.929,102,4.637,381,2.148,916,3.627,1573,4.41]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[850,5.289,851,5.03,1574,5.628,1575,5.628]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.054,61,1.743,127,1.905,129,2.352,207,2.488,280,3.164,562,3.078,1023,3.528,1184,2.926,1246,4.342,1563,3.577,1706,2.564,1801,3.051,2130,2.646,2202,2.859,2219,2.084,2265,2.564,2852,5.941,2853,5.941,2854,5.941,2855,5.941]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[839,0.476]],["title//docs/tools-reference/tools/introduction-to-rsync/",[146,5.1,1944,6.939]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.967,6,4.839,895,3.61,1517,4.839,1944,4.448,2662,5.13,2856,5.571]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[435,3.929,948,5.955,1944,9.273,2857,8.53,2858,8.53,2859,8.53,2860,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.404,14,0.81,30,2.488,61,1.036,1063,3.131,2219,2.021,2341,2.321]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.042,1065,4.301,1160,4.73,2861,7.049]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.083,5,1.641,9,0.073,29,1.012,30,4.472,35,0.383,119,2.352,227,4.365,385,0.972,952,3.04,1066,3.86,1070,4.44,1352,1,2094,5.204,2095,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/how-to-configure-git/",[80,3.266,138,4.051,481,5.2]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.501,61,0.828,138,2.365,1316,2.408,1511,2.85,1630,4,1631,3.677,1632,3.677,1633,3.82,2862,4.606]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.423,38,2.636,138,5.595,204,3.584,215,3.967,282,4.499,368,3.175,435,4.499,449,6.179,616,5.444,1538,6.469]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.053,138,3.421,139,2.078,141,3.862,145,3.391]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[138,3.325,1630,5.625,1631,5.171,1632,5.171,1633,5.372]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.074,80,3.808,138,6.167,146,5.398]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[139,2.461,146,4.63,605,6.095]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[139,2.412,1815,5.973,2863,7.733]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.067,22,2.28,49,0.596,80,2.449,84,2.803,89,1.809,100,1.121,101,1.771,119,1.304,139,2.836,153,1.612,169,1.816,181,3.1,187,4.279,281,2.886,319,0.916,381,1.299,382,2.421,405,3.609,435,1.721,445,2.346,481,2.463,521,2.249,588,2.983,652,2.346,691,2.886,700,2.666,789,2.629,970,3.1,1352,0.555,1463,3.245,1476,3.245,1683,3.245,1783,4.906,1815,2.886,1966,3.245,2140,3.44,2864,5.914,2865,3.737,2866,3.737,2867,3.737]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[119,2.755,139,2.461,1071,5.396]],["keywords//docs/tools-reference/linux-users-and-groups/",[119,2.091,139,1.868,405,3.655,2549,4.969,2868,5.99,2869,5.99]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.4,22,2.818,119,3.262,169,2.869,177,2.112,187,3.947,193,3.099,290,3.375,307,3.043,332,3.043,368,1.969,390,2.78,405,6.118,435,3.209,445,4.375,477,2.616,582,3.831,854,4.011,978,4.252,1015,3.687,1071,6.39,1272,3.375,2549,5.779,2553,4.252,2870,4.618]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[339,2.177,2133,6.853,2134,7.265]],["keywords//docs/security/recovering-from-a-system-compromise/",[2871,7.049,2872,8.67,2873,6.49]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.541,35,0.376,89,2.758,225,3.928,252,4.831,635,3.879,895,5.843,1474,4.717,1818,5.483,2132,7.48,2490,6.086,2726,6.086,2874,6.61,2875,6.61,2876,6.61]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,258,0.794,320,2.934,687,2.159,776,2.169,2219,2.021,2341,2.321]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1699,4.821,1704,6.49,1870,4.568,2594,5.445]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.296,129,1.871,464,3.482,1196,3.548,2219,2.336]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1197,4.243,1512,4.921,1513,4.362,2877,7.049]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.202,61,1.111,464,3.231,1196,3.292,2219,2.167,2341,2.488]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1197,4.243,1512,4.921,1513,4.362,1909,6.122]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.627,31,1.121,464,3.013,1184,2.839,1196,3.07,2706,3.868,2707,3.799]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1197,4.243,1512,4.921,1513,4.362,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.672,31,1.202,464,3.231,1196,3.292,2745,4.073,2746,4.073]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.053,89,2.038,99,3.693,101,3.158,1522,5.786]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[909,6.415,910,6.716,1029,7.12]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.304,16,1.932,29,0.975,35,0.369,80,2.686,89,2.723,244,3.303,379,2.794,525,4.204,587,6.382,649,3.856,655,2.909,895,4.204,1277,8.197,1524,4.868,2878,6.488]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.672,258,0.851,464,3.231,1196,3.292,2745,4.073,2746,4.073]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.062,35,0.442,47,2.74,177,3.558,189,4.029,200,4.406,258,1.071,297,3.464,435,3.582,709,5.691,919,5.429,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.587,49,0.862,164,1.544,258,0.744,320,2.749,1184,2.66,2706,3.624,2707,3.559]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[258,0.825,711,2.998,1999,4.378,2879,5.99,2880,5.99,2881,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.079,35,0.561,38,2.176,40,2.489,201,1.584,210,2.852,258,1.361,262,3.846,302,3.446,320,3.13,334,2.575,339,1.696,379,1.69,385,0.887,472,2.958,685,2.958,1352,0.913,1480,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.344,5,1.505,14,0.869,129,1.736,1063,3.357,2219,2.167]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1465,5.096,2088,5.651,2882,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.536,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.344,5,1.505,14,0.869,127,1.982,263,3.825,1063,3.357]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1843,5.973,1844,6.415,2883,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.536,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2706,3.868,2707,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1465,4.646,2087,5.445,2088,5.152,2884,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2745,3.799,2746,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1465,4.646,2087,5.445,2088,5.152,2885,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.253,5,1.404,14,0.81,61,1.036,1063,3.131,2219,2.021,2341,2.321]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1465,4.646,2088,5.152,2373,6.49,2886,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[839,0.476]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.328,61,1.036,325,2.773,623,3.799,2219,2.021,2341,2.321,2887,5.764]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[662,2.952,2888,7.049,2889,7.049,2890,7.049]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.074,35,0.523,325,5.368,385,1.327,1352,1.366]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.05,11,0.672,258,0.851,1172,3.463,2745,4.073,2746,4.073]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.049,1172,3.357,2337,4.969,2845,5.202,2891,5.99,2892,5.99]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.082,12,4.048,14,1.118,60,2.405,223,5.336,258,1.096,385,1.147,1172,5.71,1352,1.181,2340,5.967]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.986,61,1.111,164,1.767,1163,3.771,2219,2.167,2341,2.488]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[711,3.242,2893,6.476,2894,6.476,2895,6.476,2896,6.476]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.045,29,0.85,35,0.46,40,2.289,61,1.016,166,4.369,167,4.133,175,4.036,177,2.587,201,2.431,379,2.595,381,1.966,385,0.816,412,1.391,659,4.531,1163,4.934,1166,7.023,1167,4.912,1352,0.84,1509,4.515,1775,4.691,1912,5.207]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[195,5.155,411,3.923,662,3.025,790,3.53]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2872,9.214,2873,7.12]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.337,29,1.289,195,6.121,252,4.494,258,0.847,320,3.13,411,6.106,662,2.575,790,3.004,837,4.494,971,4.613,999,5.661,1676,5.34,1804,3.805,2076,5.988,2180,5.101,2897,6.149,2898,6.149]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.016,89,2.209,382,4.681,915,5.155]],["keywords//docs/networking/using-the-linode-shell-lish/",[382,4.568,915,5.03,926,4.921,1126,5.152]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,153,2.441,164,1.617,172,2.205,176,2.328,251,2.605,320,2.879,332,3.727,363,3.795,368,2.411,429,4.515,487,3.405,730,4.243,746,4.912,915,7.349,1094,3.665,2899,5.655,2900,5.655,2901,5.655,2902,5.655,2903,5.655,2904,5.655,2905,5.655,2906,5.655,2907,8.086]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.222,363,5.832]],["keywords//docs/networking/ssh/using-the-terminal/",[2908,7.733,2909,7.733,2910,7.733]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.322,22,2.612,88,3.055,90,1.29,109,2.989,163,2.399,169,2.759,181,5.456,187,4.228,203,1.238,224,3.551,236,3.055,251,1.972,339,1.814,363,2.873,368,3.414,390,3.959,442,3.307,521,2.577,586,3.551,610,6.272,611,3.418,636,2.873,742,2.822,895,2.774,927,3.942,953,3.212,1103,3.718,1750,2.928,1815,3.307,1880,3.551,2411,3.212,2911,4.281,2912,4.281,2913,4.281]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[146,4.63,489,4.814,490,2.792]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1709,5.847,2914,7.049,2915,7.049,2916,7.049]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.948,169,1.824,391,2.816,435,2.737,488,4.929,489,5.109,490,3.726,685,4.029,777,5.471,1238,4.59,1261,4.59,1262,4.744,1404,3.916,1726,4.929,2083,4.064,2761,5.471,2917,5.941,2918,5.471,2919,5.941,2920,5.941,2921,5.941,2922,5.941]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.986,129,1.736,164,1.767,258,0.851,320,3.146,2219,2.167]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[258,1.065,1870,5.011,2699,6.415]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.074,29,0.823,35,0.577,40,2.218,49,0.875,187,2.578,201,1.411,210,2.542,217,2.524,258,1.277,262,2.457,332,3.611,334,2.295,379,1.506,385,0.791,388,3.177,412,1.348,472,2.636,633,3.441,685,2.636,913,4.111,952,2.473,1352,0.814,1552,3.91,2383,4.111]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,258,0.794,320,2.934,2219,2.021,2341,2.321]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[711,2.998,1500,4.782,1913,5.202,2923,5.99,2924,5.99,2925,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.007,164,1.905,712,3.281,1238,5.146,2926,6.134]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2927,8.563,2928,8.563]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.304,5,1.58,9,0.071,64,2.517,100,1.947,203,1.876,262,2.909,319,1.59,435,2.989,472,3.122,620,4.63,789,1.876,1038,2.454,1238,7.851,2926,9.358,2929,6.488,2930,6.488]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[839,0.476]],["title//docs/networking/dns/dns-manager-overview/",[90,2.376,490,2.792,887,5.766]],["keywords//docs/networking/dns/dns-manager-overview/",[1491,5.13,1492,4.839,1662,5.13,1663,5.13,1709,4.621,1829,4.621,2931,5.571]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.567,16,1.202,22,2.463,29,1.159,45,1.798,46,1.775,49,0.644,80,1.671,84,3.028,90,1.216,176,2.587,232,2.708,273,2.15,385,0.582,390,2.43,391,5.114,481,2.66,489,3.834,490,2.73,491,3.028,615,2.66,652,2.534,685,3.023,790,1.972,1016,2.072,1084,2.95,1404,6.876,1562,3.505,1828,3.348,1829,3.348,1916,3.505,1948,3.505,2918,3.716,2932,4.036,2933,4.036]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.063,61,1.197,759,2.948,2219,2.336,2341,2.682]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1504,6.415,1894,6.716,2934,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.672,49,0.986,759,2.735,1184,3.044,2706,4.147,2707,4.073]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1653,7.12,2935,7.733,2936,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.256,5,1.992,9,0.083,16,1.712,29,0.863,35,0.666,49,1.305,164,1.644,201,2.107,258,0.792,259,1.475,339,1.586,379,2.249]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.724,49,1.063,759,2.948,2745,4.39,2746,4.39]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1656,5.973,2102,5.973,2845,6.716]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,210,2.582,258,0.767,259,1.429,339,1.536,379,2.198,685,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/tools-reference/linux-package-management/",[65,2.386,90,2.376,139,2.461]],["keywords//docs/tools-reference/linux-package-management/",[281,4.022,691,4.022,1824,4.794,2937,5.207,2938,4.794,2939,4.794,2940,5.207,2941,4.794]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.194,61,0.613,65,3.331,90,2.943,100,1.024,127,1.094,129,0.958,139,1.715,171,1.751,204,1.641,215,1.817,281,4.248,334,1.429,339,0.941,368,1.454,385,0.492,404,2.333,435,2.533,487,2.053,605,2.635,691,2.635,919,2.381,1316,2.875,1352,0.507,1511,2.111,1665,2.723,1666,2.723,1694,2.963,2938,5.063,2939,3.141,2941,6.361,2942,3.411,2943,3.411,2944,3.411,2945,3.411,2946,3.411,2947,3.411,2948,3.411,2949,3.411,2950,3.411,2951,3.411,2952,5.499,2953,3.411,2954,3.411]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":562,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2427,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2017,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2667,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":1006,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2130,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2276,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2297,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2830,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2182,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2131,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":263,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1706,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2379,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2264,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":774,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1565,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2224,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":834,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2855,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":921,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1768,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1867,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":320,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":787,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1805,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1305,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1787,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2156,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1445,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":786,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":579,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":122,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1739,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2614,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1192,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1740,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1741,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1742,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2219,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1023,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1796,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1782,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1785,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1839,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":207,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":276,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1183,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":260,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1777,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1736,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":280,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2706,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1419,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2745,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2406,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2917,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2952,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1874,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2164,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":2003,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":651,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1556,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2868,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2465,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":477,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1555,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1223,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":837,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":684,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":176,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2175,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2115,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":177,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":225,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":803,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1723,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2711,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1292,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":723,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1270,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":487,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":910,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1030,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1635,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":120,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2042,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":757,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1350,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":716,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1588,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":558,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1122,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1123,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1125,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":619,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1379,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2290,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2266,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1272,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":794,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analysi",{"_index":116,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["analyt",{"_index":110,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1279,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":692,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1285,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1809,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":735,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1457,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1454,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1458,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1456,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1455,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1459,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1461,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2589,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":496,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":258,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1871,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1806,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1505,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":922,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2923,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2322,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":689,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1499,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2924,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2323,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2568,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2381,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":422,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2881,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1179,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1501,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2803,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2925,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2632,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2714,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1500,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2328,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1999,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2324,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1699,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2337,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2384,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2539,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1972,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1173,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2541,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2879,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2880,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2802,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2631,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1913,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":890,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":792,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1613,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":151,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1846,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1128,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":200,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":880,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1291,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1363,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2272,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":172,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":691,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2940,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1824,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1316,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1896,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1897,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1899,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1901,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1900,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":486,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2520,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":190,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1044,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1047,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2887,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2888,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":800,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2503,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2499,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":877,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1381,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2660,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1386,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2659,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":355,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":397,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":114,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":157,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1646,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1474,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2431,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":336,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1269,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2072,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":182,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":312,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":522,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2918,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1673,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":222,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2432,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2560,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":498,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1357,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":210,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":866,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1205,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2728,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2605,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":293,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":295,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1536,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1530,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2685,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":791,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1626,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":419,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":166,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1449,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2827,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1102,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":591,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1035,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":554,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":224,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1783,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1214,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1216,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":360,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":904,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":407,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2789,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1537,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2109,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":649,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2173,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":519,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":943,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":768,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1328,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":449,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":348,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2441,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2261,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":600,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1202,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":226,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2281,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2621,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2285,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":171,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":831,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1444,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2603,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1442,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2645,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2874,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2526,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2729,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":488,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":829,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2052,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":710,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":713,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2574,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2575,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":771,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2350,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2268,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2154,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1818,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2271,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1300,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1120,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":772,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2709,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2047,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":889,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2717,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1364,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1509,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":133,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":395,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":129,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2699,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1025,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":891,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1403,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1400,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1401,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1402,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1301,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1460,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2238,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":667,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":776,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1708,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1248,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":445,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1753,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1754,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1487,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1981,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1580,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1583,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1016,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1916,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1531,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1534,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1545,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1533,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1546,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1547,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1532,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2059,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2066,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2471,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2472,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2844,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2470,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2813,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2814,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2562,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2060,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2549,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":223,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2869,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":425,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":996,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":432,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":2004,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2203,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2204,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2596,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2011,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":494,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2739,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1321,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":305,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":482,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":158,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2055,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1251,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1084,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1433,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":256,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1466,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1329,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":846,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":819,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":328,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":680,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2761,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":346,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2474,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1980,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1067,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1093,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2518,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":368,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":954,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1848,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":867,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":183,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":965,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1140,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2782,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":194,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2419,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":894,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":847,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":848,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":283,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":136,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1099,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2134,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":540,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":605,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2446,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1437,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1799,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":534,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":581,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2139,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1220,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":750,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1320,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":726,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1983,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":331,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1762,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":413,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2800,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2478,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2484,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2482,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2481,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2486,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2485,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2480,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1273,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":153,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2505,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1525,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":926,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1137,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1965,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":134,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":196,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":945,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":712,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":677,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1697,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1710,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1170,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2678,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":860,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":125,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1702,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":476,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2212,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1106,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2493,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1535,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":895,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":947,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":928,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":510,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2078,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1227,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1231,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1232,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2289,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2781,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2680,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1129,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1132,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1714,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2682,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2681,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2777,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":373,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2117,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":899,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":676,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1817,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":1008,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2757,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2755,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2756,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":239,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1923,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1230,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1233,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1234,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1143,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1012,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1029,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":909,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2267,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1026,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":851,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1507,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":850,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2206,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2785,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":399,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1393,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2843,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2901,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":828,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":329,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":330,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2779,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":513,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2031,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":879,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2492,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1332,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1333,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2666,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2655,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":838,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1241,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":806,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1793,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2704,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2334,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2357,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2205,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2356,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1642,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":885,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1502,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1514,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2358,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2889,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":886,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1503,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2934,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2594,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2790,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2333,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1938,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2312,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1641,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2764,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":184,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1964,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":807,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":596,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":590,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1544,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":174,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2799,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2467,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":783,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":475,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2270,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":727,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1985,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1903,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1436,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2642,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":365,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2180,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":265,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2577,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1676,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":918,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1778,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2444,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1477,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2214,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2671,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":187,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":410,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2171,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2689,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2528,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2256,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1991,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2604,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":244,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":460,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2657,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2222,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1303,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1262,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":238,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":240,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1264,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":490,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2121,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2948,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1492,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2361,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1491,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2914,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2915,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2916,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":132,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":135,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":137,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":418,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":670,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":763,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":840,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2079,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1882,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2674,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2673,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2107,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":391,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1709,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2931,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1571,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1569,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1570,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1567,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1572,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2195,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2197,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2192,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2191,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2196,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1584,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1937,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2237,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1586,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2234,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2454,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1920,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2778,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1607,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2939,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1925,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1127,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2033,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1781,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":679,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1171,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1696,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2126,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":580,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1630,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2048,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2404,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2719,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1051,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":571,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":966,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1290,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":779,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":273,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":611,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2670,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2475,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2016,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2020,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2018,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2019,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2796,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2825,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2826,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":108,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":126,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":106,"title":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":743,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2765,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2766,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":565,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":566,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":766,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2791,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2008,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1155,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2953,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":327,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2168,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":237,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1224,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2424,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2420,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":408,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1167,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":975,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":720,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2041,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":717,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":163,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":446,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2491,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2135,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2024,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1340,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":303,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2736,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2713,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2949,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1890,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":658,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1906,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2188,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":154,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1560,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1267,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1046,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":308,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1561,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1156,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":854,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1987,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2617,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2405,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2239,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":616,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1943,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1960,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1463,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":465,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2298,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":644,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1888,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1648,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1221,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":370,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2179,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":785,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":451,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1353,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1356,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1138,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1361,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1695,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1028,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":756,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1168,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2750,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":180,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2013,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1608,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2291,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2613,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":643,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2620,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2027,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":127,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2832,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2831,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2476,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2834,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2833,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2483,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2580,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2579,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2473,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2309,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2409,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2408,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1869,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1868,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1791,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1788,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2244,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2382,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1022,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1488,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2735,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2737,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":169,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2525,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":738,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2551,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":941,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1330,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":502,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":284,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":352,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":930,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1716,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":981,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":393,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":652,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2545,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2434,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1277,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":325,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1315,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1085,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":799,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":983,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":863,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":865,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":864,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2051,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":971,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2954,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":160,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2611,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2602,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2623,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1683,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2286,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2876,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":675,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1634,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1594,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1992,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1994,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2113,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1097,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2606,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1245,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1053,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2314,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2902,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1201,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2687,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1769,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2661,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2903,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2691,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2584,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2587,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1672,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1031,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1717,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":632,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1100,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":150,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2343,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1398,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2676,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2081,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1088,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1048,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1237,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1659,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1657,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1658,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":730,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":761,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1345,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2618,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1511,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["geoip",{"_index":117,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["get",{"_index":481,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2715,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1945,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":859,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":406,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":725,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2557,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":138,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":898,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1210,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2862,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1633,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2495,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1650,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":949,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":299,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1157,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1086,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1056,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1750,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2684,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2522,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2523,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1369,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1928,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":762,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1647,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1766,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1767,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1095,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1765,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1771,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":924,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1115,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1298,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1887,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1464,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1297,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":703,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":705,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":702,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":902,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":538,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1071,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2007,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":916,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1508,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1027,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":420,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2288,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1161,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":161,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1427,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1627,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":551,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":804,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":808,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":304,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":497,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":987,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2091,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2707,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1059,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hat",{"_index":131,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hdf",{"_index":553,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":982,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":221,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":599,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":601,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2230,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1802,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":480,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":955,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2163,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":931,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":264,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1763,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2654,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1715,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":748,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1087,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":500,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":656,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2690,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1815,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":810,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":143,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1266,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":201,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1668,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":412,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":715,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1559,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1034,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":901,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":548,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2530,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1213,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1448,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":897,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1153,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":633,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":371,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1621,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":217,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2767,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1865,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2368,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1703,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1881,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":267,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":205,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":206,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":2002,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":914,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1639,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2045,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2370,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2275,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2369,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2274,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":470,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1932,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1252,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1713,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2340,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2643,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":798,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":315,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2734,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":113,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2672,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1841,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":354,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2513,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":378,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1124,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1131,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":870,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":724,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1212,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":704,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1178,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":769,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1471,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1467,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2089,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1193,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1671,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1840,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1670,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1040,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":845,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":959,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1411,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":874,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":818,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1984,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":545,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1204,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1759,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1347,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1977,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1978,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1121,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":535,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":741,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":664,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":668,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":650,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2122,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2450,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2316,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":536,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":146,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1905,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1904,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":149,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1638,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2142,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1283,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1622,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":635,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":654,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2254,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1135,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1390,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1354,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2515,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1675,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":623,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1289,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1098,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2253,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1747,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1760,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1725,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2686,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2646,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2287,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":195,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2624,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2619,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2023,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1360,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1355,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2746,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2338,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2387,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2537,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2385,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2835,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":935,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":934,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2339,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2538,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2543,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1974,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2390,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1975,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2540,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2389,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1973,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1175,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2542,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":574,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1592,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1257,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1416,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1367,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":483,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":479,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":463,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":430,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1246,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":576,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":681,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":937,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2080,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":186,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":461,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":793,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1365,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1256,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2407,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2808,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":530,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":592,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":849,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":251,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1041,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2030,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1600,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1118,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":286,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2418,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2417,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":624,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":938,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2211,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1539,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1548,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2591,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1764,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":414,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":403,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":911,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1521,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1519,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":733,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1244,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":533,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":541,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":759,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1506,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2936,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1504,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1655,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1898,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1789,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1496,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":674,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":682,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1113,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":882,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":974,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":985,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2640,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1997,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":409,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2159,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1061,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2701,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2675,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":588,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1240,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1243,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1024,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1255,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1177,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2422,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2341,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1825,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1011,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2552,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1225,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1222,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":801,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2469,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2870,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":805,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1163,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2894,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2893,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":392,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1440,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":389,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":683,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1447,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1845,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2167,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2776,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2775,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1847,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1130,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1662,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1667,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2896,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1743,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1663,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2137,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1686,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1669,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2910,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2872,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2895,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":653,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":139,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2842,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2759,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2421,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2430,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2873,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":929,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2890,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1721,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1982,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1784,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1790,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1989,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1587,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2937,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1718,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1720,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2908,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2758,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1312,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2223,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1895,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":690,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2321,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":915,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":824,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":521,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2071,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2864,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1921,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2457,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":316,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":499,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1625,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":215,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1863,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":523,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2516,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":688,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2464,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":383,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":946,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2463,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2466,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":570,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1473,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":920,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":361,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2641,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2009,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2076,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1184,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2100,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":721,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2265,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":241,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1254,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":141,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2788,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2786,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2787,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2626,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":587,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":593,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":185,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":144,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1050,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1052,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1054,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":767,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1856,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1375,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2070,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":310,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1951,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":620,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":495,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1849,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2169,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2118,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2114,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":881,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1779,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2278,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":752,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2411,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2280,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2708,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2283,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2284,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":242,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":585,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1470,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1776,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":466,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2112,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":209,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1681,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1190,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":338,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":473,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2277,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2443,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1617,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1616,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1640,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2294,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2716,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":905,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2828,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":411,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2653,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1215,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":666,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1271,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":384,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":642,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1218,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":155,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1957,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":159,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1810,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":736,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":737,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1524,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2138,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2136,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1169,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1281,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1446,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":123,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":697,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":855,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1615,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":506,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1434,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":595,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1482,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2504,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2583,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1885,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1308,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2703,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2768,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2186,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1775,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2500,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2718,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1249,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2582,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2383,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2199,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":597,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":247,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":589,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2187,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":404,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2198,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":262,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2456,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1798,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":707,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1042,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1346,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":203,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":2001,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":820,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1299,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2501,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1352,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1970,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":645,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2926,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2927,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":586,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1368,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1395,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2928,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2342,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2638,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1643,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":189,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1242,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":811,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1366,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":2000,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":547,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":364,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1323,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2181,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1324,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1645,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2692,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2317,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2882,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2373,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2372,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2374,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1844,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2883,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2569,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2393,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1842,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2884,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1180,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2885,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2809,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2886,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2088,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1843,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2375,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1866,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2438,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1465,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2742,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":843,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2090,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2741,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2087,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2629,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2567,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":842,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1302,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1469,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1191,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1194,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2410,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":685,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2075,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1133,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":953,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2183,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2243,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":181,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1852,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1851,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1850,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2255,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":618,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":607,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2502,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2517,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":662,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2841,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1820,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1692,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":884,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":594,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2854,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":255,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1819,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2367,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2366,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2749,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":862,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2346,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2345,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1527,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2694,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2571,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2015,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2344,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2258,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2257,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1528,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1707,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2260,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2612,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2362,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2014,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1526,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2751,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2259,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1441,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1338,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2688,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1755,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":598,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":912,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":908,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":208,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":197,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1159,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":893,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2554,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":462,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1038,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":359,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":358,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":728,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2919,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2073,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":883,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":888,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2208,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":612,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1092,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1139,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":1005,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1010,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":1007,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2037,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1229,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2875,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1748,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1540,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1510,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1209,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":231,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2210,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2217,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":314,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":191,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2062,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1064,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2085,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1376,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":257,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":964,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":734,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1263,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":1009,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1976,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2507,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2318,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2320,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2508,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2839,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":279,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":986,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1288,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2783,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1678,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1039,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":731,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2311,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2310,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":639,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1101,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1543,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":349,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":334,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":939,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2306,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2330,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2300,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2332,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2331,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2722,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1258,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2303,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2724,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2723,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2302,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2601,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2301,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2600,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2325,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1636,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":351,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1284,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2452,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2590,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":564,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2712,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":788,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2349,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1837,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":948,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2489,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":887,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1278,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":844,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":696,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2941,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":638,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2111,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1339,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":366,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":744,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1971,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1322,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2116,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1752,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":245,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":219,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":709,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2231,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":952,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2207,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":657,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1037,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1385,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2293,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":661,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":527,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1826,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2365,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2930,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1112,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":405,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":178,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1836,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":229,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":337,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":340,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2625,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2649,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2732,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["phonet",{"_index":115,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["php",{"_index":259,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1181,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2403,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1858,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2677,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1864,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1250,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1859,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2615,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2616,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1079,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1577,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1247,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1993,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2371,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1838,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":693,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":431,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2061,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2705,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2763,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2380,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2398,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2376,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2063,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2747,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2748,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1392,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1914,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2279,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":758,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2043,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1453,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2213,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":957,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":960,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":958,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":963,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2720,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":609,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":107,"title":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1579,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1712,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":508,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1933,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1295,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1878,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":350,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":266,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2064,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1833,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1055,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2236,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1590,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1585,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2233,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2697,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2696,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2850,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2564,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2805,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2598,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2453,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2836,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2695,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2804,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2565,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2566,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":227,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2636,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2436,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1160,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2335,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2848,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2570,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2627,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2847,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2861,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2849,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2336,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2810,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2635,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2435,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2811,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2812,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2650,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2740,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1924,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1812,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":167,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2702,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1801,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1995,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1481,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":433,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1036,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":112,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":706,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2726,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":778,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":781,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1853,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":977,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1637,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2174,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1476,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1483,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":531,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1384,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1293,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1963,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1564,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1942,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":302,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":118,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":165,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":525,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1557,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":380,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2558,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2247,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":833,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2933,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2647,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":578,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1814,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2096,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2822,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2097,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2823,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2824,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2794,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2326,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2098,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2101,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1552,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":218,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":485,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":269,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2046,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1998,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":230,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":777,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1493,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1094,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":454,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":747,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1319,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":749,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1318,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":192,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":764,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2067,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2837,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1573,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1574,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1575,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":353,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":694,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":698,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":124,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":835,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2593,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1069,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2588,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2592,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":394,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":686,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1582,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2176,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":973,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":825,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":396,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2315,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":507,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1196,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1910,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1513,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2877,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1909,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2308,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2449,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":402,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2232,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2433,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1239,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2305,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1950,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2840,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1489,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1018,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":872,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1749,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2099,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2021,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2132,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2127,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1450,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":489,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2133,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2269,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["red",{"_index":130,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["red hat",{"_index":128,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"toc":{},"deprecated":{}}],["redi",{"_index":162,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":636,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2509,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1189,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":827,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2531,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2510,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2399,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2532,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2029,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1187,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2519,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2028,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1186,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1188,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2511,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":708,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2769,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2250,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2246,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2248,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2634,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2770,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":976,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":999,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":504,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1969,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1518,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1816,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":869,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1362,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":760,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2555,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2546,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":997,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1063,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1065,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1060,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1185,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":204,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1134,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":421,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":390,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":927,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1226,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":647,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1075,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1073,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1074,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1797,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1538,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":313,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":282,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":220,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":261,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1126,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2215,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":950,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2644,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":906,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2083,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2086,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":753,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1599,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1435,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2797,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":537,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2172,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1358,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":300,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1490,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":212,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":998,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":913,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1884,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2110,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":621,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1070,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":515,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":951,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2871,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2092,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":853,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1274,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1664,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2468,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":311,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1068,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2938,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1017,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1944,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":464,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1512,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1197,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1199,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":326,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1408,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":381,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1930,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":936,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1821,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":516,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1412,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1413,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1497,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1495,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":518,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":852,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":517,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":213,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2093,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2348,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2235,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1478,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2951,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":492,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":577,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2170,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1296,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1632,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2416,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":291,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":369,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":742,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":469,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":940,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":109,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["search engin",{"_index":111,"title":{},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"toc":{},"deprecated":{}}],["seasid",{"_index":2731,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2490,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":319,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2423,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1472,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1468,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":858,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":988,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":857,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2544,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":795,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2771,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2772,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1931,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":856,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2240,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1988,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1780,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1475,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":640,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1078,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":751,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1927,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1623,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":277,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1219,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1619,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1967,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":367,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1388,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1685,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":659,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":701,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":942,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1719,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2743,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":342,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":343,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":830,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":254,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1891,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1581,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":382,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1730,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2710,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":956,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2120,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1342,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1624,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":796,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":509,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":505,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":175,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2313,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":235,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1387,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1389,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":544,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1698,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2077,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1498,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2950,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1694,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":417,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2730,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1116,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2693,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1057,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1990,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1154,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2053,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2581,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2920,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2496,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2559,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2108,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1822,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":148,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1823,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":341,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":789,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":719,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2762,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2780,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2412,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":294,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":345,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2656,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1217,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1934,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1804,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":549,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2378,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2738,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":214,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":317,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":903,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2209,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1261,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":374,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1443,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1566,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2054,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":309,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":233,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2304,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":228,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2733,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2202,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2364,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1808,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1855,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1854,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2921,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":655,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2816,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2744,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1117,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2065,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1114,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2815,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2817,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2818,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":687,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1142,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2774,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1141,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2425,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2773,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1700,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1704,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1701,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1705,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2391,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1711,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1013,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":275,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":278,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":539,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":447,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2866,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1614,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1344,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1081,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1568,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2679,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1494,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1425,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1693,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":812,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1259,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":809,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1260,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2227,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":583,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":179,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":253,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1104,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1103,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2124,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2123,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":729,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1151,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1228,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":995,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":344,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":442,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2040,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":491,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2784,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1644,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2752,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":978,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2292,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2229,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":925,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":472,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2929,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1045,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2753,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1136,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":669,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":671,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":672,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":718,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1786,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2458,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1517,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2662,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2664,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1439,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":339,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1956,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2347,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2177,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":714,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2760,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":648,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":270,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":372,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2550,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":532,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1307,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":984,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1949,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2524,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":236,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":873,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":875,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":876,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1423,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2069,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1554,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1593,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1596,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1595,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1485,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":423,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2161,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2648,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2155,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":641,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1968,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":363,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2909,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":484,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1280,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":610,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":739,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":211,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2622,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":868,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1207,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1665,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":665,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":324,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2162,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1926,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":232,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":1000,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2488,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2056,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":660,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1019,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":296,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":745,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":321,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1689,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":773,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":782,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":362,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1080,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1147,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1172,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1174,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2892,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1176,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":919,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":550,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":732,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1091,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2445,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2639,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":356,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2282,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":323,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2125,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1032,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1152,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":746,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":450,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":790,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":839,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2725,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2010,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1306,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1479,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1021,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1829,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1020,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":740,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":335,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1598,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1096,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1576,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1438,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":817,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2038,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":202,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1090,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1941,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1238,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2498,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2597,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2392,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2442,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2455,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2439,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2595,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2184,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2242,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2262,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2216,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2220,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1770,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2103,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":2006,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1200,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1654,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2012,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1857,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":892,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":923,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2851,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2935,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2891,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2792,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2487,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2793,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2084,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2241,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1314,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2845,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2700,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2637,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2034,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1653,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2102,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1911,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2497,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2698,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2363,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2440,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2185,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2263,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2221,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1902,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2035,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2104,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1380,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1311,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2633,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1656,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2036,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2273,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1679,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":628,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1313,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1317,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1451,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2082,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2359,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2360,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1208,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1310,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2400,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":972,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1195,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1198,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1966,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2413,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2663,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":663,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":427,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2057,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1529,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2068,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2863,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1336,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1831,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":452,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2178,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":780,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1033,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1939,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":700,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1606,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":388,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":168,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2586,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2585,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":119,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2095,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2158,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1947,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1304,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1515,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1516,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":832,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1394,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1077,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1835,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1631,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2044,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":896,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":140,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1211,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":142,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":608,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":797,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":379,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1986,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1486,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1520,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2448,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2878,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":695,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":287,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2295,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2447,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":424,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1774,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1326,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1325,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1391,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":271,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":503,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":459,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1484,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1282,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":248,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":493,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2932,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":357,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2105,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":563,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":164,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1860,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1690,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2032,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1165,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1378,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":375,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":722,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":711,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1870,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2829,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":678,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1309,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2296,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1331,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1275,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":770,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1722,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":301,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2798,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":631,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":292,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1892,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":147,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1746,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2494,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":474,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":478,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":900,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1523,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1563,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1940,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1107,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2514,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":376,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2039,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1562,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1253,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":145,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2820,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2821,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2838,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2819,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":458,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":813,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":250,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":775,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1014,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":543,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2529,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":546,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":841,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":398,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1907,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1660,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1108,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":199,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1203,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1206,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1578,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1337,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1553,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":307,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":802,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":630,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1795,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1794,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1792,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2307,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1522,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1162,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1164,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":426,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2022,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1979,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2025,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1089,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2527,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":552,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1745,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1649,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2865,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":784,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":281,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2106,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":501,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2556,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1370,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2651,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2351,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1373,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1374,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2354,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2652,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2608,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2355,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2846,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2353,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2609,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1377,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2352,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2607,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2521,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":602,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1758,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1761,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1404,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2074,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1105,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2721,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr-d279bb9616.json b/themes/docsmith/static/build/lunr-d279bb9616.json deleted file mode 100644 index dfe34aec8f5..00000000000 --- a/themes/docsmith/static/build/lunr-d279bb9616.json +++ /dev/null @@ -1 +0,0 @@ -{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.239,1,6.179,2,3.289,3,3.499,4,1.341,5,1.502]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.946,2,6.132,8,6.771]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.065,10,5.627,11,0.857]],["keywords//docs/development/java/install-java-jdk/",[10,5.514,12,3.967,13,6.41]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.499,4,1.341,7,4.932,14,0.869,15,3.718,16,1.838]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.985,5,1.934,8,5.551,15,4.786,16,2.366,17,1.849,18,1.861,19,4.194,20,4.666,21,4.61]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.405,23,6.649,24,3.194,25,6.649]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.486,26,7.045,27,7.045,28,5.624]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.117,9,0.066,16,2.378,22,3.397,24,3.536,25,9.412,29,1.198,30,2.402,31,1.081,32,3.55,33,2.331,34,3.887,35,0.314,36,5.569,37,5.569,38,1.969,39,2.216,40,2.253,41,3.973,42,1.844,43,3.228,44,5.127,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.119,32,3.673,33,2.412,47,2.028,48,5.005,49,0.917]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.067,16,2.42,17,1.891,18,1.904,29,1.219,32,5.187,33,3.405,48,8.978,49,1.646]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.065,11,0.857,54,4.879]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.765,54,4.358,55,7.045,56,5.843]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.089,54,6.689,57,5.26,58,7.591,59,5.977,60,2.64]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.059,11,0.784,50,5.99,61,1.299]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.064,11,0.845,48,6.755,50,8.33,61,1.399,62,3.798,63,5.318,64,3.015,65,2.349,66,7.778,67,7.161,68,5.683]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.765,70,7.222,71,6.272,72,6.272]],["keywords//docs/platform/meltdown_statement/",[71,6.118,72,6.118,73,5.285,74,3.468]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.224,71,5.46,72,3.508,73,3.03,74,3.799,75,4.039,76,4.039,77,7.224,78,4.039,79,4.039,80,1.671,81,4.039,82,4.039,83,6.287,84,3.03,85,4.485,86,4.594,87,6.287,88,2.882,89,2.883,90,1.215,91,6.287,92,3.508,93,4.039,94,4.039,95,4.594,96,2.021,97,3.719,98,2.819,99,2.238,100,2.313,101,1.913,102,3.03,103,3.508,104,4.039,105,4.039]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.059,39,2.874,106,5.578,107,6.649]],["keywords//docs/development/python/install_python_miniconda/",[107,7.116,108,7.728,109,7.728]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.065,110,3.422,111,6.092]],["keywords//docs/applications/containers/install_docker_ce/",[110,3.354,112,4.114,113,7.728]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.065,110,3.422,114,5.763]],["keywords//docs/applications/containers/install_docker_compose/",[110,3.354,112,4.114,115,7.728]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.065,116,4.048,117,2.457]],["keywords//docs/development/version-control/how-to-install-git-linux/",[116,3.967,117,2.408,118,4.591]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.065,116,4.048,119,4.571]],["keywords//docs/development/version-control/how-to-install-git-mac/",[116,3.967,118,4.591,119,4.479]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.097,65,2.349,116,5.709,120,7.206,121,7.161,122,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.065,116,4.048,123,4.013]],["keywords//docs/development/version-control/how-to-install-git-windows/",[116,3.967,118,4.591,123,3.932]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[124,5.097,125,7.206]],["keywords//docs/development/introduction-to-websockets/",[125,5.843,126,4.642,127,7.045,128,7.045]],["toc//docs/development/introduction-to-websockets/",[0,1.405,49,1.115,125,10.422,129,4.616,130,7.006,131,3.021,132,5.255,133,5.811,134,6.45,135,6.45,136,3.505]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.776,110,3.422,137,6.85]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.401,31,1.081,110,2.416,137,4.836,138,4.836,139,5.126,140,2.936]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.073,14,0.912,17,1.509,18,1.518,30,2.799,31,1.26,60,1.96,110,4.41,112,3.455,114,6.506,137,7.732,141,2.359,142,3.636,143,1.854,144,5.013,145,5.013,146,4.743]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,110,3.422,114,5.763]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[110,3.714,114,6.254]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.065,17,1.274,18,1.283,24,2.425,31,1.064,38,1.938,42,3.07,45,2.44,46,2.409,110,4.024,111,4.234,114,6.776,147,4.006,148,1.681,149,3.826,150,2.814,151,2.136,152,5.048,153,4.761,154,3.911,155,3.252,156,2.506,157,3.391,158,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[148,2.215,159,7.222,160,5.99,161,6.272]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.076,161,6.712,162,7.728]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.066,14,1.137,39,2.252,90,1.702,120,3.665,148,1.735,161,9.46,163,5.658,164,1.604,165,4.914,166,9.438,167,4.438,168,5.658,169,2.93,170,5.658,171,3.728,172,5.658,173,3.796,174,3.949,175,4.037]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[110,3.422,112,4.199,131,3.401]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.713,110,3.057,112,3.751,176,7.045]],["toc//docs/applications/containers/docker-container-communication/",[0,1.083,5,1.313,9,0.064,14,0.759,16,1.606,17,1.255,18,1.263,19,2.847,29,0.809,30,2.328,35,0.304,110,4.373,111,4.17,112,5.365,114,3.945,131,3.964,151,2.103,177,3.768,178,3.851,179,3.768,180,3.058,181,1.388,182,3.207,183,3.389]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[181,1.857,184,2.085,185,3.473,186,5.99]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.683,17,1.315,18,1.324,29,0.848,35,0.319,120,5.239,136,2.831,154,4.037,164,1.604,181,2.427,184,3.145,185,3.889,187,7.534,188,6.067,189,2.368,190,3.205,191,3.136,192,2.623,193,5.209]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.015,31,1.402,32,4.603,33,3.022]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.5,33,3.235,194,7.116]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.568,9,0.064,17,1.255,18,1.263,31,1.048,32,4.984,33,3.272,35,0.304,39,3.111,49,1.245,60,1.63,180,3.058,181,1.388,195,3.497,196,4.688,197,2.874,198,3.557,199,2.485,200,4.688,201,4.17,202,2.874,203,4.478,204,3.851,205,3.621,206,4.478,207,3.207,208,4.97]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.756,15,4.346,16,2.148,30,3.114]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.187,30,2.582,209,3.878,210,5.986,211,5.986,212,5.986]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.805,5,2.596,17,1.662,18,1.672,20,4.193,21,4.143,45,3.182,46,3.141,185,3.437,213,4.63,214,4.795,215,5.1,216,7.148,217,4.988,218,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.194,219,4.467,220,6.649,221,6.649]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[219,5.822,222,7.045,223,5.624]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.748,8,3.602,14,1.064,17,1.2,18,1.208,90,1.553,148,1.583,203,4.281,219,3.193,220,9.084,221,9.084,223,8.385,224,3.987,225,5.162,226,2.626,227,4.752,228,7.567,229,4.75,230,4.483,231,3.682,232,3.987,233,2.376,234,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[148,1.895,164,1.752,189,2.586,235,3.321,236,5.125,237,5.366]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[237,6.712,238,4.781,239,7.728]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.816,5,1.638,9,0.091,17,1.566,18,1.576,49,1.454,54,4.168,143,1.924,237,5.852,240,0.925,241,1.727,242,6.738,243,2.497,244,3.019,245,4.168,246,4.608]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.312,89,1.888,143,1.765,185,2.971,247,3.625]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.178,89,1.829,110,2.598,112,3.187,185,2.879,248,5.512]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.068,14,1.17,16,1.357,29,0.683,31,0.885,34,3.183,45,2.03,46,2.004,89,1.393,90,1.372,110,1.979,112,4.432,131,2.976,142,5.199,148,1.399,167,2.145,181,1.173,185,4.003,197,2.428,206,3.783,247,4.884,248,6.354,249,4.561,250,4.561,251,3.961,252,4.561,253,3.783,254,4.561,255,2.428,256,4.561]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.986,49,0.808,143,1.45,164,1.44,184,1.466,189,2.126,257,3.81,258,2.909]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.081,143,1.59,164,1.579,258,3.19,259,5.568,260,5.568,261,5.568]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.067,9,0.075,14,0.747,17,1.236,18,1.244,28,4.245,31,1.032,35,0.3,257,5.801,258,5.22,262,4.41,263,2.831,264,4.107,265,2.448,266,3.793,267,6.173,268,9.113,269,9.113,270,6.414,271,4.245,272,5.317,273,4.245,274,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[275,6.272,276,3.674,277,6.649,278,6.649]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.863,39,2.576,275,5.621,279,6.473,280,6.473]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.07,16,1.411,21,2.75,24,2.099,29,0.711,39,1.888,59,3.245,134,4.369,143,1.355,150,2.435,155,1.952,243,1.758,244,2.126,275,4.121,277,7.85,278,8.718,281,2.112,282,4.745,283,3.56,284,5.676,285,4.745,286,2.658,287,3.665,288,3.936,289,4.745,290,2.784,291,3.127,292,7.11,293,4.745,294,4.369,295,4.745,296,2.819,297,3.665]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.055,61,1.197,63,4.554,184,1.923,187,5.316]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.978,5,1.186,9,0.06,14,0.685,17,1.134,18,1.141,35,0.409,120,4.7,143,2.475,186,4.045,187,8.19,193,4.49,199,3.34,298,4.876,299,4.49,300,3.403,301,3.893,302,4.704,303,1.193,304,2.481,305,3.563,306,3.403,307,4.868,308,3.061,309,2.345,310,2.974,311,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.747,35,0.49]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.354,30,2.401,209,3.607,312,2.447,313,5.568,314,5.568,315,5.568]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.55,17,1.482,18,1.491,30,3.792,35,0.496,148,1.955,174,4.448,209,4.129,308,4.001,316,4.199,317,6.373,318,3.68,319,3.943,320,3.361,321,6.373,322,6.373,323,1.756,324,3.081,325,6.373]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.083,11,0.586,33,2.26,49,0.859,164,1.531,189,2.26,326,5.399,327,4.689]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.65,33,2.505,164,1.697,327,5.199,328,5.986,329,5.986]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.02,9,0.073,17,1.183,18,1.19,35,0.287,41,3.629,42,1.684,49,1.192,54,3.147,64,1.972,119,2.948,123,2.588,136,4.902,171,3.352,246,3.479,281,2.264,309,2.446,327,9.806,330,2.235,331,4.061,332,5.087,333,4.684,334,3.479,335,2.948,336,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[132,5.417,184,2.085,337,5.152,338,6.272]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.576,184,1.869,338,5.621,339,6.473,340,6.473]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.927,9,0.068,16,1.739,29,0.876,39,2.326,40,2.365,60,1.765,80,2.418,90,1.759,106,4.515,132,6.209,155,2.405,198,3.852,337,4.17,338,5.077,341,3.787,342,5.382,343,9.609,344,5.845,345,4.17,346,4.08,347,5.845]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.015,348,6.272,349,4.845,350,6.649]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[348,4.836,349,3.735,350,5.126,351,4.618,352,4.836,353,5.126,354,3.972]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.302,9,0.053,35,0.366,90,3.057,123,3.302,148,1.991,348,10.721,351,5.384,352,5.637,353,5.976,354,6.352,355,2.765]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.733,356,5.366,357,4.932,358,5.689,359,5.366]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.576,356,5.621,360,5.959,361,5.959,362,6.473]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.758,9,0.069,14,0.531,17,0.879,18,0.884,29,1.108,39,1.504,61,0.68,63,2.584,80,1.564,85,2.697,106,2.919,118,2.245,142,3.343,155,1.555,164,1.072,184,1.091,189,1.582,199,1.74,202,2.012,255,2.012,288,3.135,291,2.49,323,2.037,355,1.61,356,7.294,360,3.48,361,6.808,363,3.48,364,2.638,365,3.78,366,1.038,367,3.866,368,2.072,369,2.448,370,3.78,371,3.78,372,0.544,373,3.48,374,2.762,375,2.191,376,2.275,377,2.275,378,1.79,379,2.697,380,2.638]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.838,29,0.926,218,4.408,381,5.689,382,5.366,383,5.689]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.576,218,4.618,312,2.844,382,5.621,384,6.473]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.086,17,1.2,18,1.208,39,3.011,80,3.706,106,3.987,142,4.239,151,2.011,184,2.185,218,3.682,291,3.401,312,3.325,323,1.422,363,4.752,366,1.417,382,9.122,383,4.752,385,6.041,386,3.682,387,5.162,388,5.162]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.776,180,4.467,389,6.85]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[110,3.057,112,3.751,389,6.118,390,5.843]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.083,42,2.149,47,2.284,110,2.816,111,5.013,141,2.359,142,3.636,155,2.67,180,3.676,181,1.669,389,9.497,391,4.438,392,3.959,393,5.013,394,4.53,395,5.976,396,4.869]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.051,31,1.199,35,0.348,47,2.175,312,2.715,390,5.125]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.256,47,2.278,110,2.809,112,3.446,390,5.369]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.071,17,1.118,18,1.125,29,0.721,31,0.934,35,0.271,47,1.693,89,2.194,110,3.117,141,1.748,155,1.979,181,1.237,190,4.868,191,3.98,234,3.515,312,3.156,390,9.454,397,3.066,398,2.611,399,1.764,400,3.99,401,4.81,402,4.81,403,4.81,404,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.221,110,3.77]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[110,3.354,112,4.114,405,7.728]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,110,5.152,183,5.626,406,7.434]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.515,238,3.822,240,0.849,366,1.697,407,5.689]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[408,4.836,409,5.568,410,5.568,411,4.069,412,5.568,413,5.568,414,5.568]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.652,9,0.063,49,1.211,89,2.325,96,3.807,110,3.302,131,3.282,320,4.013,407,10.135,411,5.561,415,4.58,416,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.784,20,4.237,150,3.706,417,6.272]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.133,417,6.118,418,6.486,419,7.045]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.045,16,0.996,17,0.779,18,0.784,19,1.766,20,1.965,28,2.674,29,0.502,35,0.189,40,1.355,47,1.179,59,2.29,60,1.636,80,1.386,149,2.337,150,1.719,151,2.111,188,2.512,202,1.783,230,2.909,286,1.876,291,2.207,296,1.99,297,2.587,316,2.207,368,1.163,417,7.476,418,7.217,420,3.349,421,3.349,422,3.141,423,2.909,424,2.072,425,5.418,426,5.418,427,1.965,428,3.349,429,3.349,430,2.587,431,3.084,432,2.778,433,2.102,434,3.349,435,8.608,436,3.349,437,2.778,438,3.349,439,5.418,440,3.349,441,3.349,442,2.778,443,3.349,444,3.349,445,3.349]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.723,16,1.981,29,0.998,446,5.524,447,3.448]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[446,7.099,447,4.432]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.052,16,1.896,29,0.955,35,0.359,42,2.11,45,2.837,46,2.801,49,1.4,60,1.925,74,3.137,80,2.637,100,1.91,131,3.792,136,4.399,309,3.065,310,3.888,446,9.001]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[448,6.649,449,5.765,450,5.99,451,6.272]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.804,449,5.624,451,6.118,452,3.681]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.173,9,0.048,14,0.822,17,1.359,18,1.368,35,0.329,96,2.924,148,1.793,155,2.405,391,3.997,394,4.08,449,6.607,450,6.865,451,7.188,452,3.054,453,5.077,454,4.981,455,5.845,456,3.852,457,5.845,458,3.274,459,5.845,460,2.811,461,5.845]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.936,47,2.344,151,2.595,247,3.907,462,5.784]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[110,3.354,247,4.534,462,6.712]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.136,17,1.118,18,1.125,19,5.847,29,1.076,35,0.405,45,2.141,46,2.114,56,3.99,80,1.99,118,2.857,146,3.515,151,3.349,155,1.979,462,8.859,463,4.81,464,2.279,465,2.724,466,4.81,467,4.81,468,7.182,469,3.169,470,5.124,471,4.81]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.936,89,2.035,142,3.73,251,5.784,472,5.784]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.152,98,4.917,427,4.133,472,6.118]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.071,11,0.522,17,1.118,18,1.125,19,2.536,35,0.537,38,2.539,47,1.693,49,1.368,56,3.99,57,2.895,60,1.453,62,2.349,89,2.912,90,1.447,98,5.012,150,2.469,182,2.857,217,3.357,244,3.218,427,2.822,430,3.715,472,7.464,473,3.019,474,4.177,475,2.895]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.035,90,2.004,155,2.739,476,5.524,477,4.062]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[378,3.066,476,5.369,477,3.948,478,2.288,479,4.855]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[155,4.448,169,4.526,217,6.1,476,8.969,477,6.596]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[480,6.542,481,7.887,482,6.092]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.855,480,5.369,482,4.999,483,6.473,484,6.473]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.074,17,2.084,18,2.097,124,5.258,323,2.47,480,7.434,482,6.923]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.015,300,5.04,485,5.578,486,5.417]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[485,5.969,487,6.17,488,5.797]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.067,17,1.891,18,1.904,35,0.583,184,2.349,300,5.679,368,2.825,415,4.897,485,6.284,486,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.784,14,1.015,62,3.527,489,6.272]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[489,4.52,490,4.791,491,5.204,492,4.154,493,5.204,494,4.154,495,4.791,496,4.02]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.952,9,0.039,16,1.411,17,1.103,18,1.11,24,2.099,198,3.127,217,3.312,226,2.414,301,3.788,364,3.312,422,2.184,430,3.665,489,9.587,492,3.788,494,5.676,495,7.85,496,7.833,497,4.745,498,4.745,499,8.526,500,8.526,501,4.745,502,4.369,503,4.745]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.304,224,4.17,238,4.837,251,4.689,323,1.488,504,3.557]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[504,5.092,505,7.116,506,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.433,9,0.029,14,0.504,16,1.703,17,0.834,18,0.839,29,0.858,35,0.46,40,1.451,89,1.096,90,1.079,96,1.795,120,2.324,142,2.01,148,1.756,173,2.407,224,5.519,238,6.769,302,1.948,368,1.246,372,0.516,458,2.01,473,2.252,504,6.822,507,3.116,508,5.322,509,2.159,510,2.287,511,2.771,512,3.116,513,2.324,514,3.303,515,2.56,516,3.303,517,3.588]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.733,238,3.822,518,4.635,519,3.769,520,5.689,521,5.689]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[158,3.444,219,3.444,337,3.972,492,4.445,519,3.396,522,5.568,523,4.445]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.035,14,0.925,16,1.957,17,0.996,18,1.002,29,0.986,35,0.241,45,1.907,46,1.883,49,0.682,89,1.309,90,1.289,136,2.143,143,1.224,155,1.762,158,4.07,190,3.726,197,2.281,243,1.588,296,2.545,302,3.572,355,1.825,364,2.99,376,2.578,520,9.423,521,8.274,524,6.58,525,2.775,526,6.58,527,3.554,528,3.554,529,6.58,530,3.721]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.511,29,0.761,89,1.552,169,2.63,217,3.544,240,0.697,368,1.764,531,2.845,532,2.704]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[533,6.118,534,6.118,535,7.045,536,6.118]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.064,17,1.808,18,1.82,35,0.566,169,4.027,181,2,240,1.068,366,2.136,508,4.357,531,6.231]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.044,35,0.304,312,2.373,368,1.875,537,4.689,538,4.31,539,4.31,540,4.31]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[537,6.118,539,5.624,540,5.624,541,6.118]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.918,18,0.924,35,0.485,45,1.758,54,2.443,64,1.531,112,2.102,136,3.09,151,2.964,184,1.14,191,2.188,229,4.775,312,3.343,316,2.602,368,1.371,369,2.558,398,5.069,523,3.152,537,9.558,540,6.073,542,3.429,543,7.472,544,3.636,545,3.636,546,2.756,547,3.636,548,3.949,549,3.275,550,2.045]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.859,164,1.531,189,2.26,257,4.05,258,3.093,271,4.31,303,1.321,551,4.971]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[552,6.41,553,7.116,554,7.728]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.082,16,1.188,17,0.928,18,0.934,29,0.598,31,0.775,32,3.972,33,2.608,35,0.351,49,0.636,54,2.47,90,1.201,100,1.197,129,2.631,131,1.722,155,1.643,171,2.631,181,1.027,240,0.548,246,2.731,257,4.674,258,4.389,267,6.117,270,7.786,323,1.1,335,2.315,478,1.412,479,4.674,551,7.97,552,3.312,555,3.993,556,3.993,557,3.993,558,5.411]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.047,16,1.714,29,0.863,106,4.451,190,3.264,312,2.532,539,4.6]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[539,6.17,540,6.17,541,6.712]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.593,17,0.687,18,0.692,24,1.307,29,1.207,35,0.489,45,1.316,46,1.299,58,2.568,59,2.022,64,1.146,80,2.024,101,1.401,142,1.656,148,1.5,181,0.76,184,1.807,190,4.119,191,1.638,195,1.915,233,1.361,312,2.15,320,1.559,323,0.815,324,1.036,368,1.699,398,2.656,404,1.885,474,2.568,511,2.283,539,5.806,540,6.931,541,7.54,542,2.568,543,4.249,549,2.452,559,4.249,560,2.452,561,2.109,562,2.956,563,2.956,564,3.223,565,2.452,566,2.722,567,2.722,568,2.568,569,2.452,570,2.452,571,3.071,572,2.568,573,2.956]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[144,5.144,574,5.524,575,4.18,576,5.316,577,6.131]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.216,138,4.836,578,5.568,579,5.126,580,5.126,581,5.568,582,5.568]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.135,5,1.376,9,0.046,16,2.406,17,1.315,18,1.324,29,1.212,39,2.252,45,2.519,46,2.486,60,1.709,129,6.219,138,7.023,141,2.057,142,3.169,181,1.455,366,2.221,576,4.517,577,7.446,580,5.209,583,5.658,584,5.658,585,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.936,20,3.907,586,5.784,587,6.131,588,6.131]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.133,177,4.917,586,6.118,589,7.045]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.463,9,0.079,17,1.696,18,1.707,20,5.651,21,4.228,40,3.896,155,3.001,177,5.092,368,3.345,564,4.807,586,6.336]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.341,14,0.869,35,0.348,49,0.984,110,2.681,590,4.772]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[110,3.354,341,5.007,590,5.969]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.936,4,1.19,5,1.333,9,0.045,17,1.274,18,1.283,24,2.425,35,0.523,42,1.815,49,1.476,60,1.656,65,1.656,110,3.431,114,4.006,281,2.44,309,3.802,590,7.839,591,4.376,592,5.048,593,4.234,594,5.482]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.055,427,3.907,595,5.784,596,5.144,597,5.316]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[427,3.512,595,5.199,596,4.624,598,4.178,599,4.779,600,5.512]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.075,17,1.236,18,1.244,35,0.3,88,3.793,90,2.326,318,2.225,368,1.846,427,5.87,595,9.232,596,5.973,597,4.245,600,4.895,601,4.895,602,5.317,603,3.503,604,3.885,605,5.317,606,5.317,607,3.289,608,3.793,609,5.317,610,5.317]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.407,447,3.739,611,4.758,612,7.222]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[303,2.095,447,4.432]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.482,18,1.491,34,4.448,35,0.359,136,4.399,165,5.535,309,4.228,336,3.835,372,0.917,447,4.553,550,3.3,611,4.199,613,5.286,614,6.373,615,6.373,616,4.781,617,6.373,618,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.148,29,1.082,49,1.15,590,5.578]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[341,5.544,590,6.61]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.064,17,1.236,18,1.244,35,0.599,49,1.692,60,1.606,65,2.335,143,2.208,195,3.444,281,3.442,309,3.718,323,1.465,399,1.306,590,7.728,591,4.245,592,4.895,619,5.317,620,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.981,29,0.998,148,2.042,240,0.915,621,4.18]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[240,1.175,621,5.373]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.278,17,1.482,18,1.491,29,0.955,124,3.739,167,2.997,287,4.922,288,5.286,311,2.328,346,4.448,509,3.835,546,4.448,621,6.319,622,7.636,623,5.905,624,4.275,625,6.373,626,4.547]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.059,61,1.299,63,4.938,627,6.272]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[110,3.354,366,2.122,627,6.712]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.839,9,0.034,17,0.972,18,0.979,35,0.445,41,2.984,47,1.472,54,2.587,64,1.621,65,1.263,74,2.059,112,4.201,155,1.721,227,5.947,246,2.86,253,5.357,265,1.926,318,1.751,336,2.517,377,3.887,570,3.469,627,8.329,628,2.919,629,5.609,630,6.459,631,3.469,632,5.947,633,2.806,634,3.851,635,3.138,636,4.183,637,2.485,638,6.545,639,3.058]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,4.29,623,4.237,640,4.533,641,7.222]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,5.591,642,7.513]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.964,90,2.919,354,6.922,643,4.347]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.083,14,0.759,30,2.328,312,2.373,485,4.17,510,3.442,644,5.399,645,4.971]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.879,30,3.333,312,3.396]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.088,17,1.455,18,1.465,30,3.745,35,0.562,45,2.787,46,2.751,60,1.891,84,4.696,85,4.466,485,6.707,530,5.437,645,7.996,646,8.684,647,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.838,29,0.926,447,3.199,648,5.366,649,7.923]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.703,164,1.835,303,1.584,447,3.352,648,5.621]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.814,9,0.036,11,0.471,14,0.61,17,1.008,18,1.015,35,0.374,38,1.533,40,1.754,47,1.526,60,1.31,62,2.118,88,3.094,148,2.475,167,2.04,181,1.115,182,2.576,190,3.762,238,2.683,372,0.624,422,1.997,447,4.683,464,2.055,613,3.597,647,2.429,648,9.296,650,1.815,651,3.993,652,4.337,653,3.094,654,4.337,655,4.337,656,4.337]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.239,89,1.888,90,1.859,110,2.681,190,3.499,657,5.366]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[110,2.809,112,3.446,658,6.473,659,6.473,660,6.473]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.56,17,1.808,18,1.82,42,2.575,47,2.737,90,3.022,110,4.358,190,4.405,657,8.722,661,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.167,49,0.859,89,1.649,143,1.542,662,4.689,663,4.971,664,4.971]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[241,1.252,531,2.736,662,4.243,665,4.243,666,4.885,667,2.98,668,2.94,669,3.57,670,4.885]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.213,17,1.405,18,1.414,42,2.002,47,2.128,49,0.962,89,1.847,129,3.984,155,3.487,233,2.783,265,2.783,330,2.657,378,4.015,464,2.864,662,5.251,663,7.803,671,4.418,672,4.512,673,4.076,674,5.015,675,2.262]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.763,61,0.862,143,1.369,240,0.658,257,3.596,258,2.746,263,2.552,271,3.827,676,2.107]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[267,4.445,270,4.618,553,5.126,558,4.836,677,5.126,678,4.445,679,5.568]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.076,17,1.255,18,1.263,22,3.293,24,3.458,35,0.304,257,7.559,258,5.266,262,4.478,263,2.874,265,2.485,267,6.241,270,6.485,273,4.31,274,3.945,558,6.79,676,3.436,680,4.17,681,6.79,682,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.336,39,2.65,65,2.011,265,3.066,519,4.062]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.576,683,6.473,684,6.473,685,5.621,686,6.473]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.054,14,0.929,17,1.537,18,1.547,39,3.588,49,1.053,64,2.563,65,2.723,90,1.989,136,3.308,185,3.179,240,0.908,288,5.484,320,3.487,687,6.612,688,6.612,689,6.612,690,4.717,691,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.055,35,0.375,61,1.197,63,4.554,692,6.66]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[693,7.116,694,7.728,695,7.728]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.092,12,3.526,17,1.597,18,1.607,35,0.522,45,3.058,46,3.019,49,1.094,267,5.484,639,2.663,693,9.634,696,2.059,697,3.254]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,698,4.062]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.839,31,1.5,698,4.714]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.491,9,0.096,17,1.597,18,1.607,31,1.333,35,0.387,45,3.058,46,3.019,281,3.058,452,3.589,597,5.484,698,6.383,699,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.055,35,0.375,164,1.888,189,2.787,700,5.784]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[700,7.433,701,4.282]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.065,17,1.849,18,1.861,35,0.448,42,2.633,143,2.271,155,3.272,311,2.905,700,8.848,702,3.915,703,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.015,148,2.215,181,1.857,704,7.222]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[181,1.812,399,1.73,705,7.045,706,6.486]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.85,42,3.045,181,2.365,673,4.422,707,8.467,708,7.342]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.691,155,2.739,532,3.545,682,4.751,709,5.144]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[709,5.441,710,7.045,711,7.045,712,7.045]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.302,9,0.073,12,3.331,17,1.509,18,1.518,54,4.015,64,2.516,240,0.891,246,4.438,303,1.589,309,3.121,310,3.959,626,6.352,639,2.516,709,8.446,713,5.16]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,393,5.144,668,4.008]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[393,4.999,714,6.473,715,6.473,716,6.473,717,6.473]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.583,9,0.098,17,1.696,18,1.707,31,1.416,88,5.205,177,5.092,393,7.44,470,5.205,647,4.087,718,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.148,29,1.082,719,6.272,720,5.417]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[303,1.274,446,4.317,447,2.695,719,4.52,721,2.625,722,5.204,723,5.204,724,5.204]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.08,14,1.047,17,1.732,18,1.743,45,3.316,46,3.274,131,3.213,281,3.316,368,2.587,447,3.857,719,8.481,720,5.588,725,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.859,148,1.895,271,4.932,355,2.632,726,5.689]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[727,7.045,728,7.045,729,7.045,730,7.045]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.053,14,1.252,17,1.509,18,1.518,124,3.808,148,1.991,167,3.052,182,3.856,183,4.074,355,3.793,396,4.869,422,2.988,726,8.197,731,5.976,732,4.277,733,5.976,734,4.015,735,5.384,736,5.637]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.172,5,1.313,9,0.044,11,0.586,62,2.637,90,1.624,737,4.05,738,4.478]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.299,5,1.456,738,4.965,739,5.512,740,5.199,741,4.624]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.067,9,0.085,17,1.337,18,1.345,35,0.537,65,1.737,142,3.221,153,4.994,155,2.365,244,2.576,415,3.461,737,8.222,738,6.786,742,5.75,743,4.102,744,5.75,745,3.789]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.039,35,0.27,90,1.442,143,1.369,180,2.715,477,2.924,518,3.596,746,4.164,747,4.794,748,4.164]],["keywords//docs/applications/project-management/install-farmos/",[667,4.714,746,6.712,749,3.418]],["toc//docs/applications/project-management/install-farmos/",[4,1.383,9,0.052,17,1.482,18,1.491,35,0.359,45,2.837,46,2.801,129,4.199,155,2.622,233,2.934,241,1.634,324,2.233,334,4.358,378,3.019,647,3.57,673,3.065,746,9.424,750,6.373,751,3.188,752,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.336,110,2.89,359,5.784,458,3.73,690,4.751]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[458,4.794,753,8.559]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.526,110,4.297,118,4.521,359,6.609,432,6.312,433,4.777,458,6.531,464,3.605,754,7.007,755,7.007]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.336,49,1.06,756,2.376,757,2.82,758,5.316]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[759,6.473,760,6.473,761,6.473,762,6.473,763,6.473]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.083,11,0.705,17,1.509,18,1.518,35,0.366,46,2.852,49,1.033,155,2.67,183,4.074,305,4.743,378,3.075,396,4.869,477,3.959,673,3.121,757,2.749,758,5.181,764,3.597,765,6.491,766,2.441,767,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,768,6.272]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[668,4.651,768,6.712,769,5.394]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.518,9,0.081,14,0.625,16,1.323,17,1.034,18,1.04,29,0.666,35,0.382,45,1.979,46,1.954,49,0.708,64,1.723,141,1.616,142,2.491,148,2.076,219,2.75,240,0.93,243,1.647,276,2.262,281,3.013,305,3.249,307,2.983,311,1.624,334,3.04,546,3.103,621,2.791,675,1.664,757,1.883,766,1.672,768,9.019,770,4.094,771,4.446,772,4.446,773,3.249]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,182,3.423,303,1.41,320,3.039,369,3.733,774,4.6,775,4.451]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[643,2.9,774,5.167,776,5.959,777,6.473,778,6.473]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.064,15,4.681,17,1.808,18,1.82,35,0.438,69,6.209,320,4.102,676,3.418,774,8.88,779,2.246,780,3.798]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.042,32,3.237,33,2.126,49,0.808,89,1.552,240,0.697,449,4.054,450,4.213,781,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[125,5.843,675,2.636,782,7.045,783,7.045]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.352,9,0.055,17,1.566,18,1.576,32,4.295,33,2.82,35,0.515,65,2.035,90,2.027,240,0.925,368,2.34,449,7.291,450,7.576,766,2.534,784,6.738,785,4.11,786,3.458]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.371,124,4.627,596,6.092]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[596,6.61,599,6.832]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.117,9,0.066,17,1.295,18,1.303,54,3.445,90,1.675,99,5.184,148,2.452,197,2.965,246,3.808,283,4.177,508,3.119,523,4.446,596,7.896,597,8.643,787,9.354,788,5.569,789,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.047,11,0.626,62,2.814,368,2.001,675,2.156,790,5.005,791,5.005]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.576,139,5.959,790,5.621,791,5.621,792,3.322]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.302,5,1.578,9,0.073,16,1.931,17,1.509,18,1.518,29,0.972,35,0.366,45,2.889,46,2.852,47,2.284,281,2.889,465,3.676,675,2.429,790,9.952,791,5.637,793,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,11,0.552,49,0.808,61,0.913,304,2.584,794,4.676,795,4.676,796,4.676,797,3.473]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[181,1.54,796,5.512,798,5.986,799,4.178,800,5.986,801,5.986]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,14,0.726,17,1.2,18,1.208,35,0.291,40,2.088,49,1.747,99,2.86,126,3.401,224,5.844,304,4.558,368,2.628,571,3.24,732,4.986,794,8.248,795,8.248,799,3.602,802,3.772,803,4.281,804,4.483,805,3.987,806,5.162]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.059,11,0.784,49,1.15,807,6.649]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.765,808,7.045,809,7.045,810,7.045]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.074,17,1.537,18,1.547,45,2.943,46,2.906,174,6.293,281,2.943,807,6.088,811,9.017,812,9.017,813,9.017,814,9.017,815,9.017,816,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.051,11,0.671,35,0.348,62,3.017,140,3.258,312,2.715]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[817,7.045,818,7.045,819,4.422,820,6.118]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.192,9,0.049,14,0.836,35,0.335,40,2.404,89,1.816,131,2.563,140,3.135,155,3.445,190,3.366,191,5.374,233,2.736,312,2.612,404,6.711,452,3.106,559,5.162,560,4.93,820,5.162,821,5.944,822,5.162,823,5.944]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.239,11,0.671,39,2.459,142,3.461,366,1.697,824,5.689]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.076,685,6.712,825,7.728]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.809,9,0.054,17,1.537,18,1.547,39,4.083,96,3.308,106,5.107,142,6.174,167,3.109,366,2.476,685,5.742,826,4.832,827,4.832,828,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[829,0.474]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.221,830,6.348]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.711,38,3.765,110,3.701,150,4.378,458,4.778,830,8.485]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.341,9,0.051,11,0.671,35,0.348,62,3.017,831,4.932]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.677,832,7.116,833,7.728]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.469,5,1.738,9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,195,4.63,300,4.988,318,2.991,368,2.482,831,8.522]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,834,5.144]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[834,5.969,835,7.728,836,7.728]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.494,4,1.617,9,0.08,17,1.732,18,1.743,35,0.55,303,1.823,323,2.053,465,4.219,482,5.754,713,4.318,834,7.542]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.671,61,1.111,74,3.041,99,3.424,550,3.199,837,2.825]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.65,61,1.076,838,4.624,839,4.624,840,4.491,841,4.271]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.348,89,1.888,90,1.859,504,4.071,643,2.768]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[504,5.092,505,7.116,842,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.052,16,1.896,17,1.482,18,1.491,29,0.955,120,5.696,124,3.739,148,1.955,185,4.228,355,2.715,504,7.502,643,4.51,843,6.373,844,5.535,845,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.263,469,5.197,846,5.763]],["keywords//docs/security/getting-started-with-selinux/",[309,3.112,846,4.73,847,6.473,848,6.473,849,6.473]],["toc//docs/security/getting-started-with-selinux/",[9,0.065,17,1.849,18,1.861,45,3.54,46,3.495,229,4.993,846,8.662,850,7.953,851,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.293,47,2.344,89,2.035,110,2.89,112,3.545]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[110,3.057,112,3.751,830,5.148,852,7.045]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.931,110,4.552,112,6.114,149,5.813,173,5.587,355,3.548,571,5.228]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.055,35,0.375,368,2.313,369,4.314,853,5.784]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[853,5.199,854,5.986,855,5.986,856,4.491,857,5.986,858,5.986]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.067,14,1.144,45,3.622,46,3.575,99,4.509,290,4.773,853,10.382,859,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.051,47,2.175,110,2.681,112,3.289,442,5.125,458,3.461]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[110,3.057,112,3.751,830,5.148,860,7.045]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.059,17,1.662,18,1.672,31,1.387,54,4.422,80,2.957,110,4.632,311,2.611,442,5.929,458,5.323,518,5.362,640,4.487,861,7.148,862,6.581]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.059,11,0.784,824,6.649,863,6.649]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[864,7.728,865,7.728,866,7.728]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.054,17,1.537,18,1.547,45,2.943,46,2.906,88,4.717,90,1.989,155,2.72,218,8.229,271,5.278,377,3.979,863,9.447,867,5.742,868,6.612,869,5.107]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[829,0.474]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.065,11,0.857,846,5.763]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[117,2.016,846,4.73,870,5.959,871,6.473,872,5.369]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.072,17,2.032,18,2.045,45,3.891,46,3.841,377,5.26,846,6.387,870,8.048]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[110,3.77,124,5.097]],["keywords//docs/applications/containers/introduction-to-docker/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.891,46,3.841,110,5.094,458,4.896,657,7.591,830,6.387]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.051,61,1.111,184,1.784,263,3.289,650,2.586,873,5.366]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[873,6.118,874,7.045,875,4.491,876,6.118]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.978,9,0.04,17,1.134,18,1.141,35,0.409,45,2.171,46,2.143,100,1.462,143,1.393,148,1.496,155,2.985,171,3.213,181,1.254,184,1.408,265,2.245,302,2.647,303,1.193,311,1.781,323,2.388,324,1.708,333,4.49,335,2.826,496,3.766,611,3.213,616,3.658,639,1.89,650,2.041,873,9.673,877,3.563,878,4.876]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.493,16,1.35,29,0.68,62,2.217,144,3.506,164,1.287,189,1.9,190,2.571,312,1.995,862,4.18,879,3.506]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.456,879,4.624,880,5.986,881,4.178,882,4.491,883,3.02]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.074,18,1.081,20,2.711,29,1.044,35,0.26,54,2.859,60,1.396,141,1.68,148,2.137,171,3.045,190,5.292,219,4.311,240,0.635,246,3.16,255,2.46,309,2.222,311,1.688,312,3.687,335,2.678,559,4.013,637,2.745,647,3.904,675,3.14,751,3.487,766,1.738,879,7.217,884,2.946,885,2.993,886,2.711]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[229,4.951,433,4.951,846,5.763]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[846,7.007]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.936,116,3.418,118,3.956,323,1.835,464,3.155]],["keywords//docs/quick-answers/linux/how-to-use-git/",[117,2.195,887,7.045,888,5.843,889,7.045]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.221,890,6.71]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[117,2.195,890,5.441,891,5.843,892,5.026]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.327,64,3.66,148,2.896,890,7.293,893,9.443]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.015,89,2.206,158,4.467,346,5.04]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[158,3.703,226,3.046,253,4.965,894,5.986,895,4.374,896,4.491]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.59,54,3.557,89,2.909,155,3.917,158,6.417,173,3.858,246,3.932,253,9.721,346,7.24,352,4.994,509,3.461,896,4.314,897,5.75]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.059,35,0.407,89,2.206,898,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[898,6.118,899,5.843,900,6.118,901,4.917]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.537,9,0.085,16,1.188,17,0.928,18,0.934,29,0.598,34,2.787,35,0.529,89,1.904,141,2.265,142,2.237,173,2.679,188,2.996,226,3.17,255,2.126,302,2.168,311,2.276,318,1.671,368,1.387,386,2.849,397,2.546,458,2.237,513,4.036,637,2.372,643,1.789,673,1.92,898,7.517,902,3.993,903,2.996,904,3.677,905,2.849,906,2.343,907,3.993,908,3.188,909,2.787,910,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.047,11,0.626,164,1.634,189,2.412,240,0.791,879,4.451,911,5.763]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.456,879,4.624,881,4.178,883,3.02,912,5.986,913,5.986]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.064,17,1.255,18,1.263,35,0.441,54,3.339,124,3.167,148,1.656,151,2.103,155,3.216,233,2.485,240,0.741,246,3.691,255,2.874,265,2.485,303,1.321,311,1.972,312,2.372,460,2.596,631,4.478,713,3.129,827,3.945,879,8.261,914,3.851,915,4.97,916,3.768,917,4.97]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.936,89,2.035,112,3.545,117,2.075,918,4.751]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[110,3.354,918,5.514,919,7.728]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.991,34,4.615,35,0.373,95,4.832,100,1.982,112,5.463,117,3.197,229,4.151,346,4.615,513,4.283,637,3.928,676,2.906,867,5.742,920,6.612,921,5.278,922,5.742,923,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.059,12,3.706,164,2.048,189,3.022]],["keywords//docs/development/java/install-java-on-centos/",[13,5.369,164,2.52,924,6.473,925,5.959]],["toc//docs/development/java/install-java-on-centos/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.059,12,3.706,61,1.299,263,3.844]],["keywords//docs/development/java/install-java-on-debian/",[13,5.843,61,1.267,262,5.843,925,6.486]],["toc//docs/development/java/install-java-on-debian/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.059,11,0.784,12,3.706,62,3.527]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.618,11,0.703,12,3.322,13,5.369,929,4.004]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.068,10,5.942,12,4.274,17,1.936,18,1.948,29,1.248,142,4.665,262,6.908,826,6.086,929,5.152]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.055,11,0.723,31,1.293,62,3.252,930,5.784]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.162,236,4.965,882,4.491,895,4.374,930,5.199,931,5.986]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.278,4,1.383,9,0.083,11,0.692,14,0.896,31,1.707,35,0.567,80,2.637,100,1.91,141,2.317,296,3.786,305,4.657,766,2.396,930,8.742,932,6.373,933,6.373]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.776,89,2.41,458,4.418]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.199,89,2.41,311,2.881]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[112,3.844,117,2.25,676,3.173,918,5.152]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[918,5.026,935,7.045,936,4.642,937,5.624]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[308,5.228,643,3.732,676,4.61,905,5.942,916,5.813,918,7.485,938,5.813,939,6.908]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.206,940,4.467,941,3.844,942,3.257]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.41,226,4.013,896,5.916]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.936,117,2.075,148,2.042,255,3.545,943,4.996]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[349,4.726,369,4.564,943,5.285,944,5.624]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,148,2.681,171,5.759,323,2.409,943,8.111,945,7.591,946,8.741]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.051,49,0.984,164,1.752,189,2.586,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[948,7.116,949,7.116,950,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.051,11,0.671,49,0.984,62,3.017,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[948,7.116,949,7.116,953,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.059,164,2.048,189,3.022,954,4.845]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.352,5,1.638,9,0.075,17,1.566,18,1.576,35,0.38,45,2.999,46,2.961,64,2.612,241,1.727,324,2.361,364,4.703,368,2.34,392,4.11,647,3.775,954,7.452]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[117,2.25,355,3.077,376,4.346,735,5.99]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[349,3.735,369,3.607,470,3.972,735,4.618,736,4.836,944,4.445,956,5.568]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.213,117,1.95,349,5.826,355,3.7,598,4.369,635,4.696,640,3.93,803,5.193,957,5.764,958,5.764,959,6.26,960,5.193,961,4.696,962,6.26,963,6.26,964,6.26,965,5.193,966,6.26,967,5.193,968,5.764,969,5.437,970,6.26]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,355,3.36,892,5.627]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[117,2.195,891,5.843,892,5.026,971,4.491]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,355,3.36,972,6.296]],["keywords//docs/quick-answers/linux/how-to-use-head/",[117,2.016,148,1.985,891,5.369,972,5.167,973,6.473]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,355,3.36,974,6.296]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[117,2.016,148,1.985,891,5.369,974,5.167,975,6.473]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.761,475,3.468,631,4.78,639,2.234,976,5.005,977,4.022]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.565,49,0.828,117,1.621,164,1.476,303,1.274,643,2.332,776,4.791,978,4.791]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.088,18,1.095,19,2.469,99,2.595,100,1.403,214,3.141,233,3.894,310,2.856,318,1.96,324,2.963,464,2.218,509,2.818,546,3.268,560,3.884,639,1.815,643,2.098,751,2.342,936,3.085,942,2.112,979,4.682,980,3.341,981,3.341,982,4.311,983,5.838,984,4.066,985,4.682,986,4.311,987,4.311,988,3.341,989,4.311,990,4.066,991,4.311,992,4.682,993,4.682,994,4.682]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,995,5.144,996,6.66]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.565,668,3.132,882,3.904,995,4.02,997,4.791,998,4.791,999,4.791,1000,5.204]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.573,5,1.142,9,0.074,17,0.654,18,0.659,30,2.026,35,0.478,39,1.12,42,1.555,45,1.253,46,1.237,49,0.962,60,2.715,100,1.408,118,1.672,120,1.824,141,1.023,142,3.385,144,3.628,148,1.441,151,1.097,281,2.69,309,2.259,311,1.028,323,1.294,324,2.472,392,2.865,423,2.445,433,2.948,616,3.523,628,1.965,676,2.064,718,2.335,995,8.008,1001,2.592,1002,2.592,1003,2.445,1004,2.592,1005,3.75,1006,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.531,181,1.389,189,2.26,1007,5.714,1008,4.971,1009,7.199]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.697,240,0.822,1007,4.374,1008,5.512,1010,5.986,1011,5.986]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.521,9,0.058,14,0.985,17,1.629,18,1.639,35,0.395,100,2.1,141,3.408,151,2.73,240,0.962,1007,6.851,1009,10.391,1012,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.658,101,2.558,102,4.05,164,1.531,906,3.167,1013,2.273,1014,4.971]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1015,6.17,1016,7.728,1017,7.728]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.08,35,0.547,74,4.776,906,5.692]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1018,3.828]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.059,89,2.206,99,4.002,101,3.421]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[899,5.843,900,6.118,901,4.917,1019,6.486]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.067,35,0.461,64,2.229,89,3.169,90,1.73,99,3.187,100,1.723,101,2.724,141,2.974,226,2.926,337,4.102,458,3.221,632,5.294,634,5.294,639,2.229,901,4.013,905,4.102,906,4.799,941,3.061,1020,5.75,1021,5.75,1022,3.932]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1023,3.822,1024,6.85,1025,5.763]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1024,6.118,1025,5.148,1026,5.843,1027,5.285]],["toc//docs/platform/upgrade-to-hourly-billing/",[530,8.664,1023,4.834,1028,3.77]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.654,896,6.517]],["keywords//docs/platform/disk-images/resizing-a-linode/",[896,6.42,1023,4.147]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.137,896,7.702]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,263,3.545,1029,5.784]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.839,1029,6.712,1030,7.728]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.061,17,1.732,18,1.743,35,0.42,185,3.582,320,3.929,323,2.053,324,2.61,480,6.179,639,2.887,780,3.638,1029,10.042]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.059,164,2.048,189,3.022,697,3.421]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.256,5,1.522,9,0.051,17,1.455,18,1.465,24,2.769,35,0.353,80,2.59,90,1.883,155,2.575,156,2.862,265,2.882,290,3.673,299,5.764,324,3.043,379,4.466,571,3.93,697,5.359,1033,4.998]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.156,11,0.626,49,0.917,62,2.814,1034,5.306,1035,5.306,1036,5.763]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.839,49,1.23,1037,7.728]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.192,9,0.049,17,1.382,18,1.391,29,0.89,35,0.335,41,4.241,49,1.833,57,3.577,131,2.563,136,2.974,323,1.638,509,3.577,651,5.473,802,4.343,1034,9.693,1038,5.845,1039,5.944]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.059,164,2.048,189,3.022,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[164,1.997,1040,4.726,1041,6.486,1042,7.045]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.915,4,0.99,5,1.109,9,0.076,17,1.06,18,1.067,21,2.644,29,1.034,35,0.562,45,2.03,46,2.004,49,0.726,64,1.768,111,3.523,141,1.658,167,2.145,189,1.909,240,0.626,241,1.169,255,2.428,303,1.116,318,1.909,324,2.418,392,4.21,532,2.428,564,3.005,618,2.71,675,1.707,884,2.908,1040,6.688,1043,4.199]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.765,1040,4.726,1041,6.486,1044,7.045]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.952,4,1.03,5,1.154,9,0.058,17,1.103,18,1.11,21,2.75,29,1.065,35,0.572,45,2.112,46,2.085,49,0.755,64,1.839,111,3.665,141,1.725,167,2.232,240,0.652,241,1.216,255,2.526,303,1.161,318,1.986,324,2.491,392,4.337,532,2.526,564,3.127,618,2.819,675,1.775,884,3.025,1040,6.804,1043,4.369]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.27,43,2.779,61,0.862,180,2.715,752,3.159,757,2.03,1045,1.803,1046,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.703,61,1.164,1045,2.434,1046,5.369,1047,4.73]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.333,9,0.045,17,1.274,18,1.283,35,0.309,49,0.873,60,1.656,148,1.681,155,2.255,180,3.105,303,1.935,311,2.002,639,2.125,751,2.743,756,1.956,780,2.677,942,4.182,1045,4.215,1046,4.547,1048,4.376,1049,5.048,1050,4.547,1051,5.482,1052,5.482]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.502,9,0.051,30,2.665,164,1.752,189,2.586,1053,3.354]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.038,881,4.917,1054,5.624,1055,4.297]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.343,5,2.33,9,0.055,17,0.757,18,0.762,22,1.986,30,3.325,35,0.184,100,0.976,131,1.404,155,2.179,164,0.923,173,4.49,185,1.566,197,1.734,209,3.431,265,2.438,303,1.887,320,1.717,324,1.141,369,2.11,377,1.96,422,3.081,509,4.028,544,2.998,639,2.989,649,2.998,702,1.603,1056,5.208,1057,5.296,1058,5.296,1059,2.443,1060,6.314,1061,2.227,1062,3.256]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.449,29,1.082,697,3.421,1063,7.222]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[312,3.096,697,3.337,883,3.554,1064,7.045]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.192,16,1.768,17,1.382,18,1.391,29,0.89,35,0.547,45,2.646,46,2.612,60,1.795,80,2.459,148,2.569,155,2.445,181,1.529,233,2.736,320,3.135,324,2.083,650,2.488,697,3.967,713,3.445,751,2.974,1065,4.691,1066,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.837,61,0.775,199,1.985,263,2.295,531,2.415,550,3.423,675,1.613,938,3.009,1067,3.33,1068,3.15]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.162,531,3.353,675,2.24,819,3.758,1067,4.624,1069,5.199]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.083,9,0.076,17,1.255,18,1.263,31,1.518,35,0.603,45,2.403,46,2.372,60,1.63,99,2.992,148,1.656,199,2.485,241,1.384,255,2.874,422,2.485,427,3.167,531,3.024,647,3.024,1067,7.783,1070,4.688,1071,4.05,1072,5.398,1073,5.398]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.654,1074,6.348]],["keywords//docs/platform/disk-images/clone-your-linode/",[934,5.647,1074,7.309]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.137,1074,7.502]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.059,164,2.048,189,3.022,240,0.992]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[164,2.191,240,1.061,881,5.394]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,143,1.496,155,2.155,181,1.347,192,2.428,240,1.05,303,1.872,307,3.514,366,1.438,510,4.876,532,2.789,546,3.656,673,2.519,675,2.862,1075,4.182,1076,7.042,1077,5.589,1078,4.182,1079,4.823]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,164,1.359,182,2.848,189,2.006,213,3.106,214,3.216,320,2.528,643,2.148,775,3.703,942,2.162]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[643,3.463,1080,7.116,1081,7.728]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,65,2.116,182,4.162,233,4.316,320,4.945,751,3.505,775,5.411,1082,7.006,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.468,14,0.606,61,0.775,62,2.105,182,2.561,213,2.793,214,2.892,263,2.295,320,2.274,643,1.932,775,3.33,942,1.945]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.703,61,1.164,643,2.9,1080,5.959,1085,6.473]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,182,4.162,233,4.316,320,5.573,751,3.505,752,4.616,775,5.411,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.348,49,0.984,307,4.145,639,2.395,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[447,3.648,650,2.949,721,3.554,1086,4.036]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.17,17,1.696,18,1.707,29,1.093,49,1.161,60,2.203,311,2.665,397,4.651,623,4.28,639,2.828,721,3.68,780,3.563,1086,4.179,1087,4.39,1088,5.473,1089,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,117,1.925,219,3.822,223,4.932,226,3.144,620,4.515]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,223,5.624,872,5.843,1090,7.045]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.278,9,0.072,14,0.896,17,1.482,18,1.491,35,0.359,61,1.581,89,1.947,141,2.317,219,6.227,223,5.088,226,4.474,263,3.393,303,1.56,323,1.756,400,5.286,906,3.739,1091,4.781]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.307,89,1.552,238,3.142,240,0.697,286,2.845,1092,5.079,1093,4.411,1094,4.411]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[579,6.486,1094,6.118,1095,4.24,1096,6.486]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.532,16,0.799,17,0.625,18,0.628,29,0.402,60,0.811,80,1.869,89,0.821,90,0.808,96,2.26,129,1.77,148,1.385,173,3.03,184,1.304,190,3.88,233,1.237,243,0.995,312,5.174,336,1.617,355,1.924,368,1.568,458,3.837,514,4.158,571,2.835,673,1.292,885,2.926,1091,3.388,1094,9.577,1096,8.846,1097,2.686,1098,2.228,1099,2.228,1100,2.686,1101,2.473,1102,4.517]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,531,4.045]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[533,6.118,534,6.118,536,6.118,1103,6.486]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.083,9,0.064,17,1.255,18,1.263,29,0.809,31,1.048,35,0.568,148,2.398,231,3.851,240,0.741,241,1.384,318,3.272,512,4.688,531,5.991,545,4.97,546,6.415,690,3.851,1103,8.463,1104,5.398]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.936,233,3.066,320,3.512,643,2.984,914,4.751]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[320,2.744,643,2.332,774,4.154,914,3.713,1105,5.204,1106,5.204,1107,4.791,1108,4.791]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.255,18,1.263,89,1.649,96,2.701,155,2.221,233,5.133,303,1.914,318,2.259,320,2.847,453,4.688,574,4.478,643,2.419,751,3.911,774,4.31,914,6.558,1022,3.691,1068,3.945,1084,3.497,1107,4.97,1109,5.398,1110,7.818,1111,4.688,1112,5.398]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.059,89,2.206,117,2.25,1113,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.318,899,4.965,1113,5.199,1114,5.986,1115,5.986,1116,5.986]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,49,0.834,64,2.03,65,1.582,74,2.578,89,1.6,95,3.828,117,2.383,141,1.904,226,2.665,229,3.288,303,1.282,323,1.443,458,2.934,513,3.393,633,3.514,637,3.112,909,3.656,1113,7.847,1117,3.828,1118,4.182,1119,5.238]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.065,164,2.236,1120,4.811]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1120,4.297,1121,7.045,1122,7.045,1123,7.045]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.058,14,1.318,35,0.528,42,2.32,74,3.448,89,2.14,90,2.108,478,3.736,696,2.81,785,4.273,1120,5.719,1124,6.45]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[185,4.178,639,3.367]],["keywords//docs/networking/remote-access/",[642,5.167,1125,6.473,1126,6.473,1127,6.473,1128,6.473]],["toc//docs/networking/remote-access/",[14,1.124,29,0.834,32,5.097,35,0.314,207,5.557,234,4.069,478,2.827,519,3.397,622,4.836,623,5.997,639,3.099,643,2.495,650,3.346,672,4.257,905,3.973,916,5.58,940,3.445,1084,3.607,1129,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.634,675,2.156,766,2.167,786,2.958,1130,4.022,1131,3.617,1132,1.869]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.697,1131,3.758,1132,1.941,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.586,61,0.971,550,2.796,675,2.02,766,2.03,786,2.771,1130,3.768,1131,3.389]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.65,61,1.076,1131,3.758,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.199,47,2.175,145,4.772,146,4.515,305,4.515,675,2.312]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.5,305,5.647,675,2.892]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.067,17,1.236,18,1.244,31,1.032,35,0.3,49,0.846,60,1.606,99,2.947,199,4.195,233,2.448,303,1.301,307,3.567,311,1.942,379,3.793,397,5.809,460,2.557,624,3.567,702,2.617,980,3.793,981,3.793,1139,4.107,1140,5.317,1141,5.317,1142,5.317,1143,5.317,1144,5.317,1145,5.317,1146,5.317,1147,5.317,1148,5.317]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.278,99,3.691,164,1.888,189,2.787,837,3.045]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[164,1.835,838,4.999,839,4.999,840,4.855,841,4.618]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[181,1.857,276,3.674,510,4.603,1077,5.277]],["keywords//docs/websites/host-a-website-with-high-availability/",[488,5.285,550,3.648,701,3.525,1129,5.624]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.062,17,0.908,18,0.914,35,0.555,49,0.622,60,2.281,90,1.175,155,3.107,190,2.212,240,0.841,303,0.956,307,2.62,309,3.632,310,4.607,312,1.716,318,1.634,337,2.786,477,2.382,478,1.381,519,2.382,531,2.187,546,2.725,623,2.291,633,2.62,1065,3.43,1076,7.873,1078,6.029,1079,5.637,1129,3.117,1149,3.905,1150,6.123,1151,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[124,4.627,510,5.028,1077,5.763]],["keywords//docs/websites/introduction-to-high-availability/",[181,1.812,276,3.585,488,5.285,1129,5.624]],["toc//docs/websites/introduction-to-high-availability/",[5,1.578,49,1.033,143,1.854,148,1.991,184,1.874,300,4.53,323,1.788,422,2.988,486,4.869,492,5.181,510,6.971,733,5.976,877,4.743,1077,7.991,1129,7.107]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,411,5.277]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.765,62,3.44,408,6.118,411,5.148]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.046,17,1.295,18,1.303,35,0.314,49,1.273,68,6.835,80,2.304,89,1.701,117,2.491,119,4.634,123,4.068,131,3.448,303,1.363,336,4.812,411,7.911,618,4.75,620,4.069,637,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.059,11,0.784,30,3.114,62,3.527]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.791,882,4.855,1054,5.167,1055,3.948,1152,4.342]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.876,5,1.944,9,0.066,11,0.605,17,1.295,18,1.303,30,4.86,35,0.314,62,2.719,185,2.678,197,2.965,209,3.607,303,1.957,324,1.951,391,3.808,639,3.099,1053,3.023,1056,3.19,1060,3.669,1153,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,697,3.155,1154,6.131]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.326,5,1.608,9,0.054,17,1.537,18,1.547,24,2.924,35,0.373,80,2.735,90,1.989,155,2.72,156,3.023,265,3.044,290,3.879,324,2.317,571,4.151,697,5.464,1033,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.586,14,0.759,49,0.859,62,2.637,143,1.542,1154,4.971,1155,3.293,1156,5.399]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.035,9,0.042,17,1.2,18,1.208,35,0.291,40,2.088,120,3.344,145,3.987,146,3.772,154,3.682,167,2.427,181,2.538,244,2.313,311,1.885,355,2.199,366,2.709,368,1.792,376,3.106,397,3.29,518,3.872,647,4.239,957,4.752,1155,4.616,1158,6.572,1159,4.483,1160,1.99,1161,5.162]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.671,61,1.111,100,1.852,263,3.289,303,1.512,667,3.769]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.669,240,0.765,241,1.427,667,3.396,668,3.351,1162,3.669,1163,5.126]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.434,2,3.805,17,1.662,18,1.672,64,2.77,77,5.929,100,2.142,148,2.192,156,3.268,229,4.487,303,1.749,323,1.97,532,5.059,572,6.208,635,5.362,1023,3.463]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,240,0.915,1164,3.73]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1165,7.045,1166,7.045,1167,7.045,1168,7.045]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.072,14,1.229,17,2.032,18,2.045,60,2.64,240,1.2,1164,6.057]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.102,9,0.042,11,0.552,31,0.986,62,2.48,117,1.582,241,1.302,258,2.909,1169,2.584]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1169,3.585]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.359,5,1.522,9,0.071,17,1.455,18,1.465,31,1.936,35,0.353,47,2.203,49,1.382,60,1.891,143,1.788,181,1.61,241,1.605,258,3.586,318,2.62,366,1.719,780,4.241,1160,2.414,1169,3.185]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,258,3.815,749,2.945]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[882,4.855,1170,6.473,1171,6.473,1172,6.473,1173,6.473]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.192,4,2.105,5,1.445,9,0.08,14,0.836,17,1.382,18,1.391,35,0.472,60,1.795,181,1.529,240,1.15,241,1.524,258,3.405,318,2.488,366,1.632,674,4.93,749,2.629,780,4.09,1174,5.944,1175,5.944]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.784,62,3.527,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.839,62,3.774,1023,3.745]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.052,11,1.093,15,3.835,16,1.896,42,2.11,62,3.112,74,3.137,89,1.947,100,1.91,141,2.317,510,4.063,571,4.001,764,3.532,967,5.286,1006,3.271,1023,4.877,1176,4.328,1177,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.051,11,0.671,49,0.984,61,1.111,140,3.258,263,3.289]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[140,3.157,875,3.816,1178,5.986,1179,5.986,1180,5.986,1181,5.512]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.08,11,0.545,16,1.492,17,1.166,18,1.173,29,0.751,35,0.548,38,1.773,61,0.902,89,2.691,100,1.503,101,2.376,140,5.131,141,1.823,157,3.102,182,2.979,191,2.779,303,1.227,318,2.099,319,3.102,323,1.382,400,4.16,404,3.197,886,2.942,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.055,35,0.375,140,3.512,164,1.888,189,2.787]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[140,3.715,164,1.997,881,4.917,1181,6.486]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.072,14,0.705,16,1.492,17,1.166,18,1.173,29,0.751,35,0.497,38,1.773,89,2.691,101,2.376,140,5.474,141,1.823,156,2.293,157,3.102,191,2.779,234,3.664,303,1.227,318,2.099,319,3.102,320,2.645,323,1.382,400,4.16,404,3.197,886,2.942,942,2.262,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.051,11,0.671,61,1.111,263,3.289,1183,3.67,1184,5.125]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.65,184,1.728,875,3.816,1183,3.556,1185,5.986,1186,5.986]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.173,9,0.068,17,1.359,18,1.368,35,0.329,41,4.17,45,2.602,46,2.569,141,2.125,143,2.364,150,3,240,0.803,302,4.493,324,2.048,330,2.569,331,4.666,427,3.429,639,2.266,1061,3.997,1183,6.552,1184,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.986,35,0.286,151,1.979,452,2.654,764,2.815,1187,4.676,1188,2.704]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.162,194,5.512,1189,3.603,1190,5.986,1191,5.986,1192,4.016]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.463,9,0.094,17,1.696,18,1.707,31,1.416,35,0.543,80,3.018,151,2.842,452,3.812,1187,8.868,1188,3.884]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.065,89,2.41,1193,6.85]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1193,7.433,1194,8.559]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.07,89,2.606,117,2.657,124,5.004,141,3.101,230,7.408,1193,10.084]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.047,11,0.626,14,0.81,470,4.111,531,3.228,764,3.194,1195,5.005]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.565,240,0.715,427,3.053,531,2.915,1196,5.204,1197,5.204,1198,5.204,1199,4.02]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.421,9,0.091,16,1.739,29,0.876,38,2.067,88,4.17,100,2.88,174,4.08,183,3.669,294,5.382,355,2.49,427,3.429,470,5.905,531,4.636,696,1.752,827,4.271,856,4.385,1195,7.188,1199,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.119,169,2.984,276,2.932,1068,4.211,1200,5.306,1201,5.306,1202,4.451]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[116,3.322,1202,4.999,1203,4.999,1204,6.473,1205,6.473]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.434,9,0.078,17,1.662,18,1.672,31,1.845,96,3.576,181,1.838,366,1.963,452,3.735,699,4.048,1200,6.581,1201,8.749,1202,7.339]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.055,11,0.723,61,1.197,1206,6.131,1207,6.131]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[799,4.517,802,4.73,1208,6.473,1209,5.959,1210,5.959]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.043,17,1.218,18,1.225,35,0.295,40,2.119,49,1.582,99,2.903,131,2.259,224,6.978,368,1.819,696,1.57,732,3.451,797,6.178,804,4.549,805,4.046,1206,9.147,1207,9.147,1209,4.823,1210,4.823,1211,4.823,1212,5.238,1213,5.238]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.239,9,0.051,219,3.822,675,2.312,766,2.323,1214,6.179]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[766,2.906,1215,7.728,1216,7.728]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.1,9,0.045,17,1.274,18,1.283,64,2.125,77,4.547,100,2.37,167,2.578,183,3.441,219,6.279,296,4.697,318,3.309,430,4.234,675,3.469,766,3.816,1217,10.15,1218,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.808,283,3.81,396,3.81,764,2.815,1219,4.676,1220,4.676,1221,4.676,1222,4.676]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1038,3.037,1192,2.919,1222,4.006,1223,4.351,1224,4.351,1225,4.351,1226,4.351,1227,4.351,1228,4.006,1229,3.361]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.048,17,1.359,18,1.368,29,0.876,35,0.329,49,1.53,80,2.418,229,3.669,283,6.209,661,4.849,696,1.752,936,3.852,1038,7.293,1139,4.515,1219,7.62,1220,7.62,1221,7.62,1230,4.515,1231,5.382]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.047,49,0.917,304,2.932,1184,4.78,1232,5.306,1233,5.306,1234,5.005]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[799,4.917,1229,5.441,1235,7.045,1236,7.045]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.056,14,0.966,17,1.597,18,1.607,35,0.387,49,1.473,89,2.099,141,2.497,304,4.708,799,4.794,965,5.698,1184,7.675,1232,8.52,1233,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.047,61,1.036,240,0.791,241,1.477,263,3.068,1237,4.78,1238,4.211]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[240,0.671,241,1.252,875,3.114,1069,4.243,1160,1.884,1239,4.885,1240,2.707,1241,4.498,1242,4.498]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.061,17,1.732,18,1.743,35,0.55,240,1.023,241,2.793,406,6.179,496,5.754,938,5.199,1237,8.1,1241,6.859]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.671,47,2.175,764,3.424,1243,5.689,1244,5.366,1245,4.772]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1243,4.791,1244,4.52,1245,4.02,1246,5.204,1247,4.791,1248,5.204,1249,4.52,1250,5.204]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.278,9,0.083,10,4.547,17,1.482,18,1.491,31,1.237,33,2.667,47,2.243,49,1.015,151,3.922,195,5.696,263,3.393,929,3.943,1244,5.535,1245,6.791,1247,5.868,1249,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.055,49,1.06,799,4.648,802,4.866,1038,4.648]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[799,3.886,802,4.069,1038,3.886,1228,5.126,1229,4.3,1251,5.126,1252,5.568]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.077,17,1.629,45,3.118,46,3.079,49,1.115,65,2.116,155,2.882,265,3.225,287,5.411,303,1.715,364,4.889,368,2.433,424,4.334,799,6.544,961,5.255,1038,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.348,61,1.111,263,3.289,1045,2.323,1253,4.772,1254,4.932]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[478,1.84,756,1.857,875,3.317,1045,1.957,1253,4.02,1254,4.154,1255,4.52,1256,4.791]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.034,16,2.837,29,1.429,35,0.361,60,1.248,146,3.021,155,2.633,188,3.101,233,1.903,297,3.193,318,2.679,320,2.18,378,3.032,477,2.522,478,2.263,786,2.122,805,3.193,886,2.425,1045,2.945,1091,3.101,1253,6.811,1254,5.11,1255,5.559,1256,3.806,1257,4.134,1258,4.134,1259,4.134,1260,4.134,1261,3.59,1262,4.134,1263,2.368,1264,3.021,1265,4.134]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.059,11,0.784,62,3.527,1266,6.272]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.765,756,2.514,1266,6.118,1267,6.486]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.384,4,1.498,5,1.109,9,0.076,17,1.06,18,1.067,35,0.257,64,1.768,65,1.378,100,1.367,117,1.421,141,1.658,167,2.145,181,1.775,183,2.863,240,1.143,241,1.169,258,3.953,311,1.666,324,1.598,366,1.895,377,2.745,380,3.183,518,3.422,675,1.707,749,3.052,886,2.676,1266,9.109,1268,4.561]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.065,89,2.41,918,5.627]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.587,901,4.517,905,4.618,918,4.618,1269,5.959]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.076,17,1.597,18,1.607,35,0.387,89,2.827,141,2.497,148,2.838,226,3.495,238,4.25,569,5.698,637,4.081,676,3.019,918,7.465,1033,5.484]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[829,0.474]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.044,49,0.859,143,1.542,171,3.557,396,4.05,550,2.796,1095,3.249,1270,4.971]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[143,2.207,171,5.092,1271,7.728]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.808,9,0.068,14,1.171,16,2.477,17,1.936,18,1.948,29,1.248,35,0.469,1270,9.659]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.15,117,2.25,647,4.045,1272,6.272]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[802,5.148,1038,4.917,1272,6.118,1273,4.185]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.083,9,0.044,17,1.255,18,1.263,35,0.441,38,1.909,40,2.184,41,3.851,42,1.788,49,1.463,80,2.233,85,3.851,90,1.624,309,2.596,311,1.972,351,4.478,368,1.875,571,3.389,611,3.557,616,4.05,713,3.129,732,3.557,916,3.768,1075,4.31,1272,9.684]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.04,35,0.407,136,3.613,721,3.643]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[119,3.016,123,2.648,447,2.695,721,2.625,1274,4.52,1275,4.154,1276,4.791,1277,4.791]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.566,18,1.576,35,0.38,60,2.035,117,2.099,123,3.428,131,2.906,136,5.184,336,4.055,447,3.489,618,4.003,766,2.534,988,4.807,1022,4.608,1275,5.379,1277,6.204,1278,4.807,1279,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.714,29,0.863,49,0.917,61,1.036,63,3.94,721,2.907,977,4.022]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.039,17,1.103,18,1.663,35,0.6,45,2.112,46,2.085,49,1.132,90,1.428,101,2.248,136,3.557,142,2.658,148,2.615,184,1.37,309,2.282,310,2.894,397,3.025,415,2.856,447,2.457,650,1.986,676,2.085,721,4.301,766,1.784,1071,3.56,1088,3.56,1261,4.121,1278,6.083,1281,4.369,1282,4.745]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.984,307,4.145,308,3.879,638,5.125,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.983,18,1.996,35,0.481,45,3.797,46,3.748,310,5.203,650,3.57,721,4.303,1283,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.445,5,1.619,9,0.055,713,3.86,831,5.316]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.529,831,5.624,832,6.486,1284,7.045]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.992,4,2.097,5,1.783,9,0.041,17,1.149,18,1.157,24,3.864,29,0.741,35,0.279,49,0.787,131,2.132,155,4.245,324,1.732,368,1.717,422,2.276,453,6.367,550,2.56,603,4.831,831,5.852,1056,4.2,1059,3.709,1285,4.945,1286,4.945,1287,4.945,1288,4.552]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.723,47,2.344,764,3.691,1289,5.784,1290,5.784]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[184,2.43,1095,3.603,1289,5.199,1290,5.199,1291,5.986]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.051,9,0.074,11,0.569,16,1.558,17,1.218,18,1.225,24,3.383,29,0.785,30,2.259,35,0.596,39,2.085,155,2.155,184,1.512,195,3.393,240,1.05,330,2.302,779,1.512,909,3.656,1289,9.177,1290,7.847,1292,5.238]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[164,2.236,189,3.301,749,3.488]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,881,3.886,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.326,3,3.745,4,1.435,5,1.608,9,0.084,17,1.537,18,1.547,35,0.621,181,1.701,192,3.065,240,0.908,241,1.695,366,1.815,550,3.424,673,3.179,1294,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.586,14,0.759,31,1.048,47,1.9,151,2.104,764,2.992,1295,2.486,1296,2.796]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.368,39,2.804,1295,3.243,1296,3.648]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.06,16,2.17,17,1.696,18,1.707,29,1.093,31,1.87,35,0.543,39,2.903,151,2.842,195,4.726,909,5.092,1295,3.359,1296,4.988]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.059,35,0.407,263,3.844,667,4.405]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[240,0.822,241,1.535,667,3.652,668,3.603,1162,3.944,1163,5.512]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.769,18,1.78,35,0.429,54,4.708,64,2.95,80,3.148,141,2.766,240,1.045,246,5.204,263,4.051,667,6.04,789,5.429,1297,7.007]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,764,3.424,1298,5.689,1299,5.366]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.445,309,3.793,616,5.916]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.406,61,0.672,309,1.798,611,2.463,616,2.805,650,1.565,971,2.383,1302,3.739,1303,3.739,1304,3.739,1305,3.739,1306,3.739,1307,3.739,1308,1.954]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.044,11,0.586,14,0.759,17,1.255,18,1.263,29,0.809,35,0.304,61,0.971,85,3.851,90,1.624,117,1.682,148,1.656,155,2.221,255,2.874,309,3.76,310,6.524,311,1.972,377,3.249,456,3.557,475,3.249,550,2.795,616,7.559,676,2.372,1308,2.821,1309,5.398]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.239,14,0.869,244,2.768,258,3.539,737,4.635,749,2.733]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.266,244,2.495,737,4.177,741,4.3,1310,5.568,1311,5.568,1312,5.126]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.212,4,1.269,5,1.421,14,1.163,35,0.329,60,1.765,90,1.759,148,2.538,181,1.503,240,1.137,241,1.498,244,4.682,366,1.605,368,2.03,415,3.518,738,4.849,1313,5.382,1314,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.059,35,0.407,61,1.299,1315,6.272]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1038,4.178,1315,5.199,1316,5.986,1317,4.779,1318,5.986]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.078,17,1.662,18,1.672,29,1.071,35,0.403,49,1.513,131,4.098,136,3.576,324,2.504,915,6.581,1315,9.271,1319,7.148]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.206,465,4.09,639,2.799,1320,6.649]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[148,1.498,238,3.022,758,3.9,1320,4.498,1321,4.243,1322,4.885,1323,4.498,1324,4.885,1325,4.885]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.17,17,1.696,18,1.707,29,1.093,35,0.411,324,2.556,392,4.45,633,6.462,758,5.824,1118,5.824,1323,6.717,1326,7.296,1327,6.717,1328,7.296,1329,7.296]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.051,11,0.671,31,1.199,62,3.017,244,2.768,1330,5.125]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.839,31,1.5,1331,6.41]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.081,17,1.769,18,1.78,31,2.137,35,0.429,64,2.95,80,3.148,150,3.906,1006,3.906,1330,8.214]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.051,11,0.671,63,4.225,764,3.424,995,4.772,1332,6.179]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.65,668,3.603,995,4.624,997,5.512,998,5.512,999,5.512]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.197,5,0.919,9,0.075,17,0.879,18,0.884,30,1.63,35,0.213,39,1.504,40,2.414,49,1.455,60,1.802,100,1.133,118,2.245,120,2.448,148,1.83,151,1.473,167,1.777,171,2.49,281,3.291,309,1.817,324,2.091,330,1.661,335,2.191,368,1.312,392,2.305,423,3.282,637,3.545,676,1.661,718,3.135,745,2.49,995,7.859,1001,3.48,1002,3.48,1004,3.48,1005,3.017,1071,2.835,1333,3.78,1334,3.48,1335,3.78]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.671,16,1.838,29,0.926,31,1.199,764,3.424,1331,5.125]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.605,31,1.081,550,2.883,1192,3.735,1330,4.618,1331,6.631]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.053,29,0.972,31,1.973,35,0.366,64,3.451,65,1.96,80,2.685,150,3.331,243,2.405,244,3.989,323,1.788,399,1.594,422,2.988,647,3.636,1006,3.331,1330,7.385,1331,5.384]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.047,31,1.119,61,1.036,263,3.068,766,2.167,1238,4.211,1336,4.451]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.256,875,4.126,1133,4.855,1336,4.999,1337,6.473]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.073,16,1.513,17,1.183,18,1.19,31,1.453,35,0.287,60,1.536,148,1.56,156,2.326,202,3.986,233,2.342,243,1.885,330,2.235,378,2.41,519,3.103,549,4.22,613,4.22,673,2.446,751,2.545,766,3.684,786,4.559,837,2.326,886,2.984,1135,3.929,1336,7.567]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.059,49,1.15,184,2.085,1338,6.649]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1339,9.589]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.046,11,0.614,35,0.456,42,1.874,61,1.017,143,1.616,164,1.604,181,1.455,185,2.721,286,3.169,323,1.559,337,4.037,386,4.037,516,5.209,525,3.665,550,2.93,822,4.914,1006,2.904,1132,1.835,1308,2.956,1338,9.481,1340,4.517,1341,5.658,1342,3.949,1343,5.658,1344,0.838]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.015,49,1.15,303,1.767,1345,4.758]],["keywords//docs/security/using-fail2ban-for-security/",[1345,5.092,1346,7.728,1347,7.116]],["toc//docs/security/using-fail2ban-for-security/",[9,0.044,11,0.577,14,0.747,29,0.797,35,0.564,61,0.956,136,2.66,164,1.508,189,2.225,214,3.567,291,3.503,623,3.119,756,1.897,1098,4.41,1132,1.724,1342,3.711,1345,7.005,1347,4.895,1348,5.317,1349,5.317,1350,5.317,1351,5.317,1352,4.895,1353,7.733,1354,4.895,1355,4.618]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.626,47,2.028,49,0.917,304,2.932,764,3.194,1234,5.005,1356,5.306]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.605,799,3.886,802,4.069,1192,3.735,1229,4.3,1357,5.568,1358,5.568]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.058,17,1.629,18,1.639,35,0.395,49,1.493,80,2.898,304,5.377,696,2.1,965,5.811,1234,6.084,1356,9.73,1359,7.006,1360,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.051,30,2.665,31,1.199,61,1.111,63,4.225,1361,5.366]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.791,31,1.256,56,5.369,116,3.322,1361,5.621]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.097,14,0.896,17,1.482,30,2.749,31,1.237,35,0.359,41,4.547,54,3.943,143,1.82,199,2.934,296,3.786,397,4.063,639,2.47,1071,4.781,1361,9.424]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.047,11,0.626,171,3.797,255,3.068,330,2.532,764,3.194,1362,3.797]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1045,1.343,1192,2.396,1255,3.101,1362,2.353,1363,3.571,1364,2.242,1365,3.571,1366,3.571,1367,3.571,1368,3.571,1369,3.571,1370,3.571,1371,3.101,1372,3.571]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.604,9,0.077,16,1.656,29,1.198,35,0.314,42,1.844,49,0.886,64,2.158,89,1.701,90,1.675,202,2.965,283,4.177,324,1.951,465,5.298,675,2.084,766,3.517,786,2.858,1135,4.301,1313,5.127,1362,6.736]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.059,164,2.048,189,3.022,1373,5.277]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[164,1.17,881,2.88,1374,4.126,1375,4.126,1376,4.126,1377,3.583,1378,4.126,1379,4.126,1380,4.126,1381,4.126,1382,4.126,1383,4.126]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.09,17,1.2,18,1.208,35,0.427,45,2.298,46,2.268,74,2.541,80,2.135,150,3.884,164,1.463,281,2.298,309,2.482,311,1.885,318,2.16,330,2.268,460,2.482,611,3.401,637,3.066,1373,7.209,1384,5.162,1385,6.967,1386,4.281,1387,5.162,1388,5.162,1389,4.483]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.671,89,1.888,639,2.395,752,4.071,764,3.424,1118,4.932]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.65,680,4.624,752,3.944,916,4.178,1118,4.779,1390,5.986]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.063,129,5.014,205,5.105,633,5.105,639,3.838,752,6.525,779,2.197,780,3.716,1118,7.905,1261,6.609,1391,7.61]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[124,4.627,164,2.236,1075,6.296]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.198,117,1.222,164,1.112,238,2.427,303,0.96,309,1.886,611,2.585,1075,3.132,1132,1.272,1392,3.923,1393,3.923,1394,3.923,1395,3.923]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.049,29,0.89,35,0.547,42,1.968,90,1.788,302,3.227,309,2.858,310,3.626,335,3.445,422,2.736,475,3.577,546,4.148,611,3.916,984,5.162,1075,7.741,1087,3.577,1396,3.916,1397,5.944,1398,5.944,1399,5.944,1400,5.473,1401,5.944,1402,4.591]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.051,35,0.348,49,0.984,191,3.424,504,4.071,845,4.772]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1403,7.728,1404,7.728,1405,7.728]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.073,17,1.509,18,1.518,35,0.573,47,2.284,65,1.96,155,2.67,191,3.597,265,2.988,504,7.799,789,4.631,845,5.013,1406,5.976,1407,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.418,164,1.888,189,2.787,247,3.907,1245,5.144]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.154,4,1.208,12,2.858,240,0.765,1245,4.3,1249,4.836,1408,5.568]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.209,9,0.077,12,2.858,14,0.783,17,1.295,18,1.303,32,3.55,33,2.331,35,0.451,49,0.886,155,2.291,199,3.681,240,1.098,263,2.965,547,5.127,591,4.446,929,3.445,1245,7.225,1264,4.069,1409,5.569,1410,5.569,1411,5.569,1412,5.569,1413,5.569]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.065,35,0.445,737,5.916]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[739,7.116,740,6.712,741,5.969]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.06,17,1.149,18,1.157,29,0.741,35,0.545,155,3.975,188,7.741,190,4.152,191,4.842,244,3.285,255,2.632,324,1.732,379,3.528,611,3.258,643,2.215,737,8.109,751,2.474,766,1.859,786,2.538]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.402,35,0.407,334,4.938,515,5.152]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.256,319,4.004,334,4.426,515,4.618,701,3.238]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.961,19,2.18,88,2.949,123,2.103,131,3.378,136,2.068,148,1.963,184,1.194,199,1.903,208,3.806,286,2.316,287,3.193,334,4.377,335,2.396,337,2.949,381,3.806,385,6.252,512,3.59,518,3.101,676,3.442,702,2.035,827,3.021,990,3.59,1068,3.021,1414,3.59,1415,4.018,1416,4.134,1417,2.456,1418,4.134,1419,3.59,1420,4.134,1421,4.134,1422,4.134,1423,3.806,1424,3.806,1425,4.134,1426,3.429,1427,3.806,1428,4.134,1429,3.806,1430,3.806,1431,4.134,1432,4.134,1433,3.806]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.838,29,0.926,49,0.984,671,4.515,1434,5.366,1435,4.932]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[671,3.57,1273,2.902,1434,4.243,1435,3.9,1436,4.885,1437,4.885,1438,4.885,1439,4.885,1440,4.885]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.06,16,2.158,29,1.087,35,0.488,49,1.379,89,2.217,100,1.462,131,2.103,190,2.762,232,3.766,309,3.489,368,1.693,696,1.462,708,3.893,779,1.408,780,2.381,1006,2.503,1273,2.897,1434,8.91,1435,5.792,1441,4.876,1442,4.876,1443,6.018,1444,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.055,368,2.313,576,5.316,725,5.524,1445,6.131]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[725,4.317,1446,7.613,1447,5.204,1448,5.204,1449,5.204,1450,5.204,1451,5.204]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.965,9,0.059,11,0.522,14,0.676,35,0.484,38,1.701,46,2.114,49,0.766,120,4.653,143,1.374,148,1.475,165,4.177,192,2.23,218,3.432,258,2.755,273,3.84,323,1.979,324,1.685,368,2.494,647,2.694,696,1.442,725,8.461,789,3.432,1230,3.715,1445,7.913,1452,4.81,1453,4.81,1454,4.81,1455,4.177]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.445,675,2.951,1151,5.291]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.043,35,0.293,89,1.59,487,4.154,624,3.491,675,1.947,766,1.957,1151,3.491]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.058,17,1.629,18,1.639,31,1.36,35,0.528,49,1.493,143,2.678,233,3.225,240,0.962,519,4.273,675,2.621,735,5.811,766,2.634,780,3.421,1151,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.936,89,2.035,369,4.314,939,5.524,1456,5.316]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[369,4.564,916,4.917,939,5.843,1456,5.624]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.738,102,6.724,311,3.274,458,5.021,639,3.474,939,9.108]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.567,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.09,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1458,3.474,1461,3.105,1462,4.351,1463,4.351,1464,4.351]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.7,3,6.557,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[184,2.085,323,1.99,676,3.173,1465,4.137]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[303,1.584,676,3.905,1465,3.708,1466,4.618]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.044,11,0.577,21,3.082,35,0.3,61,0.956,117,1.656,148,1.631,164,1.508,167,2.5,189,2.225,308,3.338,368,3.164,424,3.289,676,2.336,756,1.897,916,3.711,1132,1.724,1308,2.778,1465,6.719,1467,5.317,1468,4.618,1469,9.113,1470,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.671,49,0.984,143,1.765,240,0.849,764,3.424,1176,3.041]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.65,199,2.756,240,0.822,701,2.995,1192,4.016,1471,5.986]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.081,17,1.43,18,1.439,35,0.484,40,3.47,132,4.614,181,1.582,240,1.357,244,4.789,286,3.446,318,2.574,366,1.689,460,2.958,1472,4.293,1473,5.342,1474,4.751]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.626,49,0.917,90,1.734,447,2.984,734,3.565,764,3.194,1475,5.005]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.703,447,3.352,1192,4.342,1475,5.621,1476,6.473]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.072,17,2.032,18,2.045,35,0.493,49,1.391,131,3.77,1475,9.39]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.059,49,1.15,89,2.206,1477,6.272]],["keywords//docs/game-servers/install-teamspeak/",[1229,5.441,1477,6.118,1478,7.045,1479,5.441]],["toc//docs/game-servers/install-teamspeak/",[9,0.058,17,1.629,18,1.639,35,0.395,64,2.715,80,2.898,296,4.162,309,3.369,357,5.593,368,2.433,469,4.616,608,4.998,1477,10.217,1480,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.245,35,0.375,89,2.035,478,2.355,1481,6.131]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[642,5.167,1482,6.473,1483,5.959,1484,5.621,1485,6.473]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.495,32,6.36,478,3.527]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.051,31,1.199,49,0.984,61,1.111,143,1.765,263,3.289]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.162,61,1.076,199,2.756,701,2.995,875,3.816,876,5.199]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.068,17,1.936,18,1.948,31,2.036,61,1.498,65,2.515,265,4.83,330,3.66]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.325,258,3.301,504,3.797,749,2.549,845,4.451,1486,4.6]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.208,117,1.735,240,0.765,241,1.427,504,3.669,875,3.549,1487,5.126]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.169,35,0.493,148,2.681,181,2.248,366,2.4,749,3.866,1486,6.978]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.019,14,0.714,258,2.909,504,4.927,749,2.246,845,3.923,1345,3.346,1486,4.054]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.06,240,0.671,241,1.252,504,3.219,875,3.114,1345,3.219,1487,4.498,1488,3.9,1489,4.885]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.044,35,0.448,148,2.439,156,3.636,191,4.408,504,6.713,538,6.349,845,6.143,1486,6.349,1490,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.984,61,1.111,143,1.765,240,0.849,263,3.289,1238,4.515]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,240,0.715,677,4.791,678,4.154,701,2.604,1491,5.204,1492,4.154,1493,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.08,17,1.405,18,1.414,35,0.478,40,3.428,132,4.535,181,1.555,240,1.457,244,4.753,286,3.387,318,2.53,366,1.66,460,2.907,1472,4.219,1473,5.251,1474,4.67]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.299,263,3.844,749,3.194,1238,5.277]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.896,61,0.742,240,0.567,241,1.058,276,2.099,749,1.825,875,2.63,1494,4.126,1495,4.126,1496,3.422,1497,3.799,1498,4.126]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.271,5,1.67,9,0.076,16,2.043,17,1.597,18,1.607,29,1.029,35,0.522,181,1.767,192,3.185,240,1.271,241,1.761,366,1.886,673,3.303]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.555,101,3.421,102,5.417,368,2.508]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.947,841,4.271,901,4.178,906,3.512,1499,5.512,1500,5.512]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.07,35,0.481,74,4.199,101,5.045,364,5.953,906,5.004,1501,6.809,1502,7.853]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.041,89,1.888,101,2.927,102,4.635,368,2.146,901,4.312]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.741,841,3.972,872,4.618,901,3.886,906,3.266,1499,5.126,1500,5.126]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.051,11,0.932,35,0.347,61,1.543,74,3.028,101,4.679,117,1.916,164,2.432,189,2.574,364,4.293,473,3.861,906,3.609,1132,2.782,1308,4.482,1501,4.91,1502,5.663,1503,5.307]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.293,61,1.197,63,4.554,452,3.48,1188,3.545]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.081,61,1.001,452,2.909,1189,3.351,1504,3.886,1505,3.444,1506,5.126]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.359,9,0.088,17,1.455,18,1.465,31,1.686,45,2.787,46,2.751,47,2.203,80,2.59,180,3.546,281,2.787,311,2.287,318,2.62,452,3.271,460,4.176,699,4.918,1188,4.623]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.936,89,2.035,90,2.004,142,3.73,1507,5.784]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.7,89,1.406,90,1.385,129,3.033,240,0.632,247,2.7,452,2.405,665,3.997,1507,3.997,1508,4.238]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.076,16,2.043,29,1.029,35,0.522,49,1.094,89,2.099,148,2.107,240,0.943,427,4.03,508,3.848,637,4.081,696,2.059,758,5.484,1507,8.036,1508,6.325,1509,5.966]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[901,6.063,1510,7.206]],["keywords//docs/platform/kvm-reference/",[901,4.517,1511,6.473,1512,6.473,1513,6.473,1514,5.621]],["toc//docs/platform/kvm-reference/",[34,4.369,35,0.353,74,3.081,99,3.469,117,1.95,164,1.775,226,3.185,229,3.93,311,2.287,346,4.369,366,1.719,433,3.93,575,3.93,637,3.719,780,3.057,867,5.437,901,4.369,916,4.369,1013,2.635,1308,3.271,1402,4.835,1514,5.437,1515,6.26,1516,4.696]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.567,9,0.059,61,1.299,263,3.844]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.337,4,0.896,5,1.003,61,0.742,117,1.285,238,2.552,875,2.63,1457,2.719,1458,3.294,1459,3.294,1460,3.422,1461,2.944]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.047,11,0.626,31,1.119,35,0.325,62,2.814,241,1.477,1160,2.222]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1160,2.717]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.055,17,1.566,18,1.576,31,1.773,35,0.38,60,2.035,65,2.035,181,1.733,241,2.656,243,2.497,286,3.775,303,1.649,342,6.204,366,1.85,603,4.44,1160,2.598,1517,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.723,31,1.293,241,1.707,764,3.691,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.605,31,1.081,241,1.427,1160,2.147,1518,5.568,1519,3.266,1520,3.735]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.547,42,1.968,60,1.795,65,1.795,80,2.459,126,5.518,167,2.795,181,1.529,241,1.524,243,2.202,303,1.455,311,2.171,366,1.632,399,1.459,603,3.916,1160,2.292,1415,3.731,1517,3.731,1521,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1153,5.916,1522,7.262,1523,5.627]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.866,741,3.773,1312,4.498,1523,3.485,1524,4.885,1525,4.498,1526,4.885,1527,3.773,1528,4.498]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.033,135,5.976,136,3.247,142,3.636,148,1.991,190,3.676,368,2.254,473,4.074,509,3.906,629,5.637,743,4.631,1099,5.384,1523,7.25,1527,5.013,1529,6.491,1530,5.637,1531,6.491,1532,6.491,1533,6.491,1534,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.449,789,5.152,1523,5.152,1527,5.578]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.053,741,4.02,749,2.302,1488,4.154,1523,3.713,1527,4.02,1528,4.791,1535,5.204]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.764,4,2.355,9,0.052,16,1.896,29,0.955,35,0.496,64,2.47,181,1.639,219,3.943,240,1.208,241,1.634,311,2.328,366,1.75,942,2.875,1527,4.922,1534,5.868,1536,6.373]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.051,11,0.671,49,0.984,764,3.424,1099,5.125,1523,4.408]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[740,4.243,741,3.773,1203,3.773,1523,3.485,1525,4.498,1537,4.885,1538,4.885,1539,4.885,1540,4.498]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.192,9,0.049,16,1.768,29,0.89,49,1.333,64,2.304,118,3.531,155,3.445,190,3.366,233,2.736,318,2.488,324,2.083,464,2.816,507,5.162,519,3.626,696,1.781,751,2.974,951,4.745,1099,6.947,1523,5.975,1527,4.591,1540,5.473,1541,5.944]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.047,49,0.917,117,1.795,303,1.41,639,2.234,721,2.907,884,3.673]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.605,61,1.001,164,1.579,447,2.883,650,2.33,721,2.809,1132,1.806]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.072,29,0.955,35,0.359,49,1.015,90,1.917,117,1.985,119,3.694,123,3.243,136,4.399,324,2.233,336,3.835,513,4.129,639,2.47,721,5.744,779,1.84,1542,6.373,1543,6.373]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.206,1415,4.533,1544,5.152,1545,5.277]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[303,1.584,309,3.112,1546,6.473,1547,6.473,1548,5.621]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.267,19,3.487,255,3.52,422,3.044,546,4.615,676,2.906,958,6.088,984,5.742,1415,6.441,1545,7.498,1549,6.088,1550,6.612,1551,6.612,1552,6.088,1553,6.612,1554,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.299,263,3.844,1023,3.499,1238,5.277]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1023,3.414,1238,5.148,1555,4.24]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,263,3.587,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.626,49,0.917,368,2.001,764,3.194,1273,3.423,1435,4.6,1557,5.763]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1273,5.084,1435,6.832]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.526,9,0.063,35,0.429,49,1.211,80,3.148,99,4.217,141,2.766,324,2.666,427,4.464,566,7.007,637,4.521,1273,4.521,1558,9.903]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.044,11,0.586,49,0.859,764,2.992,1038,3.768,1070,4.689,1559,5.399,1560,4.971]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,799,3.409,1038,3.409,1139,3.773,1192,3.277,1229,3.773,1251,4.498,1561,4.885,1562,4.885]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.055,17,1.566,18,1.576,35,0.38,49,1.454,80,2.788,320,3.554,696,2.02,965,5.589,1070,8.999,1139,5.204,1560,9.54,1563,6.738,1564,9.134]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.586,61,0.971,74,2.658,99,2.992,550,2.796,837,2.468,906,3.167,1565,3.852]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.565,61,0.936,838,4.02,839,4.02,840,3.904,841,3.713,1566,4.154,1567,4.154]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[829,0.474]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.936,531,3.73,682,4.751,709,5.144,1568,6.66]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.703,61,1.164,531,3.626,682,4.618,709,4.999]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.801,8,2.787,9,0.085,12,2.05,15,2.403,16,1.188,24,2.756,35,0.529,42,1.322,44,5.737,60,1.882,64,1.548,96,1.998,148,1.225,207,2.372,318,1.671,324,2.183,335,2.315,427,3.655,433,2.507,465,2.262,511,3.084,623,2.343,682,5.466,696,1.197,709,7.682,770,3.677,1061,2.731,1071,2.996,1569,3.993,1570,8.656]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.15,61,1.299,189,3.022,1571,6.272]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1273,4.591,1571,6.712]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.087,49,1.695,131,3.679,368,2.962,427,5.004,696,2.557,1571,7.408]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,2.681,355,2.632,674,5.125,1510,5.125,1572,6.179,1573,6.179]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.057,355,3.001,1574,7.045,1575,7.045]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.614,112,5.585,372,1.198,422,3.834,458,6.434,664,7.668,755,7.668]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.499,164,1.752,189,2.586,756,2.205,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[756,2.309,881,4.517,1577,6.473,1578,6.473,1579,4.618]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.633,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.341,164,1.752,756,2.205,1013,2.601,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[756,2.309,1015,5.167,1579,4.618,1582,6.473,1583,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.175,49,0.984,110,2.681,143,1.765,177,4.312,803,5.125]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.565,61,0.936,110,2.258,112,2.771,177,3.632,190,2.948,701,2.604,1584,4.791]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.064,49,1.599,64,3.015,110,4.827,112,4.141,143,2.221,177,7.009,368,2.701,458,4.357]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.723,61,1.197,304,3.388,1585,5.144,1586,6.131]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.703,61,1.164,802,4.73,1587,6.473,1588,6.473]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.051,14,0.865,17,1.43,18,1.439,35,0.347,40,2.488,49,0.979,224,4.751,304,5.026,355,2.621,696,1.844,1071,4.614,1211,5.663,1231,7.898,1263,3.524,1585,7.629,1586,9.095,1589,5.663]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.445,14,0.936,334,4.554,515,4.751,1461,4.751]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.529,1461,5.026,1590,7.045,1591,6.486]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.18,319,4.811,334,5.318,909,5.428,945,6.755,1461,5.549,1592,7.778,1593,7.778,1594,7.778,1595,7.778,1596,7.778,1597,7.778]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.763,1035,7.262,1153,5.916]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.148,1598,7.045,1599,7.045,1600,7.045]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.421,11,0.635,15,4.981,16,2.462,42,1.936,60,1.765,61,1.051,95,6.048,148,1.793,164,2.347,175,4.17,189,2.446,300,4.08,309,2.811,310,3.566,486,4.385,603,3.852,675,2.187,804,5.077,1013,2.461,1601,5.845,1602,5.845,1603,5.845]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.255,240,1.083,319,4.879]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.397,240,0.968,701,3.525,1591,6.486]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[132,5.153,240,0.943,244,4.146,286,3.848,385,5.484,822,5.966,909,4.794,1472,4.794,1473,5.966,1604,6.325,1605,6.87,1606,6.87,1607,6.87,1608,6.87,1609,6.87,1610,6.87,1611,6.87,1612,6.87]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.055,47,2.344,110,2.89,258,3.815,749,2.945]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.703,61,1.164,110,2.809,749,3.93]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.583,9,0.079,29,1.093,35,0.411,64,2.828,110,4.679,112,3.884,240,1.002,368,2.533,458,4.087,640,4.58,696,2.187,749,3.226]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[829,0.474]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.936,49,1.06,184,1.923,515,4.751,538,5.316]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[184,1.869,538,5.167,1613,5.621,1614,5.959,1615,5.167]],["toc//docs/uptime/monitoring/top-htop-iotop/",[156,3.556,274,5.683,318,3.255,355,4.739,376,4.681,538,6.209,731,7.161,732,5.125,1549,7.161,1613,6.755,1614,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.06,60,2.011,143,1.902,300,4.648,1616,5.784]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1616,6.712,1617,7.728,1618,7.728]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.595,35,0.574,64,3.083,148,2.439,273,6.349,355,4.341,368,2.762,375,4.61,1616,8.848]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.264,11,0.626,16,1.714,29,0.863,61,1.036,312,2.532,1078,4.6]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.948,4,1.13,11,0.565,61,0.936,312,2.287,488,3.904,1078,4.154,1619,4.791]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.025,9,0.068,29,1.248,35,0.469,60,2.515,65,2.515,243,3.086,309,4.005,1065,4.665,1078,6.649]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.263,469,5.197,1151,5.291]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[487,7.467,488,4.177,1151,5.363,1619,5.126]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.429,156,3.479,181,1.957,204,5.429,366,2.09,572,6.609,631,6.312,672,4.051,877,5.561,1151,7.384,1620,4.708,1621,7.61]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.055,116,3.418,265,3.066,888,5.524,1074,4.866]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[116,3.072,888,4.965,1622,5.199,1623,4.779,1624,4.779,1625,4.965]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.742,9,0.051,35,0.353,60,2.623,116,3.213,202,3.333,265,2.882,442,5.193,465,3.546,754,5.764,888,7.203,1074,6.346,1530,8.66,1626,8.684,1627,6.26,1628,6.26,1629,6.26]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.055,35,0.375,61,1.197,189,2.787,552,5.524]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.88,1630,8.559]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.043,29,0.785,35,0.431,64,2.03,96,3.827,99,2.903,148,2.771,167,3.597,184,1.512,214,3.514,310,3.195,346,3.656,391,6.794,525,3.393,552,8.765,601,4.823,696,1.57,756,1.869,827,3.828,886,3.073,1342,3.656,1427,4.823,1631,4.823]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.059,61,1.299,1273,4.29,1632,6.272]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,875,3.114,876,4.243,1238,3.57,1273,2.902,1555,2.94,1632,4.243,1633,4.243,1634,3.409]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.083,17,1.808,18,1.82,35,0.438,49,1.238,80,3.218,90,2.34,309,3.74,696,2.331,779,2.246,1273,4.62,1632,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.065,61,1.418,1635,6.092]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-debian/",[829,0.474]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.065,11,0.857,1635,6.092]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.839,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.039,11,0.521,49,0.763,61,0.862,89,1.465,308,3.01,895,3.503,1093,4.164,1636,4.164,1637,4.414]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1636,6.712,1637,7.116,1638,7.728]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.074,14,1.26,35,0.505,141,3.258,323,2.47,1636,9.536]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[276,4.013,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.845,341,4.193,1095,5.348,1639,5.959]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.42,155,4.252,241,2.086,308,6.489,752,5.361,786,4.176,1095,4.897,1584,7.491,1640,5.361]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[531,4.418,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.556,341,3.878,531,3.353,1095,5.065,1639,5.512]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.967,28,5.278,155,3.709,308,5.66,427,3.879,752,7.6,786,3.394,1095,6.941,1195,5.742,1199,5.107,1641,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.417,393,5.578,1023,3.499,1642,6.649]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,393,3.773,856,3.665,1023,2.367,1132,1.584]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.075,11,0.992,60,2.035,61,1.642,103,5.852,118,4.003,164,2.59,189,2.82,1006,3.458,1013,2.837,1023,3.265,1132,2.185,1264,4.924,1642,6.204,1643,6.738,1644,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.671,16,1.838,29,0.926,49,0.984,61,1.111,1273,3.67]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.839,61,1.39,1273,4.591]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.072,49,1.391,131,3.77,368,3.035,696,2.62,1273,6.974]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.857,749,3.488,764,4.371]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.13,240,0.715,241,1.334,1192,3.491,1645,4.791,1646,5.204,1647,5.204,1648,4.02]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.494,4,2.119,5,1.811,9,0.08,17,1.732,18,1.743,35,0.614,181,1.916,240,1.023,241,1.91,366,2.045]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.048,189,3.022,1474,5.578,1649,7.222]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.191,881,5.394,1650,7.728]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.05,14,0.85,17,1.405,18,1.414,35,0.341,40,3.428,49,1.558,95,4.418,100,1.812,148,1.854,296,3.591,569,5.015,696,1.812,1071,6.358,1474,7.559,1651,9.787,1652,6.046,1653,6.046]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.445,174,5.504,478,2.788]],["keywords//docs/networking/dns/common-dns-configurations/",[1484,6.712,1654,7.116,1655,7.116]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.83,29,0.922,35,0.347,42,2.037,49,1.366,169,4.442,181,1.582,213,3.985,217,4.293,378,4.679,477,3.752,478,2.175,479,4.614,756,2.195,757,2.605,1554,5.342,1656,5.663,1657,4.91,1658,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.059,31,1.402,61,1.299,177,5.04]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,276,2.486,1659,3.9,1660,4.243,1661,4.885,1662,4.885,1663,4.243,1664,4.885,1665,4.885]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.932,9,0.079,31,1.416,35,0.411,49,1.161,143,2.084,148,2.954,167,3.431,177,5.092,291,4.807,358,6.717,1666,6.717,1667,7.296]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.051,117,1.925,301,4.932,650,2.586,1668,5.366,1669,5.366]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[301,5.624,650,2.949,908,5.624,1668,6.118]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.053,11,0.705,14,0.912,49,1.417,60,1.96,61,1.167,117,2.022,136,4.454,318,2.716,1264,6.506,1308,3.391,1415,4.074,1503,4.015,1668,7.732,1670,6.491,1671,5.384,1672,5.976,1673,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[181,1.857,510,4.603,531,4.045,1077,5.277]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.405,488,4.855,531,3.626,1065,3.626,1674,5.959]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.153,5,1.398,9,0.067,16,1.71,29,0.861,35,0.618,65,1.737,191,4.534,240,0.79,243,2.131,255,3.061,324,2.015,531,3.221,696,1.723,779,1.66,1065,5.334,1151,3.858,1509,4.994,1675,4.314,1676,4.994,1677,5.75]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.341,5,1.502,35,0.348,191,4.769,1065,3.461]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[488,5.285,1065,3.946,1674,6.486,1678,7.045]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.494,4,2.119,5,1.811,9,0.061,35,0.55,191,5.412,255,3.966,324,2.61,1065,6.103,1675,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.071,177,6.063]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.058,65,2.832,90,3.18,118,4.162,150,3.596,190,5.31,330,3.079,542,6.084,608,4.998,674,5.811,718,5.811,1680,7.006,1681,7.006,1682,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.051,164,1.752,189,2.586,258,3.539,1160,2.383,1169,3.144]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.081,117,1.735,164,1.579,241,1.427,1160,2.147,1169,2.833,1683,2.618]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.072,29,0.955,31,2.106,35,0.567,41,4.547,42,2.11,47,2.243,80,2.637,181,1.639,241,2.254,366,1.75,399,1.565,1160,3.39,1684,4.781]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[650,3.636,921,6.935]],["keywords//docs/platform/network-helper/",[550,2.883,623,3.266,642,4.445,650,3.346,1685,5.568,1686,5.568]],["toc//docs/platform/network-helper/",[11,0.668,29,0.922,35,0.347,61,1.106,103,5.342,148,1.887,164,1.744,283,4.614,368,2.136,391,4.206,513,3.985,650,3.59,921,6.848,1132,1.995,1264,6.269,1308,3.214,1406,5.663,1430,5.663,1503,3.805,1671,5.102,1687,5.342,1688,6.151]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.874,61,0.971,189,2.26,244,2.419,550,2.796,667,3.293,1199,4.17,1689,4.31]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,531,2.915,667,3.174,668,3.132,669,3.803,1162,3.429,1689,4.154,1690,4.791]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.059,9,0.078,20,4.193,45,3.182,46,3.141,89,2.184,244,3.203,532,3.805,667,4.36,696,2.142,1199,5.521,1689,9.082]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.047,14,0.81,61,1.036,189,2.412,550,2.984,667,3.515,1689,4.6]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,531,2.915,550,2.695,667,3.174,668,3.132,669,3.803,1162,3.429,1690,4.791]],["toc//docs/websites/cms/drush-drupal/",[0,1.1,9,0.076,14,0.771,29,0.821,49,1.259,114,4.006,116,2.814,148,1.681,156,2.506,276,2.789,303,1.342,318,2.294,324,2.77,392,4.823,532,2.919,667,3.344,696,1.643,827,4.006,1005,6.311,1264,4.006,1472,3.826,1689,8.102,1691,5.482]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[164,1.888,189,2.787,240,0.915,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-apache2-centos/",[240,0.715,675,1.947,1132,1.688,1692,3.559,1693,4.791,1694,4.52,1695,5.204,1696,3.429]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.671,61,1.111,240,0.849,550,3.199,675,2.312,766,2.323]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.565,61,0.936,240,0.715,675,1.947,701,2.604,1692,3.559,1697,4.791,1698,4.791]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.784,764,4.002,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.839,1023,3.745,1192,5.185]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.055,11,0.992,15,4.055,16,2.004,42,2.231,74,3.317,89,2.059,100,2.02,141,2.45,510,4.295,571,4.23,967,5.589,1006,3.458,1023,5.021,1176,3.317,1177,5.589,1699,2.906]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.047,31,1.119,61,1.036,189,2.412,766,2.167,1336,4.451,1555,3.468]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.893,1133,3.453,1135,3.555,1336,3.555,1555,2.77,1634,3.212,1663,3.997,1700,4.603,1701,4.238,1702,3.818]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.061,16,1.492,31,1.438,60,1.515,61,0.902,65,1.515,89,1.532,148,1.538,155,2.063,156,2.293,202,3.944,233,2.309,243,1.858,265,2.309,330,2.204,378,2.376,519,3.059,549,4.16,613,4.16,673,2.411,696,1.503,751,2.509,766,3.659,786,4.521,886,2.942,1135,3.873,1336,7.515]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1018,3.828]],["title//docs/websites/cms/cms-overview/",[90,2.173,323,1.99,702,3.555,877,5.277]],["keywords//docs/websites/cms/cms-overview/",[531,3.119,550,2.883,667,3.396,668,3.351,669,4.069,1162,3.669,1703,5.126]],["toc//docs/websites/cms/cms-overview/",[45,3.387,46,3.344,89,2.325,90,2.29,323,2.097,531,5.547,629,6.609,667,6.04,669,7.236,702,3.746,1199,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[397,5.028,1704,6.85,1705,7.262]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1704,4.52,1705,4.791]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.387,60,2.159,240,1.305,397,6.057,485,5.521,721,3.606,1045,2.688,1047,5.223,1576,3.769,1704,9.271,1706,7.148,1707,6.581,1708,7.148]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[148,2.419,1022,5.393,1709,6.092]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.078,14,1.327,696,2.83,1709,8.754]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.047,11,0.626,62,2.814,244,2.582,464,2.73,734,3.565,1715,5.005]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[464,3.337,734,4.358,1715,6.118,1716,7.045]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.079,17,1.359,18,1.368,35,0.329,90,1.759,148,1.793,232,4.515,244,4.305,399,1.435,464,2.769,643,2.619,676,2.569,734,3.616,1006,3,1264,4.271,1657,4.666,1658,4.666,1715,9.946,1717,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.047,11,0.626,49,0.917,171,3.797,330,2.532,757,2.44,1718,5.005]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[756,2.758,757,3.273,1718,6.712]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.044,49,0.859,60,1.63,155,2.221,183,4.908,240,0.741,320,2.847,324,1.891,364,3.768,368,1.875,380,3.768,477,3.293,696,1.618,757,2.286,766,2.94,936,3.557,961,4.05,1253,7.1,1254,7.338,1481,8.463,1718,4.688,1719,4.478,1720,5.398,1721,5.398,1722,5.398]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.417,856,5.417,1023,3.499,1723,6.649]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,856,3.665,1023,2.367,1132,1.584,1723,4.498]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.041,11,0.545,61,0.902,73,3.762,117,1.562,164,1.422,856,7.787,1006,2.574,1023,2.43,1132,1.626,1308,2.62,1503,3.102,1671,4.16,1687,4.355,1724,10.381,1725,10.381,1726,5.015,1727,5.015,1728,5.015,1729,5.015,1730,5.015,1731,5.015,1732,5.015,1733,5.015,1734,5.015,1735,5.015]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.654,458,4.867]],["keywords//docs/platform/linode-images/",[458,4.794,1736,8.559]],["toc//docs/platform/linode-images/",[47,3.155,90,2.697,458,6.65,1470,7.155,1737,8.963]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.341,31,1.199,61,1.111,189,2.586,1555,3.718,1738,5.366]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.529,31,1.368,1634,4.917,1738,6.118]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.583,9,0.079,14,1.026,31,1.87,35,0.411,47,2.568,65,2.203,141,2.652,243,2.703,422,3.359,696,2.187,1738,9.365]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.051,11,0.671,764,3.424,1202,4.772,1298,5.689,1299,5.366]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.13,30,2.244,31,1.01,116,2.671,452,2.719,1189,3.132,1202,4.02,1203,4.02]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.445,9,0.08,16,1.768,29,0.89,30,2.563,31,1.154,47,2.092,65,1.795,141,2.161,171,3.916,181,1.529,243,2.202,281,2.646,303,1.455,323,2.308,366,1.632,416,4.745,452,3.106,647,3.33,1202,8.572]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.936,638,5.524,1050,5.524,1479,5.144,1739,5.784]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1479,4.999,1739,5.621,1740,4.517,1741,5.621,1742,5.621]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.049,11,0.406,14,0.832,17,0.869,18,0.875,29,0.887,35,0.211,43,2.167,49,0.595,61,0.672,117,1.165,119,3.43,121,3.443,122,3.443,123,1.903,131,1.613,164,1.06,336,3.561,355,1.593,368,1.299,427,2.194,433,2.347,456,3.899,508,2.095,519,2.281,550,1.936,618,3.515,639,1.449,661,3.102,672,1.991,673,1.798,708,2.985,732,2.464,1048,2.985,1132,1.213,1263,2.142,1308,1.954,1739,8.8,1740,2.61,1743,2.557,1744,3.443,1745,3.74,1746,5.448,1747,3.74,1748,5.448,1749,3.74,1750,3.74]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.059,61,1.299,330,3.173,1751,6.272]],["keywords//docs/applications/messaging/install-znc-debian/",[1751,5.621,1752,6.473,1753,6.473,1754,6.473,1755,6.473]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.061,17,1.732,18,1.743,35,0.42,131,3.213,136,3.727,219,4.608,318,3.118,675,2.787,766,2.801,786,3.823,1751,8.481,1756,7.45,1757,7.45]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.015,180,4.09,752,4.758,756,2.577]],["keywords//docs/email/using-google-apps-for-email/",[1758,7.728,1759,7.728,1760,7.728]],["toc//docs/email/using-google-apps-for-email/",[0,1.845,378,4.357,477,5.61,886,5.395,1005,7.342,1719,7.628]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.407,117,2.25,623,4.237,1417,4.29]],["keywords//docs/networking/linux-static-ip-configuration/",[207,4.591,642,6.17,1417,4.591]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.335,60,1.795,61,1.069,112,3.164,117,1.852,131,2.563,164,2.375,189,2.488,207,3.531,372,0.855,397,3.789,433,3.731,650,2.488,751,2.974,918,4.241,921,4.745,1013,2.502,1132,1.928,1308,3.106,1355,5.162,1417,3.531,1503,3.677,1671,4.93,1761,5.944]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.626,42,1.908,47,2.028,1317,4.6,1373,4.211,1699,2.485,1762,4.451]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[240,0.632,241,1.18,906,2.7,1317,3.674,1373,3.363,1377,3.997,1488,3.674,1762,3.555,1763,3.033,1764,4.603]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.683,9,0.087,16,1.375,29,0.692,35,0.565,64,1.791,65,1.396,74,2.275,100,1.385,231,3.297,243,1.712,244,2.07,255,2.46,258,2.647,323,1.273,324,1.619,357,3.689,513,2.993,523,3.689,696,1.385,749,2.044,752,3.045,780,2.257,886,2.711,906,2.711,1373,5.093,1762,6.481,1765,4.621,1766,4.254,1767,4.621]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.971,189,2.26,240,0.741,241,1.384,368,1.875,1237,4.478,1555,3.249,1768,4.478]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[240,0.889,241,1.659,1069,5.621,1160,2.496,1242,5.959]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.065,35,0.574,240,1.092,241,2.882,318,3.329,496,6.143,1237,8.451,1768,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.772,16,1.981,29,0.998,61,1.197,63,4.554]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.666,4,1.405,5,1.574,61,1.164,1506,5.959]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.818,9,0.056,14,0.966,35,0.387,49,1.094,131,2.963,185,3.303,303,1.681,319,4.25,324,2.407,940,4.25,941,3.657,942,3.098,1769,6.87]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.055,35,0.375,61,1.197,834,5.144,1770,6.66]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.529,61,1.267,834,5.441,1321,6.118]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.808,9,0.086,35,0.591,372,1.198,696,2.496,834,8.103,1344,1.233]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.304,43,3.129,49,0.859,757,2.286,1045,2.03,1047,3.945,1640,3.557]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[756,2.309,757,2.741,1045,2.434,1047,4.73,1634,4.517]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.354,9,0.046,19,2.937,29,1.198,35,0.527,49,0.886,60,1.682,100,1.669,148,1.708,180,3.154,303,1.363,473,3.496,696,1.669,752,3.669,942,3.606,1045,3.517,1046,4.619,1047,4.069,1048,4.446,1049,5.127,1050,4.619,1153,4.177,1771,4.301,1772,5.569,1773,5.569]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.065,35,0.445,1774,6.85]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.565,61,0.936,158,3.219,164,1.476,587,4.791,1132,1.688,1321,4.52,1774,4.52]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.078,35,0.532,60,2.852,671,6.9,1774,8.201]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.278,117,2.075,708,5.316,1775,5.784,1776,5.524]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[226,3.293,1516,4.855,1777,6.473,1778,6.473,1779,6.473]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.864,61,1.43,74,3.915,117,2.478,164,2.255,708,6.349,1132,2.579,1308,4.156,1503,4.92,1517,4.993,1775,6.907,1776,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1018,3.828]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.15,749,3.194,1132,2.342,1780,6.649]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[749,2.647,1132,1.941,1781,5.986,1782,4.374,1783,4.491,1784,5.986]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[829,0.474]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.761,368,2.001,618,3.423,779,1.664,1087,3.468,1456,4.6]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,643,2.495,875,3.549,1785,4.618,1786,5.568,1787,5.126,1788,5.126]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.586,89,1.649,368,1.875,618,3.207,779,1.559,1087,3.249,1456,4.31,1699,2.328]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.65,643,2.682,1763,3.944,1785,4.965,1787,5.512,1788,5.512]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.671,14,0.869,68,4.515,411,4.515,1091,4.635,1699,2.665]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.765,408,6.118,411,5.148,1699,3.038]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.048,35,0.329,49,0.931,68,7.022,80,2.418,89,1.786,117,2.578,119,4.797,123,4.211,131,3.569,303,1.431,336,4.981,411,8.059,618,4.917,620,4.271,637,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.239,29,0.926,164,1.752,697,2.927,1065,3.461,1789,5.366]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.156,29,0.863,61,1.036,189,2.412,697,2.73,1065,3.228,1555,3.468]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.156,11,0.626,29,0.863,697,2.73,1065,3.228,1699,2.485,1794,2.958]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.417,86,5.277,1280,5.152,1795,6.649]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1280,3.713,1795,4.791]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.065,11,0.864,46,3.495,61,1.43,86,5.811,118,4.725,156,3.636,164,2.255,303,1.946,766,2.991,1132,2.579,1796,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.055,11,0.723,757,2.82,971,4.245,1699,2.872]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,0.999,11,0.5,482,3.555,756,1.642,757,1.949,1045,1.731,1371,3.997,1576,2.427,1699,1.985,1797,2.847]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.063,29,1.14,35,0.429,60,2.991,311,2.78,318,3.185,345,5.429,482,7.648,696,2.281,1371,6.609,1797,6.126]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[829,0.474]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.809,100,1.618,181,1.389,240,1.074,366,1.482,1297,4.971,1798,5.399]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.5,61,0.828,100,1.38,164,1.305,1023,2.23,1132,1.493,1308,2.405,1497,4.238,1503,2.847,1799,4.603]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.27,35,0.341,61,1.087,100,2.54,101,2.864,181,2.18,198,3.984,231,4.313,240,0.83,244,2.709,287,4.67,366,2.327,392,3.688,456,3.984,608,4.313,672,3.219,869,4.67,1023,2.93,1792,5.015,1800,5.566]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.156,14,0.81,33,2.412,164,1.634,199,2.653,1789,5.005,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.709,164,1.835,199,2.98,1789,5.621,1801,4.999]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.156,11,0.626,14,0.81,33,2.412,199,2.653,1699,2.485,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.65,33,2.505,199,2.756,550,3.1,1699,2.582,1801,4.624]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[829,0.474]],["title//docs/platform/billing-and-payments/",[1025,6.348,1027,6.517]],["keywords//docs/platform/billing-and-payments/",[1025,6.254,1027,6.42]],["toc//docs/platform/billing-and-payments/",[2,2.367,22,2.712,42,2.241,84,3.335,89,2.504,100,1.333,133,3.688,156,2.033,181,1.144,238,2.75,372,0.974,377,2.676,398,2.414,422,2.047,465,2.518,486,3.335,608,3.172,639,1.723,748,5.878,1022,4.628,1024,3.861,1025,6.695,1027,5.078,1077,3.249,1111,3.861,1344,0.658,1717,3.688,1803,4.446,1804,4.446,1805,3.434,1806,4.094,1807,4.446,1808,3.434,1809,3.861,1810,5.878,1811,3.688]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.554,236,5.524,633,4.468,1812,5.784]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1812,7.433,1813,8.559]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.395,49,1.493,136,4.691,148,2.149,318,3.924,323,1.93,475,4.216,647,5.252,650,2.932,696,2.1,1812,9.178]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.714,29,0.863,89,1.761,588,5.306,643,2.582,1086,3.301,1814,5.763]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.709,1086,5.091,1815,5.959,1816,6.473]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.314,29,1.165,49,1.238,117,2.423,119,4.508,123,3.957,336,4.681,396,5.835,416,6.209,618,4.62,696,2.331,1517,4.882,1815,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.624,494,6.935]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.475,89,1.492,164,1.385,264,3.773,265,2.249,494,3.9,1817,4.498]],["toc//docs/platform/package-mirrors/",[11,0.864,29,1.776,61,1.43,65,2.402,164,2.255,323,3.098,494,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.199,61,1.111,189,2.586,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.551,9,0.088,29,1.071,31,1.845,65,2.159,80,2.957,243,2.649,311,2.611,318,2.991,399,1.755,460,4.569,699,5.382]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.876,9,0.042,31,0.986,61,0.913,117,1.582,241,1.302,258,2.909,263,2.704,1169,2.584]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.583,5,1.774,9,0.079,17,1.696,18,1.707,31,1.416,35,0.411,47,2.568,49,1.717,143,2.084,241,1.87,346,5.092,1160,2.813]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,1169,3.388,1555,4.008]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.491,5,1.67,9,0.086,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,399,1.687,696,2.059,1160,2.649]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.988,469,4.758,819,4.533,1067,5.578]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.703,61,1.164,550,3.352,819,4.063,1067,4.999]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.888,18,0.894,35,0.55,41,2.726,60,1.154,89,1.167,92,3.318,99,2.117,143,1.091,204,4.294,214,2.563,307,2.563,309,1.837,310,2.33,318,1.599,391,2.612,475,2.299,510,2.435,702,2.962,819,6.645,1067,8.413,1068,4.398,1077,2.792,1340,3.05,1820,3.821,1821,4.992,1822,3.169,1823,3.821,1824,3.821,1825,3.821,1826,4.398,1827,3.318,1828,3.821]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[164,1.888,184,1.923,1013,2.804,1045,2.504,1829,5.784]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[184,2.034,1045,2.649,1364,4.422,1829,6.118]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.07,21,4.944,60,2.576,274,6.233,297,6.588,565,7.075,696,2.557,1829,7.408,1830,6.086]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,1699,2.485,1794,2.958]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.652,9,0.081,17,1.769,18,1.78,31,1.922,80,3.148,311,2.78,318,3.185,460,4.762,699,5.609]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.055,35,0.375,164,1.888,1013,2.804,1831,3.48]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.529,164,1.997,215,5.026,1831,3.681]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.085,17,1.891,18,1.904,35,0.459,60,2.457,306,5.679,675,3.044,1831,5.937]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[110,4.196]],["keywords//docs/applications/containers/what-is-docker/",[11,0.703,110,2.809,112,3.446,164,1.835,1699,2.791]],["toc//docs/applications/containers/what-is-docker/",[9,0.061,11,0.809,31,1.446,110,3.233,164,2.112,178,5.315,179,5.199,291,4.908,372,1.072,830,5.443,1013,3.136,1344,1.103,1699,3.213,1832,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[829,0.474]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.055,31,1.293,61,1.197,189,2.787,1555,4.008]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.01,61,0.936,199,2.396,701,2.604,1633,4.52,1634,3.632,1663,4.52,1833,5.204]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.213,9,0.08,29,0.906,31,2.059,40,2.446,61,1.087,64,2.343,90,1.819,100,1.812,101,2.864,184,1.746,265,2.783,303,1.48,330,2.657,399,1.484,696,1.812,779,1.746,837,3.875,1028,2.285,1834,3.13]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,1780,5.689]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1835,7.728,1836,5.969,1837,6.41]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[829,0.474]],["title//docs/platform/api/api-key/",[129,5.724,233,3.999]],["keywords//docs/platform/api/api-key/",[233,3.558,1838,7.728,1839,7.116]],["toc//docs/platform/api/api-key/",[377,6.179,751,5.136]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.654,470,6.198]],["keywords//docs/platform/linode-cli/",[1839,6.486,1840,7.045,1841,7.045,1842,7.045]],["toc//docs/platform/linode-cli/",[9,0.062,11,0.813,14,0.715,61,1.346,89,1.554,100,1.525,117,1.585,119,4.339,129,3.352,169,2.634,233,2.342,318,3.718,324,1.782,336,4.506,378,2.41,424,3.147,465,2.881,470,6.338,527,4.22,618,4.447,647,2.85,1132,1.65,1151,3.413,1800,4.684,1843,5.087,1844,5.087,1845,5.087]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.567,9,0.059,164,2.048,1013,3.04]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.7,4,2.513,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[232,5.578,276,3.674,478,2.553,1846,6.649]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[276,3.932,478,2.732,1846,7.116]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.159,100,2.142,117,2.227,119,4.143,123,3.637,148,3.274,181,2.746,207,4.246,336,4.302,618,4.246,623,4.193,640,5.965]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.567,9,0.059,61,1.299,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.222,4,0.851,5,0.954,61,0.705,117,1.222,238,2.427,1457,2.585,1458,3.132,1459,3.132,1460,3.254,1461,2.799,1633,3.407,1634,2.738]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.051,11,0.671,61,1.111,62,3.017,263,3.289,1847,4.408]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.605,61,1.001,875,3.549,1847,3.972,1848,5.568,1849,4.836,1850,5.568]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.059,61,1.299,189,3.022,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1634,4.917,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[829,0.474]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.059,11,0.784,1699,3.114,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.765,1699,3.038,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[164,1.752,240,0.849,241,1.584,368,2.146,1013,2.601,1240,3.424]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[199,2.396,240,0.715,241,1.334,1240,2.884,1683,2.447,1851,3.559,1852,3.559,1853,4.52]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.07,17,1.983,18,1.996,35,0.481,240,1.463,241,2.73,1240,4.727]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,189,2.412,240,0.791,241,1.477,368,2.001,1240,3.194,1555,3.468]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.445,9,0.055,61,1.197,189,2.787,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.208,61,1.001,215,3.972,1831,2.909,1856,4.618,1857,4.618,1858,4.618]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.055,35,0.375,61,1.197,263,3.545,1831,3.48]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,0.999,61,0.828,215,3.284,241,1.18,875,2.934,1831,2.405,1856,3.818,1857,3.818,1858,3.818,1859,4.603]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.15,749,3.194,1132,2.342,1860,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1782,5.148,1783,5.285,1861,7.045,1862,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.06,143,1.902,164,1.888,240,0.915,1013,2.804]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[164,1.697,240,0.822,1015,4.779,1696,3.944,1863,3.878,1864,5.512]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,3.203,366,1.963,460,3.437,1474,5.521]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.712,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.677,51,4.591,910,5.285]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.765,5,1.63,9,0.036,11,0.477,22,2.678,35,0.458,51,2.608,61,0.79,85,3.133,101,2.08,131,3.926,226,2.234,286,2.46,296,3.983,372,0.632,398,2.384,424,2.716,780,2.144,819,2.756,1033,3.505,1059,6.101,1275,3.505,1278,3.133,1426,3.642,1443,7.55,1865,4.043,1866,3.813,1867,4.391,1868,4.391,1869,3.505,1870,3.642,1871,4.043,1872,4.391,1873,3.642]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.531,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.368,51,4.185,910,4.817,1874,7.045]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.043,11,0.569,22,3.195,31,1.754,35,0.431,49,0.834,51,3.112,61,0.942,85,5.457,101,2.481,131,2.259,202,2.789,226,2.665,286,2.934,296,3.112,385,4.182,398,2.844,424,3.24,626,5.457,639,2.03,780,2.558,1275,4.182,1426,4.345,1443,4.345,1869,4.182,1870,4.345,1873,4.345,1875,4.549,1876,4.549,1877,4.345]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[180,4.467,240,1.083,910,5.393]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.185,240,0.968,910,4.817,1878,7.045]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.038,11,0.508,22,2.856,35,0.397,49,0.745,51,2.781,61,0.842,85,5.022,101,2.218,197,2.493,202,2.493,226,2.382,240,1.162,286,2.623,296,2.781,311,1.71,385,3.738,398,2.542,424,2.896,626,3.341,639,1.815,780,2.287,1275,3.738,1426,5.838,1443,3.884,1604,4.311,1707,4.311,1865,4.311,1869,3.738,1870,3.884,1871,4.311,1873,3.884,1875,4.066,1876,4.066,1877,3.884,1879,4.682,1880,4.066,1881,4.682]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.255,749,3.488,1503,4.879]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[829,0.474]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.206,181,1.857,236,5.99,1516,5.417]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1516,5.797,1884,7.728,1885,7.728]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.051,15,3.767,16,1.862,17,1.455,18,1.465,38,2.213,45,2.787,46,2.751,49,0.997,89,1.913,141,2.276,143,1.788,258,3.586,276,4.418,378,4.114,574,7.203,673,3.01,749,2.769,756,2.234,1620,3.873,1821,5.193]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,749,2.945,1555,4.008]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.944,61,0.782,240,0.598,241,1.115,749,1.924,1496,3.609,1634,3.037,1782,3.18,1886,4.351,1887,3.779,1888,4.351]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.055,117,2.075,258,3.815,749,2.945,1308,3.48]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.896,240,0.567,241,1.058,749,1.825,1308,2.156,1488,3.294,1889,4.126,1890,4.126,1891,4.126,1892,4.126,1893,4.126,1894,3.583]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.213,4,1.84,5,1.47,9,0.08,17,1.405,18,1.414,35,0.552,49,0.962,117,2.64,155,2.487,181,1.555,192,2.803,240,1.164,241,2.173,366,1.66,673,2.907,749,2.674,1308,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.784,89,2.206,1273,4.29,1699,3.114]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.765,1273,4.185,1699,3.038,1895,6.486]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.072,16,1.896,29,0.955,35,0.567,49,1.015,100,1.91,136,3.188,141,2.317,148,1.955,167,2.997,255,3.393,323,1.756,372,0.917,927,5.088,929,3.943,1273,5.98,1344,0.944,1896,6.373]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[829,0.474]],["title//docs/development/version-control/introduction-to-version-control/",[118,4.685,124,4.627,464,3.736]],["keywords//docs/development/version-control/introduction-to-version-control/",[116,3.616,1203,5.441,1897,7.045,1898,7.045]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.055,14,0.947,16,2.004,19,3.554,29,1.009,80,2.788,116,3.458,118,6.155,142,3.775,323,1.857,464,4.908,469,4.44,1899,6.738,1900,7.932,1901,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,189,2.586,240,0.849,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.445,9,0.055,11,0.723,1699,2.872,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1763,2.867,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.445,9,0.055,11,0.723,764,3.691,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1192,2.919,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.671,49,0.984,143,1.765,1155,3.769,1699,2.665,1794,3.171]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.035,9,0.042,11,0.561,29,0.773,35,0.505,40,2.088,145,3.987,146,3.772,154,6.392,156,2.36,181,2.538,244,2.313,366,2.709,368,1.792,399,1.267,647,4.239,1155,4.616,1158,7.78,1159,4.483,1501,4.12,1768,4.281,1905,4.752]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.984,61,1.111,143,1.765,189,2.586,240,0.849,1555,3.718]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,240,0.822,1555,3.603,1634,4.178,1864,5.512,1906,5.199]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,4.258,366,1.963,460,3.437]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.586,61,0.971,189,2.26,303,1.321,721,2.724,884,3.442,1699,2.328,1794,2.771]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.565,61,0.936,447,2.695,650,2.178,721,2.625,1634,3.632,1699,2.244,1895,4.791]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.059,29,0.721,35,0.271,49,0.766,89,1.469,98,3.357,131,3.097,136,4.3,233,3.957,303,1.177,308,3.019,415,2.895,422,2.214,447,4.451,519,2.934,639,1.864,721,3.623,751,3.593,766,2.701,779,1.389,938,3.357,980,3.432,981,3.432,988,3.432,1084,3.116,1086,2.755,1279,4.428,1314,3.432,1907,3.515,1908,3.608]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[829,0.474]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.445,780,3.252,1045,2.504,1556,5.784,1576,3.512]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.677,1045,2.906,1576,4.076]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.887,16,1.215,29,0.612,35,0.23,38,2.243,46,2.787,89,1.248,119,2.368,197,2.175,219,2.528,311,1.492,320,2.155,324,2.222,335,2.368,366,1.742,368,1.419,378,3.005,510,2.605,675,1.529,676,2.787,681,3.548,773,2.986,780,1.995,886,2.397,936,2.692,1006,4.869,1045,3.295,1047,2.986,1278,2.915,1576,4.621,1580,2.492,1909,3.548,1910,3.762,1911,4.086,1912,4.086,1913,4.086,1914,4.086,1915,4.086]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.051,61,1.111,240,0.849,263,3.289,452,3.228,1188,3.289]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.064,17,1.808,18,1.82,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[219,4.879,226,4.013,620,5.763]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,219,3.444,226,2.833,303,1.363,620,4.069,1555,3.351,1916,5.568]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.378,9,0.056,16,2.043,35,0.522,61,1.664,80,2.842,219,4.25,226,4.708,311,2.509,469,4.526,513,4.45,620,5.02,633,4.608,1917,6.325,1918,6.325,1919,6.87]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[829,0.474]],["title//docs/platform/automating-server-builds/",[20,4.627,49,1.255,150,4.048]],["keywords//docs/platform/automating-server-builds/",[226,3.293,737,4.855,1523,4.618,1920,6.473,1921,6.473]],["toc//docs/platform/automating-server-builds/",[2,3.657,20,4.03,42,2.275,49,1.094,89,3.197,100,2.059,150,3.526,207,4.081,226,3.495,399,1.687,604,5.02,623,4.03,797,4.697,909,4.794,1657,5.484,1658,5.484,1922,6.87]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.255,368,2.739,757,3.34]],["keywords//docs/email/running-a-mail-server/",[1364,4.422,1659,5.624,1923,7.045,1924,7.045]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.435,35,0.215,42,1.265,49,1.626,136,3.011,150,1.961,188,4.515,205,2.563,214,2.563,266,2.726,286,2.14,368,1.327,406,3.169,422,1.759,477,4.542,478,2.128,675,1.43,757,4.722,766,1.437,773,2.792,779,1.103,1022,2.612,1253,2.951,1267,3.518,1344,0.566,1544,4.294,1640,2.517,1719,3.169,1821,3.169,1822,3.169,1918,3.518,1925,2.866,1926,3.518,1927,6.019,1928,6.019,1929,3.821]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.567,756,2.577,1045,2.715,1576,3.808]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.06,11,0.531,49,0.778,61,0.878,756,1.743,757,2.069,1045,1.837,1576,2.576,1930,4.885]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.29,9,0.069,17,1.382,18,1.391,24,2.629,35,0.335,60,2.529,65,1.795,96,2.974,207,4.975,378,3.967,478,2.101,672,4.459,675,2.224,756,3.46,766,2.235,1045,2.235,1576,3.135,1580,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.299,189,3.022,1023,3.499,1555,4.346]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1555,4.24,1931,6.486,1932,6.486,1933,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,189,2.82,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[829,0.474]],["title//docs/security/linode-manager-security-controls/",[89,2.206,90,2.173,303,1.767,464,3.421]],["keywords//docs/security/linode-manager-security-controls/",[303,1.584,934,4.73,942,2.919,1139,4.999,1934,6.473]],["toc//docs/security/linode-manager-security-controls/",[35,0.236,45,1.862,46,1.838,96,2.093,129,2.756,132,3.138,151,1.63,152,3.851,155,1.721,156,1.912,182,5.271,185,2.011,207,3.837,233,1.926,303,1.024,306,2.919,311,2.359,320,4.68,324,1.466,331,3.339,345,2.984,397,4.117,465,2.369,623,3.789,639,1.621,676,1.838,751,2.093,756,1.492,775,6.854,923,2.984,942,1.887,983,3.469,1007,3.056,1098,6.545,1139,3.231,1935,4.183,1936,4.183]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.746,16,2.346,24,3.488]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.731,21,3.751,1937,5.167,1938,6.473]],["toc//docs/security/backups/backing-up-your-data/",[2,5.932,4,0.771,8,2.479,15,3.418,16,2.412,21,2.058,29,0.851,42,1.176,49,0.904,68,2.595,69,2.835,117,1.769,119,2.058,120,2.301,123,1.807,205,2.382,226,1.807,235,1.909,296,3.374,316,2.34,330,1.561,336,2.137,355,1.513,424,2.197,511,5.482,528,2.946,591,2.835,618,2.11,805,2.743,1771,2.743,1877,2.946,1937,7.079,1939,3.27,1940,2.743,1941,4.932,1942,2.946,1943,3.27,1944,2.946,1945,3.551,1946,3.551,1947,3.551,1948,3.551]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.221,910,5.941]],["keywords//docs/platform/longview/longview/",[910,5.285,1949,7.728,1950,7.728]],["toc//docs/platform/longview/longview/",[9,0.056,24,3.022,38,1.592,100,1.35,129,2.967,136,4.132,180,2.55,226,2.291,229,2.827,233,3.146,264,3.478,286,2.522,309,2.165,310,2.747,323,1.241,424,2.786,460,2.165,650,1.885,680,3.478,780,2.199,877,3.29,886,2.642,908,3.595,910,7.136,1074,3.29,1455,3.911,1880,3.911,1951,4.503,1952,4.503,1953,4.503,1954,4.503,1955,4.503,1956,4.503,1957,4.503,1958,3.735,1959,3.911]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.654,90,2.614]],["keywords//docs/platform/linode-managed/",[934,6.254,1960,8.559]],["toc//docs/platform/linode-managed/",[9,0.061,19,2.645,29,0.751,35,0.283,42,3.722,80,2.075,89,1.532,96,2.509,184,1.448,196,4.355,233,2.309,324,1.757,377,3.018,397,4.722,415,3.018,469,3.304,643,2.247,672,4.69,941,2.67,1084,3.249,1278,5.285,1827,4.355,1876,4.355,1909,4.355,1958,4.16,1961,5.015,1962,5.015]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.051,49,0.984,117,1.925,607,3.822,643,2.768,1963,5.366]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[550,4.002,643,3.463,1963,6.712]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.071,11,0.68,61,1.126,68,4.574,89,1.913,101,2.966,117,2.705,119,3.628,123,3.185,131,2.7,141,2.276,309,3.01,336,3.767,406,5.193,528,5.193,618,3.719,643,2.805,1308,3.271,1963,9.353]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,1164,3.461,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.322,1965,6.473,1966,6.473,1967,5.959,1968,5.167]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.074,14,1.26,60,2.707,240,1.231,696,2.686,1164,6.151]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.051,11,0.671,1263,3.539,1699,2.665,1969,3.67,1970,4.003]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[550,2.383,927,3.674,1763,3.033,1969,2.734,1971,3.363,1972,3.033,1973,3.033,1974,2.982,1975,2.982,1976,4.603]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.072,29,1.31,35,0.493,57,5.26,309,4.203,696,2.62,1969,6.423]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[829,0.474]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.586,14,0.759,31,1.048,39,2.149,47,1.9,180,3.058,1296,2.796,1699,2.328]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.565,31,1.01,39,2.071,792,2.671,1296,2.695,1977,5.204,1978,5.204,1979,4.791]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.065,31,1.544,35,0.574,49,1.266,151,3.099,156,3.636,372,1.144,696,2.384,1296,5.276,1344,1.178]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.626,43,3.34,47,2.028,49,0.917,757,2.44,1699,2.485,1980,3.423]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1364,3.758,1763,3.944,1980,3.556,1981,5.986,1982,4.491,1983,4.491]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.064,29,1.165,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,399,1.91,757,4.253,1980,4.62]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.586,396,4.05,1699,2.328,1794,2.771,1964,3.093,1984,3.768,1985,3.692,1986,3.293]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[241,1.535,1683,2.815,1763,3.944,1986,3.652,1987,4.374,1988,4.965]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.081,35,0.347,64,2.384,65,1.858,100,1.844,118,3.654,184,1.776,303,1.505,330,2.703,561,4.389,639,2.384,696,1.844,779,1.776,837,2.812,1028,2.324,1986,7.101,1989,5.663,1990,6.151]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,169,2.984,1699,2.485,1991,3.194]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[240,0.889,1155,3.948,1991,3.587,1992,4.73,1993,4.618]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.723,42,2.205,184,1.923,1183,3.956,1699,2.872]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[199,2.003,345,3.105,550,2.253,643,1.95,1047,3.18,1183,2.585,1342,3.037,1763,2.867,1926,4.006,1994,4.351,1995,4.006]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.059,35,0.403,45,3.182,46,3.141,143,2.041,302,3.88,345,6.78,355,3.045,639,2.77,756,2.55,1183,5.645,1342,4.988,1640,4.71,1740,4.988,1996,6.581]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.626,756,2.056,1176,2.837,1699,2.485,1794,2.958,1964,3.301,1997,3.423]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1997,3.845,1998,6.473,1999,6.473,2000,4.426,2001,4.855]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.058,29,1.05,311,2.559,368,3.256,372,1.008,399,1.72,696,2.1,923,4.998,942,3.16,971,4.466,1344,1.037,1620,4.334,1797,4.334,1997,6.278,2002,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.626,756,2.056,764,3.194,1176,2.837,1299,5.005,1997,3.423,2003,5.763]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1997,3.845,2000,4.426,2001,4.855,2004,6.473,2005,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.06,29,1.093,311,2.665,368,3.345,399,1.791,696,2.187,923,5.205,942,3.291,971,4.651,1620,4.513,1797,4.513,1997,6.406,2002,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.586,31,1.048,1160,2.082,1176,2.658,1699,2.328,1794,2.771,1819,2.658,1964,3.093]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.256,1519,3.797,2006,4.999,2007,5.621,2008,4.517]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.234,9,0.051,19,4.524,29,0.922,35,0.602,60,1.858,65,1.858,126,5.652,167,2.893,181,1.582,243,2.279,311,2.247,366,1.689,399,1.51,478,2.175,532,3.275,1160,2.372,1415,3.861,1521,3.805,1819,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,240,0.697,241,1.302,368,1.764,1176,2.5,1240,2.815,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.626,14,0.81,245,3.565,1263,3.301,1970,3.733,2009,3.381,2010,5.763]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1971,3.015,1973,2.719,1974,2.673,1975,2.673,2009,2.421,2011,4.126,2012,4.126,2013,3.095,2014,2.719,2015,2.218,2016,4.126,2017,4.126]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.054,14,0.929,35,0.373,38,2.338,156,3.023,181,1.701,290,3.879,324,2.317,335,3.832,366,1.815,399,1.624,478,2.338,713,3.832,780,3.229,2009,6.02,2015,3.554,2018,4.96,2019,4.615,2020,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.723,140,3.512,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.574,883,3.265,2021,6.473,2022,6.473,2023,4.618]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.07,24,2.72,35,0.347,64,2.384,90,2.581,101,2.914,140,6.139,141,2.236,157,3.805,191,3.409,235,3.306,323,1.695,368,2.136,404,3.921,508,3.446,1065,3.446,2024,6.12]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1301,3.86,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.047,11,0.626,31,1.119,1176,2.837,1699,2.485,1794,2.958,1964,3.301]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.605,31,1.081,199,2.563,701,2.786,2007,4.836,2027,5.568,2028,5.568]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.097,17,1.629,18,1.639,31,2.191,60,2.116,101,3.319,265,4.316,330,3.079,2029,7.006,2030,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2031,3.815]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.962,11,0.521,14,0.674,394,3.346,1699,2.068,1794,2.461,1964,2.746,2035,3.159,2036,3.106,2037,4.414]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.586,184,1.559,323,1.488,676,2.373,1465,3.093,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2038,3.652]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.605,116,2.858,454,3.351,1819,2.741,1988,4.618,2032,3.351,2038,3.054]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.126,42,1.682,240,0.697,312,2.232,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.626,14,0.81,184,1.664,743,4.111,1699,2.485,1940,4.451,2045,4.111]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.65,1763,3.944,2045,4.271,2046,5.199,2047,4.965,2048,5.986]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.076,14,0.966,29,1.029,35,0.522,136,3.437,265,3.162,281,3.058,311,2.509,386,4.901,575,4.312,696,2.059,1340,5.484,2045,6.602,2047,5.698,2049,5.306,2050,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.586,49,0.859,143,1.542,240,0.741,1176,2.658,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.565,240,0.715,550,2.695,701,2.604,1763,3.429,1794,2.671,1906,4.52,2051,5.204]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.089,17,1.696,18,1.707,35,0.411,40,3.896,181,1.876,240,1.481,244,3.269,366,2.003,460,3.508,1474,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,276,2.932,1699,2.485,2052,3.16]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1763,4.265,1863,4.193,1988,5.369,2052,3.55,2053,6.473]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2054,3.772]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2056,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.671,14,0.869,49,0.984,143,1.765,1699,2.665,2052,3.389]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[643,2.189,1763,3.219,1863,3.165,1988,4.052,2052,2.679,2057,4.885,2058,3.9,2059,4.885,2060,3.57]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.042,11,0.552,31,0.986,120,3.29,241,1.302,1160,1.958,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.01,241,1.334,1160,2.007,1519,3.053,1520,3.491,2007,4.52,2061,5.204,2062,5.204]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,1169,3.144,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.19,5,1.333,9,0.065,11,0.595,29,0.821,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,399,1.346,779,1.583,837,2.506,1028,2.072,1160,2.114]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.528,509,3.056,756,1.812,1699,2.19,1743,3.473,1794,2.607,1964,2.909,2063,3.098]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.626,42,1.908,473,3.617,478,2.037,1699,2.485,2065,4.111,2066,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.65,478,2.116,650,2.505,2066,3.283,2067,5.986,2068,5.986]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.326,9,0.054,29,0.991,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,398,3.59,399,1.624,779,1.909,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.586,14,0.759,24,2.388,158,3.34,192,2.503,1699,2.328,2071,2.902,2072,3.852]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.703,883,3.265,2071,3.479,2073,4.618,2074,5.369]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,197,2.552,478,1.695,1176,2.36,1699,2.068,1794,2.461,1964,2.746,2075,2.552,2076,3.278]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.172,5,1.313,11,0.586,47,1.9,1053,2.931,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.405,1457,4.265,1763,4.265,2080,4.999,2081,4.73]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.742,4,2.541,5,1.522,9,0.051,47,2.203,49,0.997,96,3.132,195,4.055,319,3.873,324,2.193,696,1.876,936,4.125,940,3.873,941,4.623,942,2.824,977,4.369,1056,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.567,9,0.059,11,0.784,764,4.002]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.896,11,0.448,117,1.285,1192,2.768,1457,2.719,1459,3.294,1461,2.944,2082,4.126,2083,4.126,2084,4.126,2085,4.126,2086,4.126]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,1699,2.328,1794,2.771]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.063,35,0.429,49,1.576,80,3.148,156,3.479,290,4.464,372,1.095,571,4.777,697,5.523,1344,1.127]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.502,11,0.671,14,0.869,30,2.665,1053,3.354,1699,2.665]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.791,1054,5.167,1055,3.948,1152,4.342,1763,4.265]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.038,5,2.165,9,0.073,29,0.972,30,4.383,35,0.366,185,3.121,209,4.205,303,1.589,324,2.274,639,2.516,942,2.927,1056,3.718,1060,4.277,2087,5.013,2088,5.013]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.044,11,0.586,49,0.859,1699,2.328,1794,2.771,1964,3.093,2015,2.902,2089,3.167]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2015,3.218,2089,3.512,2090,5.986,2091,4.491,2092,4.491,2093,4.491]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.061,14,1.047,35,0.42,49,1.186,265,3.429,266,5.315,311,2.721,478,2.634,672,3.966,779,2.151,2015,4.004,2020,4.826,2089,5.729,2094,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,749,2.733,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.06,11,0.531,240,0.671,241,1.252,749,2.16,1488,3.9,2095,3.773,2096,4.885,2097,4.885]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.255,184,2.277,1944,6.542]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.369,184,2.566,872,5.369,1944,5.369]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.037,14,0.961,35,0.385,65,1.36,69,3.595,74,2.216,80,1.863,89,2.523,90,2.485,96,2.253,100,2.476,184,2.385,323,1.241,469,2.967,510,2.87,515,3.213,640,2.827,676,3.63,756,1.607,779,1.3,805,3.478,909,4.77,910,3.079,1023,2.182,1177,3.735,1334,4.146,1342,3.143,1355,3.911,1657,3.595,1658,3.595,1877,3.735,1939,4.146,2098,4.503]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.255,184,2.277,2099,6.85]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[184,2.034,1615,7.513,2099,6.118]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.187,4,1.284,9,0.086,14,0.526,29,0.56,35,0.513,49,0.595,64,1.449,65,1.129,80,3.038,88,2.668,96,2.961,143,1.068,148,1.815,181,0.962,184,1.08,188,4.439,240,0.514,241,1.517,296,2.221,302,2.03,324,2.073,330,1.643,372,0.538,561,2.668,637,2.221,672,1.991,676,1.643,696,1.121,837,3.357,885,2.423,1344,0.554,1880,3.248,1989,3.443,2099,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[829,0.474]],["title//docs/applications/social-networking/dolphin/",[2100,8.397]],["keywords//docs/applications/social-networking/dolphin/",[2100,6.712,2101,6.17,2102,7.116]],["toc//docs/applications/social-networking/dolphin/",[4,1.073,5,1.202,9,0.089,16,1.471,29,0.741,35,0.413,40,2,49,0.787,64,1.916,100,1.482,231,3.528,241,2.24,244,2.215,324,1.732,368,1.717,392,4.472,672,2.632,676,2.173,696,1.482,734,3.059,756,1.764,793,3.381,895,3.613,927,3.947,2100,8.962,2103,4.945]],["deprecated//docs/applications/social-networking/dolphin/",[597,0.698,826,0.639,829,0.087,2102,2.151,2104,0.875,2105,0.875,2106,0.875]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.619,14,0.936,90,2.004,378,3.155,1120,4.062]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,0.999,5,1.119,479,3.453,1120,2.808,1831,2.405,2107,4.603,2108,4.603,2109,4.603,2110,4.603,2111,4.603]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.56,4,1.688,5,2.442,90,3.022,155,3.199,324,2.725,378,5.269,479,5.835,2112,7.778]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.055,49,1.06,117,2.075,2113,5.784,2114,6.131]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2113,6.118,2115,7.045,2116,7.045,2117,7.045]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.07,35,0.484,64,3.325,80,3.549,330,2.703,779,1.776,2113,10.75,2114,5.663,2118,10.688,2119,6.151]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.674,643,3.236,885,4.678,938,5.04]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.932,643,3.463,885,5.007]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.234,80,2.545,89,1.879,123,3.13,141,2.236,226,5.923,229,3.861,234,4.495,337,4.389,528,5.102,637,3.654,690,4.389,885,3.985,886,5.033,1101,5.663,1117,4.495,1744,5.663,2120,5.342,2121,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.674,465,4.09,885,4.678,1771,5.578]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.932,1516,5.797,2122,7.728]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.742,35,0.353,89,3.046,96,3.132,141,3.157,226,5.479,229,3.93,330,2.751,513,4.055,637,5.923,885,4.055,886,3.673,1117,4.574,2120,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.784,1023,3.499,1699,3.114,1794,3.706]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.839,1023,3.745,1794,3.967]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.05,11,1.063,15,3.638,16,1.798,42,2.002,74,2.976,80,2.501,89,1.847,100,1.812,141,2.198,354,4.313,510,3.854,571,3.795,732,3.984,967,5.015,1006,3.103,1023,5.14,1176,2.976,1177,5.015,2123,2.691,2124,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[829,0.474]],["title//docs/troubleshooting/rescue-and-rebuild/",[1117,6.348,2125,7.206]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1117,6.254,2125,7.099]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.965,8,3.887,9,0.046,65,1.682,80,3.308,89,1.701,131,2.402,148,1.708,226,2.833,229,5.019,323,2.203,368,1.934,433,3.496,515,3.973,633,3.736,637,3.308,643,2.495,938,3.887,941,2.965,1006,2.858,1117,6.835,1552,5.127,2125,4.619,2126,4.836,2127,5.127,2128,5.569]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.255,89,2.41,1516,5.916]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2129,7.728,2130,7.728,2131,7.728]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.518,29,0.773,34,3.602,35,0.556,42,1.709,89,2.312,96,2.582,120,3.344,141,1.876,148,1.583,157,3.193,190,2.923,207,3.066,226,4.558,229,3.24,310,3.148,415,3.106,513,3.344,571,3.24,623,3.028,633,3.463,637,4.495,885,3.344,961,3.872,986,4.752,1022,3.529,1117,3.772,1327,4.752]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[829,0.474]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.445,226,4.013,513,5.109]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[226,4.355,2132,8.559]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.724,9,0.04,14,1.01,35,0.603,80,1.99,101,2.279,117,1.498,226,5.642,255,2.561,377,4.322,469,3.169,513,6.932,568,4.177,640,3.019,896,3.608,960,3.99,983,3.99,1074,3.515,1917,4.428,2133,4.428,2134,4.81]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1014,6.649,1025,5.277,1026,5.99,1027,5.417]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1025,4.374,1026,4.965,1027,4.491,1809,5.199,1810,5.199,2135,5.986]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.073,100,1.876,133,5.193,372,0.901,377,3.767,422,2.882,465,3.546,608,4.466,639,2.426,1025,6.346,1026,5.193,1027,6.514,1111,5.437,1806,5.764,1808,4.835,1809,5.437,1810,7.542,1811,5.193,2136,6.26,2137,6.26,2138,6.26]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[829,0.474]],["title//docs/troubleshooting/troubleshooting/",[780,4.722]],["keywords//docs/troubleshooting/troubleshooting/",[780,4.683]],["toc//docs/troubleshooting/troubleshooting/",[5,0.777,14,0.449,35,0.18,49,0.509,89,2.905,90,1.57,96,1.6,120,2.071,131,1.379,143,0.913,148,1.6,155,2.146,156,1.462,158,1.978,167,1.504,173,2.145,175,2.281,181,0.822,207,1.899,226,2.655,276,1.627,300,2.232,324,1.12,335,3.024,346,3.641,366,0.878,368,1.812,372,0.46,398,1.736,433,2.007,448,2.944,465,1.811,477,1.95,478,1.13,620,2.336,623,1.876,643,1.433,650,1.338,672,1.702,676,1.405,905,2.281,942,2.353,1048,2.553,1389,2.777,1444,2.777,1710,4.165,1805,2.47,1866,2.777,2139,3.197,2140,3.197,2141,2.777,2142,3.197,2143,3.197,2144,3.197,2145,3.197,2146,3.197,2147,3.197,2148,3.197,2149,2.944,2150,3.197,2151,3.197,2152,3.197,2153,3.197]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[465,4.92,942,3.919]],["keywords//docs/platform/accounts-and-passwords/",[90,2.12,465,3.99,934,5.148,942,3.178]],["toc//docs/platform/accounts-and-passwords/",[29,0.785,45,2.332,46,2.302,89,2.337,90,2.301,100,1.57,207,4.544,324,3.166,372,1.1,377,3.152,392,4.666,433,4.802,672,2.789,756,2.729,940,4.732,941,2.789,942,4.481,1048,4.182,1958,6.344,2002,3.828,2126,4.549]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[460,4.65]],["keywords//docs/platform/support/",[460,3.388,2154,7.045,2155,7.045,2156,7.045]],["toc//docs/platform/support/",[89,2.81,297,7.103,460,4.422,696,2.756,1958,7.628,2157,9.197]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.068,14,0.81,24,2.549,42,1.908,89,1.761,303,1.41,1544,4.111]],["keywords//docs/platform/linode-backup-service/",[2158,4.885,2159,4.885,2160,4.885,2161,4.885,2162,4.885,2163,4.885,2164,4.885,2165,4.885,2166,4.885]],["toc//docs/platform/linode-backup-service/",[2,6.123,8,6.415,42,2.589,89,2.808,90,1.624,92,4.688,96,2.701,311,1.972,379,3.851,398,2.931,422,2.485,424,3.339,502,4.97,565,4.478,604,3.945,637,3.207,748,6.79,1077,3.945,1717,4.478,1811,4.478,2167,5.398]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[181,2.235,276,4.42]],["keywords//docs/websites/hosting-a-website/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/websites/hosting-a-website/",[0,0.965,4,1.559,5,2.09,9,0.071,29,0.721,32,3.066,35,0.271,49,0.766,60,1.453,89,2.626,143,1.374,148,1.475,155,1.979,181,1.237,192,2.23,240,0.986,241,2.203,276,2.447,334,5.877,366,1.321,477,2.934,478,2.539,567,7.913,603,3.169,673,2.313,690,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.383,303,2.126]],["keywords//docs/security/securing-your-server/",[303,2.06,309,2.879,643,2.682,2168,5.986,2169,5.986]],["toc//docs/security/securing-your-server/",[0,0.87,11,0.471,14,0.61,35,0.244,42,2.995,45,1.93,46,1.906,61,0.78,100,1.991,155,1.784,164,1.23,233,1.997,296,2.576,303,1.061,309,2.085,318,1.815,320,2.287,324,1.52,368,1.506,377,3.997,379,3.094,386,3.094,465,2.456,550,2.246,560,3.597,639,1.681,643,3.616,650,1.815,936,2.858,977,3.027,1132,1.407,1345,2.858,1415,2.723,1544,3.094,1672,3.993,1959,3.767,2019,3.027,2170,4.337,2171,3.993,2172,4.337,2173,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.981,29,0.998,49,1.06,749,2.945,1503,4.12]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.671,49,0.984,184,1.784,2174,4.408,2175,4.408,2176,4.312]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.65,184,1.728,2174,4.271,2176,4.178,2177,5.986,2178,5.512]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,1.193,2179,7.545]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,0.968,2179,6.118,2180,7.045,2181,7.045]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.058,35,0.395,207,4.162,318,2.932,623,4.11,696,2.1,1098,5.811,2179,8.143,2182,7.006,2183,7.006,2184,7.006,2185,7.006,2186,7.006,2187,7.006,2188,7.006,2189,7.006,2190,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.445,240,1.083,2191,7.262]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[240,1.175,2192,8.559]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.063,29,1.14,45,3.387,46,3.344,60,2.298,124,4.464,164,2.158,310,4.642,937,6.075,2191,10.135,2193,7.61,2194,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,756,2.376,1013,2.804,1997,3.956,2195,3.202]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2000,4.426,2001,4.855,2196,6.473,2197,6.473,2198,5.959]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.052,29,0.955,35,0.359,311,2.328,368,2.213,372,0.917,399,1.565,675,2.385,766,3.306,785,3.888,786,3.271,923,4.547,942,2.875,971,4.063,1131,4.001,1344,0.944,1797,3.943,1997,5.223,2002,4.657,2121,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[829,0.474]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,117,1.925,355,2.632,598,4.312,599,4.932,943,4.635]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[599,6.832,943,6.42]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.455,2,2.596,16,1.45,29,0.731,35,0.275,38,1.724,54,3.017,148,3.147,171,5.71,255,2.596,355,2.077,376,4.367,598,6.698,635,3.658,640,3.061,682,5.177,943,3.658,969,6.301,1006,2.503,1354,4.49,1470,6.918,2199,4.876,2200,4.876,2201,4.235,2202,4.876]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,1169,3.388,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.981,29,0.998,42,2.205,478,2.355,1120,4.062]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[478,3.026,1120,5.221]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.566,404,5.437,477,5.203,478,3.016,983,7.075,1124,9.805,1941,7.408]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1153,6.517,2204,7.206]],["keywords//docs/websites/cms/kloxo-guides/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.15,164,2.048,1013,3.04,1169,3.674]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.209,5,1.354,9,0.066,29,0.834,31,1.816,35,0.314,47,3.292,49,1.273,65,1.682,100,1.669,141,2.024,143,1.59,181,1.432,184,1.608,241,1.428,303,1.363,323,1.534,330,2.447,366,1.529,399,1.367,779,1.608,837,2.546,1028,2.104,1160,2.147,1684,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.582,465,4.467,2207,6.542]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[465,4.377,2207,6.41,2208,7.116]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.338,65,2.991,324,3.47,372,1.095,465,5.609,1344,1.127,2208,9.117]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[829,0.474]],["title//docs/websites/cms/directadmin/",[2207,8.02]],["keywords//docs/websites/cms/directadmin/",[2207,7.953]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,749,2.945,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1648,4.999,2095,4.999,2209,6.473,2210,6.473,2211,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.059,164,2.048,2204,5.99,2212,2.53]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.082,415,6.004,647,5.588]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.784,1023,3.499,2124,5.99,2203,6.272]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2213,7.045,2214,7.045,2215,5.843,2216,5.843]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.051,14,0.869,675,2.312,766,2.323,1120,3.769,1131,3.879]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[623,4.534,675,2.892,1120,4.714]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.632,9,0.067,17,1.891,18,1.904,202,4.332,675,3.044,766,3.887,780,3.973,786,4.176,1131,5.108]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[954,5.291,1132,2.558,2217,6.542]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[235,3.479,769,4.517,954,4.342,955,5.369,1132,2.099]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[829,0.474]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[164,2.236,954,5.291,1013,3.32]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.299,954,4.845,1013,3.04,2195,3.473]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,235,3.218,769,4.178,954,4.016,955,4.965,2195,2.879]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.15,749,3.194,1132,2.342,2217,5.99]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1782,5.148,1783,5.285,2218,7.045,2219,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[164,2.236,749,3.488,1013,3.32]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,1015,4.445,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.378,4,2.008,5,1.67,9,0.086,17,1.597,18,1.607,35,0.631,143,1.962,181,1.767,240,1.271,241,1.761,366,1.886]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1151,5.291,1153,5.916,1510,6.542]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[487,6.832,1151,5.742]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.809,31,1.048,35,0.304,85,3.851,190,5.206,200,4.688,203,4.478,207,3.207,229,3.389,233,2.485,240,0.741,305,3.945,335,3.129,354,3.851,519,3.293,618,3.207,623,3.167,672,2.874,766,2.03,827,3.945,982,4.97,1006,2.771,1087,3.249,1151,5.245,2220,5.398,2221,5.398,2222,5.398,2223,5.398,2224,5.398,2225,4.97]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.251,61,1.036,756,2.056,1013,2.426,1045,2.167,1576,3.039,2195,2.771]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,756,1.987,1576,2.936,2195,2.677,2198,5.126,2226,5.568,2227,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.341,164,1.752,756,2.205,1045,2.323,1576,3.258,2212,2.165]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[756,2.309,1579,4.618,2229,6.473,2230,6.473,2231,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.15,1132,2.342,1169,3.674,2217,5.99]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.228,5,1.376,9,0.078,29,0.848,31,1.57,35,0.532,49,1.287,65,1.709,100,1.696,143,1.616,181,1.455,184,1.634,241,1.45,303,1.979,366,1.554,372,0.814,399,1.389,603,3.728,779,1.634,1028,2.138,1160,2.182,1344,0.838,1517,3.552]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,1013,2.804,1169,3.388,2195,3.202]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,61,0.956,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,372,0.765,399,1.306,779,1.535,837,2.431,1003,4.618,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2175,4.111,2176,4.022]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2232,5.568,2233,4.836,2234,4.618]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.191,35,0.574,42,2.633,60,2.402,197,4.234,372,1.144,399,1.953,757,4.315,1344,1.178,1980,4.725]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.723,49,1.06,749,2.945,2175,4.751,2176,4.648]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1648,4.999,2095,4.999,2178,5.959,2235,6.473,2236,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.788,61,0.971,473,3.389,478,1.909,1013,2.273,2065,3.852,2066,2.961,2195,2.596]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2217,4.78]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.671,90,1.859,367,4.003,698,3.769,2175,4.408,2176,4.312]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[698,3.948,2238,6.473,2239,5.167,2240,5.167,2241,5.167]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.859,367,4.003,698,3.769,1013,2.601,2195,2.971]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2243,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,241,1.584,1013,2.601,1160,2.383,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.368,1519,4.133,1520,4.726,2244,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,241,1.584,1160,2.383,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.368,1519,4.133,1520,4.726,2245,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.41,877,5.763,1088,5.916]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2246,8.559,2247,8.559]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.42,156,3.406,207,5.801,456,4.908,496,5.754,640,4.676,1087,4.483,1088,9.005,2248,7.45,2249,7.45]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2006,4.999,2250,6.473,2251,5.959,2252,6.473,2253,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.981,29,0.998,89,2.035,1086,3.815,1088,4.996]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[650,2.949,1086,4.036,1088,5.285,2254,7.045]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.629,18,1.639,35,0.395,61,1.26,117,2.921,164,2.658,189,2.932,424,4.334,647,3.924,751,3.505,1013,2.949,1132,2.272,1308,3.661,1503,4.334,2149,6.45]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.784,1023,3.499,2175,5.152,2176,5.04]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2215,5.843,2216,5.843,2255,7.045,2256,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[829,0.474]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,169,2.984,1013,2.426,1991,3.194,2195,2.771]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,240,0.915,585,4.12,1013,2.804,2195,3.202]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[240,0.992,585,4.467,1132,2.342,2257,3.961]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,585,4.12,2123,2.964,2258,2.872]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/platform/stackscripts/",[20,4.627,47,2.776,527,6.542]],["keywords//docs/platform/stackscripts/",[20,3.797,238,4.004,257,4.855,2259,6.473,2260,6.473]],["toc//docs/platform/stackscripts/",[0,1.083,14,1.292,47,2.752,59,3.691,89,1.649,96,2.701,101,2.557,124,3.167,129,3.557,247,3.167,312,2.372,507,4.688,508,3.024,527,9.77,779,1.559,884,3.441,2040,3.621,2261,5.398,2262,4.97,2263,5.398,2264,5.398,2265,5.398,2266,5.398]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1013,2.601,1984,4.312,1985,4.225,1986,3.769,2195,2.971]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1132,2.16,1984,4.648,1985,4.554,1986,4.062,2257,3.652]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[240,0.915,585,4.12,1132,2.16,1295,3.066,2257,3.652]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.078,29,1.071,35,0.536,47,2.516,151,3.702,240,1.305,281,3.182,372,1.028,399,1.755,792,3.668,1295,4.375,1344,1.059]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2038,3.961,2195,3.473]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2267,5.204,2268,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.784,2038,3.961,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.784,2038,3.961,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.734,454,3.468,702,2.837,1013,2.426,2195,2.771,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.859,454,3.718,702,3.041,1132,2.004,2257,3.389,2271,4.515]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.626,90,1.734,454,3.468,702,2.837,2269,2.814,2270,2.792,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.734,164,1.634,247,3.381,2212,2.019,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.085,35,0.459,100,2.439,184,2.349,303,1.991,696,2.439,779,2.349,1028,3.075,2273,7.375]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.734,247,3.381,1132,1.869,2257,3.16,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.971,90,1.624,509,3.249,756,1.926,1013,2.273,1743,3.692,2063,3.293,2195,2.596]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.059,29,1.071,35,0.602,372,1.028,376,4.302,391,4.888,399,1.755,604,5.223,607,4.422,757,3.027,1344,1.059,2063,6.511,2279,6.208]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,1013,2.601,2195,2.971,2280,3.625]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2257,3.652,2280,3.907]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,1.618,141,1.962,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2257,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2269,2.814,2270,2.792]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.984,61,1.111,184,1.784,1013,2.601,2174,4.408,2195,2.971]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.626,255,3.068,929,3.565,2269,2.814,2270,2.792,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1055,2.98,2292,4.885,2293,4.885,2294,4.885,2295,4.243,2296,3.9,2297,3.9,2298,3.773,2299,3.9]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.299,140,3.808,1013,3.04,2195,3.473]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.713,140,3.715,883,3.554,2023,5.026]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,240,0.849,452,3.228,1013,2.601,1188,3.289,2195,2.971]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[240,0.849,304,3.144,675,2.312,766,2.323,1132,2.004,2257,3.389]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[701,3.525,1692,4.817,1694,6.118,2302,5.843]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,303,1.512,721,3.117,884,3.939,1013,2.601,2195,2.971]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2303,7.728,2304,7.728,2305,7.728]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.293,1132,2.16,2257,3.652,2306,4.751,2307,5.524]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/twiki-on-centos-5/",[164,2.236,2031,4.518,2212,2.763]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2031,4.137,2195,3.473]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1132,2.558,2031,4.518,2257,4.326]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[829,0.474]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.936,233,3.066,320,3.512,643,2.984,1084,4.314]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[447,3.1,643,2.682,978,5.512,1086,3.429,1108,5.512,1907,4.374]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.333,117,1.852,123,3.024,131,3.612,185,4.027,197,3.164,219,3.677,233,4.847,320,3.135,323,2.308,643,2.663,690,4.241,751,4.19,1091,6.283,1521,3.677,2060,4.343,2309,8.375]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.341,5,1.502,14,0.869,117,1.925,1053,3.354,1308,3.228]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1836,5.969,1894,6.712,2310,7.728]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[829,0.474]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,585,4.12,2269,3.252,2270,3.227]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.908,61,1.036,1013,2.426,1263,3.301,1969,3.423,1970,3.733,2195,2.771]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1971,3.57,1972,3.219,1974,3.165,1975,3.165,2014,3.219,2311,4.885,2312,4.885,2313,4.052,2314,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.083,29,1.505,35,0.438,57,4.681,309,3.74,372,1.119,399,1.91,696,2.331,1344,1.152,1969,5.966]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,1013,2.426,2195,2.771]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[678,5.167,1492,5.167,2315,6.473,2316,6.473,2317,6.473]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.08,17,1.405,18,1.414,35,0.478,40,2.446,181,1.555,192,2.803,240,1.344,244,3.798,286,3.387,304,3.076,318,3.547,366,1.66,372,0.87,460,2.907,673,2.907,1344,0.895,1472,4.219,2318,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[117,2.457,1308,4.121,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.095,31,1.446,35,0.42,49,1.186,143,2.128,240,1.023,372,1.072,713,4.318,1344,1.103,1620,4.608,2038,5.356]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2269,2.814,2270,2.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,749,2.945,1013,2.804,2195,3.202]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1496,6.41,1887,6.712,2320,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.984,143,1.765,169,3.199,1132,2.004,1991,3.424,2257,3.389]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,255,3.068,929,3.565,1013,2.426,2195,2.771,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1055,2.98,2296,3.9,2297,3.9,2298,3.773,2299,3.9,2322,4.885,2323,4.885,2324,4.885,2325,4.498]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,1013,2.138,2071,2.73,2072,3.623,2195,2.442]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.412,42,1.908,240,0.791,312,2.532,1132,1.869,2257,3.16]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.119,61,1.036,792,2.958,1013,2.426,1296,2.984,2195,2.771]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.293,61,1.197,276,3.388,1013,2.804,2195,3.202]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.162,61,1.076,199,2.756,701,2.995,2326,5.512,2327,5.986]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.401,14,0.81,30,2.485,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1055,4.297,1152,4.726,2328,7.045,2329,7.045]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,240,0.915,1013,2.804,1164,3.73,2195,3.202]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,240,0.915,585,4.12,2212,2.333,2334,2.679]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.037,61,1.036,720,4.323,756,2.056,1013,2.426,1045,2.167,2195,2.771]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,240,0.849,585,3.822,1013,2.601,1295,2.844,2195,2.971]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,1160,2.383,1819,3.041,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2006,4.999,2251,5.959,2337,6.473,2338,6.473,2339,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.971,323,1.488,324,1.892,465,3.058,1045,2.03,1576,2.847,2212,1.892,2334,2.172]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[756,2.514,1045,2.649,1576,3.715,2340,7.045]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.05,29,0.906,35,0.598,42,2.806,185,2.907,320,3.188,372,0.87,399,1.484,639,2.343,675,2.262,757,4.492,773,4.418,779,1.746,951,4.826,1045,2.273,1344,0.895,1576,3.188,2341,6.046,2342,6.046]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,2195,2.971,2306,4.408,2307,5.125]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.058,29,1.05,31,1.82,35,0.528,49,1.493,151,2.73,156,3.203,372,1.008,399,1.72,460,3.369,837,3.203,1296,5.472,1344,1.037]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.299,1013,3.04,1301,4.186,2195,3.473]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,756,2.056,1013,3.449,1362,3.797,2195,2.771,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1579,4.271,2344,5.986,2345,5.986,2346,5.512,2347,4.779,2348,4.779]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.08,35,0.42,38,2.634,65,2.25,100,2.233,184,2.151,303,1.823,323,2.053,372,1.072,696,2.233,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.734,454,3.468,702,2.837,2212,2.019,2271,4.211,2334,2.318]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.34,49,0.917,61,1.036,757,2.44,1013,2.426,1980,3.423,2195,2.771]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1364,3.495,1982,4.177,1983,4.177,2326,5.126,2349,5.568,2350,5.568,2351,5.126]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.784,2031,4.137,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.784,2031,4.137,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.971,197,2.874,478,1.909,1013,2.273,2075,2.874,2076,3.692,2195,2.596]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,478,1.84,819,3.267,2075,2.771,2079,2.797,2352,5.204,2353,5.204,2354,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.723,31,1.293,276,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.65,31,1.162,199,2.756,701,2.995,2355,5.199,2356,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.299,1013,3.04,1023,3.499,2195,3.473]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1931,6.486,1932,6.486,2195,3.388,2357,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[141,3.433,287,7.293,323,2.602,1023,5.492]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.293,117,2.075,1160,2.568,1308,3.48,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1160,2.496,2008,4.517,2358,6.473,2359,5.621,2360,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.293,117,2.075,241,1.707,1160,2.568,1308,3.48]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1519,4.133,1520,4.726,2359,6.118,2360,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.065,29,1.191,35,0.448,60,2.402,181,2.046,241,2.039,366,2.184,372,1.144,399,1.953,779,2.296,1160,3.067,1344,1.178]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2257,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.402,117,2.25,276,3.674,1308,3.773]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.256,701,3.238,2359,5.621,2360,5.621,2361,6.473]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.076,29,1.378,31,1.785,372,1.323,399,2.258,1344,1.362]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.299,2038,3.961,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2362,5.204,2363,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/phpfox/",[2364,7.719]],["keywords//docs/applications/social-networking/phpfox/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.299,2031,4.137,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.251,5,1.401,14,0.81,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1836,4.999,2365,6.473,2366,5.959,2367,6.473,2368,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.784,2054,4.09,2269,3.527,2270,3.499]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2369,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2257,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2302,5.369]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.784,1301,4.186,2269,3.527,2270,3.499]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,2212,2.165,2306,4.408,2307,5.125,2334,2.486]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.445,5,1.619,14,0.936,1053,3.615,1503,4.12]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.529,5,1.713,1503,4.358,2298,5.441]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.617,9,0.068,14,1.171,35,0.469,319,5.152,372,1.198,1344,1.233]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.341,11,0.671,90,1.859,1831,3.228,2269,3.017,2270,2.994]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.368,1519,4.133,1520,4.726,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.368,1519,4.133,2008,4.917,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,243,2.76,372,1.072,399,1.829,532,3.966,1160,3.766,1344,1.103,1545,5.443,1819,3.667]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.784,1301,4.186,2123,3.214,2258,3.114]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1132,2.558,2054,4.467,2372,4.326]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2373,5.568]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.199,117,1.925,792,3.171,1296,3.199,1308,3.228]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.256,39,2.576,792,3.322,1296,3.352,1894,5.621]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.463,9,0.06,29,1.093,31,1.416,35,0.411,40,2.951,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08,1834,3.778]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2257,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.08,29,1.116,31,1.896,35,0.55,49,1.186,151,2.902,156,3.406,372,1.072,399,1.829,1296,5.057,1344,1.103]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2257,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[678,6.17,2374,7.728,2375,7.116]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[240,0.992,1132,2.342,1164,4.045,2257,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.322,2377,6.473,2378,6.473,2379,6.473,2380,5.621]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.068,14,1.171,29,1.248,60,2.515,240,1.144,372,1.198,399,2.045,1164,5.877,1344,1.233]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,1164,3.73,2269,3.252,2270,3.227]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.322,1968,5.167,2381,6.473,2382,6.473,2383,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2269,2.814,2270,2.792]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.65,1692,4.093,1863,3.878,2356,4.965,2384,5.512,2385,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2257,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1836,5.969,1837,6.41,2386,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.402,276,3.674,1132,2.342,2257,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.162,199,2.756,701,2.995,2302,4.965,2370,5.199,2387,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.213,9,0.07,29,0.906,31,2.059,40,2.446,64,2.343,65,1.826,90,1.819,100,1.812,101,2.864,184,1.746,303,1.48,330,2.657,372,0.87,399,1.484,696,1.812,779,1.746,837,2.764,1028,2.285,1344,0.895,1684,4.535,1834,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[240,0.822,701,2.995,1992,4.374,2388,5.986,2389,5.986,2390,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2123,2.565,2258,2.485]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2269,2.637,2270,2.616]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.784,2054,4.09,2123,3.214,2258,3.114]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2391,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2123,2.403,2258,2.328]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-14/",[140,4.159,1132,2.558,2257,4.326]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.574,140,3.413,883,3.265,2023,4.618,2392,6.473]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2269,2.48,2270,2.461,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1683,2.618,1851,3.807,1852,3.807,2394,5.568,2395,5.568,2396,4.069,2397,4.069]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2269,2.814,2270,2.792]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2398,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2257,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2269,2.48,2270,2.461]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.087,14,1.199,372,1.227,779,2.463,1344,1.263,2071,6.242]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2269,2.637,2270,2.616]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.15,1132,2.342,1169,3.674,2257,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1132,1.724,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,1169,3.388,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.19,5,1.333,9,0.065,11,0.595,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.15,749,3.194,1132,2.342,2257,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1782,5.148,1783,5.285,2401,7.045,2402,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.255,184,2.277,1183,4.685]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1183,4.591,1615,6.17,2403,7.728]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[509,4.346,2404,5.417,2405,6.272,2406,6.272]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[117,1.865,369,3.878,856,4.491,2405,5.199,2406,5.199,2407,4.965]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,147,3.828,376,5.979,377,4.603,509,4.603,568,8.628,1468,4.549,1631,7.042,1771,4.046,1870,4.345,2040,5.131,2201,4.549,2318,4.549,2405,8.628,2406,9.177,2408,7.649,2409,5.238]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.671,303,1.512,721,3.117,884,3.939,2269,3.017,2270,2.994]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.65,447,3.1,650,2.505,721,3.02,2356,4.965,2385,5.512]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,117,1.795,286,3.228,355,2.455,571,3.617,2410,5.005,2411,5.005]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[117,2.195,2410,6.118,2411,6.118,2412,7.045]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[147,5.945,286,5.791,323,2.242,349,5.458,368,2.825,373,7.491,640,5.108,886,4.773,2410,7.066,2411,7.066]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.769,148,1.895,598,4.312,974,4.932,2279,5.366,2413,4.772]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[117,1.865,470,4.271,974,4.779,1521,3.703,2407,4.965,2414,5.512]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,376,4.58,464,3.605,676,4.351,892,5.429,971,4.851,974,8.787,1830,5.429,2279,8.6,2415,7.007]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2257,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,1169,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.205,117,2.075,184,1.923,1183,3.956,1503,4.12]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.081,35,0.602,38,2.175,43,3.565,141,2.236,240,0.845,345,4.389,368,2.136,372,0.885,696,1.844,757,2.605,1183,6.677,1342,5.987,1344,0.911,1740,4.293]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.671,42,2.046,184,1.784,1183,3.67,2269,3.017,2270,2.994]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.199,164,1.752,792,3.171,1296,3.199,2212,2.165]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.079,29,1.093,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2372,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2399,2.71,2400,2.672]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2123,2.565,2258,2.485]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.293,35,0.375,199,3.066,311,2.432,675,2.492]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.01,199,2.396,305,3.803,675,1.947,1701,4.791,2416,5.204,2417,5.204,2418,5.204]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.87,9,0.036,14,0.934,31,1.756,35,0.374,38,1.533,90,1.305,118,3.945,169,2.246,181,1.708,199,3.057,202,2.309,217,3.027,334,2.966,366,1.824,460,2.085,532,2.309,624,2.909,675,4.131,751,3.323,766,3.666,785,2.645,786,3.409,1131,2.723,2419,4.337,2420,6.641]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.119,61,1.036,792,2.958,1296,2.984,2212,2.019,2334,2.318]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2269,2.814,2270,2.792]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2269,3.017,2270,2.994,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.784,140,3.808,2269,3.527,2270,3.499]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.574,883,3.265,2023,4.618,2421,6.473,2422,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.915,9,0.037,24,2.017,35,0.469,40,1.845,64,3.227,90,2.076,100,1.367,101,2.161,140,5.744,141,1.658,157,2.822,184,1.317,191,2.528,235,2.452,303,1.116,323,1.257,368,1.584,372,0.656,404,2.908,508,2.555,779,2.68,837,3.806,1028,1.724,1065,2.555,1344,0.675,1834,2.362,2024,4.924]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,585,3.822,1295,2.844,2269,3.017,2270,2.994]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.581,355,2.837,376,4.008,743,4.751,890,5.144]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[890,5.969,944,6.17,2423,7.728]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.293,64,4.145,97,4.97,102,4.05,148,1.656,199,3.599,203,4.478,379,3.851,492,4.31,702,2.657,743,5.578,766,2.03,785,3.293,786,2.771,890,6.039,1091,4.05,1278,3.851,1717,4.478,1830,3.851,1996,4.97,2262,4.97,2424,4.97,2425,4.97,2426,4.97]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,117,1.925,148,1.895,355,2.632,376,3.718,640,3.879]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[117,2.408,944,6.17,2427,7.728]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.683,38,1.799,117,2.767,148,3.203,149,3.55,173,3.413,174,3.55,192,2.358,214,3.413,231,3.629,286,2.85,318,2.129,334,3.479,355,3.785,376,3.061,640,7.273,673,2.446,702,2.504,892,3.629,1414,4.418]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2280,3.907,2372,3.652]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2372,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2428,5.986,2429,5.986]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.558,22,4.062,148,2.042,598,4.648,972,5.316]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[117,2.195,470,5.026,972,5.624,2407,5.843]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.78,22,4.642,148,2.334,169,3.941,355,3.242,464,3.605,972,9.307,1083,6.609,1830,5.429,2415,7.007]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1457,4.265,2080,4.999,2081,4.73,2430,6.473,2431,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2355,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.784,1023,3.499,2269,3.527,2270,3.499]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2215,5.843,2216,5.843,2432,7.045,2433,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,749,2.945,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1648,4.999,2095,4.999,2356,5.369,2435,6.473,2436,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,424,3.822,478,2.185,515,4.408,1059,4.635,2437,5.366]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[478,2.491,780,3.44,1702,5.843,2437,6.118]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.049,14,1.56,49,0.946,284,4.745,477,3.626,478,2.961,591,4.745,745,3.916,751,2.974,1059,4.459,1230,4.591,1771,4.591,1830,4.241,2437,10.275,2438,5.944,2439,5.944]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.936,184,1.923,323,1.835,515,4.751,2440,5.784]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[117,1.865,147,4.374,398,3.25,780,2.923,2441,5.986,2442,5.986]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,234,5.561,323,2.097,355,3.242,398,4.132,1830,5.429,1869,6.075,2141,6.609,2440,10.125,2443,7.61,2444,7.61]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1132,2.558,2372,4.326,2445,6.092]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[235,3.787,769,4.917,1132,2.285,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.605,756,1.987,1576,2.936,2270,2.698,2446,5.568,2447,5.568,2448,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,241,1.584,1160,2.383,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.368,1519,4.133,1520,4.726,2355,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2269,2.637,2270,2.616]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.336,148,2.042,323,1.835,671,4.866,2450,6.131]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[117,2.016,490,5.959,944,5.167,1521,4.004,2407,5.369]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.927,14,0.822,19,3.083,58,7.188,148,1.793,303,1.431,323,1.611,355,2.49,671,8.369,2040,3.921,2450,5.382,2451,9.076,2452,8.277,2453,5.845,2454,5.845,2455,5.845]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.936,90,2.004,148,2.042,676,2.926,2456,5.784]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2456,6.712,2457,7.728,2458,7.728]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.532,148,2.895,231,4.037,316,3.728,355,2.411,368,2.808,392,3.451,464,2.68,676,4.787,805,6.246,991,5.209,1089,6.456,1944,4.693,2456,8.196,2459,5.658,2460,5.658]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.756,150,3.706,312,3.173,697,3.421]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.713,312,3.096,697,3.337,883,3.554]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.952,5,1.154,16,1.411,17,1.103,18,1.11,29,0.711,35,0.481,45,2.112,46,2.085,49,0.755,60,1.433,148,2.181,155,1.952,181,1.22,233,2.184,311,2.597,312,3.746,320,2.502,324,1.663,415,2.856,474,4.121,569,3.936,697,2.248,713,2.75,751,2.374,820,8.808,922,4.121,1033,3.788,1059,3.56,2461,4.369,2462,7.11]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.671,1984,4.312,1985,4.225,1986,3.769,2123,2.75,2258,2.665]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[143,1.646,180,3.264,241,1.477,1132,1.869,1160,2.222,2052,3.16,2372,3.16]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2052,3.55,2463,5.959,2464,5.959,2465,5.959,2466,6.473]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.07,35,0.6,60,2.576,65,2.576,243,3.161,372,1.227,532,4.541,1344,1.263]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1132,2.004,1585,4.772,1805,4.772,2372,3.389,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[756,2.514,1132,2.285,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1132,2.558,2038,4.326,2372,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.046,1132,2.004,1263,3.539,1970,4.003,2009,3.625,2372,3.389]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.051,14,0.865,29,0.922,35,0.347,38,2.175,156,2.812,181,1.582,290,3.609,324,2.155,335,3.565,366,1.689,372,0.885,399,2.106,478,2.175,713,3.565,780,3.004,1344,0.911,2009,5.795,2015,3.306,2018,4.614,2019,4.293,2020,3.985]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,184,1.664,323,1.588,676,2.532,1465,3.301,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[184,2.277,676,3.466,1465,4.518]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[829,0.474]],["title//docs/websites/wikis/confluence-on-centos-5/",[164,2.236,2212,2.763,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2471,4.491,2472,7.045,2473,5.624,2474,5.624]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.906,5,1.738,9,0.078,10,5.1,12,3.668,29,1.071,35,0.403,181,1.838,366,1.963,399,1.755,1013,3.009,2471,7.252]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1132,2.558,2372,4.326,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2471,4.491,2473,5.624,2474,5.624,2475,7.045]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.856,5,1.67,9,0.076,10,4.901,12,3.526,29,1.029,35,0.387,181,1.767,366,1.886,372,0.988,399,1.687,1013,2.892,1344,1.017,2471,7.137]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2372,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2476,5.621]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.326,9,0.054,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,372,0.951,398,3.59,779,1.909,1344,0.979,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2372,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2471,4.491,2473,5.624,2474,5.624,2477,7.045]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2471,4.491,2473,5.624,2474,5.624,2478,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.784,2123,3.214,2258,3.114,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2471,4.491,2473,5.624,2474,5.624,2479,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2480,5.167]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.302,9,0.053,35,0.366,57,3.906,148,1.991,181,1.669,243,2.405,265,2.988,311,2.371,372,0.934,386,4.631,398,3.524,779,1.874,1344,0.961,1396,5.866,2050,4.354,2066,5.574,2069,4.53,2070,4.631]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.015,117,2.25,355,3.077,869,5.578]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[214,4.342,369,4.193,869,4.999,2414,5.959,2481,6.473]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.821,40,2.218,117,2.463,318,2.294,349,3.678,355,3.368,424,3.391,473,3.441,570,4.547,869,8.311,1589,5.048,2049,4.234,2173,4.547,2482,5.482,2483,7.279,2484,9.273,2485,5.482,2486,5.482,2487,5.482,2488,5.482]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2364,4.932,2489,5.689]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.076,64,3.565,372,1.323,696,2.756,1344,1.362,2364,7.342]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.019,11,0.552,14,0.714,394,3.544,2035,3.346,2036,3.29,2037,4.676,2123,2.261,2258,2.19]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.083,11,0.586,14,0.759,394,3.768,2035,3.557,2036,3.498,2399,2.539,2400,2.503]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.061,35,0.614,38,2.634,265,3.429,311,2.721,368,2.587,779,2.151,2035,4.908,2036,7.49,2050,4.997]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2123,2.565,2258,2.485]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.65,1692,4.093,1863,3.878,2384,5.512,2490,4.624,2491,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.971,150,2.771,151,2.104,240,0.741,2212,1.892,2334,2.172,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.7,4,1.84,5,1.47,9,0.087,29,0.906,35,0.341,60,1.826,151,2.355,154,4.313,240,1.164,243,2.24,372,0.87,399,1.484,779,1.746,1344,0.895,2493,4.67,2496,6.546,2498,5.251,2499,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.586,150,2.771,151,2.104,240,0.741,2123,2.403,2258,2.328,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1969,3.67,1970,4.003,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2500,4.885,2501,4.498]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.087,29,1.278,35,0.481,57,5.133,309,4.102,696,2.557,1969,6.326]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2123,2.403,2258,2.328]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1012,6.092,2035,5.197,2036,5.109]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2036,5.544,2101,6.832]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[829,0.474]],["title//docs/databases/redis/redis-on-centos-5/",[140,4.159,164,2.236,2212,2.763]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.574,140,3.413,883,3.265,2023,4.618,2502,6.473]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.044,24,2.387,35,0.304,40,2.184,47,1.9,64,2.092,90,2.352,100,1.618,101,2.557,140,5.64,141,1.962,157,3.339,184,1.559,191,2.992,235,2.902,303,1.321,323,1.487,368,1.875,404,3.441,508,3.024,779,2.258,837,2.468,1028,2.04,1065,3.024,1834,2.795,2024,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-13/",[140,4.159,1132,2.558,2372,4.326]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.574,140,3.413,883,3.265,2023,4.618,2503,6.473]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.784,140,3.808,2399,3.396,2400,3.348]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.574,883,3.265,2023,4.618,2504,6.473,2505,5.959]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[151,2.104,240,0.741,241,1.384,368,1.875,1132,1.751,1240,2.992,2372,2.961,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.586,150,2.771,151,2.104,240,0.741,2399,2.539,2400,2.503,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[307,4.845,464,3.421,611,4.758,650,3.022]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[309,3.388,611,4.642,650,2.949,971,4.491]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.021,11,0.275,14,0.787,15,1.524,16,0.753,22,1.545,35,0.242,38,1.979,47,0.891,61,0.455,84,1.9,90,1.293,95,3.14,117,1.339,124,1.486,149,1.767,157,4.964,164,0.718,173,1.699,198,1.668,207,1.504,243,0.938,307,5.383,308,1.59,309,1.218,310,4.895,318,1.06,335,2.49,346,2.999,355,1.079,456,1.668,543,2.199,546,1.767,550,2.225,611,7.254,623,1.486,635,1.9,650,1.06,780,1.237,886,1.486,1056,1.451,1088,4.946,1132,0.821,1281,3.956,1308,1.323,1314,1.807,1389,2.199,1400,5.153,1417,1.504,1424,2.331,1470,2.021,1875,2.199,2201,2.199,2506,2.331,2507,2.532,2508,2.532,2509,2.532,2510,2.532,2511,2.532]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.06,35,0.411,47,2.568,151,2.842,169,3.778,180,4.132,240,1.002,281,3.247,391,4.989,422,4.434,699,6.108,1188,5.128]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.671,31,1.199,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.784,140,3.808,2123,3.214,2258,3.114]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.574,883,3.265,2023,4.618,2505,5.959,2512,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[148,1.767,1089,4.6,1743,5.603,1942,4.78,2513,5.306,2514,5.763]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1419,5.199,1942,4.965,2515,5.986,2516,5.986,2517,5.986,2518,5.986]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.02,14,1.249,148,2.725,192,2.358,231,3.629,296,3.022,355,3.19,357,4.061,676,2.235,702,2.504,1089,8.718,1419,7.715,1942,7.368,2173,4.22,2513,10.055,2519,5.087,2520,5.087,2521,5.087]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.065,35,0.445,531,4.418]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[533,5.621,534,5.621,536,5.621,2522,6.473,2523,6.473]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.076,17,2.138,18,2.152,35,0.518,531,6.248]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.15,164,2.048,1169,3.674,2212,2.53]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.172,5,1.313,9,0.064,29,0.809,31,1.784,35,0.304,47,3.235,49,1.245,65,1.63,100,1.618,141,1.962,143,1.542,181,1.388,184,1.559,241,1.384,303,1.321,323,1.487,330,2.372,366,1.482,372,0.777,399,1.326,779,1.559,837,2.468,1028,2.04,1160,2.082,1344,0.799,1684,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.299,140,3.808,2212,2.53,2334,2.905]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.574,883,3.265,2023,4.618,2524,6.473,2525,6.473]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[240,0.992,245,4.467,1132,2.342,1164,4.045]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.322,2380,5.621,2526,6.473,2527,6.473,2528,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[240,0.992,1132,2.342,1164,4.045,2372,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.322,2380,5.621,2529,6.473,2530,6.473,2531,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,1164,3.73,2123,2.964,2258,2.872]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.322,1967,5.959,1968,5.167,2532,6.473,2533,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.723,240,0.915,1164,3.73,2399,3.132,2400,3.087]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.322,1968,5.167,2534,6.473,2535,6.473,2536,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.837,99,3.194,117,1.795,837,2.635,906,3.381,1308,3.011,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[838,4.3,839,4.3,840,4.177,841,3.972,1308,2.909,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.837,99,3.194,164,1.634,189,2.412,837,2.635,906,3.381,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[164,1.579,838,4.3,839,4.3,840,4.177,841,3.972,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.041,99,3.424,368,2.146,837,2.825,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[838,4.624,839,4.624,840,4.491,841,4.271,1566,4.779,1567,4.779]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.15,117,2.25,1169,3.674,1308,3.773]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.491,5,1.67,9,0.076,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,372,0.988,399,1.687,1160,2.649,1344,1.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[355,2.837,376,4.008,598,4.648,2404,4.996,2537,5.784]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1521,4.358,2537,6.118,2538,7.045,2539,6.486]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,148,3.117,173,4.354,231,4.631,355,2.765,376,3.906,433,4.074,635,4.869,640,4.074,803,5.384,2537,10.28,2540,6.491,2541,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[148,2.215,391,4.938,392,4.405,2542,5.99]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[355,3.001,1510,5.843,2543,7.045,2544,7.045]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.602,14,1.064,38,1.825,117,2.357,148,3.222,149,3.602,179,3.602,274,3.772,291,3.401,318,2.16,355,2.199,377,3.106,392,6.407,433,3.24,456,3.401,608,3.682,622,4.483,639,2.001,844,4.483,1061,3.529,2542,7.431,2545,5.162,2546,4.752,2547,5.162]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,2.419,598,5.504,892,5.627]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,1.985,682,4.618,892,4.618,971,4.126,2539,5.959]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,148,2.192,355,4.048,676,3.141,877,5.223,892,8.45,971,6.057,1089,5.706,2291,5.362,2548,6.208,2549,7.148]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.15,1132,2.342,1169,3.674,2372,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.19,5,1.333,9,0.065,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1132,1.778,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.723,49,1.06,1169,3.388,2123,2.964,2258,2.872]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.037,61,1.036,720,4.323,756,2.056,1045,2.167,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.971,116,2.771,192,2.503,247,3.167,650,2.26,2212,1.892,2334,2.172,2550,4.689]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[116,3.322,1625,5.369,2550,5.621,2551,6.473,2552,6.473]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.08,35,0.598,40,2.446,49,0.962,143,1.727,148,1.854,150,3.103,218,4.313,323,1.666,368,2.099,372,0.87,465,3.424,696,1.812,921,4.826,1023,2.93,1344,0.895,2548,5.251,2550,9.212]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.06,61,1.197,1169,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.088,5,1.219,9,0.061,29,0.751,31,1.71,35,0.283,47,3.424,49,1.179,61,1.332,65,2.237,100,1.503,141,1.823,143,1.432,181,1.29,184,1.448,241,1.286,303,1.227,323,1.382,330,2.204,366,1.377,372,0.721,399,1.231,779,1.448,837,2.293,1003,4.355,1028,1.895,1160,1.934,1344,0.743,2553,5.015]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,143,1.45,180,2.876,241,1.302,1160,1.958,1176,2.5,2052,2.785,2123,2.261,2258,2.19]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1863,3.878,2463,5.512,2464,5.512,2490,4.624,2554,5.512,2555,5.512]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.068,35,0.591,60,2.515,65,2.515,243,3.086,372,1.198,532,4.434,696,2.496,1344,1.233]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.341,756,2.205,1045,2.323,1132,2.004,2282,3.461,2372,3.389]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2556,4.885,2557,3.773,2558,3.773,2559,3.773,2560,3.773]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2372,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[678,6.17,2375,7.116,2561,7.728]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1836,5.969,1837,6.41,2562,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/fedora-13/",[5,1.502,14,0.869,30,2.665,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/postgresql/fedora-13/",[1055,4.714,1152,5.185,2563,7.728]],["toc//docs/databases/postgresql/fedora-13/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.368,1519,4.133,1520,4.726,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.368,1519,4.133,2008,4.917,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2372,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2372,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2372,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2052,3.864,2465,6.486,2476,6.118,2565,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2257,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2052,3.864,2302,5.843,2565,6.486,2566,7.045]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2567,6.272]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2567,5.621,2568,6.473,2569,6.473,2570,6.473]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.076,60,2.777,144,7.103,372,1.323,1344,1.362,2567,7.987]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.341,245,3.822,756,2.205,1045,2.323,1132,2.004,2282,3.461]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2571,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.671,42,2.046,184,1.784,1183,3.67,2123,2.75,2258,2.665]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.15,749,3.194,1132,2.342,2372,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1782,5.148,1783,5.285,2572,7.045,2573,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.402,276,3.674,1132,2.342,2372,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.162,199,2.756,701,2.995,2387,5.199,2476,5.199,2564,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.671,49,0.984,184,1.784,2123,2.75,2174,4.408,2258,2.665]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2123,2.75,2258,2.665,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[164,1.888,240,0.915,585,4.12,1295,3.066,2212,2.333]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.08,29,1.116,35,0.55,47,2.622,151,3.805,240,1.341,281,3.316,399,1.829,792,3.823,1295,4.496]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,585,3.822,1295,2.844,2123,2.75,2258,2.665]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,585,3.822,1295,2.844,2399,2.906,2400,2.864]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.084,35,0.574,151,3.099,240,1.092,281,3.54,372,1.144,792,4.082,1295,4.69,1344,1.178]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,743,4.111,1940,4.451,2045,4.111,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.703,2045,4.618,2046,5.621,2258,2.791,2490,4.999]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.072,14,0.896,29,0.955,35,0.567,136,3.188,265,2.934,281,2.837,311,2.328,372,0.917,386,4.547,575,4.001,696,1.91,1340,5.088,1344,0.944,2045,6.273,2047,5.286,2049,4.922,2050,4.275,2574,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,1295,2.844,2123,2.75,2258,2.665,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.605,39,2.216,240,0.765,1295,2.563,2258,2.401,2491,5.126,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.054,14,0.929,29,0.991,35,0.373,39,2.631,141,2.404,151,2.576,169,3.424,181,2.319,240,0.908,281,2.943,323,1.822,372,0.951,399,1.624,702,3.255,1295,4.724,1344,0.979,1417,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,240,0.849,585,3.822,1295,2.844,2212,2.165,2334,2.486]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.048,33,2.26,300,3.768,486,4.05,779,1.559,2413,4.17,2577,4.689]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.845,33,1.821,199,2.003,240,0.598,312,1.912,487,5.315,701,2.177,2578,4.351,2579,4.351,2580,4.351]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.308,33,2.82,35,0.38,38,2.382,42,2.231,199,3.102,240,0.925,300,6.374,312,2.961,335,3.905,422,3.102,475,4.055,486,6.852,696,2.02,779,1.946,2019,4.703,2413,5.204,2577,5.852]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,884,3.673,2212,2.019,2334,2.318,2581,5.763,2582,5.763,2583,5.306]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2584,7.045,2585,7.045,2586,7.045,2587,5.441]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.078,35,0.403,47,2.516,64,2.77,100,2.142,151,2.785,184,2.064,303,1.749,372,1.028,696,2.142,779,2.744,1028,2.701,1344,1.059,2583,8.749]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.671,303,1.512,721,3.117,884,3.939,2123,2.75,2258,2.665]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.65,447,3.1,650,2.505,721,3.02,2490,4.624,2588,5.986]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.671,756,2.205,1176,3.041,1997,3.67,2123,2.75,2258,2.665]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1997,3.845,2000,4.426,2001,4.855,2589,6.473,2590,5.959]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.172,11,0.586,756,1.926,1045,2.03,1176,2.658,1576,2.847,2123,2.403,2258,2.328]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.605,756,1.987,1576,2.936,2258,2.401,2590,5.126,2591,5.568,2592,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.626,255,3.068,929,3.565,2290,4.6,2291,4.323,2399,2.71,2400,2.672]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2593,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.586,255,2.874,929,3.34,1176,2.658,2123,2.403,2258,2.328,2290,4.31,2291,4.05]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2594,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2123,2.403,2258,2.328]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1984,5.504,1985,5.393,2595,6.85]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1985,4.817,2595,6.118,2596,7.045,2597,6.486]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2595,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1386,5.99,1984,5.04,1985,6.542]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[749,2.863,1386,5.369,2597,5.959,2598,6.473,2599,6.473]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.092,372,1.323,696,2.756,1344,1.362,1386,7.628]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.586,756,1.926,1013,2.273,1176,2.658,1362,3.557,2123,2.403,2258,2.328,2343,4.31]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1579,4.271,2347,4.779,2348,4.779,2600,5.986,2601,5.986,2602,5.512]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.586,42,1.788,1176,2.658,1263,3.093,1969,3.207,1970,3.498,2123,2.403,2258,2.328]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2603,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.173,143,2.062,702,3.555,2604,6.272]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[241,1.659,665,5.621,668,3.895,1162,4.265,2604,5.621]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2604,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2123,2.565,2258,2.485]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,1160,2.222,1176,2.837,1819,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2605,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.965,9,0.078,11,0.78,19,3.787,29,0.721,31,0.934,35,0.537,60,1.453,65,1.453,126,4.732,167,2.262,181,1.237,243,1.782,311,1.757,366,1.321,372,0.692,399,1.181,478,1.701,532,2.561,1160,1.855,1344,0.712,1415,3.019,1521,2.975,1775,4.177,1776,5.957,1819,2.368,2284,3.116,2371,3.608,2606,7.182,2607,4.81]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,151,1.868,240,0.658,241,1.229,368,1.665,1176,2.36,1240,2.657,2123,2.134,2258,2.068,2393,3.42]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1683,2.618,1851,3.807,1852,3.807,2396,4.069,2397,4.069,2608,5.568,2609,5.568]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.056,29,1.029,35,0.387,201,5.306,240,1.271,241,2.372,244,3.078,265,3.162,311,3.38,372,0.988,399,1.687,1240,3.807,1263,3.935,1344,1.017,1854,5.153,2050,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.586,43,3.129,49,0.859,757,2.286,1176,2.658,1980,3.207,2123,2.403,2258,2.328]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2610,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.859,247,3.625,341,4.003,2274,6.647,2611,5.689]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2278,5.167,2612,6.473,2613,5.959,2614,6.473,2615,6.473]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.084,100,2.384,184,2.296,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2274,6.143,2611,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.004,247,3.907,341,4.314,2274,5.144,2616,5.784]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2278,5.624,2613,6.486,2616,6.118,2617,7.045]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2616,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2123,2.261,2258,2.19]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2123,2.403,2258,2.328]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,197,2.704,478,1.796,1176,2.5,2075,2.704,2076,3.473,2123,2.261,2258,2.19]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,276,2.747,1176,2.658,2052,2.961,2123,2.403,2258,2.328]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1863,4.193,2052,3.55,2490,4.999,2554,5.959,2555,5.959]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.19,49,0.808,90,1.528,119,2.944,185,2.442,303,1.243,336,3.056,618,3.017,2618,3.923]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2058,5.167,2618,4.999,2619,6.473,2620,5.959,2621,5.959]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.172,5,1.313,11,0.586,14,0.759,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1457,4.642,2080,5.441,2081,5.148,2622,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[240,0.822,701,2.995,1992,4.374,2623,5.986,2624,5.986,2625,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.723,1023,3.227,1176,3.278,2123,2.964,2258,2.872]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2215,6.41,2216,6.41,2626,7.728]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.626,90,1.734,367,3.733,698,3.515,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2627,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.313,11,0.586,14,0.759,30,2.328,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2628,5.986,2629,5.986]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.671,31,1.199,276,3.144,1176,3.041,2123,2.75,2258,2.665]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.605,31,1.081,199,2.563,701,2.786,2490,4.3,2605,4.836,2630,5.568]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[175,5.152,650,3.022,1669,6.272,2631,5.99]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2631,5.843,2632,6.486,2633,6.486,2634,6.486]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.067,14,0.805,35,0.323,117,1.118,119,2.079,123,2.913,174,2.504,175,2.56,181,0.923,192,1.663,274,2.621,297,6.884,316,2.364,323,1.578,336,2.159,379,2.56,475,2.159,618,2.131,650,3.413,681,3.116,751,1.795,886,2.105,904,3.303,908,2.864,990,3.116,1423,3.303,1521,2.219,1656,3.303,1995,3.303,2079,1.928,2425,3.303,2426,3.303,2461,5.272,2631,8.853,2633,3.303,2634,3.303,2635,3.588,2636,3.588,2637,3.588,2638,3.588,2639,3.588,2640,3.588,2641,3.588]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.401,14,0.81,30,2.485,123,2.932,185,2.771,639,2.234,2618,4.451]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2058,4.779,2618,4.624,2620,5.512,2621,5.512,2642,5.986,2643,5.986]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,756,2.056,1013,2.426,1362,3.797,2212,2.019,2334,2.318,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1579,4.271,2346,5.512,2347,4.779,2348,4.779,2644,5.986,2645,5.986]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.004,101,3.155,118,3.956,464,3.155,2646,5.784]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1203,4.02,1623,4.154,1624,4.154,2646,4.52,2647,5.204,2648,4.791,2649,4.791,2650,5.204]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.876,9,0.046,22,3.397,86,4.069,101,2.638,148,2.452,185,2.678,197,2.965,265,3.681,284,4.446,432,4.619,672,2.965,702,3.936,1414,4.836,1808,6.175,1900,6.944,2404,4.177,2467,3.973,2506,5.127,2646,8.878,2651,5.127]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,47,1.9,1317,4.31,1373,3.945,1762,4.17,2399,2.539,2400,2.503]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1317,4.445,1373,4.069,1377,4.836,1762,4.3,2652,5.568,2653,5.568,2654,5.568]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.534,9,0.082,16,1.558,29,0.785,35,0.56,64,2.03,74,2.578,244,2.347,255,4.072,258,3.001,324,1.835,330,2.302,357,4.182,372,0.754,509,3.152,513,3.393,696,1.57,749,2.317,780,2.558,906,3.073,1344,0.776,1373,5.589,1385,4.823,1762,5.908,1766,4.823]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.046,61,1.111,184,1.784,1183,3.67,2212,2.165,2334,2.486]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.087,35,0.509,38,1.852,43,3.036,64,2.03,141,1.904,150,3.926,345,3.737,368,1.819,372,0.754,427,3.073,696,1.57,757,2.218,779,1.512,937,6.106,1183,6.939,1342,5.338,1344,0.776,1740,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,241,1.477,1160,2.222,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.368,1519,4.133,1520,4.726,2605,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[148,2.419,2655,7.262,2656,6.85]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.446,61,1.164,2587,4.999,2656,5.621,2657,6.473]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.077,11,0.761,61,1.26,89,2.14,117,2.183,164,1.986,197,3.73,575,4.398,1132,2.272,1308,3.661,2123,3.118,2212,3.285,2258,3.021,2334,2.818,2656,8.143]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[829,0.474]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.567,5,1.756,15,4.346,16,2.148]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.114,4,1.677,7,6.17]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.865,2,5.591,4,1.642,5,1.492,7,4.898,8,5.657,14,1.204,24,2.282,90,1.178,136,2.582,148,0.697,167,1.841,217,5.976,304,3.122,318,3.584,323,1.079,431,6.965,885,2.536,922,1.973,1056,4.334,1517,1.426,1675,1.704,1940,3.024,2658,2.271,2659,6.92,2660,6.135,2661,3.915,2662,3.915,2663,2.271,2664,2.091,2665,2.271]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,2212,2.165,2280,3.625,2334,2.486]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2280,3.625,2399,2.906,2400,2.864]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/wikis/dokuwiki-engine/",[395,7.999,2666,7.999]],["keywords//docs/websites/wikis/dokuwiki-engine/",[241,1.981,2032,4.651,2667,7.728]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.087,100,2.557,184,2.463,303,2.088,696,2.557,779,2.463,1028,3.223,2666,7.853]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.341,11,0.671,90,1.859,1831,3.228,2399,2.906,2400,2.864]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.076,35,0.522,60,2.075,141,2.497,148,2.107,240,0.943,265,3.162,303,1.681,306,4.794,311,2.509,621,4.312,675,2.57,1831,5.85,2668,6.325]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.004,143,1.902,241,1.707,702,3.278,2669,6.131]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[668,4.24,749,3.116,2670,7.045,2671,7.045]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.084,100,2.384,184,2.296,241,2.039,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2669,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[164,2.236,2212,2.763,2289,5.197]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.556,164,1.697,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.173,9,0.079,21,3.388,29,0.876,35,0.467,40,2.365,60,1.765,167,2.749,181,1.503,240,0.803,243,2.166,303,1.431,366,1.605,380,4.08,399,1.435,564,3.852,779,1.688,1517,3.669,1830,4.17,2289,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.299,1301,4.186,2212,2.53,2334,2.905]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[829,0.474]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.173,244,3.236,2673,6.649,2674,6.649]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1819,3.804,2673,7.116,2675,7.728]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.095,14,1.047,38,2.634,65,2.25,147,5.443,185,3.582,281,3.316,372,1.072,375,4.318,2674,8.991,2676,7.45]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.083,14,0.759,61,0.971,394,3.768,2035,3.557,2036,3.498,2212,1.892,2334,2.172]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[164,1.888,1984,4.648,1985,4.554,1986,4.062,2212,2.333]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.469,64,3.228,100,2.496,184,2.405,303,2.038,561,5.942,696,2.496,779,2.405,1028,3.147,1986,5.08]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[829,0.474]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.734,157,3.565,349,3.866,354,4.111,732,3.797,1743,3.94]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[117,2.016,349,4.342,732,4.265,916,4.517,2677,6.473]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.054,14,0.929,38,2.338,90,1.989,99,3.664,351,5.484,354,4.717,355,2.817,433,4.151,456,4.357,643,2.963,732,8.026,1743,4.521,2404,4.96,2678,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2031,5.539]],["keywords//docs/websites/wikis/twiki/",[454,4.24,1819,3.468,2031,4.036,2032,4.24]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[829,0.474]],["title//docs/applications/messaging/advanced-irssi-usage/",[147,5.763,475,4.746,2679,6.296]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,206,7.075,233,3.927,372,1.227,427,5.004,1344,1.263,1470,6.809,1486,6.809,1580,5.203]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.936,638,5.524,1050,5.524,1479,5.144,2679,5.316]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.04,35,0.484,38,1.701,43,2.788,80,1.99,90,2.161,123,3.654,147,3.515,160,3.99,324,1.685,355,2.049,427,2.822,456,4.732,650,3.006,661,5.957,672,2.561,696,1.442,969,4.177,1263,2.755,1740,5.012,1746,4.428,1748,6.612,2404,3.608,2679,8.143,2681,4.81,2682,4.81,2683,4.81,2684,4.81]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.549,151,2.245,164,1.634,235,3.098,697,2.73,2212,2.019]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2399,2.539,2400,2.503]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.26,42,1.788,61,0.971,240,0.741,312,2.373,2212,1.892,2334,2.172]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.133,42,1.684,47,1.79,49,0.81,182,3.022,198,3.352,202,2.708,213,3.295,240,0.699,312,2.235,372,0.732,575,3.193,607,3.147,628,3.55,653,3.629,702,4.373,1087,3.061,1344,0.753,1417,4.447,1640,3.352,1991,2.819,2040,7.005,2041,3.629,2042,3.717,2043,3.717,2044,3.717,2413,3.929]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2399,2.539,2400,2.503]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[245,4.879,1132,2.558,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.784,2038,3.961,2399,3.396,2400,3.348]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2400,2.581]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.549,151,2.245,235,3.098,245,3.565,697,2.73,1132,1.869]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.412,42,1.908,164,1.634,240,0.791,312,2.532,2212,2.019]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.201,42,1.734,47,1.844,49,0.834,182,3.112,198,3.451,202,2.789,213,3.393,240,0.719,312,2.302,575,3.288,607,3.24,628,3.656,653,3.737,702,4.447,1087,3.152,1417,4.544,1640,3.451,1991,2.903,2040,7.089,2041,3.737,2042,3.828,2043,3.828,2044,3.828,2413,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2399,2.539,2400,2.503]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.063,35,0.657,181,1.957,366,2.09,372,1.095,607,4.708,757,3.223,1344,1.127,2063,6.715]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1984,5.504,1985,5.393,2685,6.85]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[241,1.806,1683,3.313,1987,5.148,2685,6.118]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.068,100,2.496,184,2.405,303,2.038,372,1.198,696,2.496,779,2.405,1028,3.147,1344,1.233,2685,7.233]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[829,0.474]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.047,117,1.795,154,4.111,575,3.617,1984,4.022,1985,3.94,2686,5.005]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[241,1.806,1683,3.313,1987,5.148,2686,6.118]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.082,696,2.99,2686,8.664]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.293,241,1.707,245,4.12,1132,2.16,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.368,1519,4.133,1520,4.726,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.293,245,4.12,1132,2.16,1160,2.568,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.368,1519,4.133,2008,4.917,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.059,35,0.602,38,2.527,60,2.159,65,2.159,181,1.838,243,2.649,323,1.97,366,1.963,372,1.028,1160,3.664,1344,1.059,1545,5.223,1819,3.518]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.412,42,1.908,240,0.791,245,3.565,312,2.532,1132,1.869]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1579,4.618,2688,5.959,2689,6.473,2690,6.473,2691,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.965,4,1.865,9,0.04,14,0.676,16,2.136,29,1.076,35,0.575,38,1.701,60,2.169,65,1.453,243,1.782,323,1.325,324,2.516,366,1.321,372,0.692,378,3.402,422,2.214,675,1.8,676,2.114,757,2.037,766,1.809,1006,2.469,1045,3.232,1344,0.712,1576,2.536,1580,2.934,1581,3.515,2228,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[164,1.888,240,0.915,304,3.388,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[701,2.995,881,4.178,1015,4.779,1692,4.093,1693,5.512,2692,4.965]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[240,0.849,245,3.822,304,3.144,675,2.312,766,2.323,1132,2.004]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[701,3.525,1692,4.817,1694,6.118,2469,5.624]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2399,2.71,2400,2.672]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.605,675,2.083,1692,3.807,1698,5.126,1863,3.607,2480,4.445,2693,4.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.888,303,1.63,721,3.36,884,4.245,1013,2.804]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.997,447,3.648,650,2.949,721,3.554]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.038,14,0.658,35,0.397,59,3.202,98,4.912,131,3.647,136,2.342,185,2.251,233,4.33,303,1.723,308,2.939,366,1.286,415,2.818,447,3.645,519,4.294,650,2.946,721,4.267,751,3.521,766,2.647,980,3.341,981,3.341,988,3.341,1084,4.56,1086,2.682,1314,3.341,1907,3.421,1908,3.512]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.402,164,2.048,276,3.674,2212,2.53]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.162,164,2.386,199,2.756,701,2.995,2692,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1684,4.459,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.445,240,1.083,430,6.092]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.436,240,1.061,1696,5.092]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[148,2.334,167,3.579,318,4.879,511,5.878,621,4.777,1402,5.878,2291,5.709,2318,6.609,2548,6.609,2694,7.61,2695,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.173,240,0.992,743,5.152,2696,6.272]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.675,148,1.708,199,2.563,240,0.765,706,5.126,743,3.972,2696,4.836]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.059,1580,6.263]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,303,1.512,721,3.117,884,3.939,2212,2.165,2334,2.486]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,447,3.352,650,2.709,721,3.265,2334,2.604]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.671,303,1.512,721,3.117,884,3.939,2399,2.906,2400,2.864]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.65,447,3.1,650,2.505,721,3.02,2480,4.779,2693,4.965]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.293,61,1.197,276,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.162,61,1.076,199,2.756,701,2.995,2587,4.624,2697,5.512]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.402,245,4.467,276,3.674,1132,2.342]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.162,199,2.756,701,2.995,2387,5.199,2469,4.779,2687,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-centos-5/",[164,2.236,2054,4.467,2212,2.763]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2698,5.568]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2699,3.407,2700,3.346]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.063,35,0.429,201,5.878,240,1.36,241,2.538,244,3.41,311,2.78,372,1.095,1240,4.217,1263,4.359,1344,1.127,1854,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.388,158,3.34,164,1.531,192,2.503,2071,2.902,2072,3.852,2212,1.892]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2399,2.388,2400,2.354]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.084,14,1.118,265,3.661,311,2.905,372,1.144,779,2.296,1344,1.178,2050,5.335,2071,6.043]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2399,2.388,2400,2.354]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.059,35,0.403,201,5.521,240,1.305,241,2.436,244,3.203,265,3.291,311,3.471,372,1.028,1240,3.961,1263,4.095,1344,1.059,1854,5.362,2050,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.971,90,1.624,247,3.167,2212,1.892,2273,3.852,2274,4.17,2275,4.689,2334,2.172]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[247,3.797,2273,4.618,2277,5.621,2278,5.167,2701,6.473]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.971,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2212,1.892,2334,2.172]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,1576,3.039,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,756,2.309,1045,2.434,1576,3.413,2334,2.604]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,2071,2.73,2072,3.623,2212,1.779,2334,2.043]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,2445,4.624,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,1295,2.844,2399,2.906,2400,2.864,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.605,39,2.216,240,0.765,1295,2.563,2400,2.581,2480,4.445,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.387,39,2.734,151,2.676,169,3.557,181,2.38,240,0.943,265,3.162,281,3.058,311,2.509,372,0.988,702,3.381,1295,4.26,1344,1.017,1417,4.081,2668,6.325]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.784,1040,4.845,2399,3.396,2400,3.348]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,1040,4.016,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[639,2.395,643,2.768,938,4.312,2071,3.321,2074,5.125,2704,5.689]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[123,2.648,240,0.715,643,2.332,1276,4.791,2060,3.803,2071,2.797,2074,4.317,2705,5.204]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[131,3.865,143,2.56,416,7.155,639,3.474,643,4.016,2074,7.434,2706,8.963]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.984,143,1.765,164,1.752,169,3.199,1991,3.424,2212,2.165]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[240,0.968,1991,3.904,1993,5.026,2707,7.045]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.984,143,1.765,169,3.199,245,3.822,1132,2.004,1991,3.424]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[164,1.888,240,0.915,1295,3.066,2212,2.333,2575,5.316]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.576,164,1.835,240,0.889,1295,2.98,2576,5.167]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.638,9,0.075,14,0.947,29,1.009,35,0.38,151,2.625,169,3.489,181,2.349,240,0.925,372,0.969,399,1.655,460,3.24,702,3.317,1295,4.77,1344,0.998,1417,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.752,1585,4.772,1805,4.772,2212,2.165,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.997,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.074,35,0.619,639,3.474,2468,8.675]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[151,2.104,164,1.531,240,0.741,241,1.384,368,1.875,1240,2.992,2212,1.892,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[151,2.104,240,0.741,241,1.384,245,3.34,368,1.875,1132,1.751,1240,2.992,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.07,35,0.481,240,1.463,241,2.73,372,1.227,1240,4.727,1344,1.263]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.388,61,0.971,151,2.104,235,2.902,697,2.558,2212,1.892,2334,2.172]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.626,1585,4.451,1805,4.451,2399,2.71,2400,2.672,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.703,756,2.309,2000,4.426,2400,3.001,2467,4.618]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.015,284,5.765,756,2.577,2708,6.272]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[756,2.758,2708,6.712,2709,7.116]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.054,14,1.267,21,3.832,35,0.508,38,2.338,169,3.424,465,3.745,475,3.979,756,3.217,971,4.215,987,6.088,1006,4.628,1640,4.357,1940,5.107,2708,8.911]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2710,7.545,2711,7.999]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1683,3.634,2710,6.712,2712,7.728]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.066,16,1.683,29,0.848,35,0.456,47,1.991,49,0.901,141,2.057,151,2.204,156,2.587,181,1.455,240,1.414,281,2.519,323,1.559,366,1.554,372,0.814,702,2.785,1068,4.134,1344,0.838,1417,3.361,2664,5.209,2710,8.196,2711,7.446]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.734,143,1.646,702,2.837,2212,2.019,2334,2.318,2713,5.005]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.216,61,1.001,668,3.351,1162,3.669,2025,4.177,2713,4.836,2714,5.568]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.058,14,0.985,31,1.36,33,3.924,35,0.528,142,3.924,144,5.411,240,0.962,372,1.008,1344,1.037,2413,7.242,2577,8.143,2713,8.143]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.341,61,1.111,90,1.859,1831,3.228,2212,2.165,2334,2.486]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.529,61,1.267,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,255,3.068,929,3.565,2212,2.019,2290,4.6,2291,4.323,2334,2.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1055,3.396,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2325,5.126,2715,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[303,1.512,643,2.768,929,3.822,1086,3.539,2300,4.772,2704,5.689]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2058,6.17,2716,7.728,2717,7.728]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.906,16,2.126,29,1.071,89,2.184,117,2.227,119,4.143,123,3.637,131,3.083,336,4.302,618,4.246,929,4.422,1086,6.517,2060,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.299,2212,2.53,2289,4.758,2334,2.905]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.556,61,1.076,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.067,9,0.075,21,3.082,29,0.797,35,0.436,40,2.151,60,1.606,167,2.5,181,1.368,240,1.062,303,1.301,366,1.46,372,0.765,380,3.711,397,3.389,399,1.306,532,2.831,564,3.503,779,1.535,1344,0.787,1517,3.338,1830,3.793,2171,4.895,2289,7.543]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1585,4.451,1805,4.451,2212,2.019,2334,2.318,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2718,4.795]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.788,61,0.971,473,3.389,478,1.909,2065,3.852,2066,2.961,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.173,143,2.062,669,5.277,702,3.555]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[668,4.651,669,5.647,1162,5.092]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.084,35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,669,7.445,696,2.384,779,2.296,1028,3.005]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.971,197,2.874,478,1.909,2075,2.874,2076,3.692,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,478,2.288,819,4.063,2075,3.446,2079,3.479]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.686,35,0.49]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.058,31,1.368,701,3.525,1433,6.486]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.134,31,0.947,35,0.541,49,0.776,80,3.002,124,2.861,145,3.766,146,3.563,148,1.496,149,3.403,153,4.235,181,1.254,192,2.261,199,2.245,316,3.213,335,2.826,366,1.992,378,2.31,422,3.34,511,5.604,571,3.061,639,1.89,673,2.345,676,2.143,696,1.462,941,2.596,1402,3.766,1666,4.49,1676,4.235,2019,3.403,2050,3.271,2719,4.49,2720,4.49]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.299,1040,4.845,2212,2.53,2334,2.905]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,1040,4.726]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.004,101,3.155,330,2.926,437,5.524,2721,5.784]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1623,5.167,1624,5.167,2648,5.959,2721,5.621,2722,6.473]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.494,9,0.061,14,1.047,90,2.241,174,5.199,355,3.174,367,6.326,415,4.483,432,6.179,437,6.179,2651,6.859,2721,9.461]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,184,1.664,743,4.111,1940,4.451,2045,4.111,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2045,5.026,2046,6.118,2334,2.834]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.084,14,0.929,29,0.991,35,0.578,136,3.308,281,2.943,372,0.951,386,4.717,575,4.151,696,1.982,1340,5.278,1344,0.979,2045,6.433,2047,5.484,2049,5.107,2574,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.542,151,2.814,2723,6.272,2724,6.272]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[240,0.822,2307,4.965,2723,5.199,2724,5.199,2725,5.986,2726,5.986]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.042,33,3.167,35,0.556,142,2.891,181,1.946,182,3.066,202,2.748,213,4.902,240,1.355,312,2.268,366,2.078,372,0.743,702,3.725,1068,5.529,1344,0.764,1417,4.495,2040,5.076,2041,5.399,2723,4.483,2724,4.483,2727,5.162]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[829,0.474]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.015,284,5.765,756,2.577,2728,6.272]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[757,2.741,1521,4.004,2709,5.959,2728,5.621,2729,6.473]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.046,14,0.783,29,0.834,124,3.267,133,4.619,149,5.58,156,3.655,200,4.836,213,3.607,229,3.496,283,4.177,290,3.267,320,2.937,324,1.951,368,1.934,386,3.973,607,4.946,676,2.447,757,2.358,1900,4.836,2728,8.878,2730,5.569,2731,5.127,2732,5.569,2733,5.569]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[829,0.474]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.239,4,1.341,185,2.971,639,2.395,643,2.768,1086,3.539]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2058,6.17,2734,7.728,2735,7.728]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.786,4,1.932,16,1.931,29,0.972,117,2.022,119,3.762,131,2.799,157,4.015,185,3.121,336,3.906,618,3.856,639,2.516,643,3.989,696,1.945,1086,6.265,2060,4.743]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.671,61,1.111,379,4.408,639,2.395,1352,5.689,1712,4.635]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[976,6.118,1712,5.285,2736,7.045,2737,7.045]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.505,324,3.14,391,6.129,465,5.076,976,7.784,1712,6.724]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.784,2054,4.09,2738,4.758,2739,4.758]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2740,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.784,2054,4.09,2399,3.396,2400,3.348]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2741,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.061,29,1.116,35,0.55,49,1.186,143,2.128,181,1.916,241,1.91,366,2.045,398,4.044,525,4.826,696,2.233,797,5.094,2054,5.531]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2212,1.779,2334,2.043,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.34,49,0.917,61,1.036,757,2.44,1980,3.423,2212,2.019,2334,2.318]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2351,5.512,2587,4.624]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2399,2.71,2400,2.672]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2234,4.965,2480,4.779]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.064,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,372,1.119,757,4.253,1344,1.152,1980,4.62]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.293,164,1.888,1160,2.568,1819,3.278,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.368,1519,4.133,2008,4.917,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.063,29,1.14,35,0.558,60,2.298,65,2.298,181,1.957,243,2.82,366,2.09,399,1.869,1160,3.818,1545,5.561,1819,3.746]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,1160,2.383,1819,3.041,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.256,1519,3.797,2008,4.517,2339,5.621,2743,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2399,2.906,2400,2.864]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2744,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,1819,3.591,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.004,118,3.956,330,2.926,331,5.316,2745,5.784]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1203,5.441,2649,6.486,2745,6.118,2746,7.045]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.849,9,0.054,14,0.595,15,2.547,16,1.259,17,0.984,18,0.99,35,0.367,49,0.674,90,2.392,118,2.515,143,1.209,155,1.741,169,2.192,174,2.954,199,1.949,217,2.954,240,0.895,265,4.885,274,3.093,324,1.483,355,1.803,392,2.582,464,2.005,473,2.657,523,3.379,639,2.527,886,2.483,938,2.954,1023,2.051,1061,2.894,1288,3.897,2745,8.846,2747,4.233]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[829,0.474]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.571,218,5.627,565,6.542]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.053,21,3.016,117,1.621,323,1.434,713,3.016,2748,5.204,2749,4.791,2750,5.204]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.473,38,2.137,149,4.219,196,5.251,324,2.118,368,2.099,475,3.638,564,5.585,624,4.056,707,5.566,869,4.67,1091,4.535,1830,4.313,2731,7.803,2749,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.293,164,1.888,241,1.707,1160,2.568,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.368,1519,4.133,1520,4.726,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.063,35,0.62,38,2.691,60,2.298,65,2.298,241,1.951,243,2.82,323,2.097,532,4.051,1160,2.934,2284,4.93,2371,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,241,1.584,1160,2.383,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.368,1519,4.133,1520,4.726,2339,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.08,29,1.116,35,0.42,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.553,117,2.25,323,1.99,713,4.186]],["keywords//docs/tools-reference/linux-system-administration-basics/",[117,1.621,199,2.396,757,2.204,780,2.541,793,3.559,2751,5.204,2752,4.791,2753,5.204]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.019,11,0.247,16,0.676,29,1.133,35,0.221,38,0.803,43,1.317,49,1.29,61,0.408,65,1.558,84,1.704,90,1.552,117,1.608,143,1.118,147,3.771,148,2.486,164,0.644,175,2.793,184,1.131,185,1.883,189,0.951,199,1.046,205,2.627,214,4.116,240,0.312,255,1.209,276,1.156,286,1.272,323,1.907,355,2.198,372,0.327,378,1.076,398,2.126,399,0.558,424,1.405,478,1.384,479,1.704,598,2.733,624,1.524,635,1.704,640,2.458,650,0.951,671,1.66,673,1.883,676,0.998,682,2.793,690,1.621,756,1.841,892,1.621,908,3.126,1006,1.166,1047,1.66,1059,1.704,1061,1.553,1068,1.66,1308,1.187,1396,4.043,1444,1.973,1544,1.621,1613,1.973,1869,1.813,1883,1.973,2141,1.973,2404,1.704,2440,1.973,2451,1.973,2541,2.091,2631,1.884,2632,2.091,2754,2.091,2755,2.271]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.984,143,1.765,240,0.849,245,3.822,304,3.144,1132,2.004]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[240,1.061,1863,5.007,2469,6.17]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.299,2054,4.09,2212,2.53,2334,2.905]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.556,1095,3.603,2054,3.39,2055,4.374,2756,5.986,2757,5.986]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1970,4.003,2009,3.625,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.052,14,0.896,29,0.955,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,399,2.159,478,2.253,713,3.694,780,3.112,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[829,0.474]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2489,5.689,2758,5.366]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[749,3.116,2101,5.624,2758,6.118,2759,7.045]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.087,14,0.985,35,0.395,100,2.1,184,2.023,286,3.924,303,1.715,372,1.008,696,2.1,779,2.023,1028,2.647,1344,1.037,2758,9.801]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/apache-access-control/",[240,1.083,464,3.736,639,3.057]],["keywords//docs/web-servers/apache/apache-access-control/",[199,2.563,240,0.765,303,1.363,701,2.786,1548,4.836,2760,5.568,2761,5.568]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.696,18,1.707,199,4.434,240,1.002,320,3.847,464,4.563,509,4.39,639,3.733,751,3.65,942,3.291,1061,4.989,1501,5.824,2424,6.717]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[192,3.087,240,0.915,310,4.062,464,3.155,639,2.581]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[199,2.98,240,0.889,303,1.584,701,3.238,1548,5.621]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.847,156,3.335,192,3.382,310,5.875,464,5.433,475,4.39,623,4.28,639,4.445,2225,6.717]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.859,367,4.003,698,3.769,2212,2.165,2334,2.486]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[698,3.652,2239,6.719,2240,4.779,2241,4.779,2762,5.986]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.006,5,1.219,9,0.08,31,1.71,33,2.099,35,0.634,38,1.773,42,1.661,60,1.515,65,1.515,100,1.503,184,1.448,240,0.689,303,1.227,323,1.382,372,0.721,380,3.5,696,1.503,698,5.374,699,2.84,756,1.789,779,1.448,1028,1.895,1130,3.5,1344,0.743]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,169,2.984,1991,3.194,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.671,90,1.859,367,4.003,698,3.769,2399,2.906,2400,2.864]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2763,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.978,5,1.186,9,0.079,29,0.731,31,1.682,33,2.041,35,0.606,42,1.615,60,1.473,65,2.191,100,1.462,184,1.408,240,0.67,265,2.245,303,1.193,311,1.781,372,0.702,380,3.403,399,1.197,696,1.462,698,5.286,699,2.762,756,1.74,779,1.408,1028,1.843,1130,3.403,1344,0.722]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.239,164,1.752,766,2.323,785,3.769,786,3.171,1132,2.004]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[164,1.835,1132,2.099,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.239,11,0.671,61,1.111,766,2.323,785,3.769,786,3.171]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.703,61,1.164,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[608,4.751,675,2.492,766,2.504,785,4.062,786,3.418]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1133,4.855,1134,5.167,2765,6.473,2766,5.621,2767,6.473]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.753,9,0.072,45,3.891,46,3.841,766,3.287,785,5.332,786,4.486,1280,6.236]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[829,0.474]],["title//docs/platform/linode-beginners-guide/",[89,2.41,1153,5.916,1522,7.262]],["keywords//docs/platform/linode-beginners-guide/",[1659,5.624,2752,6.486,2768,7.045,2769,7.045]],["toc//docs/platform/linode-beginners-guide/",[2,2.126,9,0.033,29,0.598,32,2.546,38,1.412,43,2.315,60,1.206,64,2.415,89,3.515,117,1.244,131,1.722,148,1.225,155,1.643,181,1.027,207,3.701,246,2.731,276,2.032,301,3.188,464,1.892,478,1.412,518,2.996,576,3.188,623,3.655,676,1.755,690,2.849,734,2.47,756,1.425,779,1.153,945,3.468,1022,2.731,1023,1.935,1771,3.084,1827,5.411,1866,3.468,2120,3.468,2434,3.468,2770,3.993,2771,3.993,2772,6.231,2773,3.993,2774,3.993]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[675,2.702,766,2.715,1130,5.04,1131,4.533]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1280,5.026,1692,4.817,2766,6.118,2775,7.045]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.711,9,0.07,202,4.541,766,4.004,786,4.378,941,4.541,1136,5.953,1280,6.086]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[829,0.474]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,169,3.199,378,2.927,532,3.289,2776,6.179,2777,5.689]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1280,5.026,1692,4.817,2766,6.118,2777,6.486]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.08,751,4.854,766,3.648,1280,6.922]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[119,3.581,148,1.895,336,3.718,618,3.67,1022,4.225,2778,5.366]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1710,4.779,1712,4.491,2778,5.199,2779,5.986,2780,5.986,2781,5.986]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.063,14,1.07,131,4.271,232,5.878,233,3.503,372,1.095,643,3.41,942,3.432,1130,5.311,1344,1.127,2778,8.6,2782,7.61]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.671,68,4.515,148,1.895,1022,4.225,1709,4.772,2399,2.906]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.067,14,1.144,131,3.509,232,6.284,233,3.746,372,1.171,643,3.646,942,3.67,1344,1.205,1709,7.984]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,756,2.376,1997,3.956,2212,2.333,2334,2.679]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1997,3.845,2000,4.426,2001,4.855,2783,6.473,2784,5.621]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.723,756,2.376,1997,3.956,2738,4.388,2739,4.388]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2785,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.723,756,2.376,1997,3.956,2399,3.132,2400,3.087]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2786,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2787,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1972,3.219,1973,3.219,1974,3.165,1975,3.165,2009,2.866,2013,3.665,2014,3.219,2788,4.885,2789,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.445,38,2.788,240,1.083]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.365,199,2.98,240,0.889,701,3.238,1979,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.526,35,0.429,38,2.691,61,1.368,148,3.037,181,1.957,217,5.311,240,1.045,366,2.09,671,5.561,951,6.075,960,6.312,2451,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.992,375,4.186,903,5.417,2376,5.417]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.822,375,3.47,624,4.016,1696,3.944,2376,4.491,2790,5.512]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.849,18,1.861,331,6.349,375,5.905,624,5.335,745,5.24,903,7.643,1429,7.322,2376,5.966,2393,5.674]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[174,5.04,175,5.152,240,0.992,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[240,0.968,780,3.44,1696,4.642,2791,7.045]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.353,149,4.369,181,1.61,240,1.479,273,4.998,311,2.287,366,1.719,368,2.174,525,4.055,676,3.816,780,4.241,1006,5.118,1402,4.835,1910,5.764,2720,5.764,2792,6.26,2793,6.26]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[240,0.822,701,2.995,1992,4.374,2794,5.986,2795,5.986,2796,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1045,1.636,1364,2.732,1925,3.264,2282,2.438,2557,3.361,2558,3.361,2559,3.361,2560,3.361,2688,4.006,2797,4.351,2798,4.006]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2799,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,749,2.945,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1648,4.999,2095,4.999,2693,5.369,2800,6.473,2801,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1457,4.642,2080,5.441,2081,5.148,2802,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.582,1055,3.652,1152,4.016,2803,5.986,2804,5.986,2805,5.986]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2399,2.71,2400,2.672]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1863,4.193,2052,3.55,2693,5.369,2806,6.473,2807,6.473]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.936,167,3.132,185,3.202,633,4.468,2808,5.144]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2808,5.441,2809,7.045,2810,7.045,2811,7.045]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.053,14,0.912,16,1.931,29,0.972,45,2.889,46,2.852,65,1.96,117,2.022,136,3.247,148,1.991,157,4.015,167,3.052,185,4.281,233,2.988,323,1.788,633,6.817,643,2.908,696,1.945,2808,5.013]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.15,164,2.048,749,3.194,2212,2.53]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[164,2.191,749,3.418,2692,6.41]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[123,3.674,148,2.215,1022,4.938,2812,6.272]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1710,5.167,1712,4.855,2812,5.621,2813,6.473,2814,6.473]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.074,14,1.26,372,1.289,1130,6.255,1344,1.327,2812,9.536]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.047,49,0.917,61,1.036,2015,3.098,2089,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2815,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2816,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2817,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2818,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2819,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.06,143,1.902,240,0.915,375,3.86,624,4.468]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[240,0.889,375,3.751,624,4.342,2696,5.621,2790,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.084,18,2.097,375,5.195,624,7.366,1402,6.923,2820,8.963]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1970,3.733,2009,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1984,4.312,1985,4.225,1986,3.769,2212,2.165,2334,2.486]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.459,64,3.154,100,2.439,184,2.349,303,1.991,372,1.171,561,5.805,779,2.349,1028,3.075,1344,1.205,1986,4.963]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.059,11,0.784,62,3.527,2821,6.272]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2032,4.651,2821,6.712,2822,7.728]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.851,35,0.6,64,3.306,561,6.086,1023,4.133,2821,10.084]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.065,189,3.301,667,4.811]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[241,1.427,667,3.396,668,3.351,1162,3.669,1683,2.618,1703,5.126,2025,4.177]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.068,14,1.171,29,1.248,35,0.469,64,3.228,189,3.486,667,7.006,696,2.496]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.15,749,3.194,1132,2.342,2823,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1782,5.148,1783,5.285,2824,7.045,2825,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.15,245,4.467,749,3.194,1132,2.342]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1782,5.148,1783,5.285,2826,7.045,2827,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,240,0.915,1164,3.73,2212,2.333,2334,2.679]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.077,12,3.596,14,0.985,29,1.05,60,2.116,80,2.898,205,4.7,240,0.962,296,4.162,311,2.559,372,1.008,399,1.72,1164,5.92,1344,1.037,2333,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.047,11,0.626,240,0.791,1164,3.228,1176,2.837,2699,3.866,2700,3.797]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.616,1968,5.624,2330,5.843,2828,7.045]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.079,12,3.744,14,1.026,60,2.203,80,3.018,205,4.894,240,1.002,296,4.334,311,2.665,372,1.05,1164,6.041,1344,1.08,2333,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2699,3.866,2700,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2829,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.936,123,3.388,131,2.872,643,2.984,2060,4.866]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2060,5.647,2830,7.728,2831,7.728]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.06,131,3.146,151,2.842,181,1.876,185,4.632,335,4.228,368,2.533,643,4.316,938,5.092,1086,4.179,1087,4.39,1456,5.824,2060,7.038]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2832,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1969,3.423,1970,3.733,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1969,3.092,1971,3.803,1972,3.429,1973,3.429,1974,3.371,1975,3.371,2014,3.429,2501,4.791]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.626,756,2.056,1013,2.426,1362,3.797,2343,4.6,2699,3.866,2700,3.797]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1579,5.026,2347,5.624,2348,5.624,2602,6.486]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2738,3.797,2739,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2798,4.498]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.844,14,1.015,1943,6.649,2808,5.578]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2808,5.441,2833,7.045,2834,7.045,2835,7.045]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.8,8,5.199,20,4.37,35,0.614,49,1.186,337,5.315,633,4.997,639,2.887,643,3.338,2808,5.754,2836,7.45]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2738,3.797,2739,3.797]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1863,4.564,2052,3.864,2837,7.045,2838,6.118]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.056,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,372,0.988,639,3.587,734,5.724,793,6.327,1006,3.526,1344,1.017,2052,5.075]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[164,1.752,756,2.205,1013,2.601,1362,4.071,2212,2.165,2343,4.932]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1579,5.026,2347,5.624,2348,5.624,2839,7.045]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.083,65,2.349,100,2.331,148,2.385,184,2.246,303,1.904,323,2.143,696,3.01,779,2.246,1028,2.939,1362,5.125]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[829,0.474]],["title//docs/databases/postgresql/centos-5/",[5,1.502,14,0.869,30,2.665,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/postgresql/centos-5/",[30,3.038,1055,4.297,1152,4.726,2840,7.045]],["toc//docs/databases/postgresql/centos-5/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/centos-5/",[829,0.474]],["title//docs/databases/postgresql/fedora-12/",[5,1.502,14,0.869,30,2.665,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/postgresql/fedora-12/",[1055,4.714,1152,5.185,2841,7.728]],["toc//docs/databases/postgresql/fedora-12/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-12/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.163,5,1.774,9,0.06,30,4.65,35,0.411,324,2.556,372,1.386,1056,4.179,1060,4.807,1344,1.426]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.208,5,1.85,9,0.063,30,4.747,35,0.429,324,2.666,372,1.095,1056,4.359,1060,5.014,1344,1.127]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,2212,2.019,2282,3.228,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2843,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.006,4,2.112,9,0.041,14,1.041,16,2.204,29,1.32,35,0.548,60,1.515,65,1.515,243,1.858,324,2.596,366,1.377,372,0.721,378,3.509,399,1.231,422,2.309,675,1.876,757,2.124,766,1.886,1045,3.313,1344,0.743,1580,3.059,2228,3.429,2282,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,240,0.849,1295,2.844,2212,2.165,2334,2.486,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,2576,5.624]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.058,14,0.985,29,1.05,35,0.395,39,2.788,151,2.73,169,3.628,181,2.412,240,0.962,281,3.118,372,1.008,399,1.72,702,3.448,1295,4.316,1344,1.037,1417,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.671,240,0.849,1295,2.844,2575,4.932,2699,4.145,2700,4.071]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.605,39,2.216,240,0.765,1295,2.563,2576,4.445,2700,3.669,2844,5.568]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.076,14,0.966,35,0.387,39,2.734,64,2.663,151,2.676,169,3.557,181,2.38,240,0.943,281,3.058,372,0.988,702,3.381,1295,4.817,1344,1.017,1417,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,276,2.932,2052,3.16,2212,2.019,2334,2.318]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1863,4.564,2052,3.864,2587,5.441,2697,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.06,35,0.411,123,3.712,183,4.58,303,2.357,372,1.05,639,3.733,734,5.959,793,6.586,1344,1.08,2052,5.283]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.041,101,2.927,102,4.635,368,2.146,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[840,5.285,841,5.026,1566,5.624,1567,5.624]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.053,61,1.744,164,2.375,189,2.488,263,3.164,550,3.078,1013,3.526,1132,1.928,1176,2.926,1238,4.343,1555,3.577,1699,2.563,1794,3.051,2123,2.646,2195,2.858,2212,2.083,2258,2.563,2845,5.944,2846,5.944,2847,5.944,2848,5.944]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[829,0.474]],["title//docs/tools-reference/tools/introduction-to-rsync/",[124,5.097,1937,6.935]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.964,6,4.836,885,3.607,1509,4.836,1937,4.445,2655,5.126,2849,5.568]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[422,3.927,938,5.953,1937,9.269,2850,8.53,2851,8.53,2852,8.53,2853,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.401,14,0.81,30,2.485,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.038,1055,4.297,1152,4.726,2854,7.045]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/how-to-configure-git/",[80,3.263,116,4.048,469,5.197]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.5,61,0.828,116,2.362,1308,2.405,1503,2.847,1622,3.997,1623,3.674,1624,3.674,1625,3.818,2855,4.603]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.42,38,2.634,116,5.591,185,3.582,197,3.966,265,4.496,355,3.174,422,4.496,437,6.179,604,5.443,1530,6.47]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.055,116,3.418,117,2.075,119,3.86,123,3.388]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[116,3.322,1622,5.621,1623,5.167,1624,5.167,1625,5.369]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.076,80,3.805,116,6.162,124,5.395]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[117,2.457,124,4.627,593,6.092]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[117,2.408,1808,5.969,2856,7.728]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.069,22,2.281,49,0.595,80,2.448,84,2.805,89,1.808,100,1.121,101,1.772,117,2.834,131,1.613,148,1.815,160,3.102,167,4.278,264,2.888,303,0.915,324,1.31,368,1.299,369,2.423,392,3.61,422,1.722,433,2.347,469,2.464,509,2.251,576,2.985,640,2.347,680,2.888,690,2.668,779,2.626,960,3.102,1344,0.554,1455,3.248,1468,3.248,1676,3.248,1776,4.908,1808,2.888,1959,3.248,2133,3.443,2857,5.918,2858,3.74,2859,3.74,2860,3.74]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[117,2.457,324,2.763,1061,5.393]],["keywords//docs/tools-reference/linux-users-and-groups/",[117,1.865,324,2.097,392,3.652,2542,4.965,2861,5.986,2862,5.986]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.398,22,2.819,148,2.866,156,2.113,167,3.946,173,3.1,274,3.377,291,3.045,316,3.045,324,3.274,355,1.969,377,2.781,392,6.116,422,3.208,433,4.375,465,2.617,570,3.833,844,4.013,968,4.254,1005,3.689,1061,6.389,1264,3.377,2542,5.781,2546,4.254,2863,4.621]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[323,2.173,2126,6.85,2127,7.262]],["keywords//docs/security/recovering-from-a-system-compromise/",[2864,7.045,2865,8.665,2866,6.486]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.538,35,0.373,89,2.755,207,3.928,234,4.832,623,3.879,885,5.841,1466,4.717,1811,5.484,2125,7.479,2483,6.088,2719,6.088,2867,6.612,2868,6.612,2869,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,240,0.791,304,2.932,675,2.156,766,2.167,2212,2.019,2334,2.318]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1692,4.817,1697,6.486,1863,4.564,2587,5.441]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.293,164,1.888,452,3.48,1188,3.545,2212,2.333]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1189,4.24,1504,4.917,1505,4.358,2870,7.045]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,452,3.228,1188,3.289,2212,2.165,2334,2.486]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1189,4.24,1504,4.917,1505,4.358,1902,6.118]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,2699,3.866,2700,3.797]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1189,4.24,1504,4.917,1505,4.358,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.671,31,1.199,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.055,89,2.035,99,3.691,101,3.155,1514,5.784]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[899,6.41,900,6.712,1019,7.116]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.302,16,1.931,29,0.972,35,0.366,80,2.685,89,2.72,226,3.302,366,2.79,513,4.205,575,6.379,637,3.856,643,2.908,885,4.205,1269,8.197,1516,4.869,2871,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.671,240,0.849,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.064,35,0.438,47,2.737,156,3.556,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,909,5.428,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2699,3.622,2700,3.557]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[240,0.822,701,2.995,1992,4.374,2872,5.986,2873,5.986,2874,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.341,5,1.502,14,0.869,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1457,5.092,2081,5.647,2875,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.341,5,1.502,14,0.869,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1836,5.969,1837,6.41,2876,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1457,4.642,2080,5.441,2081,5.148,2877,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1457,4.642,2080,5.441,2081,5.148,2878,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.251,5,1.401,14,0.81,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1457,4.642,2081,5.148,2366,6.486,2879,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[829,0.474]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.325,61,1.036,309,2.771,611,3.797,2212,2.019,2334,2.318,2880,5.763]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[650,2.949,2881,7.045,2882,7.045,2883,7.045]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.076,35,0.518,309,5.364,372,1.323,1344,1.362]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.051,11,0.671,240,0.849,1164,3.461,2738,4.071,2739,4.071]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.072,1164,3.353,2330,4.965,2838,5.199,2884,5.986,2885,5.986]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.984,61,1.111,143,1.765,1155,3.769,2212,2.165,2334,2.486]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[701,3.238,2886,6.473,2887,6.473,2888,6.473,2889,6.473]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.046,29,0.848,35,0.456,40,2.289,61,1.017,145,4.37,146,4.134,154,4.037,156,2.587,181,2.427,366,2.591,368,1.965,372,0.814,399,1.389,647,4.53,1155,4.933,1158,7.023,1159,4.914,1344,0.838,1501,4.517,1768,4.693,1905,5.209]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[175,5.152,398,3.921,650,3.022,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2865,9.209,2866,7.116]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.335,29,1.285,175,6.12,234,4.495,240,0.845,304,3.13,398,6.102,650,2.574,780,3.004,827,4.495,961,4.614,989,5.663,1669,5.342,1797,3.805,2069,5.987,2173,5.102,2890,6.151,2891,6.151]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.015,89,2.206,369,4.678,905,5.152]],["keywords//docs/networking/using-the-linode-shell-lish/",[369,4.564,905,5.026,916,4.917,1117,5.148]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,131,2.44,143,1.616,151,2.204,155,2.327,233,2.605,304,2.879,316,3.728,349,3.796,355,2.411,416,4.517,475,3.405,720,4.244,736,4.914,905,7.347,1084,3.665,2892,5.658,2893,5.658,2894,5.658,2895,5.658,2896,5.658,2897,5.658,2898,5.658,2899,5.658,2900,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.221,349,5.828]],["keywords//docs/networking/ssh/using-the-terminal/",[2901,7.728,2902,7.728,2903,7.728]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.32,22,2.613,88,3.057,90,1.289,142,2.4,148,2.756,160,5.457,167,4.226,184,1.237,206,3.554,218,3.057,233,1.972,323,1.813,349,2.874,355,3.412,377,3.96,430,3.309,509,2.578,574,3.554,598,6.272,599,3.42,624,2.874,682,3.057,732,2.823,885,2.775,917,3.945,943,3.214,1093,3.721,1743,2.93,1808,3.309,1873,3.554,2404,3.214,2904,4.284,2905,4.284,2906,4.284]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[124,4.627,477,4.811,478,2.788]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1702,5.843,2907,7.045,2908,7.045,2909,7.045]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.946,148,1.823,378,2.816,422,2.736,476,4.93,477,5.109,478,3.722,673,4.027,767,5.473,1230,4.591,1253,4.591,1254,4.745,1396,3.916,1719,4.93,2076,4.064,2754,5.473,2910,5.944,2911,5.473,2912,5.944,2913,5.944,2914,5.944,2915,5.944]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.984,143,1.765,164,1.752,240,0.849,304,3.144,2212,2.165]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[240,1.061,1863,5.007,2692,6.41]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[701,2.995,1492,4.779,1906,5.199,2916,5.986,2917,5.986,2918,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.004,143,1.902,702,3.278,1230,5.144,2919,6.131]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2920,8.559,2921,8.559]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.302,5,1.578,9,0.073,64,2.516,100,1.945,184,1.874,244,2.908,303,1.589,422,2.988,460,3.121,608,4.631,779,1.874,1028,2.453,1230,7.849,2919,9.357,2922,6.491,2923,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[829,0.474]],["title//docs/networking/dns/dns-manager-overview/",[90,2.373,478,2.788,877,5.763]],["keywords//docs/networking/dns/dns-manager-overview/",[1483,5.126,1484,4.836,1654,5.126,1655,5.126,1702,4.618,1822,4.618,2924,5.568]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.568,16,1.201,22,2.464,29,1.156,45,1.798,46,1.775,49,0.643,80,1.671,84,3.03,90,1.215,155,2.586,214,2.71,255,2.15,372,0.581,377,2.431,378,5.111,469,2.661,477,3.835,478,2.729,479,3.03,603,2.661,640,2.536,673,3.023,780,1.972,1006,2.073,1074,2.951,1396,6.874,1554,3.508,1821,3.35,1822,3.35,1909,3.508,1941,3.508,2911,3.719,2925,4.039,2926,4.039]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.06,61,1.197,749,2.945,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1496,6.41,1887,6.712,2927,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.671,49,0.984,749,2.733,1176,3.041,2699,4.145,2700,4.071]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1645,7.116,2928,7.728,2929,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.251,5,1.989,9,0.085,16,1.71,29,0.861,35,0.661,49,1.302,143,1.642,181,2.104,240,0.79,241,1.474,323,1.584,366,2.246]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.723,49,1.06,749,2.945,2738,4.388,2739,4.388]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1648,5.969,2095,5.969,2838,6.712]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/linux-package-management/",[65,2.382,90,2.373,117,2.457]],["keywords//docs/tools-reference/linux-package-management/",[264,4.02,680,4.02,1817,4.791,2930,5.204,2931,4.791,2932,4.791,2933,5.204,2934,4.791]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.192,61,0.614,65,3.327,90,2.94,100,1.023,117,1.714,150,1.752,164,0.968,185,1.642,197,1.817,264,4.25,318,1.429,323,0.941,355,1.454,372,0.491,391,2.334,422,2.533,475,2.055,593,2.637,680,2.637,909,2.383,1132,1.107,1308,2.875,1344,0.506,1503,2.112,1657,2.725,1658,2.725,1687,2.965,2931,5.066,2932,3.143,2934,6.364,2935,3.414,2936,3.414,2937,3.414,2938,3.414,2939,3.414,2940,3.414,2941,3.414,2942,3.414,2943,3.414,2944,3.414,2945,5.502,2946,3.414,2947,3.414]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":550,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2420,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2010,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2660,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":996,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2123,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2269,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2290,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2823,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2175,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2124,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":245,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1699,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2372,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2257,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":764,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1557,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2217,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":824,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2848,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":911,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1761,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1860,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":304,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":777,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1798,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1297,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1780,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1437,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":776,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":106,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2607,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1184,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2212,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1013,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1789,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1730,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1775,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1778,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":189,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":259,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1175,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1770,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":263,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2699,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2738,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2399,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":639,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1548,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2861,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2458,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":465,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":897,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1547,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1215,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":516,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":827,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":672,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":155,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2168,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2108,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1653,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":207,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":793,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2704,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1284,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":713,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2087,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1262,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":475,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":900,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1627,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2035,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":747,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1342,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":982,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":706,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1113,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1114,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1116,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":607,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2283,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2259,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1264,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":784,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1095,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1271,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":681,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1277,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1802,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":725,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1449,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1446,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1450,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1448,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1447,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1451,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1453,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2582,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":484,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":240,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1864,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1799,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1497,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":912,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2916,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2315,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":677,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1491,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2917,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2374,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":409,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2874,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1171,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1493,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2796,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2918,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2625,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2707,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1492,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2321,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1992,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1692,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2330,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2529,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2532,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2381,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1965,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1165,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2623,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2872,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2794,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2873,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2624,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2389,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1906,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":880,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":782,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":129,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1839,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":180,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":870,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":602,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1355,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":151,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":250,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1052,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":680,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2933,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1817,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1308,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1890,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1892,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":474,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2513,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1034,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1037,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2880,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2881,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":790,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2496,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2492,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1939,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":867,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":421,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1373,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1374,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2653,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1378,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2652,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":340,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":384,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2893,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":351,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1638,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1466,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":320,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1261,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2065,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":161,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":804,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":510,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1665,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":204,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2158,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":486,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":192,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":856,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1197,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2721,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2598,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":277,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":279,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1522,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2678,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":781,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1618,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":145,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2820,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1673,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1092,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":579,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1025,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":206,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1776,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1206,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1208,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":346,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":894,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":394,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2782,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":851,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2102,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":758,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1326,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1320,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":437,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2254,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":588,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1194,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2274,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2614,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2278,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":150,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1436,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2596,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1434,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2638,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2519,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2722,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":476,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":819,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2045,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":700,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":703,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2567,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2568,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":761,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2343,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2261,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2264,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1292,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":762,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2702,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":879,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2710,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1356,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":459,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":111,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":382,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":164,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2692,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1015,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":881,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1395,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1392,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1393,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1394,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1293,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2231,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":655,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":766,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1701,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1240,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":433,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1479,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1974,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1572,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1575,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1006,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1523,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1537,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1525,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1538,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1539,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2052,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2059,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2464,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2566,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2837,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2463,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2565,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2053,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":168,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2542,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":205,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2862,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":412,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":986,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":419,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2221,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1997,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2196,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2197,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2589,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1998,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2004,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":482,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2732,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1313,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":470,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":136,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2048,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1243,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1074,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1425,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":238,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1458,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1321,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":836,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":809,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":312,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":668,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":331,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2467,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1973,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1033,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1057,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":355,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1841,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":162,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":955,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1131,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2775,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":174,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2407,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2412,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":884,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":837,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":838,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":517,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":114,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1089,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2127,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":593,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2453,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":183,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2439,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":522,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2132,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1212,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":740,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1312,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1976,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":315,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1755,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2793,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2471,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2472,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2477,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2475,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2474,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2478,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2473,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":131,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1517,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":916,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1128,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":112,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":176,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":935,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":702,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":665,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1690,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1703,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1162,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2671,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":850,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":109,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1695,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":464,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2205,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2486,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1527,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":885,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":937,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":918,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":498,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2071,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1219,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1223,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2282,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2774,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2673,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1120,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1123,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2675,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2674,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2770,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":360,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2110,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":889,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":664,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1810,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":998,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2750,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2748,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2749,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":221,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1916,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1222,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1226,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1227,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1135,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1019,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":899,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2260,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1016,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":841,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1499,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":840,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2778,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2894,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2940,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":818,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":313,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":314,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2772,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":501,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2024,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":869,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2485,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1324,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1325,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2648,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1233,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":796,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1786,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2697,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2350,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2320,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2198,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2349,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1634,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1886,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":875,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1494,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1506,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2351,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2882,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":876,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1495,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1887,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2927,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2587,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2783,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2326,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1931,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2305,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1633,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1957,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1989,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":797,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":578,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1536,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2792,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2042,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":773,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2263,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":281,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":717,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1978,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1102,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1896,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2635,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":352,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":247,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2570,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1669,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":908,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1771,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2207,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2664,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":167,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":397,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2164,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2682,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2521,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1984,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2597,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":226,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":448,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2650,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2215,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1295,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1254,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":220,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":222,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1256,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":478,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2114,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1484,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2354,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1483,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2907,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2908,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2909,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":110,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":113,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":115,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":405,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":658,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":753,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":830,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2072,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2667,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2666,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2100,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":378,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1702,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1563,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1561,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1562,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1559,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1564,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2182,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2185,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1576,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1930,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2230,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1583,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2227,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2592,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1913,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2771,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1599,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2932,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1118,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1774,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":667,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1163,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1689,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":868,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1622,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2041,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2712,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1041,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":959,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1282,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":769,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":255,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":599,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2663,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2468,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2009,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2013,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2011,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2012,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2789,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2818,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2819,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":257,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":679,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":267,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2758,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2759,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":553,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":554,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":756,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2784,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2001,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":311,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2161,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":219,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1216,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2417,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2413,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":395,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":965,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":710,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2034,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":142,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2484,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2017,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1332,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2729,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2706,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2181,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":132,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1259,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1036,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1823,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1980,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2232,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1101,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":601,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1455,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2291,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1881,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":231,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1640,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1213,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":357,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":775,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1345,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1129,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1353,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1018,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":605,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":746,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1160,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2743,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":159,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2006,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1600,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2284,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2606,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":631,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2613,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1132,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2825,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2824,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2827,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2826,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2476,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2466,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2302,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2219,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1862,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1861,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1784,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1781,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2237,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2375,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1012,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2728,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2730,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":148,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2518,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":728,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2544,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":931,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1322,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":490,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2849,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":337,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1709,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":971,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":640,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2538,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2427,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1269,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":309,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1307,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1075,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":789,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":973,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":853,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":854,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2044,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":138,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2604,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2595,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2616,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1676,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2279,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2869,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":663,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":570,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1586,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1985,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1987,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2106,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1087,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2043,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2599,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1237,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2307,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2895,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1193,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2680,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1762,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2654,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2684,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2577,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2580,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1664,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1021,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1710,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":620,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1090,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":128,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1260,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2336,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1390,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2669,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2074,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1078,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1038,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1229,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1649,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1650,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":720,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":751,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1337,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2611,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1503,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":469,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2708,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1938,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":849,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":393,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":715,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2550,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":116,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":888,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1202,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2855,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2470,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1625,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1642,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":939,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":283,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1046,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1743,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2677,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2515,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2516,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1361,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1921,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":752,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1639,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1759,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1760,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1085,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1758,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1764,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":914,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1106,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1290,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1456,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1289,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":693,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":695,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":692,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":892,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1061,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2000,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":906,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1500,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1017,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":407,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2281,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1153,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":139,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1419,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1619,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":539,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":794,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":798,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":130,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":485,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":977,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2084,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2700,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":541,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":972,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":203,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":587,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":589,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2223,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1795,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":178,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2156,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":921,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2647,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1708,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":738,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":744,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1077,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":488,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":644,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1808,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":800,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1258,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":181,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1660,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":399,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":705,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1024,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":891,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":536,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2523,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1205,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1440,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":887,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":621,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":358,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1613,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":199,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1858,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2361,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1140,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1696,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1874,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":186,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":187,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1995,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":904,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2038,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2363,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2268,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2362,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2267,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":458,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1925,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1244,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1706,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2333,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2636,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":299,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":372,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":339,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":365,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1115,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":860,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":714,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1204,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":694,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1170,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":759,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1463,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1459,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2082,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1185,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1663,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1833,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1662,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1030,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":835,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":949,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1403,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":864,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":808,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1977,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":533,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1196,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1363,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1752,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1339,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1970,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1971,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2121,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":523,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":731,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":652,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":656,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":302,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":638,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2115,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2309,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":124,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1898,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1897,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":127,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1630,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1454,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2135,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1275,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1614,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":623,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":642,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2247,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1126,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1346,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2508,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1668,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":611,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1088,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2246,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1740,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1753,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1718,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2679,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2639,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2280,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":175,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2617,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2612,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2016,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1347,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2739,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2331,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2380,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2527,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2530,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2378,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2828,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":925,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":924,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2332,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2528,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2531,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2379,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1967,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2383,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1968,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2382,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1966,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1167,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":562,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1584,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1249,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1408,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":451,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":417,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1238,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":661,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":669,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":927,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2073,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":449,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":783,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1357,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1248,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2400,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":518,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":580,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":839,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":233,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1031,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2023,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":270,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2411,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2410,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":612,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":928,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2204,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1540,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":958,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2584,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":402,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":390,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":901,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1513,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1511,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":723,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":521,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":749,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1498,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2929,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1496,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1647,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1891,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1782,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1488,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":388,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":662,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":670,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1104,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":964,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":975,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2633,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1990,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":396,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1854,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1051,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2694,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":576,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1232,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1014,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1247,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1169,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2334,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1818,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2545,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1217,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1214,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":791,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1534,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":795,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1155,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2887,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2886,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":379,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":376,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":671,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1439,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1838,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2160,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2769,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2768,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1840,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1121,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1654,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1659,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1736,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":934,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1655,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2130,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2159,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1661,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2903,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2865,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":641,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":117,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2835,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2752,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2423,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2866,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":919,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2883,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1714,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1975,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1777,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1783,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1982,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2930,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1711,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1713,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2901,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2751,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1304,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2216,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1888,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":678,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2314,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":905,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":509,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2064,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1821,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2450,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":300,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":487,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1617,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":197,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1856,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":676,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2457,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":370,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":936,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2456,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":558,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1465,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":910,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2634,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2002,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2069,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1176,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2093,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":711,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2258,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":223,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1246,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":119,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2781,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2779,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2780,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":575,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":581,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":165,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":122,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1040,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1042,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1044,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":757,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1849,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1364,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1367,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2063,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":294,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1944,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":608,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":483,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1842,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2162,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2111,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2621,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2107,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":871,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2271,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":742,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2404,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2273,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2701,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2276,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2277,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":424,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":224,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1462,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1769,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":454,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2105,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":191,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1674,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":461,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2270,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2436,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1868,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1608,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1632,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2287,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2709,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":895,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2821,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":398,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2646,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1207,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1263,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":371,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1210,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1950,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":137,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":726,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":727,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1516,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2131,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1273,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1438,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":107,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":687,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":845,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":494,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1474,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2497,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1878,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1300,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2696,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2761,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2747,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2179,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1768,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2493,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2711,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1241,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2575,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2376,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2192,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":585,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":229,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":577,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2180,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":391,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2191,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":244,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2449,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1791,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":697,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1032,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1338,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":184,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1994,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":810,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1291,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2494,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1804,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1963,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":633,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2919,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2920,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":574,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2921,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2335,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2631,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1635,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":169,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1234,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":801,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1358,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1993,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":535,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":350,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1315,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2174,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1316,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1637,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2685,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2310,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2875,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2366,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2365,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2367,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1837,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2876,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2562,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1835,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2877,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1172,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2878,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2802,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2879,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2081,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1836,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2368,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1859,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2431,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1457,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2735,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":833,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2083,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2734,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2622,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2430,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2560,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":832,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1675,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1461,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1183,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2403,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":563,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":943,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2176,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2236,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":160,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1843,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2248,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":595,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2495,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":650,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2834,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1813,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1685,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":874,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":582,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2847,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":237,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1812,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2359,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2742,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":852,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2339,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2244,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1519,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2687,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2370,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2008,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2337,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2250,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1520,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1700,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2253,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2605,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2355,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2007,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1518,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2744,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1433,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1330,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2681,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1748,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":586,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":898,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":190,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":177,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1151,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":423,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1319,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":883,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":450,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1028,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":345,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":718,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2066,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":873,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":600,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":134,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1130,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1141,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2546,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":995,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1000,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":997,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1221,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1741,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1201,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":213,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2203,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2210,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":171,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1375,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2055,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1054,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2078,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1368,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":239,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":954,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":724,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1255,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":999,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1969,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2500,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2311,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2313,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2501,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2603,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2799,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":262,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":976,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1280,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2776,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1029,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":721,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2304,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2303,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":627,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1091,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1535,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":334,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":929,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2323,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2293,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2325,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2324,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2715,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2322,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1250,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2296,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2717,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2716,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2295,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2594,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2294,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2593,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2292,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2318,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":336,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1276,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2445,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2583,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":552,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2705,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":778,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2342,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2661,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":938,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1806,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2482,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":877,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1270,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":834,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1005,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":686,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1423,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2934,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2104,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1331,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":353,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":734,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1964,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1314,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2109,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1658,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":227,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":201,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2224,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":689,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":942,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":645,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1027,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1377,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1911,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2286,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":649,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":515,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1819,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2358,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2923,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1103,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":392,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":157,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1829,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":211,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":321,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":325,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2618,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2642,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2725,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":241,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1173,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2569,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2670,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1857,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1242,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2609,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1069,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1569,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1239,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1986,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2364,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1831,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2242,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":683,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":418,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2054,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2698,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2373,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2391,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2369,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2056,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2740,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2741,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1384,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1907,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":228,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2272,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":748,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2036,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1445,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2206,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":947,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":950,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":948,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":953,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2713,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":597,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":427,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1571,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1705,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":496,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1926,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":335,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":248,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2057,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":530,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1826,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1045,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2229,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1577,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2226,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2690,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2689,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2843,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2571,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2556,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2557,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2798,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2446,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2829,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2688,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2797,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2558,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2559,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":209,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2629,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1152,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2328,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2841,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2620,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2840,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2854,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2842,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2803,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2804,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2805,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2643,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":317,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2733,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1805,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":146,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2695,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1794,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1988,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1473,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1026,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":141,"title":{},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":696,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2719,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":768,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1846,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2167,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1468,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2419,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1475,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":519,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1376,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1285,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1956,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1556,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":286,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":342,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":144,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":513,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":367,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2551,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2240,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2640,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":566,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2089,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2090,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2816,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2817,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2787,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2091,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1544,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":200,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":473,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":251,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2039,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1991,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":212,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1485,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1084,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":442,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":737,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1311,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":739,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1310,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":172,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2060,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2830,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1565,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1566,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1567,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":338,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":684,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":688,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":108,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":825,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2586,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1059,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2581,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2585,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":381,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":674,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2169,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":963,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":383,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":495,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1188,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1903,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1505,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2870,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1902,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2301,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2442,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":389,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2225,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2846,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2298,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1943,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2833,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1481,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1008,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":862,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1750,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2092,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2014,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2125,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2120,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1533,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":477,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2126,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":923,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2262,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":140,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":624,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1181,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":817,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2524,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2503,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2392,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2525,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2505,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2422,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2022,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1179,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2421,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2021,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1178,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1180,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2504,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":698,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2762,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2243,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2239,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2241,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2627,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2238,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2763,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":492,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1510,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1809,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":859,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1354,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2539,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2454,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1053,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1055,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1050,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1177,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2720,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":185,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1125,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":408,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1218,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2408,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1065,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1063,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1064,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1790,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":265,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":202,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1117,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2208,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":940,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2637,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":896,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2076,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2079,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":743,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1591,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2790,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":284,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1482,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":194,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":903,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2103,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":941,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2864,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2085,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":843,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":805,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1266,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":295,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2931,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1007,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1937,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":452,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1504,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1189,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1191,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":310,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":368,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1923,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":926,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1814,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":504,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1404,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1405,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1489,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1487,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":506,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":842,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":505,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2086,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2341,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":480,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":592,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":565,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2163,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1288,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1624,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":275,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":356,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":732,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":930,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":682,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2724,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2483,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":303,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2416,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1464,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1460,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":848,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":978,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":847,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2537,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":983,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":785,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2764,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2765,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1924,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":846,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2233,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1981,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1467,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":628,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1068,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":741,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1920,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1615,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":260,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1211,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1960,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":354,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1380,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1678,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":647,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":691,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1712,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2736,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":327,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":328,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":820,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":236,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1884,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1573,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":369,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1723,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2703,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2113,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1279,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1616,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":786,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":373,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":497,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":493,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":154,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2306,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":217,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1379,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1381,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":532,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2070,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2676,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2723,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1107,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2686,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1047,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1983,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2046,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2574,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2489,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2552,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2101,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1815,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":126,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1816,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":326,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":779,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":709,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2755,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2405,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":278,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":330,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2649,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1209,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1927,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1797,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":537,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2371,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2731,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":745,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":196,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":301,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":893,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1253,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":361,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1435,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2047,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":215,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2297,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":210,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2726,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2195,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2357,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1801,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1848,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1847,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":643,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2809,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2737,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1108,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1105,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2808,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2810,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2811,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":675,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1134,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2767,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1133,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2418,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1693,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1697,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1694,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1698,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2384,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1704,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":258,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":261,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":527,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1142,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1336,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1560,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2672,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1486,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2662,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1417,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1686,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":802,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1251,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1228,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":799,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1252,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2220,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":571,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":158,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":235,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1094,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":922,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1093,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2117,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2116,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":719,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1220,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2541,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":985,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":329,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":430,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2033,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":479,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2777,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1636,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2540,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2745,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2285,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2222,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":915,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":460,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1035,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2746,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1127,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":657,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":659,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":660,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":708,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1779,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1509,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2655,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2657,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":149,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":323,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1949,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2340,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2170,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":704,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1056,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":359,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2543,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":520,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1299,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":974,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1942,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2517,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":218,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1174,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":863,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":865,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":866,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1415,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2062,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1546,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1585,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1588,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1587,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1477,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":410,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2154,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":349,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2902,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":472,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1272,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":598,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":729,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2615,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":858,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1199,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":308,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2155,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":214,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2481,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":648,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1009,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":280,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":735,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":305,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":763,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":772,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":348,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1070,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1139,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1164,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1166,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2885,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1168,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":909,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":538,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":722,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1081,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2438,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2632,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":341,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2275,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":307,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1022,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":736,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":780,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":829,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2718,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2003,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1298,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1471,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1011,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1822,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1010,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":730,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":319,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1590,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1086,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1568,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":807,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2031,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":182,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1080,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1934,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1230,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2491,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2590,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2435,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2448,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2432,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2588,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2177,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2255,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2213,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1763,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2096,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1999,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1192,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1646,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1850,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":882,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":913,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2928,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2884,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2785,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2480,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2800,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2786,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2077,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2234,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1306,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2838,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2693,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2027,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1645,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2095,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1904,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2490,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2691,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2356,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2433,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2178,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2256,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2211,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2214,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1895,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2028,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2097,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1303,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2626,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1648,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2029,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2266,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":616,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1305,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1309,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2075,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2352,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2353,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1200,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1302,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2393,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1187,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1190,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2406,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2656,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":414,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1521,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2061,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1328,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2171,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1023,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1932,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":690,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1598,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":375,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":147,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2579,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2578,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":324,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1940,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1296,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1507,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1508,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1386,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1067,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1623,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":499,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2037,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1910,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":886,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":118,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1203,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":120,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":596,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":787,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":366,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1979,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1478,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1512,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2441,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2871,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":685,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1928,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":271,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2288,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2440,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":411,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1767,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1318,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1317,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":253,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":491,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":447,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1476,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1274,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":230,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":481,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2925,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2098,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":960,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":551,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":143,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1683,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2025,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1157,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1370,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":362,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":712,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":701,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1863,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2822,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":666,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1301,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2289,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1323,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1267,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":760,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1715,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2791,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":619,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":276,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1885,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":125,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1739,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2487,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":462,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":890,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1515,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1555,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1933,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2507,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":363,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2032,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1554,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1245,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":123,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2813,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2814,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2831,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2812,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":446,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":803,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":232,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":531,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2522,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":534,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":422,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":831,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1099,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":179,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1195,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1198,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1545,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":291,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":792,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":618,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1788,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1787,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1785,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2300,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1514,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1154,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1156,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":413,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2015,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1972,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2018,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2520,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":540,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1738,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":774,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":264,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":500,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2099,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":489,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2549,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1362,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2644,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2344,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1365,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1366,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2347,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2645,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2601,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2348,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2839,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2346,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2602,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1369,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2345,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2514,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":590,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1751,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1754,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1096,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2714,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file diff --git a/themes/docsmith/static/build/lunr.json b/themes/docsmith/static/build/lunr.json index dfe34aec8f5..e04d30e606a 100644 --- a/themes/docsmith/static/build/lunr.json +++ b/themes/docsmith/static/build/lunr.json @@ -1 +1 @@ -{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.239,1,6.179,2,3.289,3,3.499,4,1.341,5,1.502]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.946,2,6.132,8,6.771]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.065,10,5.627,11,0.857]],["keywords//docs/development/java/install-java-jdk/",[10,5.514,12,3.967,13,6.41]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.499,4,1.341,7,4.932,14,0.869,15,3.718,16,1.838]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.446,3,3.666,4,1.405,6,5.621,7,5.167]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.985,5,1.934,8,5.551,15,4.786,16,2.366,17,1.849,18,1.861,19,4.194,20,4.666,21,4.61]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.405,23,6.649,24,3.194,25,6.649]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.486,26,7.045,27,7.045,28,5.624]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.117,9,0.066,16,2.378,22,3.397,24,3.536,25,9.412,29,1.198,30,2.402,31,1.081,32,3.55,33,2.331,34,3.887,35,0.314,36,5.569,37,5.569,38,1.969,39,2.216,40,2.253,41,3.973,42,1.844,43,3.228,44,5.127,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.119,32,3.673,33,2.412,47,2.028,48,5.005,49,0.917]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.067,16,2.42,17,1.891,18,1.904,29,1.219,32,5.187,33,3.405,48,8.978,49,1.646]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.065,11,0.857,54,4.879]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.765,54,4.358,55,7.045,56,5.843]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.089,54,6.689,57,5.26,58,7.591,59,5.977,60,2.64]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.059,11,0.784,50,5.99,61,1.299]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.843,51,4.185,52,6.486,53,6.486]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.064,11,0.845,48,6.755,50,8.33,61,1.399,62,3.798,63,5.318,64,3.015,65,2.349,66,7.778,67,7.161,68,5.683]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.765,70,7.222,71,6.272,72,6.272]],["keywords//docs/platform/meltdown_statement/",[71,6.118,72,6.118,73,5.285,74,3.468]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.224,71,5.46,72,3.508,73,3.03,74,3.799,75,4.039,76,4.039,77,7.224,78,4.039,79,4.039,80,1.671,81,4.039,82,4.039,83,6.287,84,3.03,85,4.485,86,4.594,87,6.287,88,2.882,89,2.883,90,1.215,91,6.287,92,3.508,93,4.039,94,4.039,95,4.594,96,2.021,97,3.719,98,2.819,99,2.238,100,2.313,101,1.913,102,3.03,103,3.508,104,4.039,105,4.039]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.059,39,2.874,106,5.578,107,6.649]],["keywords//docs/development/python/install_python_miniconda/",[107,7.116,108,7.728,109,7.728]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.065,110,3.422,111,6.092]],["keywords//docs/applications/containers/install_docker_ce/",[110,3.354,112,4.114,113,7.728]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.065,110,3.422,114,5.763]],["keywords//docs/applications/containers/install_docker_compose/",[110,3.354,112,4.114,115,7.728]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.065,116,4.048,117,2.457]],["keywords//docs/development/version-control/how-to-install-git-linux/",[116,3.967,117,2.408,118,4.591]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.065,116,4.048,119,4.571]],["keywords//docs/development/version-control/how-to-install-git-mac/",[116,3.967,118,4.591,119,4.479]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.097,65,2.349,116,5.709,120,7.206,121,7.161,122,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.065,116,4.048,123,4.013]],["keywords//docs/development/version-control/how-to-install-git-windows/",[116,3.967,118,4.591,123,3.932]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[124,5.097,125,7.206]],["keywords//docs/development/introduction-to-websockets/",[125,5.843,126,4.642,127,7.045,128,7.045]],["toc//docs/development/introduction-to-websockets/",[0,1.405,49,1.115,125,10.422,129,4.616,130,7.006,131,3.021,132,5.255,133,5.811,134,6.45,135,6.45,136,3.505]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.776,110,3.422,137,6.85]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.401,31,1.081,110,2.416,137,4.836,138,4.836,139,5.126,140,2.936]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.073,14,0.912,17,1.509,18,1.518,30,2.799,31,1.26,60,1.96,110,4.41,112,3.455,114,6.506,137,7.732,141,2.359,142,3.636,143,1.854,144,5.013,145,5.013,146,4.743]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,110,3.422,114,5.763]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[110,3.714,114,6.254]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.065,17,1.274,18,1.283,24,2.425,31,1.064,38,1.938,42,3.07,45,2.44,46,2.409,110,4.024,111,4.234,114,6.776,147,4.006,148,1.681,149,3.826,150,2.814,151,2.136,152,5.048,153,4.761,154,3.911,155,3.252,156,2.506,157,3.391,158,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[148,2.215,159,7.222,160,5.99,161,6.272]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.076,161,6.712,162,7.728]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.066,14,1.137,39,2.252,90,1.702,120,3.665,148,1.735,161,9.46,163,5.658,164,1.604,165,4.914,166,9.438,167,4.438,168,5.658,169,2.93,170,5.658,171,3.728,172,5.658,173,3.796,174,3.949,175,4.037]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[110,3.422,112,4.199,131,3.401]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.713,110,3.057,112,3.751,176,7.045]],["toc//docs/applications/containers/docker-container-communication/",[0,1.083,5,1.313,9,0.064,14,0.759,16,1.606,17,1.255,18,1.263,19,2.847,29,0.809,30,2.328,35,0.304,110,4.373,111,4.17,112,5.365,114,3.945,131,3.964,151,2.103,177,3.768,178,3.851,179,3.768,180,3.058,181,1.388,182,3.207,183,3.389]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[181,1.857,184,2.085,185,3.473,186,5.99]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.683,17,1.315,18,1.324,29,0.848,35,0.319,120,5.239,136,2.831,154,4.037,164,1.604,181,2.427,184,3.145,185,3.889,187,7.534,188,6.067,189,2.368,190,3.205,191,3.136,192,2.623,193,5.209]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.015,31,1.402,32,4.603,33,3.022]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.5,33,3.235,194,7.116]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.568,9,0.064,17,1.255,18,1.263,31,1.048,32,4.984,33,3.272,35,0.304,39,3.111,49,1.245,60,1.63,180,3.058,181,1.388,195,3.497,196,4.688,197,2.874,198,3.557,199,2.485,200,4.688,201,4.17,202,2.874,203,4.478,204,3.851,205,3.621,206,4.478,207,3.207,208,4.97]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.756,15,4.346,16,2.148,30,3.114]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.187,30,2.582,209,3.878,210,5.986,211,5.986,212,5.986]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.805,5,2.596,17,1.662,18,1.672,20,4.193,21,4.143,45,3.182,46,3.141,185,3.437,213,4.63,214,4.795,215,5.1,216,7.148,217,4.988,218,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.194,219,4.467,220,6.649,221,6.649]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[219,5.822,222,7.045,223,5.624]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.748,8,3.602,14,1.064,17,1.2,18,1.208,90,1.553,148,1.583,203,4.281,219,3.193,220,9.084,221,9.084,223,8.385,224,3.987,225,5.162,226,2.626,227,4.752,228,7.567,229,4.75,230,4.483,231,3.682,232,3.987,233,2.376,234,3.772]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[148,1.895,164,1.752,189,2.586,235,3.321,236,5.125,237,5.366]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[237,6.712,238,4.781,239,7.728]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.816,5,1.638,9,0.091,17,1.566,18,1.576,49,1.454,54,4.168,143,1.924,237,5.852,240,0.925,241,1.727,242,6.738,243,2.497,244,3.019,245,4.168,246,4.608]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.312,89,1.888,143,1.765,185,2.971,247,3.625]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.178,89,1.829,110,2.598,112,3.187,185,2.879,248,5.512]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.068,14,1.17,16,1.357,29,0.683,31,0.885,34,3.183,45,2.03,46,2.004,89,1.393,90,1.372,110,1.979,112,4.432,131,2.976,142,5.199,148,1.399,167,2.145,181,1.173,185,4.003,197,2.428,206,3.783,247,4.884,248,6.354,249,4.561,250,4.561,251,3.961,252,4.561,253,3.783,254,4.561,255,2.428,256,4.561]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.986,49,0.808,143,1.45,164,1.44,184,1.466,189,2.126,257,3.81,258,2.909]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.081,143,1.59,164,1.579,258,3.19,259,5.568,260,5.568,261,5.568]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.067,9,0.075,14,0.747,17,1.236,18,1.244,28,4.245,31,1.032,35,0.3,257,5.801,258,5.22,262,4.41,263,2.831,264,4.107,265,2.448,266,3.793,267,6.173,268,9.113,269,9.113,270,6.414,271,4.245,272,5.317,273,4.245,274,3.885]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[275,6.272,276,3.674,277,6.649,278,6.649]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.863,39,2.576,275,5.621,279,6.473,280,6.473]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.07,16,1.411,21,2.75,24,2.099,29,0.711,39,1.888,59,3.245,134,4.369,143,1.355,150,2.435,155,1.952,243,1.758,244,2.126,275,4.121,277,7.85,278,8.718,281,2.112,282,4.745,283,3.56,284,5.676,285,4.745,286,2.658,287,3.665,288,3.936,289,4.745,290,2.784,291,3.127,292,7.11,293,4.745,294,4.369,295,4.745,296,2.819,297,3.665]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.055,61,1.197,63,4.554,184,1.923,187,5.316]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,184,2.034,186,5.843,187,5.624]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.978,5,1.186,9,0.06,14,0.685,17,1.134,18,1.141,35,0.409,120,4.7,143,2.475,186,4.045,187,8.19,193,4.49,199,3.34,298,4.876,299,4.49,300,3.403,301,3.893,302,4.704,303,1.193,304,2.481,305,3.563,306,3.403,307,4.868,308,3.061,309,2.345,310,2.974,311,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.747,35,0.49]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.354,30,2.401,209,3.607,312,2.447,313,5.568,314,5.568,315,5.568]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.55,17,1.482,18,1.491,30,3.792,35,0.496,148,1.955,174,4.448,209,4.129,308,4.001,316,4.199,317,6.373,318,3.68,319,3.943,320,3.361,321,6.373,322,6.373,323,1.756,324,3.081,325,6.373]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.083,11,0.586,33,2.26,49,0.859,164,1.531,189,2.26,326,5.399,327,4.689]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.65,33,2.505,164,1.697,327,5.199,328,5.986,329,5.986]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.02,9,0.073,17,1.183,18,1.19,35,0.287,41,3.629,42,1.684,49,1.192,54,3.147,64,1.972,119,2.948,123,2.588,136,4.902,171,3.352,246,3.479,281,2.264,309,2.446,327,9.806,330,2.235,331,4.061,332,5.087,333,4.684,334,3.479,335,2.948,336,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[132,5.417,184,2.085,337,5.152,338,6.272]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.576,184,1.869,338,5.621,339,6.473,340,6.473]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.927,9,0.068,16,1.739,29,0.876,39,2.326,40,2.365,60,1.765,80,2.418,90,1.759,106,4.515,132,6.209,155,2.405,198,3.852,337,4.17,338,5.077,341,3.787,342,5.382,343,9.609,344,5.845,345,4.17,346,4.08,347,5.845]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.015,348,6.272,349,4.845,350,6.649]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[348,4.836,349,3.735,350,5.126,351,4.618,352,4.836,353,5.126,354,3.972]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.302,9,0.053,35,0.366,90,3.057,123,3.302,148,1.991,348,10.721,351,5.384,352,5.637,353,5.976,354,6.352,355,2.765]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.733,356,5.366,357,4.932,358,5.689,359,5.366]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.576,356,5.621,360,5.959,361,5.959,362,6.473]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.758,9,0.069,14,0.531,17,0.879,18,0.884,29,1.108,39,1.504,61,0.68,63,2.584,80,1.564,85,2.697,106,2.919,118,2.245,142,3.343,155,1.555,164,1.072,184,1.091,189,1.582,199,1.74,202,2.012,255,2.012,288,3.135,291,2.49,323,2.037,355,1.61,356,7.294,360,3.48,361,6.808,363,3.48,364,2.638,365,3.78,366,1.038,367,3.866,368,2.072,369,2.448,370,3.78,371,3.78,372,0.544,373,3.48,374,2.762,375,2.191,376,2.275,377,2.275,378,1.79,379,2.697,380,2.638]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.838,29,0.926,218,4.408,381,5.689,382,5.366,383,5.689]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.576,218,4.618,312,2.844,382,5.621,384,6.473]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.086,17,1.2,18,1.208,39,3.011,80,3.706,106,3.987,142,4.239,151,2.011,184,2.185,218,3.682,291,3.401,312,3.325,323,1.422,363,4.752,366,1.417,382,9.122,383,4.752,385,6.041,386,3.682,387,5.162,388,5.162]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.776,180,4.467,389,6.85]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[110,3.057,112,3.751,389,6.118,390,5.843]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.083,42,2.149,47,2.284,110,2.816,111,5.013,141,2.359,142,3.636,155,2.67,180,3.676,181,1.669,389,9.497,391,4.438,392,3.959,393,5.013,394,4.53,395,5.976,396,4.869]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.051,31,1.199,35,0.348,47,2.175,312,2.715,390,5.125]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.256,47,2.278,110,2.809,112,3.446,390,5.369]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.071,17,1.118,18,1.125,29,0.721,31,0.934,35,0.271,47,1.693,89,2.194,110,3.117,141,1.748,155,1.979,181,1.237,190,4.868,191,3.98,234,3.515,312,3.156,390,9.454,397,3.066,398,2.611,399,1.764,400,3.99,401,4.81,402,4.81,403,4.81,404,3.066]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.221,110,3.77]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[110,3.354,112,4.114,405,7.728]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,110,5.152,183,5.626,406,7.434]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.515,238,3.822,240,0.849,366,1.697,407,5.689]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[408,4.836,409,5.568,410,5.568,411,4.069,412,5.568,413,5.568,414,5.568]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.652,9,0.063,49,1.211,89,2.325,96,3.807,110,3.302,131,3.282,320,4.013,407,10.135,411,5.561,415,4.58,416,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.784,20,4.237,150,3.706,417,6.272]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.133,417,6.118,418,6.486,419,7.045]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.045,16,0.996,17,0.779,18,0.784,19,1.766,20,1.965,28,2.674,29,0.502,35,0.189,40,1.355,47,1.179,59,2.29,60,1.636,80,1.386,149,2.337,150,1.719,151,2.111,188,2.512,202,1.783,230,2.909,286,1.876,291,2.207,296,1.99,297,2.587,316,2.207,368,1.163,417,7.476,418,7.217,420,3.349,421,3.349,422,3.141,423,2.909,424,2.072,425,5.418,426,5.418,427,1.965,428,3.349,429,3.349,430,2.587,431,3.084,432,2.778,433,2.102,434,3.349,435,8.608,436,3.349,437,2.778,438,3.349,439,5.418,440,3.349,441,3.349,442,2.778,443,3.349,444,3.349,445,3.349]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.723,16,1.981,29,0.998,446,5.524,447,3.448]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[446,7.099,447,4.432]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.052,16,1.896,29,0.955,35,0.359,42,2.11,45,2.837,46,2.801,49,1.4,60,1.925,74,3.137,80,2.637,100,1.91,131,3.792,136,4.399,309,3.065,310,3.888,446,9.001]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[448,6.649,449,5.765,450,5.99,451,6.272]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.804,449,5.624,451,6.118,452,3.681]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.173,9,0.048,14,0.822,17,1.359,18,1.368,35,0.329,96,2.924,148,1.793,155,2.405,391,3.997,394,4.08,449,6.607,450,6.865,451,7.188,452,3.054,453,5.077,454,4.981,455,5.845,456,3.852,457,5.845,458,3.274,459,5.845,460,2.811,461,5.845]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.936,47,2.344,151,2.595,247,3.907,462,5.784]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[110,3.354,247,4.534,462,6.712]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.136,17,1.118,18,1.125,19,5.847,29,1.076,35,0.405,45,2.141,46,2.114,56,3.99,80,1.99,118,2.857,146,3.515,151,3.349,155,1.979,462,8.859,463,4.81,464,2.279,465,2.724,466,4.81,467,4.81,468,7.182,469,3.169,470,5.124,471,4.81]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.936,89,2.035,142,3.73,251,5.784,472,5.784]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.152,98,4.917,427,4.133,472,6.118]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.071,11,0.522,17,1.118,18,1.125,19,2.536,35,0.537,38,2.539,47,1.693,49,1.368,56,3.99,57,2.895,60,1.453,62,2.349,89,2.912,90,1.447,98,5.012,150,2.469,182,2.857,217,3.357,244,3.218,427,2.822,430,3.715,472,7.464,473,3.019,474,4.177,475,2.895]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.035,90,2.004,155,2.739,476,5.524,477,4.062]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[378,3.066,476,5.369,477,3.948,478,2.288,479,4.855]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[155,4.448,169,4.526,217,6.1,476,8.969,477,6.596]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[480,6.542,481,7.887,482,6.092]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.855,480,5.369,482,4.999,483,6.473,484,6.473]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.074,17,2.084,18,2.097,124,5.258,323,2.47,480,7.434,482,6.923]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.015,300,5.04,485,5.578,486,5.417]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[485,5.969,487,6.17,488,5.797]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.067,17,1.891,18,1.904,35,0.583,184,2.349,300,5.679,368,2.825,415,4.897,485,6.284,486,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.784,14,1.015,62,3.527,489,6.272]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[489,4.52,490,4.791,491,5.204,492,4.154,493,5.204,494,4.154,495,4.791,496,4.02]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.952,9,0.039,16,1.411,17,1.103,18,1.11,24,2.099,198,3.127,217,3.312,226,2.414,301,3.788,364,3.312,422,2.184,430,3.665,489,9.587,492,3.788,494,5.676,495,7.85,496,7.833,497,4.745,498,4.745,499,8.526,500,8.526,501,4.745,502,4.369,503,4.745]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.304,224,4.17,238,4.837,251,4.689,323,1.488,504,3.557]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[504,5.092,505,7.116,506,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.433,9,0.029,14,0.504,16,1.703,17,0.834,18,0.839,29,0.858,35,0.46,40,1.451,89,1.096,90,1.079,96,1.795,120,2.324,142,2.01,148,1.756,173,2.407,224,5.519,238,6.769,302,1.948,368,1.246,372,0.516,458,2.01,473,2.252,504,6.822,507,3.116,508,5.322,509,2.159,510,2.287,511,2.771,512,3.116,513,2.324,514,3.303,515,2.56,516,3.303,517,3.588]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.733,238,3.822,518,4.635,519,3.769,520,5.689,521,5.689]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[158,3.444,219,3.444,337,3.972,492,4.445,519,3.396,522,5.568,523,4.445]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.035,14,0.925,16,1.957,17,0.996,18,1.002,29,0.986,35,0.241,45,1.907,46,1.883,49,0.682,89,1.309,90,1.289,136,2.143,143,1.224,155,1.762,158,4.07,190,3.726,197,2.281,243,1.588,296,2.545,302,3.572,355,1.825,364,2.99,376,2.578,520,9.423,521,8.274,524,6.58,525,2.775,526,6.58,527,3.554,528,3.554,529,6.58,530,3.721]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.511,29,0.761,89,1.552,169,2.63,217,3.544,240,0.697,368,1.764,531,2.845,532,2.704]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[533,6.118,534,6.118,535,7.045,536,6.118]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.064,17,1.808,18,1.82,35,0.566,169,4.027,181,2,240,1.068,366,2.136,508,4.357,531,6.231]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.044,35,0.304,312,2.373,368,1.875,537,4.689,538,4.31,539,4.31,540,4.31]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[537,6.118,539,5.624,540,5.624,541,6.118]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.918,18,0.924,35,0.485,45,1.758,54,2.443,64,1.531,112,2.102,136,3.09,151,2.964,184,1.14,191,2.188,229,4.775,312,3.343,316,2.602,368,1.371,369,2.558,398,5.069,523,3.152,537,9.558,540,6.073,542,3.429,543,7.472,544,3.636,545,3.636,546,2.756,547,3.636,548,3.949,549,3.275,550,2.045]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.859,164,1.531,189,2.26,257,4.05,258,3.093,271,4.31,303,1.321,551,4.971]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[552,6.41,553,7.116,554,7.728]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.082,16,1.188,17,0.928,18,0.934,29,0.598,31,0.775,32,3.972,33,2.608,35,0.351,49,0.636,54,2.47,90,1.201,100,1.197,129,2.631,131,1.722,155,1.643,171,2.631,181,1.027,240,0.548,246,2.731,257,4.674,258,4.389,267,6.117,270,7.786,323,1.1,335,2.315,478,1.412,479,4.674,551,7.97,552,3.312,555,3.993,556,3.993,557,3.993,558,5.411]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.047,16,1.714,29,0.863,106,4.451,190,3.264,312,2.532,539,4.6]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[539,6.17,540,6.17,541,6.712]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.593,17,0.687,18,0.692,24,1.307,29,1.207,35,0.489,45,1.316,46,1.299,58,2.568,59,2.022,64,1.146,80,2.024,101,1.401,142,1.656,148,1.5,181,0.76,184,1.807,190,4.119,191,1.638,195,1.915,233,1.361,312,2.15,320,1.559,323,0.815,324,1.036,368,1.699,398,2.656,404,1.885,474,2.568,511,2.283,539,5.806,540,6.931,541,7.54,542,2.568,543,4.249,549,2.452,559,4.249,560,2.452,561,2.109,562,2.956,563,2.956,564,3.223,565,2.452,566,2.722,567,2.722,568,2.568,569,2.452,570,2.452,571,3.071,572,2.568,573,2.956]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[144,5.144,574,5.524,575,4.18,576,5.316,577,6.131]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.216,138,4.836,578,5.568,579,5.126,580,5.126,581,5.568,582,5.568]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.135,5,1.376,9,0.046,16,2.406,17,1.315,18,1.324,29,1.212,39,2.252,45,2.519,46,2.486,60,1.709,129,6.219,138,7.023,141,2.057,142,3.169,181,1.455,366,2.221,576,4.517,577,7.446,580,5.209,583,5.658,584,5.658,585,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.936,20,3.907,586,5.784,587,6.131,588,6.131]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.133,177,4.917,586,6.118,589,7.045]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.463,9,0.079,17,1.696,18,1.707,20,5.651,21,4.228,40,3.896,155,3.001,177,5.092,368,3.345,564,4.807,586,6.336]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.341,14,0.869,35,0.348,49,0.984,110,2.681,590,4.772]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[110,3.354,341,5.007,590,5.969]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.936,4,1.19,5,1.333,9,0.045,17,1.274,18,1.283,24,2.425,35,0.523,42,1.815,49,1.476,60,1.656,65,1.656,110,3.431,114,4.006,281,2.44,309,3.802,590,7.839,591,4.376,592,5.048,593,4.234,594,5.482]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.055,427,3.907,595,5.784,596,5.144,597,5.316]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[427,3.512,595,5.199,596,4.624,598,4.178,599,4.779,600,5.512]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.075,17,1.236,18,1.244,35,0.3,88,3.793,90,2.326,318,2.225,368,1.846,427,5.87,595,9.232,596,5.973,597,4.245,600,4.895,601,4.895,602,5.317,603,3.503,604,3.885,605,5.317,606,5.317,607,3.289,608,3.793,609,5.317,610,5.317]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.407,447,3.739,611,4.758,612,7.222]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[303,2.095,447,4.432]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.482,18,1.491,34,4.448,35,0.359,136,4.399,165,5.535,309,4.228,336,3.835,372,0.917,447,4.553,550,3.3,611,4.199,613,5.286,614,6.373,615,6.373,616,4.781,617,6.373,618,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.148,29,1.082,49,1.15,590,5.578]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[341,5.544,590,6.61]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.064,17,1.236,18,1.244,35,0.599,49,1.692,60,1.606,65,2.335,143,2.208,195,3.444,281,3.442,309,3.718,323,1.465,399,1.306,590,7.728,591,4.245,592,4.895,619,5.317,620,3.885]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.981,29,0.998,148,2.042,240,0.915,621,4.18]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[240,1.175,621,5.373]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.278,17,1.482,18,1.491,29,0.955,124,3.739,167,2.997,287,4.922,288,5.286,311,2.328,346,4.448,509,3.835,546,4.448,621,6.319,622,7.636,623,5.905,624,4.275,625,6.373,626,4.547]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.059,61,1.299,63,4.938,627,6.272]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[110,3.354,366,2.122,627,6.712]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.839,9,0.034,17,0.972,18,0.979,35,0.445,41,2.984,47,1.472,54,2.587,64,1.621,65,1.263,74,2.059,112,4.201,155,1.721,227,5.947,246,2.86,253,5.357,265,1.926,318,1.751,336,2.517,377,3.887,570,3.469,627,8.329,628,2.919,629,5.609,630,6.459,631,3.469,632,5.947,633,2.806,634,3.851,635,3.138,636,4.183,637,2.485,638,6.545,639,3.058]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,4.29,623,4.237,640,4.533,641,7.222]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[207,5.591,642,7.513]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.964,90,2.919,354,6.922,643,4.347]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.083,14,0.759,30,2.328,312,2.373,485,4.17,510,3.442,644,5.399,645,4.971]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.879,30,3.333,312,3.396]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.088,17,1.455,18,1.465,30,3.745,35,0.562,45,2.787,46,2.751,60,1.891,84,4.696,85,4.466,485,6.707,530,5.437,645,7.996,646,8.684,647,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.838,29,0.926,447,3.199,648,5.366,649,7.923]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.703,164,1.835,303,1.584,447,3.352,648,5.621]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.814,9,0.036,11,0.471,14,0.61,17,1.008,18,1.015,35,0.374,38,1.533,40,1.754,47,1.526,60,1.31,62,2.118,88,3.094,148,2.475,167,2.04,181,1.115,182,2.576,190,3.762,238,2.683,372,0.624,422,1.997,447,4.683,464,2.055,613,3.597,647,2.429,648,9.296,650,1.815,651,3.993,652,4.337,653,3.094,654,4.337,655,4.337,656,4.337]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.239,89,1.888,90,1.859,110,2.681,190,3.499,657,5.366]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[110,2.809,112,3.446,658,6.473,659,6.473,660,6.473]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.56,17,1.808,18,1.82,42,2.575,47,2.737,90,3.022,110,4.358,190,4.405,657,8.722,661,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.167,49,0.859,89,1.649,143,1.542,662,4.689,663,4.971,664,4.971]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[241,1.252,531,2.736,662,4.243,665,4.243,666,4.885,667,2.98,668,2.94,669,3.57,670,4.885]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.213,17,1.405,18,1.414,42,2.002,47,2.128,49,0.962,89,1.847,129,3.984,155,3.487,233,2.783,265,2.783,330,2.657,378,4.015,464,2.864,662,5.251,663,7.803,671,4.418,672,4.512,673,4.076,674,5.015,675,2.262]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.763,61,0.862,143,1.369,240,0.658,257,3.596,258,2.746,263,2.552,271,3.827,676,2.107]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[267,4.445,270,4.618,553,5.126,558,4.836,677,5.126,678,4.445,679,5.568]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.076,17,1.255,18,1.263,22,3.293,24,3.458,35,0.304,257,7.559,258,5.266,262,4.478,263,2.874,265,2.485,267,6.241,270,6.485,273,4.31,274,3.945,558,6.79,676,3.436,680,4.17,681,6.79,682,3.851]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.336,39,2.65,65,2.011,265,3.066,519,4.062]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.576,683,6.473,684,6.473,685,5.621,686,6.473]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.054,14,0.929,17,1.537,18,1.547,39,3.588,49,1.053,64,2.563,65,2.723,90,1.989,136,3.308,185,3.179,240,0.908,288,5.484,320,3.487,687,6.612,688,6.612,689,6.612,690,4.717,691,6.612]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.055,35,0.375,61,1.197,63,4.554,692,6.66]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[693,7.116,694,7.728,695,7.728]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.092,12,3.526,17,1.597,18,1.607,35,0.522,45,3.058,46,3.019,49,1.094,267,5.484,639,2.663,693,9.634,696,2.059,697,3.254]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,698,4.062]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.839,31,1.5,698,4.714]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.491,9,0.096,17,1.597,18,1.607,31,1.333,35,0.387,45,3.058,46,3.019,281,3.058,452,3.589,597,5.484,698,6.383,699,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.055,35,0.375,164,1.888,189,2.787,700,5.784]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[700,7.433,701,4.282]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.065,17,1.849,18,1.861,35,0.448,42,2.633,143,2.271,155,3.272,311,2.905,700,8.848,702,3.915,703,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.015,148,2.215,181,1.857,704,7.222]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[181,1.812,399,1.73,705,7.045,706,6.486]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.85,42,3.045,181,2.365,673,4.422,707,8.467,708,7.342]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.691,155,2.739,532,3.545,682,4.751,709,5.144]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[709,5.441,710,7.045,711,7.045,712,7.045]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.302,9,0.073,12,3.331,17,1.509,18,1.518,54,4.015,64,2.516,240,0.891,246,4.438,303,1.589,309,3.121,310,3.959,626,6.352,639,2.516,709,8.446,713,5.16]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,393,5.144,668,4.008]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[393,4.999,714,6.473,715,6.473,716,6.473,717,6.473]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.583,9,0.098,17,1.696,18,1.707,31,1.416,88,5.205,177,5.092,393,7.44,470,5.205,647,4.087,718,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.148,29,1.082,719,6.272,720,5.417]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[303,1.274,446,4.317,447,2.695,719,4.52,721,2.625,722,5.204,723,5.204,724,5.204]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.08,14,1.047,17,1.732,18,1.743,45,3.316,46,3.274,131,3.213,281,3.316,368,2.587,447,3.857,719,8.481,720,5.588,725,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.859,148,1.895,271,4.932,355,2.632,726,5.689]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[727,7.045,728,7.045,729,7.045,730,7.045]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.053,14,1.252,17,1.509,18,1.518,124,3.808,148,1.991,167,3.052,182,3.856,183,4.074,355,3.793,396,4.869,422,2.988,726,8.197,731,5.976,732,4.277,733,5.976,734,4.015,735,5.384,736,5.637]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.172,5,1.313,9,0.044,11,0.586,62,2.637,90,1.624,737,4.05,738,4.478]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.299,5,1.456,738,4.965,739,5.512,740,5.199,741,4.624]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.067,9,0.085,17,1.337,18,1.345,35,0.537,65,1.737,142,3.221,153,4.994,155,2.365,244,2.576,415,3.461,737,8.222,738,6.786,742,5.75,743,4.102,744,5.75,745,3.789]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.039,35,0.27,90,1.442,143,1.369,180,2.715,477,2.924,518,3.596,746,4.164,747,4.794,748,4.164]],["keywords//docs/applications/project-management/install-farmos/",[667,4.714,746,6.712,749,3.418]],["toc//docs/applications/project-management/install-farmos/",[4,1.383,9,0.052,17,1.482,18,1.491,35,0.359,45,2.837,46,2.801,129,4.199,155,2.622,233,2.934,241,1.634,324,2.233,334,4.358,378,3.019,647,3.57,673,3.065,746,9.424,750,6.373,751,3.188,752,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.336,110,2.89,359,5.784,458,3.73,690,4.751]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[458,4.794,753,8.559]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.526,110,4.297,118,4.521,359,6.609,432,6.312,433,4.777,458,6.531,464,3.605,754,7.007,755,7.007]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.336,49,1.06,756,2.376,757,2.82,758,5.316]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[759,6.473,760,6.473,761,6.473,762,6.473,763,6.473]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.083,11,0.705,17,1.509,18,1.518,35,0.366,46,2.852,49,1.033,155,2.67,183,4.074,305,4.743,378,3.075,396,4.869,477,3.959,673,3.121,757,2.749,758,5.181,764,3.597,765,6.491,766,2.441,767,5.976]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,768,6.272]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[668,4.651,768,6.712,769,5.394]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.518,9,0.081,14,0.625,16,1.323,17,1.034,18,1.04,29,0.666,35,0.382,45,1.979,46,1.954,49,0.708,64,1.723,141,1.616,142,2.491,148,2.076,219,2.75,240,0.93,243,1.647,276,2.262,281,3.013,305,3.249,307,2.983,311,1.624,334,3.04,546,3.103,621,2.791,675,1.664,757,1.883,766,1.672,768,9.019,770,4.094,771,4.446,772,4.446,773,3.249]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,182,3.423,303,1.41,320,3.039,369,3.733,774,4.6,775,4.451]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[643,2.9,774,5.167,776,5.959,777,6.473,778,6.473]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.064,15,4.681,17,1.808,18,1.82,35,0.438,69,6.209,320,4.102,676,3.418,774,8.88,779,2.246,780,3.798]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.042,32,3.237,33,2.126,49,0.808,89,1.552,240,0.697,449,4.054,450,4.213,781,5.079]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[125,5.843,675,2.636,782,7.045,783,7.045]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.352,9,0.055,17,1.566,18,1.576,32,4.295,33,2.82,35,0.515,65,2.035,90,2.027,240,0.925,368,2.34,449,7.291,450,7.576,766,2.534,784,6.738,785,4.11,786,3.458]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.371,124,4.627,596,6.092]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[596,6.61,599,6.832]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.117,9,0.066,17,1.295,18,1.303,54,3.445,90,1.675,99,5.184,148,2.452,197,2.965,246,3.808,283,4.177,508,3.119,523,4.446,596,7.896,597,8.643,787,9.354,788,5.569,789,3.973]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.047,11,0.626,62,2.814,368,2.001,675,2.156,790,5.005,791,5.005]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.576,139,5.959,790,5.621,791,5.621,792,3.322]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.302,5,1.578,9,0.073,16,1.931,17,1.509,18,1.518,29,0.972,35,0.366,45,2.889,46,2.852,47,2.284,281,2.889,465,3.676,675,2.429,790,9.952,791,5.637,793,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,11,0.552,49,0.808,61,0.913,304,2.584,794,4.676,795,4.676,796,4.676,797,3.473]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[181,1.54,796,5.512,798,5.986,799,4.178,800,5.986,801,5.986]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.042,14,0.726,17,1.2,18,1.208,35,0.291,40,2.088,49,1.747,99,2.86,126,3.401,224,5.844,304,4.558,368,2.628,571,3.24,732,4.986,794,8.248,795,8.248,799,3.602,802,3.772,803,4.281,804,4.483,805,3.987,806,5.162]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.059,11,0.784,49,1.15,807,6.649]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.765,808,7.045,809,7.045,810,7.045]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.074,17,1.537,18,1.547,45,2.943,46,2.906,174,6.293,281,2.943,807,6.088,811,9.017,812,9.017,813,9.017,814,9.017,815,9.017,816,6.612]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.051,11,0.671,35,0.348,62,3.017,140,3.258,312,2.715]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[817,7.045,818,7.045,819,4.422,820,6.118]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.192,9,0.049,14,0.836,35,0.335,40,2.404,89,1.816,131,2.563,140,3.135,155,3.445,190,3.366,191,5.374,233,2.736,312,2.612,404,6.711,452,3.106,559,5.162,560,4.93,820,5.162,821,5.944,822,5.162,823,5.944]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.239,11,0.671,39,2.459,142,3.461,366,1.697,824,5.689]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.076,685,6.712,825,7.728]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.809,9,0.054,17,1.537,18,1.547,39,4.083,96,3.308,106,5.107,142,6.174,167,3.109,366,2.476,685,5.742,826,4.832,827,4.832,828,6.612]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[829,0.474]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.221,830,6.348]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.711,38,3.765,110,3.701,150,4.378,458,4.778,830,8.485]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.341,9,0.051,11,0.671,35,0.348,62,3.017,831,4.932]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.677,832,7.116,833,7.728]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.469,5,1.738,9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,195,4.63,300,4.988,318,2.991,368,2.482,831,8.522]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.055,11,0.723,35,0.375,62,3.252,834,5.144]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[834,5.969,835,7.728,836,7.728]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.494,4,1.617,9,0.08,17,1.732,18,1.743,35,0.55,303,1.823,323,2.053,465,4.219,482,5.754,713,4.318,834,7.542]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.671,61,1.111,74,3.041,99,3.424,550,3.199,837,2.825]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.65,61,1.076,838,4.624,839,4.624,840,4.491,841,4.271]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.348,89,1.888,90,1.859,504,4.071,643,2.768]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[504,5.092,505,7.116,842,7.728]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.052,16,1.896,17,1.482,18,1.491,29,0.955,120,5.696,124,3.739,148,1.955,185,4.228,355,2.715,504,7.502,643,4.51,843,6.373,844,5.535,845,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.263,469,5.197,846,5.763]],["keywords//docs/security/getting-started-with-selinux/",[309,3.112,846,4.73,847,6.473,848,6.473,849,6.473]],["toc//docs/security/getting-started-with-selinux/",[9,0.065,17,1.849,18,1.861,45,3.54,46,3.495,229,4.993,846,8.662,850,7.953,851,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.293,47,2.344,89,2.035,110,2.89,112,3.545]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[110,3.057,112,3.751,830,5.148,852,7.045]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.931,110,4.552,112,6.114,149,5.813,173,5.587,355,3.548,571,5.228]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.055,35,0.375,368,2.313,369,4.314,853,5.784]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[853,5.199,854,5.986,855,5.986,856,4.491,857,5.986,858,5.986]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.067,14,1.144,45,3.622,46,3.575,99,4.509,290,4.773,853,10.382,859,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.051,47,2.175,110,2.681,112,3.289,442,5.125,458,3.461]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[110,3.057,112,3.751,830,5.148,860,7.045]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.059,17,1.662,18,1.672,31,1.387,54,4.422,80,2.957,110,4.632,311,2.611,442,5.929,458,5.323,518,5.362,640,4.487,861,7.148,862,6.581]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.059,11,0.784,824,6.649,863,6.649]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[864,7.728,865,7.728,866,7.728]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.054,17,1.537,18,1.547,45,2.943,46,2.906,88,4.717,90,1.989,155,2.72,218,8.229,271,5.278,377,3.979,863,9.447,867,5.742,868,6.612,869,5.107]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[829,0.474]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.065,11,0.857,846,5.763]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[117,2.016,846,4.73,870,5.959,871,6.473,872,5.369]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.072,17,2.032,18,2.045,45,3.891,46,3.841,377,5.26,846,6.387,870,8.048]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[110,3.77,124,5.097]],["keywords//docs/applications/containers/introduction-to-docker/",[110,3.354,112,4.114,830,5.647]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.891,46,3.841,110,5.094,458,4.896,657,7.591,830,6.387]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.051,61,1.111,184,1.784,263,3.289,650,2.586,873,5.366]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[873,6.118,874,7.045,875,4.491,876,6.118]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.978,9,0.04,17,1.134,18,1.141,35,0.409,45,2.171,46,2.143,100,1.462,143,1.393,148,1.496,155,2.985,171,3.213,181,1.254,184,1.408,265,2.245,302,2.647,303,1.193,311,1.781,323,2.388,324,1.708,333,4.49,335,2.826,496,3.766,611,3.213,616,3.658,639,1.89,650,2.041,873,9.673,877,3.563,878,4.876]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.493,16,1.35,29,0.68,62,2.217,144,3.506,164,1.287,189,1.9,190,2.571,312,1.995,862,4.18,879,3.506]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.456,879,4.624,880,5.986,881,4.178,882,4.491,883,3.02]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.074,18,1.081,20,2.711,29,1.044,35,0.26,54,2.859,60,1.396,141,1.68,148,2.137,171,3.045,190,5.292,219,4.311,240,0.635,246,3.16,255,2.46,309,2.222,311,1.688,312,3.687,335,2.678,559,4.013,637,2.745,647,3.904,675,3.14,751,3.487,766,1.738,879,7.217,884,2.946,885,2.993,886,2.711]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[229,4.951,433,4.951,846,5.763]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[846,7.007]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.936,116,3.418,118,3.956,323,1.835,464,3.155]],["keywords//docs/quick-answers/linux/how-to-use-git/",[117,2.195,887,7.045,888,5.843,889,7.045]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.221,890,6.71]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[117,2.195,890,5.441,891,5.843,892,5.026]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.327,64,3.66,148,2.896,890,7.293,893,9.443]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.015,89,2.206,158,4.467,346,5.04]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[158,3.703,226,3.046,253,4.965,894,5.986,895,4.374,896,4.491]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.59,54,3.557,89,2.909,155,3.917,158,6.417,173,3.858,246,3.932,253,9.721,346,7.24,352,4.994,509,3.461,896,4.314,897,5.75]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.059,35,0.407,89,2.206,898,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[898,6.118,899,5.843,900,6.118,901,4.917]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.537,9,0.085,16,1.188,17,0.928,18,0.934,29,0.598,34,2.787,35,0.529,89,1.904,141,2.265,142,2.237,173,2.679,188,2.996,226,3.17,255,2.126,302,2.168,311,2.276,318,1.671,368,1.387,386,2.849,397,2.546,458,2.237,513,4.036,637,2.372,643,1.789,673,1.92,898,7.517,902,3.993,903,2.996,904,3.677,905,2.849,906,2.343,907,3.993,908,3.188,909,2.787,910,2.731]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.047,11,0.626,164,1.634,189,2.412,240,0.791,879,4.451,911,5.763]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.456,879,4.624,881,4.178,883,3.02,912,5.986,913,5.986]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.064,17,1.255,18,1.263,35,0.441,54,3.339,124,3.167,148,1.656,151,2.103,155,3.216,233,2.485,240,0.741,246,3.691,255,2.874,265,2.485,303,1.321,311,1.972,312,2.372,460,2.596,631,4.478,713,3.129,827,3.945,879,8.261,914,3.851,915,4.97,916,3.768,917,4.97]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.936,89,2.035,112,3.545,117,2.075,918,4.751]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[110,3.354,918,5.514,919,7.728]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.991,34,4.615,35,0.373,95,4.832,100,1.982,112,5.463,117,3.197,229,4.151,346,4.615,513,4.283,637,3.928,676,2.906,867,5.742,920,6.612,921,5.278,922,5.742,923,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.059,12,3.706,164,2.048,189,3.022]],["keywords//docs/development/java/install-java-on-centos/",[13,5.369,164,2.52,924,6.473,925,5.959]],["toc//docs/development/java/install-java-on-centos/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.059,12,3.706,61,1.299,263,3.844]],["keywords//docs/development/java/install-java-on-debian/",[13,5.843,61,1.267,262,5.843,925,6.486]],["toc//docs/development/java/install-java-on-debian/",[9,0.081,10,5.429,12,5.983,17,1.769,18,1.78,142,4.263,247,4.464,926,7.007,927,6.075,928,7.007]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.059,11,0.784,12,3.706,62,3.527]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.618,11,0.703,12,3.322,13,5.369,929,4.004]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.068,10,5.942,12,4.274,17,1.936,18,1.948,29,1.248,142,4.665,262,6.908,826,6.086,929,5.152]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.055,11,0.723,31,1.293,62,3.252,930,5.784]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.162,236,4.965,882,4.491,895,4.374,930,5.199,931,5.986]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.278,4,1.383,9,0.083,11,0.692,14,0.896,31,1.707,35,0.567,80,2.637,100,1.91,141,2.317,296,3.786,305,4.657,766,2.396,930,8.742,932,6.373,933,6.373]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.776,89,2.41,458,4.418]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.199,89,2.41,311,2.881]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[112,3.844,117,2.25,676,3.173,918,5.152]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[918,5.026,935,7.045,936,4.642,937,5.624]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[308,5.228,643,3.732,676,4.61,905,5.942,916,5.813,918,7.485,938,5.813,939,6.908]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.206,940,4.467,941,3.844,942,3.257]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.41,226,4.013,896,5.916]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[117,2.408,458,4.329,934,5.647]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.936,117,2.075,148,2.042,255,3.545,943,4.996]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[349,4.726,369,4.564,943,5.285,944,5.624]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,148,2.681,171,5.759,323,2.409,943,8.111,945,7.591,946,8.741]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.051,49,0.984,164,1.752,189,2.586,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[948,7.116,949,7.116,950,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.051,11,0.671,49,0.984,62,3.017,895,4.515,947,5.125]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[948,7.116,949,7.116,953,7.728]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.059,17,1.662,18,1.672,35,0.403,49,1.138,131,3.083,155,2.94,364,4.988,397,4.556,415,4.302,647,4.004,895,5.223,947,8.854,951,5.706,952,6.581]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.059,164,2.048,189,3.022,954,4.845]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.352,5,1.638,9,0.075,17,1.566,18,1.576,35,0.38,45,2.999,46,2.961,64,2.612,241,1.727,324,2.361,364,4.703,368,2.34,392,4.11,647,3.775,954,7.452]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[117,2.25,355,3.077,376,4.346,735,5.99]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[349,3.735,369,3.607,470,3.972,735,4.618,736,4.836,944,4.445,956,5.568]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.213,117,1.95,349,5.826,355,3.7,598,4.369,635,4.696,640,3.93,803,5.193,957,5.764,958,5.764,959,6.26,960,5.193,961,4.696,962,6.26,963,6.26,964,6.26,965,5.193,966,6.26,967,5.193,968,5.764,969,5.437,970,6.26]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,355,3.36,892,5.627]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[117,2.195,891,5.843,892,5.026,971,4.491]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,355,3.36,972,6.296]],["keywords//docs/quick-answers/linux/how-to-use-head/",[117,2.016,148,1.985,891,5.369,972,5.167,973,6.473]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,355,3.36,974,6.296]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[117,2.016,148,1.985,891,5.369,974,5.167,975,6.473]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.761,475,3.468,631,4.78,639,2.234,976,5.005,977,4.022]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.565,49,0.828,117,1.621,164,1.476,303,1.274,643,2.332,776,4.791,978,4.791]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.088,18,1.095,19,2.469,99,2.595,100,1.403,214,3.141,233,3.894,310,2.856,318,1.96,324,2.963,464,2.218,509,2.818,546,3.268,560,3.884,639,1.815,643,2.098,751,2.342,936,3.085,942,2.112,979,4.682,980,3.341,981,3.341,982,4.311,983,5.838,984,4.066,985,4.682,986,4.311,987,4.311,988,3.341,989,4.311,990,4.066,991,4.311,992,4.682,993,4.682,994,4.682]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,995,5.144,996,6.66]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.565,668,3.132,882,3.904,995,4.02,997,4.791,998,4.791,999,4.791,1000,5.204]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.573,5,1.142,9,0.074,17,0.654,18,0.659,30,2.026,35,0.478,39,1.12,42,1.555,45,1.253,46,1.237,49,0.962,60,2.715,100,1.408,118,1.672,120,1.824,141,1.023,142,3.385,144,3.628,148,1.441,151,1.097,281,2.69,309,2.259,311,1.028,323,1.294,324,2.472,392,2.865,423,2.445,433,2.948,616,3.523,628,1.965,676,2.064,718,2.335,995,8.008,1001,2.592,1002,2.592,1003,2.445,1004,2.592,1005,3.75,1006,1.445]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.531,181,1.389,189,2.26,1007,5.714,1008,4.971,1009,7.199]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[164,1.697,240,0.822,1007,4.374,1008,5.512,1010,5.986,1011,5.986]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.521,9,0.058,14,0.985,17,1.629,18,1.639,35,0.395,100,2.1,141,3.408,151,2.73,240,0.962,1007,6.851,1009,10.391,1012,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.658,101,2.558,102,4.05,164,1.531,906,3.167,1013,2.273,1014,4.971]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1015,6.17,1016,7.728,1017,7.728]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.08,35,0.547,74,4.776,906,5.692]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1018,3.828]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.059,89,2.206,99,4.002,101,3.421]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[899,5.843,900,6.118,901,4.917,1019,6.486]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.067,35,0.461,64,2.229,89,3.169,90,1.73,99,3.187,100,1.723,101,2.724,141,2.974,226,2.926,337,4.102,458,3.221,632,5.294,634,5.294,639,2.229,901,4.013,905,4.102,906,4.799,941,3.061,1020,5.75,1021,5.75,1022,3.932]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1023,3.822,1024,6.85,1025,5.763]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1024,6.118,1025,5.148,1026,5.843,1027,5.285]],["toc//docs/platform/upgrade-to-hourly-billing/",[530,8.664,1023,4.834,1028,3.77]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.654,896,6.517]],["keywords//docs/platform/disk-images/resizing-a-linode/",[896,6.42,1023,4.147]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.137,896,7.702]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,263,3.545,1029,5.784]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.839,1029,6.712,1030,7.728]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.061,17,1.732,18,1.743,35,0.42,185,3.582,320,3.929,323,2.053,324,2.61,480,6.179,639,2.887,780,3.638,1029,10.042]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.059,164,2.048,189,3.022,697,3.421]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.256,5,1.522,9,0.051,17,1.455,18,1.465,24,2.769,35,0.353,80,2.59,90,1.883,155,2.575,156,2.862,265,2.882,290,3.673,299,5.764,324,3.043,379,4.466,571,3.93,697,5.359,1033,4.998]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.156,11,0.626,49,0.917,62,2.814,1034,5.306,1035,5.306,1036,5.763]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.839,49,1.23,1037,7.728]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.192,9,0.049,17,1.382,18,1.391,29,0.89,35,0.335,41,4.241,49,1.833,57,3.577,131,2.563,136,2.974,323,1.638,509,3.577,651,5.473,802,4.343,1034,9.693,1038,5.845,1039,5.944]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.059,164,2.048,189,3.022,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[164,1.997,1040,4.726,1041,6.486,1042,7.045]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.915,4,0.99,5,1.109,9,0.076,17,1.06,18,1.067,21,2.644,29,1.034,35,0.562,45,2.03,46,2.004,49,0.726,64,1.768,111,3.523,141,1.658,167,2.145,189,1.909,240,0.626,241,1.169,255,2.428,303,1.116,318,1.909,324,2.418,392,4.21,532,2.428,564,3.005,618,2.71,675,1.707,884,2.908,1040,6.688,1043,4.199]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,1040,4.845]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.765,1040,4.726,1041,6.486,1044,7.045]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.952,4,1.03,5,1.154,9,0.058,17,1.103,18,1.11,21,2.75,29,1.065,35,0.572,45,2.112,46,2.085,49,0.755,64,1.839,111,3.665,141,1.725,167,2.232,240,0.652,241,1.216,255,2.526,303,1.161,318,1.986,324,2.491,392,4.337,532,2.526,564,3.127,618,2.819,675,1.775,884,3.025,1040,6.804,1043,4.369]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.27,43,2.779,61,0.862,180,2.715,752,3.159,757,2.03,1045,1.803,1046,3.977]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.703,61,1.164,1045,2.434,1046,5.369,1047,4.73]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.333,9,0.045,17,1.274,18,1.283,35,0.309,49,0.873,60,1.656,148,1.681,155,2.255,180,3.105,303,1.935,311,2.002,639,2.125,751,2.743,756,1.956,780,2.677,942,4.182,1045,4.215,1046,4.547,1048,4.376,1049,5.048,1050,4.547,1051,5.482,1052,5.482]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.502,9,0.051,30,2.665,164,1.752,189,2.586,1053,3.354]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.038,881,4.917,1054,5.624,1055,4.297]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.343,5,2.33,9,0.055,17,0.757,18,0.762,22,1.986,30,3.325,35,0.184,100,0.976,131,1.404,155,2.179,164,0.923,173,4.49,185,1.566,197,1.734,209,3.431,265,2.438,303,1.887,320,1.717,324,1.141,369,2.11,377,1.96,422,3.081,509,4.028,544,2.998,639,2.989,649,2.998,702,1.603,1056,5.208,1057,5.296,1058,5.296,1059,2.443,1060,6.314,1061,2.227,1062,3.256]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.449,29,1.082,697,3.421,1063,7.222]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[312,3.096,697,3.337,883,3.554,1064,7.045]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.192,16,1.768,17,1.382,18,1.391,29,0.89,35,0.547,45,2.646,46,2.612,60,1.795,80,2.459,148,2.569,155,2.445,181,1.529,233,2.736,320,3.135,324,2.083,650,2.488,697,3.967,713,3.445,751,2.974,1065,4.691,1066,4.93]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.837,61,0.775,199,1.985,263,2.295,531,2.415,550,3.423,675,1.613,938,3.009,1067,3.33,1068,3.15]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.162,531,3.353,675,2.24,819,3.758,1067,4.624,1069,5.199]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.083,9,0.076,17,1.255,18,1.263,31,1.518,35,0.603,45,2.403,46,2.372,60,1.63,99,2.992,148,1.656,199,2.485,241,1.384,255,2.874,422,2.485,427,3.167,531,3.024,647,3.024,1067,7.783,1070,4.688,1071,4.05,1072,5.398,1073,5.398]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.654,1074,6.348]],["keywords//docs/platform/disk-images/clone-your-linode/",[934,5.647,1074,7.309]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.137,1074,7.502]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.059,164,2.048,189,3.022,240,0.992]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[164,2.191,240,1.061,881,5.394]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,143,1.496,155,2.155,181,1.347,192,2.428,240,1.05,303,1.872,307,3.514,366,1.438,510,4.876,532,2.789,546,3.656,673,2.519,675,2.862,1075,4.182,1076,7.042,1077,5.589,1078,4.182,1079,4.823]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,164,1.359,182,2.848,189,2.006,213,3.106,214,3.216,320,2.528,643,2.148,775,3.703,942,2.162]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[643,3.463,1080,7.116,1081,7.728]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,65,2.116,182,4.162,233,4.316,320,4.945,751,3.505,775,5.411,1082,7.006,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.468,14,0.606,61,0.775,62,2.105,182,2.561,213,2.793,214,2.892,263,2.295,320,2.274,643,1.932,775,3.33,942,1.945]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.703,61,1.164,643,2.9,1080,5.959,1085,6.473]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.058,17,1.629,18,1.639,29,1.05,35,0.395,45,3.118,46,3.079,182,4.162,233,4.316,320,5.573,751,3.505,752,4.616,775,5.411,1083,6.084,1084,4.538]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.348,49,0.984,307,4.145,639,2.395,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[447,3.648,650,2.949,721,3.554,1086,4.036]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.17,17,1.696,18,1.707,29,1.093,49,1.161,60,2.203,311,2.665,397,4.651,623,4.28,639,2.828,721,3.68,780,3.563,1086,4.179,1087,4.39,1088,5.473,1089,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,117,1.925,219,3.822,223,4.932,226,3.144,620,4.515]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,223,5.624,872,5.843,1090,7.045]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.278,9,0.072,14,0.896,17,1.482,18,1.491,35,0.359,61,1.581,89,1.947,141,2.317,219,6.227,223,5.088,226,4.474,263,3.393,303,1.56,323,1.756,400,5.286,906,3.739,1091,4.781]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.307,89,1.552,238,3.142,240,0.697,286,2.845,1092,5.079,1093,4.411,1094,4.411]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[579,6.486,1094,6.118,1095,4.24,1096,6.486]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.532,16,0.799,17,0.625,18,0.628,29,0.402,60,0.811,80,1.869,89,0.821,90,0.808,96,2.26,129,1.77,148,1.385,173,3.03,184,1.304,190,3.88,233,1.237,243,0.995,312,5.174,336,1.617,355,1.924,368,1.568,458,3.837,514,4.158,571,2.835,673,1.292,885,2.926,1091,3.388,1094,9.577,1096,8.846,1097,2.686,1098,2.228,1099,2.228,1100,2.686,1101,2.473,1102,4.517]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,531,4.045]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[533,6.118,534,6.118,536,6.118,1103,6.486]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.083,9,0.064,17,1.255,18,1.263,29,0.809,31,1.048,35,0.568,148,2.398,231,3.851,240,0.741,241,1.384,318,3.272,512,4.688,531,5.991,545,4.97,546,6.415,690,3.851,1103,8.463,1104,5.398]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.936,233,3.066,320,3.512,643,2.984,914,4.751]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[320,2.744,643,2.332,774,4.154,914,3.713,1105,5.204,1106,5.204,1107,4.791,1108,4.791]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.255,18,1.263,89,1.649,96,2.701,155,2.221,233,5.133,303,1.914,318,2.259,320,2.847,453,4.688,574,4.478,643,2.419,751,3.911,774,4.31,914,6.558,1022,3.691,1068,3.945,1084,3.497,1107,4.97,1109,5.398,1110,7.818,1111,4.688,1112,5.398]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.059,89,2.206,117,2.25,1113,6.272]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.318,899,4.965,1113,5.199,1114,5.986,1115,5.986,1116,5.986]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.074,17,1.218,18,1.225,35,0.56,45,2.332,46,2.302,49,0.834,64,2.03,65,1.582,74,2.578,89,1.6,95,3.828,117,2.383,141,1.904,226,2.665,229,3.288,303,1.282,323,1.443,458,2.934,513,3.393,633,3.514,637,3.112,909,3.656,1113,7.847,1117,3.828,1118,4.182,1119,5.238]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.065,164,2.236,1120,4.811]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1120,4.297,1121,7.045,1122,7.045,1123,7.045]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.058,14,1.318,35,0.528,42,2.32,74,3.448,89,2.14,90,2.108,478,3.736,696,2.81,785,4.273,1120,5.719,1124,6.45]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[185,4.178,639,3.367]],["keywords//docs/networking/remote-access/",[642,5.167,1125,6.473,1126,6.473,1127,6.473,1128,6.473]],["toc//docs/networking/remote-access/",[14,1.124,29,0.834,32,5.097,35,0.314,207,5.557,234,4.069,478,2.827,519,3.397,622,4.836,623,5.997,639,3.099,643,2.495,650,3.346,672,4.257,905,3.973,916,5.58,940,3.445,1084,3.607,1129,4.446]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.634,675,2.156,766,2.167,786,2.958,1130,4.022,1131,3.617,1132,1.869]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[164,1.697,1131,3.758,1132,1.941,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.586,61,0.971,550,2.796,675,2.02,766,2.03,786,2.771,1130,3.768,1131,3.389]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.65,61,1.076,1131,3.758,1133,4.491,1134,4.779,1135,4.624]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.405,17,1.629,18,1.639,141,2.547,155,2.882,202,3.73,675,2.621,766,4.244,786,3.596,941,4.992,1136,6.544,1137,6.45,1138,6.45]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.199,47,2.175,145,4.772,146,4.515,305,4.515,675,2.312]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.5,305,5.647,675,2.892]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.067,17,1.236,18,1.244,31,1.032,35,0.3,49,0.846,60,1.606,99,2.947,199,4.195,233,2.448,303,1.301,307,3.567,311,1.942,379,3.793,397,5.809,460,2.557,624,3.567,702,2.617,980,3.793,981,3.793,1139,4.107,1140,5.317,1141,5.317,1142,5.317,1143,5.317,1144,5.317,1145,5.317,1146,5.317,1147,5.317,1148,5.317]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.278,99,3.691,164,1.888,189,2.787,837,3.045]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[164,1.835,838,4.999,839,4.999,840,4.855,841,4.618]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.063,35,0.558,64,2.95,74,5.739,89,2.325,141,2.766,323,2.097,330,3.344,837,4.527]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[181,1.857,276,3.674,510,4.603,1077,5.277]],["keywords//docs/websites/host-a-website-with-high-availability/",[488,5.285,550,3.648,701,3.525,1129,5.624]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.062,17,0.908,18,0.914,35,0.555,49,0.622,60,2.281,90,1.175,155,3.107,190,2.212,240,0.841,303,0.956,307,2.62,309,3.632,310,4.607,312,1.716,318,1.634,337,2.786,477,2.382,478,1.381,519,2.382,531,2.187,546,2.725,623,2.291,633,2.62,1065,3.43,1076,7.873,1078,6.029,1079,5.637,1129,3.117,1149,3.905,1150,6.123,1151,2.62]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[124,4.627,510,5.028,1077,5.763]],["keywords//docs/websites/introduction-to-high-availability/",[181,1.812,276,3.585,488,5.285,1129,5.624]],["toc//docs/websites/introduction-to-high-availability/",[5,1.578,49,1.033,143,1.854,148,1.991,184,1.874,300,4.53,323,1.788,422,2.988,486,4.869,492,5.181,510,6.971,733,5.976,877,4.743,1077,7.991,1129,7.107]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.059,11,0.784,62,3.527,411,5.277]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.765,62,3.44,408,6.118,411,5.148]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.046,17,1.295,18,1.303,35,0.314,49,1.273,68,6.835,80,2.304,89,1.701,117,2.491,119,4.634,123,4.068,131,3.448,303,1.363,336,4.812,411,7.911,618,4.75,620,4.069,637,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.059,11,0.784,30,3.114,62,3.527]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.791,882,4.855,1054,5.167,1055,3.948,1152,4.342]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.876,5,1.944,9,0.066,11,0.605,17,1.295,18,1.303,30,4.86,35,0.314,62,2.719,185,2.678,197,2.965,209,3.607,303,1.957,324,1.951,391,3.808,639,3.099,1053,3.023,1056,3.19,1060,3.669,1153,4.177]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,697,3.155,1154,6.131]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.456,11,0.65,697,2.836,883,3.02,1031,4.093,1032,5.512]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.326,5,1.608,9,0.054,17,1.537,18,1.547,24,2.924,35,0.373,80,2.735,90,1.989,155,2.72,156,3.023,265,3.044,290,3.879,324,2.317,571,4.151,697,5.464,1033,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.586,14,0.759,49,0.859,62,2.637,143,1.542,1154,4.971,1155,3.293,1156,5.399]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.035,9,0.042,17,1.2,18,1.208,35,0.291,40,2.088,120,3.344,145,3.987,146,3.772,154,3.682,167,2.427,181,2.538,244,2.313,311,1.885,355,2.199,366,2.709,368,1.792,376,3.106,397,3.29,518,3.872,647,4.239,957,4.752,1155,4.616,1158,6.572,1159,4.483,1160,1.99,1161,5.162]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.671,61,1.111,100,1.852,263,3.289,303,1.512,667,3.769]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.669,240,0.765,241,1.427,667,3.396,668,3.351,1162,3.669,1163,5.126]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.434,2,3.805,17,1.662,18,1.672,64,2.77,77,5.929,100,2.142,148,2.192,156,3.268,229,4.487,303,1.749,323,1.97,532,5.059,572,6.208,635,5.362,1023,3.463]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,240,0.915,1164,3.73]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1165,7.045,1166,7.045,1167,7.045,1168,7.045]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.072,14,1.229,17,2.032,18,2.045,60,2.64,240,1.2,1164,6.057]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.102,9,0.042,11,0.552,31,0.986,62,2.48,117,1.582,241,1.302,258,2.909,1169,2.584]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1169,3.585]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.359,5,1.522,9,0.071,17,1.455,18,1.465,31,1.936,35,0.353,47,2.203,49,1.382,60,1.891,143,1.788,181,1.61,241,1.605,258,3.586,318,2.62,366,1.719,780,4.241,1160,2.414,1169,3.185]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.055,11,0.723,62,3.252,258,3.815,749,2.945]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[882,4.855,1170,6.473,1171,6.473,1172,6.473,1173,6.473]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.192,4,2.105,5,1.445,9,0.08,14,0.836,17,1.382,18,1.391,35,0.472,60,1.795,181,1.529,240,1.15,241,1.524,258,3.405,318,2.488,366,1.632,674,4.93,749,2.629,780,4.09,1174,5.944,1175,5.944]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.784,62,3.527,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.839,62,3.774,1023,3.745]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.052,11,1.093,15,3.835,16,1.896,42,2.11,62,3.112,74,3.137,89,1.947,100,1.91,141,2.317,510,4.063,571,4.001,764,3.532,967,5.286,1006,3.271,1023,4.877,1176,4.328,1177,5.286]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.051,11,0.671,49,0.984,61,1.111,140,3.258,263,3.289]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[140,3.157,875,3.816,1178,5.986,1179,5.986,1180,5.986,1181,5.512]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.08,11,0.545,16,1.492,17,1.166,18,1.173,29,0.751,35,0.548,38,1.773,61,0.902,89,2.691,100,1.503,101,2.376,140,5.131,141,1.823,157,3.102,182,2.979,191,2.779,303,1.227,318,2.099,319,3.102,323,1.382,400,4.16,404,3.197,886,2.942,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.055,35,0.375,140,3.512,164,1.888,189,2.787]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[140,3.715,164,1.997,881,4.917,1181,6.486]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.072,14,0.705,16,1.492,17,1.166,18,1.173,29,0.751,35,0.497,38,1.773,89,2.691,101,2.376,140,5.474,141,1.823,156,2.293,157,3.102,191,2.779,234,3.664,303,1.227,318,2.099,319,3.102,320,2.645,323,1.382,400,4.16,404,3.197,886,2.942,942,2.262,1065,4.15,1182,4.617]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.051,11,0.671,61,1.111,263,3.289,1183,3.67,1184,5.125]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.65,184,1.728,875,3.816,1183,3.556,1185,5.986,1186,5.986]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.173,9,0.068,17,1.359,18,1.368,35,0.329,41,4.17,45,2.602,46,2.569,141,2.125,143,2.364,150,3,240,0.803,302,4.493,324,2.048,330,2.569,331,4.666,427,3.429,639,2.266,1061,3.997,1183,6.552,1184,4.849]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.986,35,0.286,151,1.979,452,2.654,764,2.815,1187,4.676,1188,2.704]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.162,194,5.512,1189,3.603,1190,5.986,1191,5.986,1192,4.016]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.463,9,0.094,17,1.696,18,1.707,31,1.416,35,0.543,80,3.018,151,2.842,452,3.812,1187,8.868,1188,3.884]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.065,89,2.41,1193,6.85]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1193,7.433,1194,8.559]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.07,89,2.606,117,2.657,124,5.004,141,3.101,230,7.408,1193,10.084]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.047,11,0.626,14,0.81,470,4.111,531,3.228,764,3.194,1195,5.005]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.565,240,0.715,427,3.053,531,2.915,1196,5.204,1197,5.204,1198,5.204,1199,4.02]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.421,9,0.091,16,1.739,29,0.876,38,2.067,88,4.17,100,2.88,174,4.08,183,3.669,294,5.382,355,2.49,427,3.429,470,5.905,531,4.636,696,1.752,827,4.271,856,4.385,1195,7.188,1199,4.515]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.119,169,2.984,276,2.932,1068,4.211,1200,5.306,1201,5.306,1202,4.451]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[116,3.322,1202,4.999,1203,4.999,1204,6.473,1205,6.473]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.434,9,0.078,17,1.662,18,1.672,31,1.845,96,3.576,181,1.838,366,1.963,452,3.735,699,4.048,1200,6.581,1201,8.749,1202,7.339]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.055,11,0.723,61,1.197,1206,6.131,1207,6.131]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[799,4.517,802,4.73,1208,6.473,1209,5.959,1210,5.959]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.043,17,1.218,18,1.225,35,0.295,40,2.119,49,1.582,99,2.903,131,2.259,224,6.978,368,1.819,696,1.57,732,3.451,797,6.178,804,4.549,805,4.046,1206,9.147,1207,9.147,1209,4.823,1210,4.823,1211,4.823,1212,5.238,1213,5.238]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.239,9,0.051,219,3.822,675,2.312,766,2.323,1214,6.179]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[766,2.906,1215,7.728,1216,7.728]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.1,9,0.045,17,1.274,18,1.283,64,2.125,77,4.547,100,2.37,167,2.578,183,3.441,219,6.279,296,4.697,318,3.309,430,4.234,675,3.469,766,3.816,1217,10.15,1218,7.906]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.808,283,3.81,396,3.81,764,2.815,1219,4.676,1220,4.676,1221,4.676,1222,4.676]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1038,3.037,1192,2.919,1222,4.006,1223,4.351,1224,4.351,1225,4.351,1226,4.351,1227,4.351,1228,4.006,1229,3.361]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.048,17,1.359,18,1.368,29,0.876,35,0.329,49,1.53,80,2.418,229,3.669,283,6.209,661,4.849,696,1.752,936,3.852,1038,7.293,1139,4.515,1219,7.62,1220,7.62,1221,7.62,1230,4.515,1231,5.382]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.047,49,0.917,304,2.932,1184,4.78,1232,5.306,1233,5.306,1234,5.005]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[799,4.917,1229,5.441,1235,7.045,1236,7.045]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.056,14,0.966,17,1.597,18,1.607,35,0.387,49,1.473,89,2.099,141,2.497,304,4.708,799,4.794,965,5.698,1184,7.675,1232,8.52,1233,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.047,61,1.036,240,0.791,241,1.477,263,3.068,1237,4.78,1238,4.211]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[240,0.671,241,1.252,875,3.114,1069,4.243,1160,1.884,1239,4.885,1240,2.707,1241,4.498,1242,4.498]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.061,17,1.732,18,1.743,35,0.55,240,1.023,241,2.793,406,6.179,496,5.754,938,5.199,1237,8.1,1241,6.859]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.671,47,2.175,764,3.424,1243,5.689,1244,5.366,1245,4.772]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1243,4.791,1244,4.52,1245,4.02,1246,5.204,1247,4.791,1248,5.204,1249,4.52,1250,5.204]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.278,9,0.083,10,4.547,17,1.482,18,1.491,31,1.237,33,2.667,47,2.243,49,1.015,151,3.922,195,5.696,263,3.393,929,3.943,1244,5.535,1245,6.791,1247,5.868,1249,5.535]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.055,49,1.06,799,4.648,802,4.866,1038,4.648]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[799,3.886,802,4.069,1038,3.886,1228,5.126,1229,4.3,1251,5.126,1252,5.568]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.077,17,1.629,45,3.118,46,3.079,49,1.115,65,2.116,155,2.882,265,3.225,287,5.411,303,1.715,364,4.889,368,2.433,424,4.334,799,6.544,961,5.255,1038,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.348,61,1.111,263,3.289,1045,2.323,1253,4.772,1254,4.932]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[478,1.84,756,1.857,875,3.317,1045,1.957,1253,4.02,1254,4.154,1255,4.52,1256,4.791]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.034,16,2.837,29,1.429,35,0.361,60,1.248,146,3.021,155,2.633,188,3.101,233,1.903,297,3.193,318,2.679,320,2.18,378,3.032,477,2.522,478,2.263,786,2.122,805,3.193,886,2.425,1045,2.945,1091,3.101,1253,6.811,1254,5.11,1255,5.559,1256,3.806,1257,4.134,1258,4.134,1259,4.134,1260,4.134,1261,3.59,1262,4.134,1263,2.368,1264,3.021,1265,4.134]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.059,11,0.784,62,3.527,1266,6.272]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.765,756,2.514,1266,6.118,1267,6.486]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.384,4,1.498,5,1.109,9,0.076,17,1.06,18,1.067,35,0.257,64,1.768,65,1.378,100,1.367,117,1.421,141,1.658,167,2.145,181,1.775,183,2.863,240,1.143,241,1.169,258,3.953,311,1.666,324,1.598,366,1.895,377,2.745,380,3.183,518,3.422,675,1.707,749,3.052,886,2.676,1266,9.109,1268,4.561]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.065,89,2.41,918,5.627]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.587,901,4.517,905,4.618,918,4.618,1269,5.959]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.076,17,1.597,18,1.607,35,0.387,89,2.827,141,2.497,148,2.838,226,3.495,238,4.25,569,5.698,637,4.081,676,3.019,918,7.465,1033,5.484]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[829,0.474]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.044,49,0.859,143,1.542,171,3.557,396,4.05,550,2.796,1095,3.249,1270,4.971]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[143,2.207,171,5.092,1271,7.728]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.808,9,0.068,14,1.171,16,2.477,17,1.936,18,1.948,29,1.248,35,0.469,1270,9.659]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.15,117,2.25,647,4.045,1272,6.272]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[802,5.148,1038,4.917,1272,6.118,1273,4.185]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.083,9,0.044,17,1.255,18,1.263,35,0.441,38,1.909,40,2.184,41,3.851,42,1.788,49,1.463,80,2.233,85,3.851,90,1.624,309,2.596,311,1.972,351,4.478,368,1.875,571,3.389,611,3.557,616,4.05,713,3.129,732,3.557,916,3.768,1075,4.31,1272,9.684]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.04,35,0.407,136,3.613,721,3.643]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[119,3.016,123,2.648,447,2.695,721,2.625,1274,4.52,1275,4.154,1276,4.791,1277,4.791]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.566,18,1.576,35,0.38,60,2.035,117,2.099,123,3.428,131,2.906,136,5.184,336,4.055,447,3.489,618,4.003,766,2.534,988,4.807,1022,4.608,1275,5.379,1277,6.204,1278,4.807,1279,6.204]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.714,29,0.863,49,0.917,61,1.036,63,3.94,721,2.907,977,4.022]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.039,17,1.103,18,1.663,35,0.6,45,2.112,46,2.085,49,1.132,90,1.428,101,2.248,136,3.557,142,2.658,148,2.615,184,1.37,309,2.282,310,2.894,397,3.025,415,2.856,447,2.457,650,1.986,676,2.085,721,4.301,766,1.784,1071,3.56,1088,3.56,1261,4.121,1278,6.083,1281,4.369,1282,4.745]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.984,307,4.145,308,3.879,638,5.125,721,3.117,1086,3.539]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[447,3.648,721,3.554,1274,6.118,1280,5.026]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.983,18,1.996,35,0.481,45,3.797,46,3.748,310,5.203,650,3.57,721,4.303,1283,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.445,5,1.619,9,0.055,713,3.86,831,5.316]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.529,831,5.624,832,6.486,1284,7.045]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.992,4,2.097,5,1.783,9,0.041,17,1.149,18,1.157,24,3.864,29,0.741,35,0.279,49,0.787,131,2.132,155,4.245,324,1.732,368,1.717,422,2.276,453,6.367,550,2.56,603,4.831,831,5.852,1056,4.2,1059,3.709,1285,4.945,1286,4.945,1287,4.945,1288,4.552]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.723,47,2.344,764,3.691,1289,5.784,1290,5.784]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[184,2.43,1095,3.603,1289,5.199,1290,5.199,1291,5.986]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.051,9,0.074,11,0.569,16,1.558,17,1.218,18,1.225,24,3.383,29,0.785,30,2.259,35,0.596,39,2.085,155,2.155,184,1.512,195,3.393,240,1.05,330,2.302,779,1.512,909,3.656,1289,9.177,1290,7.847,1292,5.238]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[164,2.236,189,3.301,749,3.488]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,881,3.886,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.326,3,3.745,4,1.435,5,1.608,9,0.084,17,1.537,18,1.547,35,0.621,181,1.701,192,3.065,240,0.908,241,1.695,366,1.815,550,3.424,673,3.179,1294,6.612]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.586,14,0.759,31,1.048,47,1.9,151,2.104,764,2.992,1295,2.486,1296,2.796]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.368,39,2.804,1295,3.243,1296,3.648]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.06,16,2.17,17,1.696,18,1.707,29,1.093,31,1.87,35,0.543,39,2.903,151,2.842,195,4.726,909,5.092,1295,3.359,1296,4.988]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.059,35,0.407,263,3.844,667,4.405]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[240,0.822,241,1.535,667,3.652,668,3.603,1162,3.944,1163,5.512]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.769,18,1.78,35,0.429,54,4.708,64,2.95,80,3.148,141,2.766,240,1.045,246,5.204,263,4.051,667,6.04,789,5.429,1297,7.007]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,764,3.424,1298,5.689,1299,5.366]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.445,309,3.793,616,5.916]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.406,61,0.672,309,1.798,611,2.463,616,2.805,650,1.565,971,2.383,1302,3.739,1303,3.739,1304,3.739,1305,3.739,1306,3.739,1307,3.739,1308,1.954]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.044,11,0.586,14,0.759,17,1.255,18,1.263,29,0.809,35,0.304,61,0.971,85,3.851,90,1.624,117,1.682,148,1.656,155,2.221,255,2.874,309,3.76,310,6.524,311,1.972,377,3.249,456,3.557,475,3.249,550,2.795,616,7.559,676,2.372,1308,2.821,1309,5.398]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.239,14,0.869,244,2.768,258,3.539,737,4.635,749,2.733]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.266,244,2.495,737,4.177,741,4.3,1310,5.568,1311,5.568,1312,5.126]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.212,4,1.269,5,1.421,14,1.163,35,0.329,60,1.765,90,1.759,148,2.538,181,1.503,240,1.137,241,1.498,244,4.682,366,1.605,368,2.03,415,3.518,738,4.849,1313,5.382,1314,4.17]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.059,35,0.407,61,1.299,1315,6.272]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1038,4.178,1315,5.199,1316,5.986,1317,4.779,1318,5.986]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.078,17,1.662,18,1.672,29,1.071,35,0.403,49,1.513,131,4.098,136,3.576,324,2.504,915,6.581,1315,9.271,1319,7.148]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.206,465,4.09,639,2.799,1320,6.649]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[148,1.498,238,3.022,758,3.9,1320,4.498,1321,4.243,1322,4.885,1323,4.498,1324,4.885,1325,4.885]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.17,17,1.696,18,1.707,29,1.093,35,0.411,324,2.556,392,4.45,633,6.462,758,5.824,1118,5.824,1323,6.717,1326,7.296,1327,6.717,1328,7.296,1329,7.296]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.051,11,0.671,31,1.199,62,3.017,244,2.768,1330,5.125]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.839,31,1.5,1331,6.41]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.081,17,1.769,18,1.78,31,2.137,35,0.429,64,2.95,80,3.148,150,3.906,1006,3.906,1330,8.214]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.051,11,0.671,63,4.225,764,3.424,995,4.772,1332,6.179]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.65,668,3.603,995,4.624,997,5.512,998,5.512,999,5.512]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.197,5,0.919,9,0.075,17,0.879,18,0.884,30,1.63,35,0.213,39,1.504,40,2.414,49,1.455,60,1.802,100,1.133,118,2.245,120,2.448,148,1.83,151,1.473,167,1.777,171,2.49,281,3.291,309,1.817,324,2.091,330,1.661,335,2.191,368,1.312,392,2.305,423,3.282,637,3.545,676,1.661,718,3.135,745,2.49,995,7.859,1001,3.48,1002,3.48,1004,3.48,1005,3.017,1071,2.835,1333,3.78,1334,3.48,1335,3.78]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.671,16,1.838,29,0.926,31,1.199,764,3.424,1331,5.125]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.605,31,1.081,550,2.883,1192,3.735,1330,4.618,1331,6.631]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.053,29,0.972,31,1.973,35,0.366,64,3.451,65,1.96,80,2.685,150,3.331,243,2.405,244,3.989,323,1.788,399,1.594,422,2.988,647,3.636,1006,3.331,1330,7.385,1331,5.384]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.047,31,1.119,61,1.036,263,3.068,766,2.167,1238,4.211,1336,4.451]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.256,875,4.126,1133,4.855,1336,4.999,1337,6.473]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.073,16,1.513,17,1.183,18,1.19,31,1.453,35,0.287,60,1.536,148,1.56,156,2.326,202,3.986,233,2.342,243,1.885,330,2.235,378,2.41,519,3.103,549,4.22,613,4.22,673,2.446,751,2.545,766,3.684,786,4.559,837,2.326,886,2.984,1135,3.929,1336,7.567]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.059,49,1.15,184,2.085,1338,6.649]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1339,9.589]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.046,11,0.614,35,0.456,42,1.874,61,1.017,143,1.616,164,1.604,181,1.455,185,2.721,286,3.169,323,1.559,337,4.037,386,4.037,516,5.209,525,3.665,550,2.93,822,4.914,1006,2.904,1132,1.835,1308,2.956,1338,9.481,1340,4.517,1341,5.658,1342,3.949,1343,5.658,1344,0.838]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.015,49,1.15,303,1.767,1345,4.758]],["keywords//docs/security/using-fail2ban-for-security/",[1345,5.092,1346,7.728,1347,7.116]],["toc//docs/security/using-fail2ban-for-security/",[9,0.044,11,0.577,14,0.747,29,0.797,35,0.564,61,0.956,136,2.66,164,1.508,189,2.225,214,3.567,291,3.503,623,3.119,756,1.897,1098,4.41,1132,1.724,1342,3.711,1345,7.005,1347,4.895,1348,5.317,1349,5.317,1350,5.317,1351,5.317,1352,4.895,1353,7.733,1354,4.895,1355,4.618]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.626,47,2.028,49,0.917,304,2.932,764,3.194,1234,5.005,1356,5.306]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.605,799,3.886,802,4.069,1192,3.735,1229,4.3,1357,5.568,1358,5.568]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.058,17,1.629,18,1.639,35,0.395,49,1.493,80,2.898,304,5.377,696,2.1,965,5.811,1234,6.084,1356,9.73,1359,7.006,1360,7.006]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.051,30,2.665,31,1.199,61,1.111,63,4.225,1361,5.366]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.791,31,1.256,56,5.369,116,3.322,1361,5.621]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.097,14,0.896,17,1.482,30,2.749,31,1.237,35,0.359,41,4.547,54,3.943,143,1.82,199,2.934,296,3.786,397,4.063,639,2.47,1071,4.781,1361,9.424]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.047,11,0.626,171,3.797,255,3.068,330,2.532,764,3.194,1362,3.797]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1045,1.343,1192,2.396,1255,3.101,1362,2.353,1363,3.571,1364,2.242,1365,3.571,1366,3.571,1367,3.571,1368,3.571,1369,3.571,1370,3.571,1371,3.101,1372,3.571]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.604,9,0.077,16,1.656,29,1.198,35,0.314,42,1.844,49,0.886,64,2.158,89,1.701,90,1.675,202,2.965,283,4.177,324,1.951,465,5.298,675,2.084,766,3.517,786,2.858,1135,4.301,1313,5.127,1362,6.736]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.059,164,2.048,189,3.022,1373,5.277]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[164,1.17,881,2.88,1374,4.126,1375,4.126,1376,4.126,1377,3.583,1378,4.126,1379,4.126,1380,4.126,1381,4.126,1382,4.126,1383,4.126]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.09,17,1.2,18,1.208,35,0.427,45,2.298,46,2.268,74,2.541,80,2.135,150,3.884,164,1.463,281,2.298,309,2.482,311,1.885,318,2.16,330,2.268,460,2.482,611,3.401,637,3.066,1373,7.209,1384,5.162,1385,6.967,1386,4.281,1387,5.162,1388,5.162,1389,4.483]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.671,89,1.888,639,2.395,752,4.071,764,3.424,1118,4.932]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.65,680,4.624,752,3.944,916,4.178,1118,4.779,1390,5.986]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.063,129,5.014,205,5.105,633,5.105,639,3.838,752,6.525,779,2.197,780,3.716,1118,7.905,1261,6.609,1391,7.61]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[124,4.627,164,2.236,1075,6.296]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.198,117,1.222,164,1.112,238,2.427,303,0.96,309,1.886,611,2.585,1075,3.132,1132,1.272,1392,3.923,1393,3.923,1394,3.923,1395,3.923]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.049,29,0.89,35,0.547,42,1.968,90,1.788,302,3.227,309,2.858,310,3.626,335,3.445,422,2.736,475,3.577,546,4.148,611,3.916,984,5.162,1075,7.741,1087,3.577,1396,3.916,1397,5.944,1398,5.944,1399,5.944,1400,5.473,1401,5.944,1402,4.591]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.051,35,0.348,49,0.984,191,3.424,504,4.071,845,4.772]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1403,7.728,1404,7.728,1405,7.728]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.073,17,1.509,18,1.518,35,0.573,47,2.284,65,1.96,155,2.67,191,3.597,265,2.988,504,7.799,789,4.631,845,5.013,1406,5.976,1407,6.491]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.418,164,1.888,189,2.787,247,3.907,1245,5.144]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.154,4,1.208,12,2.858,240,0.765,1245,4.3,1249,4.836,1408,5.568]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.209,9,0.077,12,2.858,14,0.783,17,1.295,18,1.303,32,3.55,33,2.331,35,0.451,49,0.886,155,2.291,199,3.681,240,1.098,263,2.965,547,5.127,591,4.446,929,3.445,1245,7.225,1264,4.069,1409,5.569,1410,5.569,1411,5.569,1412,5.569,1413,5.569]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.065,35,0.445,737,5.916]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[739,7.116,740,6.712,741,5.969]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.06,17,1.149,18,1.157,29,0.741,35,0.545,155,3.975,188,7.741,190,4.152,191,4.842,244,3.285,255,2.632,324,1.732,379,3.528,611,3.258,643,2.215,737,8.109,751,2.474,766,1.859,786,2.538]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.402,35,0.407,334,4.938,515,5.152]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.256,319,4.004,334,4.426,515,4.618,701,3.238]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.961,19,2.18,88,2.949,123,2.103,131,3.378,136,2.068,148,1.963,184,1.194,199,1.903,208,3.806,286,2.316,287,3.193,334,4.377,335,2.396,337,2.949,381,3.806,385,6.252,512,3.59,518,3.101,676,3.442,702,2.035,827,3.021,990,3.59,1068,3.021,1414,3.59,1415,4.018,1416,4.134,1417,2.456,1418,4.134,1419,3.59,1420,4.134,1421,4.134,1422,4.134,1423,3.806,1424,3.806,1425,4.134,1426,3.429,1427,3.806,1428,4.134,1429,3.806,1430,3.806,1431,4.134,1432,4.134,1433,3.806]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.838,29,0.926,49,0.984,671,4.515,1434,5.366,1435,4.932]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[671,3.57,1273,2.902,1434,4.243,1435,3.9,1436,4.885,1437,4.885,1438,4.885,1439,4.885,1440,4.885]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.06,16,2.158,29,1.087,35,0.488,49,1.379,89,2.217,100,1.462,131,2.103,190,2.762,232,3.766,309,3.489,368,1.693,696,1.462,708,3.893,779,1.408,780,2.381,1006,2.503,1273,2.897,1434,8.91,1435,5.792,1441,4.876,1442,4.876,1443,6.018,1444,6.301]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.055,368,2.313,576,5.316,725,5.524,1445,6.131]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[725,4.317,1446,7.613,1447,5.204,1448,5.204,1449,5.204,1450,5.204,1451,5.204]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.965,9,0.059,11,0.522,14,0.676,35,0.484,38,1.701,46,2.114,49,0.766,120,4.653,143,1.374,148,1.475,165,4.177,192,2.23,218,3.432,258,2.755,273,3.84,323,1.979,324,1.685,368,2.494,647,2.694,696,1.442,725,8.461,789,3.432,1230,3.715,1445,7.913,1452,4.81,1453,4.81,1454,4.81,1455,4.177]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.445,675,2.951,1151,5.291]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.043,35,0.293,89,1.59,487,4.154,624,3.491,675,1.947,766,1.957,1151,3.491]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.058,17,1.629,18,1.639,31,1.36,35,0.528,49,1.493,143,2.678,233,3.225,240,0.962,519,4.273,675,2.621,735,5.811,766,2.634,780,3.421,1151,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.936,89,2.035,369,4.314,939,5.524,1456,5.316]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[369,4.564,916,4.917,939,5.843,1456,5.624]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.738,102,6.724,311,3.274,458,5.021,639,3.474,939,9.108]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.567,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.09,9,0.059,164,2.048,189,3.022]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1458,3.474,1461,3.105,1462,4.351,1463,4.351,1464,4.351]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.7,3,6.557,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[184,2.085,323,1.99,676,3.173,1465,4.137]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[303,1.584,676,3.905,1465,3.708,1466,4.618]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.044,11,0.577,21,3.082,35,0.3,61,0.956,117,1.656,148,1.631,164,1.508,167,2.5,189,2.225,308,3.338,368,3.164,424,3.289,676,2.336,756,1.897,916,3.711,1132,1.724,1308,2.778,1465,6.719,1467,5.317,1468,4.618,1469,9.113,1470,4.245]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.671,49,0.984,143,1.765,240,0.849,764,3.424,1176,3.041]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.65,199,2.756,240,0.822,701,2.995,1192,4.016,1471,5.986]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.081,17,1.43,18,1.439,35,0.484,40,3.47,132,4.614,181,1.582,240,1.357,244,4.789,286,3.446,318,2.574,366,1.689,460,2.958,1472,4.293,1473,5.342,1474,4.751]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.626,49,0.917,90,1.734,447,2.984,734,3.565,764,3.194,1475,5.005]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.703,447,3.352,1192,4.342,1475,5.621,1476,6.473]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.072,17,2.032,18,2.045,35,0.493,49,1.391,131,3.77,1475,9.39]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.059,49,1.15,89,2.206,1477,6.272]],["keywords//docs/game-servers/install-teamspeak/",[1229,5.441,1477,6.118,1478,7.045,1479,5.441]],["toc//docs/game-servers/install-teamspeak/",[9,0.058,17,1.629,18,1.639,35,0.395,64,2.715,80,2.898,296,4.162,309,3.369,357,5.593,368,2.433,469,4.616,608,4.998,1477,10.217,1480,7.006]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.245,35,0.375,89,2.035,478,2.355,1481,6.131]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[642,5.167,1482,6.473,1483,5.959,1484,5.621,1485,6.473]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.495,32,6.36,478,3.527]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.051,31,1.199,49,0.984,61,1.111,143,1.765,263,3.289]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.162,61,1.076,199,2.756,701,2.995,875,3.816,876,5.199]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.068,17,1.936,18,1.948,31,2.036,61,1.498,65,2.515,265,4.83,330,3.66]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.325,258,3.301,504,3.797,749,2.549,845,4.451,1486,4.6]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.208,117,1.735,240,0.765,241,1.427,504,3.669,875,3.549,1487,5.126]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.169,35,0.493,148,2.681,181,2.248,366,2.4,749,3.866,1486,6.978]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.019,14,0.714,258,2.909,504,4.927,749,2.246,845,3.923,1345,3.346,1486,4.054]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.06,240,0.671,241,1.252,504,3.219,875,3.114,1345,3.219,1487,4.498,1488,3.9,1489,4.885]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.044,35,0.448,148,2.439,156,3.636,191,4.408,504,6.713,538,6.349,845,6.143,1486,6.349,1490,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.984,61,1.111,143,1.765,240,0.849,263,3.289,1238,4.515]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,240,0.715,677,4.791,678,4.154,701,2.604,1491,5.204,1492,4.154,1493,5.204]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.08,17,1.405,18,1.414,35,0.478,40,3.428,132,4.535,181,1.555,240,1.457,244,4.753,286,3.387,318,2.53,366,1.66,460,2.907,1472,4.219,1473,5.251,1474,4.67]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.299,263,3.844,749,3.194,1238,5.277]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.896,61,0.742,240,0.567,241,1.058,276,2.099,749,1.825,875,2.63,1494,4.126,1495,4.126,1496,3.422,1497,3.799,1498,4.126]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.271,5,1.67,9,0.076,16,2.043,17,1.597,18,1.607,29,1.029,35,0.522,181,1.767,192,3.185,240,1.271,241,1.761,366,1.886,673,3.303]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.555,101,3.421,102,5.417,368,2.508]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.947,841,4.271,901,4.178,906,3.512,1499,5.512,1500,5.512]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.07,35,0.481,74,4.199,101,5.045,364,5.953,906,5.004,1501,6.809,1502,7.853]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.041,89,1.888,101,2.927,102,4.635,368,2.146,901,4.312]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.741,841,3.972,872,4.618,901,3.886,906,3.266,1499,5.126,1500,5.126]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.051,11,0.932,35,0.347,61,1.543,74,3.028,101,4.679,117,1.916,164,2.432,189,2.574,364,4.293,473,3.861,906,3.609,1132,2.782,1308,4.482,1501,4.91,1502,5.663,1503,5.307]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.293,61,1.197,63,4.554,452,3.48,1188,3.545]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.081,61,1.001,452,2.909,1189,3.351,1504,3.886,1505,3.444,1506,5.126]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.359,9,0.088,17,1.455,18,1.465,31,1.686,45,2.787,46,2.751,47,2.203,80,2.59,180,3.546,281,2.787,311,2.287,318,2.62,452,3.271,460,4.176,699,4.918,1188,4.623]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.936,89,2.035,90,2.004,142,3.73,1507,5.784]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.7,89,1.406,90,1.385,129,3.033,240,0.632,247,2.7,452,2.405,665,3.997,1507,3.997,1508,4.238]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.076,16,2.043,29,1.029,35,0.522,49,1.094,89,2.099,148,2.107,240,0.943,427,4.03,508,3.848,637,4.081,696,2.059,758,5.484,1507,8.036,1508,6.325,1509,5.966]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[901,6.063,1510,7.206]],["keywords//docs/platform/kvm-reference/",[901,4.517,1511,6.473,1512,6.473,1513,6.473,1514,5.621]],["toc//docs/platform/kvm-reference/",[34,4.369,35,0.353,74,3.081,99,3.469,117,1.95,164,1.775,226,3.185,229,3.93,311,2.287,346,4.369,366,1.719,433,3.93,575,3.93,637,3.719,780,3.057,867,5.437,901,4.369,916,4.369,1013,2.635,1308,3.271,1402,4.835,1514,5.437,1515,6.26,1516,4.696]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.567,9,0.059,61,1.299,263,3.844]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.337,4,0.896,5,1.003,61,0.742,117,1.285,238,2.552,875,2.63,1457,2.719,1458,3.294,1459,3.294,1460,3.422,1461,2.944]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.047,11,0.626,31,1.119,35,0.325,62,2.814,241,1.477,1160,2.222]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.368,241,1.806,882,5.285,1160,2.717]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.055,17,1.566,18,1.576,31,1.773,35,0.38,60,2.035,65,2.035,181,1.733,241,2.656,243,2.497,286,3.775,303,1.649,342,6.204,366,1.85,603,4.44,1160,2.598,1517,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.723,31,1.293,241,1.707,764,3.691,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.605,31,1.081,241,1.427,1160,2.147,1518,5.568,1519,3.266,1520,3.735]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.547,42,1.968,60,1.795,65,1.795,80,2.459,126,5.518,167,2.795,181,1.529,241,1.524,243,2.202,303,1.455,311,2.171,366,1.632,399,1.459,603,3.916,1160,2.292,1415,3.731,1517,3.731,1521,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1153,5.916,1522,7.262,1523,5.627]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.866,741,3.773,1312,4.498,1523,3.485,1524,4.885,1525,4.498,1526,4.885,1527,3.773,1528,4.498]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.033,135,5.976,136,3.247,142,3.636,148,1.991,190,3.676,368,2.254,473,4.074,509,3.906,629,5.637,743,4.631,1099,5.384,1523,7.25,1527,5.013,1529,6.491,1530,5.637,1531,6.491,1532,6.491,1533,6.491,1534,5.976]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.449,789,5.152,1523,5.152,1527,5.578]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.053,741,4.02,749,2.302,1488,4.154,1523,3.713,1527,4.02,1528,4.791,1535,5.204]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.764,4,2.355,9,0.052,16,1.896,29,0.955,35,0.496,64,2.47,181,1.639,219,3.943,240,1.208,241,1.634,311,2.328,366,1.75,942,2.875,1527,4.922,1534,5.868,1536,6.373]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.051,11,0.671,49,0.984,764,3.424,1099,5.125,1523,4.408]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[740,4.243,741,3.773,1203,3.773,1523,3.485,1525,4.498,1537,4.885,1538,4.885,1539,4.885,1540,4.498]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.192,9,0.049,16,1.768,29,0.89,49,1.333,64,2.304,118,3.531,155,3.445,190,3.366,233,2.736,318,2.488,324,2.083,464,2.816,507,5.162,519,3.626,696,1.781,751,2.974,951,4.745,1099,6.947,1523,5.975,1527,4.591,1540,5.473,1541,5.944]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.047,49,0.917,117,1.795,303,1.41,639,2.234,721,2.907,884,3.673]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.605,61,1.001,164,1.579,447,2.883,650,2.33,721,2.809,1132,1.806]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.072,29,0.955,35,0.359,49,1.015,90,1.917,117,1.985,119,3.694,123,3.243,136,4.399,324,2.233,336,3.835,513,4.129,639,2.47,721,5.744,779,1.84,1542,6.373,1543,6.373]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.206,1415,4.533,1544,5.152,1545,5.277]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[303,1.584,309,3.112,1546,6.473,1547,6.473,1548,5.621]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.267,19,3.487,255,3.52,422,3.044,546,4.615,676,2.906,958,6.088,984,5.742,1415,6.441,1545,7.498,1549,6.088,1550,6.612,1551,6.612,1552,6.088,1553,6.612,1554,5.742]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.299,263,3.844,1023,3.499,1238,5.277]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1023,3.414,1238,5.148,1555,4.24]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,263,3.587,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.626,49,0.917,368,2.001,764,3.194,1273,3.423,1435,4.6,1557,5.763]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1273,5.084,1435,6.832]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.526,9,0.063,35,0.429,49,1.211,80,3.148,99,4.217,141,2.766,324,2.666,427,4.464,566,7.007,637,4.521,1273,4.521,1558,9.903]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.044,11,0.586,49,0.859,764,2.992,1038,3.768,1070,4.689,1559,5.399,1560,4.971]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,799,3.409,1038,3.409,1139,3.773,1192,3.277,1229,3.773,1251,4.498,1561,4.885,1562,4.885]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.055,17,1.566,18,1.576,35,0.38,49,1.454,80,2.788,320,3.554,696,2.02,965,5.589,1070,8.999,1139,5.204,1560,9.54,1563,6.738,1564,9.134]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.586,61,0.971,74,2.658,99,2.992,550,2.796,837,2.468,906,3.167,1565,3.852]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.565,61,0.936,838,4.02,839,4.02,840,3.904,841,3.713,1566,4.154,1567,4.154]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[829,0.474]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.936,531,3.73,682,4.751,709,5.144,1568,6.66]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.703,61,1.164,531,3.626,682,4.618,709,4.999]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.801,8,2.787,9,0.085,12,2.05,15,2.403,16,1.188,24,2.756,35,0.529,42,1.322,44,5.737,60,1.882,64,1.548,96,1.998,148,1.225,207,2.372,318,1.671,324,2.183,335,2.315,427,3.655,433,2.507,465,2.262,511,3.084,623,2.343,682,5.466,696,1.197,709,7.682,770,3.677,1061,2.731,1071,2.996,1569,3.993,1570,8.656]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.15,61,1.299,189,3.022,1571,6.272]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1273,4.591,1571,6.712]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.087,49,1.695,131,3.679,368,2.962,427,5.004,696,2.557,1571,7.408]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,2.681,355,2.632,674,5.125,1510,5.125,1572,6.179,1573,6.179]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.057,355,3.001,1574,7.045,1575,7.045]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[110,3.614,112,5.585,372,1.198,422,3.834,458,6.434,664,7.668,755,7.668]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.499,164,1.752,189,2.586,756,2.205,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[756,2.309,881,4.517,1577,6.473,1578,6.473,1579,4.618]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.633,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.341,164,1.752,756,2.205,1013,2.601,1045,2.323,1576,3.258]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[756,2.309,1015,5.167,1579,4.618,1582,6.473,1583,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.175,49,0.984,110,2.681,143,1.765,177,4.312,803,5.125]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.565,61,0.936,110,2.258,112,2.771,177,3.632,190,2.948,701,2.604,1584,4.791]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.064,49,1.599,64,3.015,110,4.827,112,4.141,143,2.221,177,7.009,368,2.701,458,4.357]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.723,61,1.197,304,3.388,1585,5.144,1586,6.131]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.703,61,1.164,802,4.73,1587,6.473,1588,6.473]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.051,14,0.865,17,1.43,18,1.439,35,0.347,40,2.488,49,0.979,224,4.751,304,5.026,355,2.621,696,1.844,1071,4.614,1211,5.663,1231,7.898,1263,3.524,1585,7.629,1586,9.095,1589,5.663]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.445,14,0.936,334,4.554,515,4.751,1461,4.751]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.529,1461,5.026,1590,7.045,1591,6.486]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.18,319,4.811,334,5.318,909,5.428,945,6.755,1461,5.549,1592,7.778,1593,7.778,1594,7.778,1595,7.778,1596,7.778,1597,7.778]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.763,1035,7.262,1153,5.916]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.148,1598,7.045,1599,7.045,1600,7.045]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.421,11,0.635,15,4.981,16,2.462,42,1.936,60,1.765,61,1.051,95,6.048,148,1.793,164,2.347,175,4.17,189,2.446,300,4.08,309,2.811,310,3.566,486,4.385,603,3.852,675,2.187,804,5.077,1013,2.461,1601,5.845,1602,5.845,1603,5.845]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.255,240,1.083,319,4.879]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.397,240,0.968,701,3.525,1591,6.486]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[132,5.153,240,0.943,244,4.146,286,3.848,385,5.484,822,5.966,909,4.794,1472,4.794,1473,5.966,1604,6.325,1605,6.87,1606,6.87,1607,6.87,1608,6.87,1609,6.87,1610,6.87,1611,6.87,1612,6.87]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.055,47,2.344,110,2.89,258,3.815,749,2.945]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.703,61,1.164,110,2.809,749,3.93]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.583,9,0.079,29,1.093,35,0.411,64,2.828,110,4.679,112,3.884,240,1.002,368,2.533,458,4.087,640,4.58,696,2.187,749,3.226]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[829,0.474]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.936,49,1.06,184,1.923,515,4.751,538,5.316]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[184,1.869,538,5.167,1613,5.621,1614,5.959,1615,5.167]],["toc//docs/uptime/monitoring/top-htop-iotop/",[156,3.556,274,5.683,318,3.255,355,4.739,376,4.681,538,6.209,731,7.161,732,5.125,1549,7.161,1613,6.755,1614,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.06,60,2.011,143,1.902,300,4.648,1616,5.784]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1616,6.712,1617,7.728,1618,7.728]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.595,35,0.574,64,3.083,148,2.439,273,6.349,355,4.341,368,2.762,375,4.61,1616,8.848]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.264,11,0.626,16,1.714,29,0.863,61,1.036,312,2.532,1078,4.6]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.948,4,1.13,11,0.565,61,0.936,312,2.287,488,3.904,1078,4.154,1619,4.791]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.025,9,0.068,29,1.248,35,0.469,60,2.515,65,2.515,243,3.086,309,4.005,1065,4.665,1078,6.649]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.263,469,5.197,1151,5.291]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[487,7.467,488,4.177,1151,5.363,1619,5.126]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.429,156,3.479,181,1.957,204,5.429,366,2.09,572,6.609,631,6.312,672,4.051,877,5.561,1151,7.384,1620,4.708,1621,7.61]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.055,116,3.418,265,3.066,888,5.524,1074,4.866]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[116,3.072,888,4.965,1622,5.199,1623,4.779,1624,4.779,1625,4.965]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.742,9,0.051,35,0.353,60,2.623,116,3.213,202,3.333,265,2.882,442,5.193,465,3.546,754,5.764,888,7.203,1074,6.346,1530,8.66,1626,8.684,1627,6.26,1628,6.26,1629,6.26]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.055,35,0.375,61,1.197,189,2.787,552,5.524]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.88,1630,8.559]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.043,29,0.785,35,0.431,64,2.03,96,3.827,99,2.903,148,2.771,167,3.597,184,1.512,214,3.514,310,3.195,346,3.656,391,6.794,525,3.393,552,8.765,601,4.823,696,1.57,756,1.869,827,3.828,886,3.073,1342,3.656,1427,4.823,1631,4.823]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.059,61,1.299,1273,4.29,1632,6.272]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,875,3.114,876,4.243,1238,3.57,1273,2.902,1555,2.94,1632,4.243,1633,4.243,1634,3.409]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.083,17,1.808,18,1.82,35,0.438,49,1.238,80,3.218,90,2.34,309,3.74,696,2.331,779,2.246,1273,4.62,1632,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.065,61,1.418,1635,6.092]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-debian/",[829,0.474]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.065,11,0.857,1635,6.092]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.839,1273,4.591,1635,5.969]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.089,35,0.493,464,4.141,696,2.62,734,5.407,1273,5.193,1635,6.751]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.039,11,0.521,49,0.763,61,0.862,89,1.465,308,3.01,895,3.503,1093,4.164,1636,4.164,1637,4.414]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1636,6.712,1637,7.116,1638,7.728]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.074,14,1.26,35,0.505,141,3.258,323,2.47,1636,9.536]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[276,4.013,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.845,341,4.193,1095,5.348,1639,5.959]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.42,155,4.252,241,2.086,308,6.489,752,5.361,786,4.176,1095,4.897,1584,7.491,1640,5.361]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[531,4.418,752,5.197,1095,4.746]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.556,341,3.878,531,3.353,1095,5.065,1639,5.512]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.967,28,5.278,155,3.709,308,5.66,427,3.879,752,7.6,786,3.394,1095,6.941,1195,5.742,1199,5.107,1641,6.612]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.417,393,5.578,1023,3.499,1642,6.649]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,393,3.773,856,3.665,1023,2.367,1132,1.584]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.075,11,0.992,60,2.035,61,1.642,103,5.852,118,4.003,164,2.59,189,2.82,1006,3.458,1013,2.837,1023,3.265,1132,2.185,1264,4.924,1642,6.204,1643,6.738,1644,6.738]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.671,16,1.838,29,0.926,49,0.984,61,1.111,1273,3.67]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.839,61,1.39,1273,4.591]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.072,49,1.391,131,3.77,368,3.035,696,2.62,1273,6.974]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.857,749,3.488,764,4.371]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.13,240,0.715,241,1.334,1192,3.491,1645,4.791,1646,5.204,1647,5.204,1648,4.02]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.494,4,2.119,5,1.811,9,0.08,17,1.732,18,1.743,35,0.614,181,1.916,240,1.023,241,1.91,366,2.045]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.048,189,3.022,1474,5.578,1649,7.222]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[164,2.191,881,5.394,1650,7.728]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.05,14,0.85,17,1.405,18,1.414,35,0.341,40,3.428,49,1.558,95,4.418,100,1.812,148,1.854,296,3.591,569,5.015,696,1.812,1071,6.358,1474,7.559,1651,9.787,1652,6.046,1653,6.046]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.445,174,5.504,478,2.788]],["keywords//docs/networking/dns/common-dns-configurations/",[1484,6.712,1654,7.116,1655,7.116]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.83,29,0.922,35,0.347,42,2.037,49,1.366,169,4.442,181,1.582,213,3.985,217,4.293,378,4.679,477,3.752,478,2.175,479,4.614,756,2.195,757,2.605,1554,5.342,1656,5.663,1657,4.91,1658,4.91]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.059,31,1.402,61,1.299,177,5.04]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,276,2.486,1659,3.9,1660,4.243,1661,4.885,1662,4.885,1663,4.243,1664,4.885,1665,4.885]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.932,9,0.079,31,1.416,35,0.411,49,1.161,143,2.084,148,2.954,167,3.431,177,5.092,291,4.807,358,6.717,1666,6.717,1667,7.296]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.051,117,1.925,301,4.932,650,2.586,1668,5.366,1669,5.366]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[301,5.624,650,2.949,908,5.624,1668,6.118]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.053,11,0.705,14,0.912,49,1.417,60,1.96,61,1.167,117,2.022,136,4.454,318,2.716,1264,6.506,1308,3.391,1415,4.074,1503,4.015,1668,7.732,1670,6.491,1671,5.384,1672,5.976,1673,6.491]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[181,1.857,510,4.603,531,4.045,1077,5.277]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.405,488,4.855,531,3.626,1065,3.626,1674,5.959]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.153,5,1.398,9,0.067,16,1.71,29,0.861,35,0.618,65,1.737,191,4.534,240,0.79,243,2.131,255,3.061,324,2.015,531,3.221,696,1.723,779,1.66,1065,5.334,1151,3.858,1509,4.994,1675,4.314,1676,4.994,1677,5.75]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.341,5,1.502,35,0.348,191,4.769,1065,3.461]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[488,5.285,1065,3.946,1674,6.486,1678,7.045]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.494,4,2.119,5,1.811,9,0.061,35,0.55,191,5.412,255,3.966,324,2.61,1065,6.103,1675,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.071,177,6.063]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.058,65,2.832,90,3.18,118,4.162,150,3.596,190,5.31,330,3.079,542,6.084,608,4.998,674,5.811,718,5.811,1680,7.006,1681,7.006,1682,7.006]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.051,164,1.752,189,2.586,258,3.539,1160,2.383,1169,3.144]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.081,117,1.735,164,1.579,241,1.427,1160,2.147,1169,2.833,1683,2.618]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.072,29,0.955,31,2.106,35,0.567,41,4.547,42,2.11,47,2.243,80,2.637,181,1.639,241,2.254,366,1.75,399,1.565,1160,3.39,1684,4.781]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[650,3.636,921,6.935]],["keywords//docs/platform/network-helper/",[550,2.883,623,3.266,642,4.445,650,3.346,1685,5.568,1686,5.568]],["toc//docs/platform/network-helper/",[11,0.668,29,0.922,35,0.347,61,1.106,103,5.342,148,1.887,164,1.744,283,4.614,368,2.136,391,4.206,513,3.985,650,3.59,921,6.848,1132,1.995,1264,6.269,1308,3.214,1406,5.663,1430,5.663,1503,3.805,1671,5.102,1687,5.342,1688,6.151]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.874,61,0.971,189,2.26,244,2.419,550,2.796,667,3.293,1199,4.17,1689,4.31]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,531,2.915,667,3.174,668,3.132,669,3.803,1162,3.429,1689,4.154,1690,4.791]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.059,9,0.078,20,4.193,45,3.182,46,3.141,89,2.184,244,3.203,532,3.805,667,4.36,696,2.142,1199,5.521,1689,9.082]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.047,14,0.81,61,1.036,189,2.412,550,2.984,667,3.515,1689,4.6]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,531,2.915,550,2.695,667,3.174,668,3.132,669,3.803,1162,3.429,1690,4.791]],["toc//docs/websites/cms/drush-drupal/",[0,1.1,9,0.076,14,0.771,29,0.821,49,1.259,114,4.006,116,2.814,148,1.681,156,2.506,276,2.789,303,1.342,318,2.294,324,2.77,392,4.823,532,2.919,667,3.344,696,1.643,827,4.006,1005,6.311,1264,4.006,1472,3.826,1689,8.102,1691,5.482]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[164,1.888,189,2.787,240,0.915,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-apache2-centos/",[240,0.715,675,1.947,1132,1.688,1692,3.559,1693,4.791,1694,4.52,1695,5.204,1696,3.429]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.671,61,1.111,240,0.849,550,3.199,675,2.312,766,2.323]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.565,61,0.936,240,0.715,675,1.947,701,2.604,1692,3.559,1697,4.791,1698,4.791]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.983,18,1.996,35,0.6,60,2.576,240,1.171,675,3.192,766,3.207]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.784,764,4.002,1023,3.499,1176,3.555]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.839,1023,3.745,1192,5.185]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.055,11,0.992,15,4.055,16,2.004,42,2.231,74,3.317,89,2.059,100,2.02,141,2.45,510,4.295,571,4.23,967,5.589,1006,3.458,1023,5.021,1176,3.317,1177,5.589,1699,2.906]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.047,31,1.119,61,1.036,189,2.412,766,2.167,1336,4.451,1555,3.468]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.893,1133,3.453,1135,3.555,1336,3.555,1555,2.77,1634,3.212,1663,3.997,1700,4.603,1701,4.238,1702,3.818]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.061,16,1.492,31,1.438,60,1.515,61,0.902,65,1.515,89,1.532,148,1.538,155,2.063,156,2.293,202,3.944,233,2.309,243,1.858,265,2.309,330,2.204,378,2.376,519,3.059,549,4.16,613,4.16,673,2.411,696,1.503,751,2.509,766,3.659,786,4.521,886,2.942,1135,3.873,1336,7.515]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1018,3.828]],["title//docs/websites/cms/cms-overview/",[90,2.173,323,1.99,702,3.555,877,5.277]],["keywords//docs/websites/cms/cms-overview/",[531,3.119,550,2.883,667,3.396,668,3.351,669,4.069,1162,3.669,1703,5.126]],["toc//docs/websites/cms/cms-overview/",[45,3.387,46,3.344,89,2.325,90,2.29,323,2.097,531,5.547,629,6.609,667,6.04,669,7.236,702,3.746,1199,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[397,5.028,1704,6.85,1705,7.262]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1704,4.52,1705,4.791]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.387,60,2.159,240,1.305,397,6.057,485,5.521,721,3.606,1045,2.688,1047,5.223,1576,3.769,1704,9.271,1706,7.148,1707,6.581,1708,7.148]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[148,2.419,1022,5.393,1709,6.092]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.078,14,1.327,696,2.83,1709,8.754]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.047,11,0.626,62,2.814,244,2.582,464,2.73,734,3.565,1715,5.005]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[464,3.337,734,4.358,1715,6.118,1716,7.045]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.079,17,1.359,18,1.368,35,0.329,90,1.759,148,1.793,232,4.515,244,4.305,399,1.435,464,2.769,643,2.619,676,2.569,734,3.616,1006,3,1264,4.271,1657,4.666,1658,4.666,1715,9.946,1717,4.849]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.047,11,0.626,49,0.917,171,3.797,330,2.532,757,2.44,1718,5.005]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[756,2.758,757,3.273,1718,6.712]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.044,49,0.859,60,1.63,155,2.221,183,4.908,240,0.741,320,2.847,324,1.891,364,3.768,368,1.875,380,3.768,477,3.293,696,1.618,757,2.286,766,2.94,936,3.557,961,4.05,1253,7.1,1254,7.338,1481,8.463,1718,4.688,1719,4.478,1720,5.398,1721,5.398,1722,5.398]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.417,856,5.417,1023,3.499,1723,6.649]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.57,164,1.385,303,1.196,856,3.665,1023,2.367,1132,1.584,1723,4.498]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.041,11,0.545,61,0.902,73,3.762,117,1.562,164,1.422,856,7.787,1006,2.574,1023,2.43,1132,1.626,1308,2.62,1503,3.102,1671,4.16,1687,4.355,1724,10.381,1725,10.381,1726,5.015,1727,5.015,1728,5.015,1729,5.015,1730,5.015,1731,5.015,1732,5.015,1733,5.015,1734,5.015,1735,5.015]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.654,458,4.867]],["keywords//docs/platform/linode-images/",[458,4.794,1736,8.559]],["toc//docs/platform/linode-images/",[47,3.155,90,2.697,458,6.65,1470,7.155,1737,8.963]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.341,31,1.199,61,1.111,189,2.586,1555,3.718,1738,5.366]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.529,31,1.368,1634,4.917,1738,6.118]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.583,9,0.079,14,1.026,31,1.87,35,0.411,47,2.568,65,2.203,141,2.652,243,2.703,422,3.359,696,2.187,1738,9.365]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.051,11,0.671,764,3.424,1202,4.772,1298,5.689,1299,5.366]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.13,30,2.244,31,1.01,116,2.671,452,2.719,1189,3.132,1202,4.02,1203,4.02]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.445,9,0.08,16,1.768,29,0.89,30,2.563,31,1.154,47,2.092,65,1.795,141,2.161,171,3.916,181,1.529,243,2.202,281,2.646,303,1.455,323,2.308,366,1.632,416,4.745,452,3.106,647,3.33,1202,8.572]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.936,638,5.524,1050,5.524,1479,5.144,1739,5.784]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1479,4.999,1739,5.621,1740,4.517,1741,5.621,1742,5.621]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.049,11,0.406,14,0.832,17,0.869,18,0.875,29,0.887,35,0.211,43,2.167,49,0.595,61,0.672,117,1.165,119,3.43,121,3.443,122,3.443,123,1.903,131,1.613,164,1.06,336,3.561,355,1.593,368,1.299,427,2.194,433,2.347,456,3.899,508,2.095,519,2.281,550,1.936,618,3.515,639,1.449,661,3.102,672,1.991,673,1.798,708,2.985,732,2.464,1048,2.985,1132,1.213,1263,2.142,1308,1.954,1739,8.8,1740,2.61,1743,2.557,1744,3.443,1745,3.74,1746,5.448,1747,3.74,1748,5.448,1749,3.74,1750,3.74]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.059,61,1.299,330,3.173,1751,6.272]],["keywords//docs/applications/messaging/install-znc-debian/",[1751,5.621,1752,6.473,1753,6.473,1754,6.473,1755,6.473]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.061,17,1.732,18,1.743,35,0.42,131,3.213,136,3.727,219,4.608,318,3.118,675,2.787,766,2.801,786,3.823,1751,8.481,1756,7.45,1757,7.45]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.015,180,4.09,752,4.758,756,2.577]],["keywords//docs/email/using-google-apps-for-email/",[1758,7.728,1759,7.728,1760,7.728]],["toc//docs/email/using-google-apps-for-email/",[0,1.845,378,4.357,477,5.61,886,5.395,1005,7.342,1719,7.628]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.407,117,2.25,623,4.237,1417,4.29]],["keywords//docs/networking/linux-static-ip-configuration/",[207,4.591,642,6.17,1417,4.591]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.335,60,1.795,61,1.069,112,3.164,117,1.852,131,2.563,164,2.375,189,2.488,207,3.531,372,0.855,397,3.789,433,3.731,650,2.488,751,2.974,918,4.241,921,4.745,1013,2.502,1132,1.928,1308,3.106,1355,5.162,1417,3.531,1503,3.677,1671,4.93,1761,5.944]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.626,42,1.908,47,2.028,1317,4.6,1373,4.211,1699,2.485,1762,4.451]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[240,0.632,241,1.18,906,2.7,1317,3.674,1373,3.363,1377,3.997,1488,3.674,1762,3.555,1763,3.033,1764,4.603]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.683,9,0.087,16,1.375,29,0.692,35,0.565,64,1.791,65,1.396,74,2.275,100,1.385,231,3.297,243,1.712,244,2.07,255,2.46,258,2.647,323,1.273,324,1.619,357,3.689,513,2.993,523,3.689,696,1.385,749,2.044,752,3.045,780,2.257,886,2.711,906,2.711,1373,5.093,1762,6.481,1765,4.621,1766,4.254,1767,4.621]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.971,189,2.26,240,0.741,241,1.384,368,1.875,1237,4.478,1555,3.249,1768,4.478]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[240,0.889,241,1.659,1069,5.621,1160,2.496,1242,5.959]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.065,35,0.574,240,1.092,241,2.882,318,3.329,496,6.143,1237,8.451,1768,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.772,16,1.981,29,0.998,61,1.197,63,4.554]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.666,4,1.405,5,1.574,61,1.164,1506,5.959]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.818,9,0.056,14,0.966,35,0.387,49,1.094,131,2.963,185,3.303,303,1.681,319,4.25,324,2.407,940,4.25,941,3.657,942,3.098,1769,6.87]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.055,35,0.375,61,1.197,834,5.144,1770,6.66]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.529,61,1.267,834,5.441,1321,6.118]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.808,9,0.086,35,0.591,372,1.198,696,2.496,834,8.103,1344,1.233]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.304,43,3.129,49,0.859,757,2.286,1045,2.03,1047,3.945,1640,3.557]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[756,2.309,757,2.741,1045,2.434,1047,4.73,1634,4.517]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.354,9,0.046,19,2.937,29,1.198,35,0.527,49,0.886,60,1.682,100,1.669,148,1.708,180,3.154,303,1.363,473,3.496,696,1.669,752,3.669,942,3.606,1045,3.517,1046,4.619,1047,4.069,1048,4.446,1049,5.127,1050,4.619,1153,4.177,1771,4.301,1772,5.569,1773,5.569]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.065,35,0.445,1774,6.85]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.565,61,0.936,158,3.219,164,1.476,587,4.791,1132,1.688,1321,4.52,1774,4.52]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.078,35,0.532,60,2.852,671,6.9,1774,8.201]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.278,117,2.075,708,5.316,1775,5.784,1776,5.524]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[226,3.293,1516,4.855,1777,6.473,1778,6.473,1779,6.473]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.864,61,1.43,74,3.915,117,2.478,164,2.255,708,6.349,1132,2.579,1308,4.156,1503,4.92,1517,4.993,1775,6.907,1776,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1018,3.828]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.15,749,3.194,1132,2.342,1780,6.649]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[749,2.647,1132,1.941,1781,5.986,1782,4.374,1783,4.491,1784,5.986]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[829,0.474]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.761,368,2.001,618,3.423,779,1.664,1087,3.468,1456,4.6]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,643,2.495,875,3.549,1785,4.618,1786,5.568,1787,5.126,1788,5.126]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.586,89,1.649,368,1.875,618,3.207,779,1.559,1087,3.249,1456,4.31,1699,2.328]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.65,643,2.682,1763,3.944,1785,4.965,1787,5.512,1788,5.512]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.085,60,2.457,89,2.486,117,2.535,119,4.716,123,4.14,131,3.509,136,4.071,1785,8.574]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.671,14,0.869,68,4.515,411,4.515,1091,4.635,1699,2.665]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.765,408,6.118,411,5.148,1699,3.038]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.048,35,0.329,49,0.931,68,7.022,80,2.418,89,1.786,117,2.578,119,4.797,123,4.211,131,3.569,303,1.431,336,4.981,411,8.059,618,4.917,620,4.271,637,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.239,29,0.926,164,1.752,697,2.927,1065,3.461,1789,5.366]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.156,29,0.863,61,1.036,189,2.412,697,2.73,1065,3.228,1555,3.468]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[829,0.474]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.156,11,0.626,29,0.863,697,2.73,1065,3.228,1699,2.485,1794,2.958]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.574,312,2.844,697,3.066,883,3.265,1790,4.999]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.006,5,1.219,9,0.041,24,2.218,29,1.458,35,0.283,38,1.773,42,1.661,49,0.798,96,2.509,148,2.272,181,1.29,255,2.67,302,2.723,355,3.156,593,3.873,604,3.664,650,3.1,672,2.67,697,4.173,886,2.942,1065,4.935,1066,4.16,1517,3.148,1790,3.873,1791,4.355,1792,4.16,1793,4.355]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.417,86,5.277,1280,5.152,1795,6.649]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.565,61,0.936,86,3.803,164,1.476,303,1.274,1132,1.688,1280,3.713,1795,4.791]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.065,11,0.864,46,3.495,61,1.43,86,5.811,118,4.725,156,3.636,164,2.255,303,1.946,766,2.991,1132,2.579,1796,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.055,11,0.723,757,2.82,971,4.245,1699,2.872]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,0.999,11,0.5,482,3.555,756,1.642,757,1.949,1045,1.731,1371,3.997,1576,2.427,1699,1.985,1797,2.847]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.063,29,1.14,35,0.429,60,2.991,311,2.78,318,3.185,345,5.429,482,7.648,696,2.281,1371,6.609,1797,6.126]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[829,0.474]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.809,100,1.618,181,1.389,240,1.074,366,1.482,1297,4.971,1798,5.399]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.5,61,0.828,100,1.38,164,1.305,1023,2.23,1132,1.493,1308,2.405,1497,4.238,1503,2.847,1799,4.603]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.27,35,0.341,61,1.087,100,2.54,101,2.864,181,2.18,198,3.984,231,4.313,240,0.83,244,2.709,287,4.67,366,2.327,392,3.688,456,3.984,608,4.313,672,3.219,869,4.67,1023,2.93,1792,5.015,1800,5.566]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.156,14,0.81,33,2.412,164,1.634,199,2.653,1789,5.005,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.709,164,1.835,199,2.98,1789,5.621,1801,4.999]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.156,11,0.626,14,0.81,33,2.412,199,2.653,1699,2.485,1801,4.451]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.65,33,2.505,199,2.756,550,3.1,1699,2.582,1801,4.624]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.065,33,3.329,35,0.448,38,2.812,199,3.661,307,5.335,320,4.194,475,4.786,647,4.455,1801,7.869,1802,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[829,0.474]],["title//docs/platform/billing-and-payments/",[1025,6.348,1027,6.517]],["keywords//docs/platform/billing-and-payments/",[1025,6.254,1027,6.42]],["toc//docs/platform/billing-and-payments/",[2,2.367,22,2.712,42,2.241,84,3.335,89,2.504,100,1.333,133,3.688,156,2.033,181,1.144,238,2.75,372,0.974,377,2.676,398,2.414,422,2.047,465,2.518,486,3.335,608,3.172,639,1.723,748,5.878,1022,4.628,1024,3.861,1025,6.695,1027,5.078,1077,3.249,1111,3.861,1344,0.658,1717,3.688,1803,4.446,1804,4.446,1805,3.434,1806,4.094,1807,4.446,1808,3.434,1809,3.861,1810,5.878,1811,3.688]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.554,236,5.524,633,4.468,1812,5.784]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1812,7.433,1813,8.559]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.395,49,1.493,136,4.691,148,2.149,318,3.924,323,1.93,475,4.216,647,5.252,650,2.932,696,2.1,1812,9.178]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.714,29,0.863,89,1.761,588,5.306,643,2.582,1086,3.301,1814,5.763]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.709,1086,5.091,1815,5.959,1816,6.473]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.314,29,1.165,49,1.238,117,2.423,119,4.508,123,3.957,336,4.681,396,5.835,416,6.209,618,4.62,696,2.331,1517,4.882,1815,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.624,494,6.935]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.475,89,1.492,164,1.385,264,3.773,265,2.249,494,3.9,1817,4.498]],["toc//docs/platform/package-mirrors/",[11,0.864,29,1.776,61,1.43,65,2.402,164,2.255,323,3.098,494,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.199,61,1.111,189,2.586,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.551,9,0.088,29,1.071,31,1.845,65,2.159,80,2.957,243,2.649,311,2.611,318,2.991,399,1.755,460,4.569,699,5.382]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.876,9,0.042,31,0.986,61,0.913,117,1.582,241,1.302,258,2.909,263,2.704,1169,2.584]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.583,5,1.774,9,0.079,17,1.696,18,1.707,31,1.416,35,0.411,47,2.568,49,1.717,143,2.084,241,1.87,346,5.092,1160,2.813]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,1169,3.388,1555,4.008]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.491,5,1.67,9,0.086,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,399,1.687,696,2.059,1160,2.649]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.988,469,4.758,819,4.533,1067,5.578]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.703,61,1.164,550,3.352,819,4.063,1067,4.999]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.888,18,0.894,35,0.55,41,2.726,60,1.154,89,1.167,92,3.318,99,2.117,143,1.091,204,4.294,214,2.563,307,2.563,309,1.837,310,2.33,318,1.599,391,2.612,475,2.299,510,2.435,702,2.962,819,6.645,1067,8.413,1068,4.398,1077,2.792,1340,3.05,1820,3.821,1821,4.992,1822,3.169,1823,3.821,1824,3.821,1825,3.821,1826,4.398,1827,3.318,1828,3.821]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[164,1.888,184,1.923,1013,2.804,1045,2.504,1829,5.784]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[184,2.034,1045,2.649,1364,4.422,1829,6.118]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.07,21,4.944,60,2.576,274,6.233,297,6.588,565,7.075,696,2.557,1829,7.408,1830,6.086]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,1699,2.485,1794,2.958]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.652,9,0.081,17,1.769,18,1.78,31,1.922,80,3.148,311,2.78,318,3.185,460,4.762,699,5.609]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.055,35,0.375,164,1.888,1013,2.804,1831,3.48]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.529,164,1.997,215,5.026,1831,3.681]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.085,17,1.891,18,1.904,35,0.459,60,2.457,306,5.679,675,3.044,1831,5.937]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[110,4.196]],["keywords//docs/applications/containers/what-is-docker/",[11,0.703,110,2.809,112,3.446,164,1.835,1699,2.791]],["toc//docs/applications/containers/what-is-docker/",[9,0.061,11,0.809,31,1.446,110,3.233,164,2.112,178,5.315,179,5.199,291,4.908,372,1.072,830,5.443,1013,3.136,1344,1.103,1699,3.213,1832,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[829,0.474]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.055,31,1.293,61,1.197,189,2.787,1555,4.008]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.01,61,0.936,199,2.396,701,2.604,1633,4.52,1634,3.632,1663,4.52,1833,5.204]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.213,9,0.08,29,0.906,31,2.059,40,2.446,61,1.087,64,2.343,90,1.819,100,1.812,101,2.864,184,1.746,265,2.783,303,1.48,330,2.657,399,1.484,696,1.812,779,1.746,837,3.875,1028,2.285,1834,3.13]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,1780,5.689]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1835,7.728,1836,5.969,1837,6.41]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[829,0.474]],["title//docs/platform/api/api-key/",[129,5.724,233,3.999]],["keywords//docs/platform/api/api-key/",[233,3.558,1838,7.728,1839,7.116]],["toc//docs/platform/api/api-key/",[377,6.179,751,5.136]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.654,470,6.198]],["keywords//docs/platform/linode-cli/",[1839,6.486,1840,7.045,1841,7.045,1842,7.045]],["toc//docs/platform/linode-cli/",[9,0.062,11,0.813,14,0.715,61,1.346,89,1.554,100,1.525,117,1.585,119,4.339,129,3.352,169,2.634,233,2.342,318,3.718,324,1.782,336,4.506,378,2.41,424,3.147,465,2.881,470,6.338,527,4.22,618,4.447,647,2.85,1132,1.65,1151,3.413,1800,4.684,1843,5.087,1844,5.087,1845,5.087]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.567,9,0.059,164,2.048,1013,3.04]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.465,4,0.944,5,1.058,117,1.356,164,1.234,238,2.692,1457,2.867,1458,3.474,1459,3.474,1460,3.609,1461,3.105]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.7,4,2.513,5,1.47,9,0.05,14,0.85,17,1.405,18,1.414,49,0.962,80,2.501,96,3.025,195,3.916,319,3.74,324,2.118,936,3.984,940,3.74,941,4.512,942,2.727,977,4.219,1056,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[232,5.578,276,3.674,478,2.553,1846,6.649]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[276,3.932,478,2.732,1846,7.116]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.159,100,2.142,117,2.227,119,4.143,123,3.637,148,3.274,181,2.746,207,4.246,336,4.302,618,4.246,623,4.193,640,5.965]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.567,9,0.059,61,1.299,189,3.022]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.222,4,0.851,5,0.954,61,0.705,117,1.222,238,2.427,1457,2.585,1458,3.132,1459,3.132,1460,3.254,1461,2.799,1633,3.407,1634,2.738]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.051,11,0.671,61,1.111,62,3.017,263,3.289,1847,4.408]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.605,61,1.001,875,3.549,1847,3.972,1848,5.568,1849,4.836,1850,5.568]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.059,61,1.299,189,3.022,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1634,4.917,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[829,0.474]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.059,11,0.784,1699,3.114,1847,5.152]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.765,1699,3.038,1847,5.026,1849,6.118]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.07,35,0.6,143,2.436,181,2.194,302,4.631,366,2.342,786,4.378,1847,6.086]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[164,1.752,240,0.849,241,1.584,368,2.146,1013,2.601,1240,3.424]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[199,2.396,240,0.715,241,1.334,1240,2.884,1683,2.447,1851,3.559,1852,3.559,1853,4.52]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.07,17,1.983,18,1.996,35,0.481,240,1.463,241,2.73,1240,4.727]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,189,2.412,240,0.791,241,1.477,368,2.001,1240,3.194,1555,3.468]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.445,9,0.055,61,1.197,189,2.787,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.208,61,1.001,215,3.972,1831,2.909,1856,4.618,1857,4.618,1858,4.618]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.055,35,0.375,61,1.197,263,3.545,1831,3.48]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,0.999,61,0.828,215,3.284,241,1.18,875,2.934,1831,2.405,1856,3.818,1857,3.818,1858,3.818,1859,4.603]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.15,749,3.194,1132,2.342,1860,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1782,5.148,1783,5.285,1861,7.045,1862,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.06,143,1.902,164,1.888,240,0.915,1013,2.804]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[164,1.697,240,0.822,1015,4.779,1696,3.944,1863,3.878,1864,5.512]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,3.203,366,1.963,460,3.437,1474,5.521]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.712,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.677,51,4.591,910,5.285]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.765,5,1.63,9,0.036,11,0.477,22,2.678,35,0.458,51,2.608,61,0.79,85,3.133,101,2.08,131,3.926,226,2.234,286,2.46,296,3.983,372,0.632,398,2.384,424,2.716,780,2.144,819,2.756,1033,3.505,1059,6.101,1275,3.505,1278,3.133,1426,3.642,1443,7.55,1865,4.043,1866,3.813,1867,4.391,1868,4.391,1869,3.505,1870,3.642,1871,4.043,1872,4.391,1873,3.642]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.531,180,4.467,910,5.393]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.368,51,4.185,910,4.817,1874,7.045]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.043,11,0.569,22,3.195,31,1.754,35,0.431,49,0.834,51,3.112,61,0.942,85,5.457,101,2.481,131,2.259,202,2.789,226,2.665,286,2.934,296,3.112,385,4.182,398,2.844,424,3.24,626,5.457,639,2.03,780,2.558,1275,4.182,1426,4.345,1443,4.345,1869,4.182,1870,4.345,1873,4.345,1875,4.549,1876,4.549,1877,4.345]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[180,4.467,240,1.083,910,5.393]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.185,240,0.968,910,4.817,1878,7.045]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.038,11,0.508,22,2.856,35,0.397,49,0.745,51,2.781,61,0.842,85,5.022,101,2.218,197,2.493,202,2.493,226,2.382,240,1.162,286,2.623,296,2.781,311,1.71,385,3.738,398,2.542,424,2.896,626,3.341,639,1.815,780,2.287,1275,3.738,1426,5.838,1443,3.884,1604,4.311,1707,4.311,1865,4.311,1869,3.738,1870,3.884,1871,4.311,1873,3.884,1875,4.066,1876,4.066,1877,3.884,1879,4.682,1880,4.066,1881,4.682]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.255,749,3.488,1503,4.879]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[829,0.474]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.206,181,1.857,236,5.99,1516,5.417]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1516,5.797,1884,7.728,1885,7.728]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.051,15,3.767,16,1.862,17,1.455,18,1.465,38,2.213,45,2.787,46,2.751,49,0.997,89,1.913,141,2.276,143,1.788,258,3.586,276,4.418,378,4.114,574,7.203,673,3.01,749,2.769,756,2.234,1620,3.873,1821,5.193]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.06,61,1.197,189,2.787,749,2.945,1555,4.008]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.944,61,0.782,240,0.598,241,1.115,749,1.924,1496,3.609,1634,3.037,1782,3.18,1886,4.351,1887,3.779,1888,4.351]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.055,117,2.075,258,3.815,749,2.945,1308,3.48]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.896,240,0.567,241,1.058,749,1.825,1308,2.156,1488,3.294,1889,4.126,1890,4.126,1891,4.126,1892,4.126,1893,4.126,1894,3.583]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.213,4,1.84,5,1.47,9,0.08,17,1.405,18,1.414,35,0.552,49,0.962,117,2.64,155,2.487,181,1.555,192,2.803,240,1.164,241,2.173,366,1.66,673,2.907,749,2.674,1308,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.784,89,2.206,1273,4.29,1699,3.114]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.765,1273,4.185,1699,3.038,1895,6.486]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.072,16,1.896,29,0.955,35,0.567,49,1.015,100,1.91,136,3.188,141,2.317,148,1.955,167,2.997,255,3.393,323,1.756,372,0.917,927,5.088,929,3.943,1273,5.98,1344,0.944,1896,6.373]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[829,0.474]],["title//docs/development/version-control/introduction-to-version-control/",[118,4.685,124,4.627,464,3.736]],["keywords//docs/development/version-control/introduction-to-version-control/",[116,3.616,1203,5.441,1897,7.045,1898,7.045]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.055,14,0.947,16,2.004,19,3.554,29,1.009,80,2.788,116,3.458,118,6.155,142,3.775,323,1.857,464,4.908,469,4.44,1899,6.738,1900,7.932,1901,6.738]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,189,2.586,240,0.849,452,3.228,1188,3.289,1555,3.718]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.445,9,0.055,11,0.723,1699,2.872,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1763,2.867,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.445,9,0.055,11,0.723,764,3.691,1831,3.48]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.944,11,0.473,215,3.105,1176,2.142,1192,2.919,1794,2.233,1831,2.274,1856,3.609,1857,3.609,1858,3.609,1904,4.006]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.063,16,2.264,17,1.769,18,1.78,29,1.14,60,2.298,148,2.334,303,1.863,306,5.311,621,4.777,675,2.847,1831,5.752]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.671,49,0.984,143,1.765,1155,3.769,1699,2.665,1794,3.171]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[701,3.866,1155,4.714,1157,7.116]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.035,9,0.042,11,0.561,29,0.773,35,0.505,40,2.088,145,3.987,146,3.772,154,6.392,156,2.36,181,2.538,244,2.313,366,2.709,368,1.792,399,1.267,647,4.239,1155,4.616,1158,7.78,1159,4.483,1501,4.12,1768,4.281,1905,4.752]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.984,61,1.111,143,1.765,189,2.586,240,0.849,1555,3.718]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,240,0.822,1555,3.603,1634,4.178,1864,5.512,1906,5.199]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.088,17,1.662,18,1.672,35,0.403,40,3.844,181,1.838,240,1.562,244,4.258,366,1.963,460,3.437]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.586,61,0.971,189,2.26,303,1.321,721,2.724,884,3.442,1699,2.328,1794,2.771]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.565,61,0.936,447,2.695,650,2.178,721,2.625,1634,3.632,1699,2.244,1895,4.791]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.059,29,0.721,35,0.271,49,0.766,89,1.469,98,3.357,131,3.097,136,4.3,233,3.957,303,1.177,308,3.019,415,2.895,422,2.214,447,4.451,519,2.934,639,1.864,721,3.623,751,3.593,766,2.701,779,1.389,938,3.357,980,3.432,981,3.432,988,3.432,1084,3.116,1086,2.755,1279,4.428,1314,3.432,1907,3.515,1908,3.608]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[829,0.474]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.445,780,3.252,1045,2.504,1556,5.784,1576,3.512]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.677,1045,2.906,1576,4.076]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.887,16,1.215,29,0.612,35,0.23,38,2.243,46,2.787,89,1.248,119,2.368,197,2.175,219,2.528,311,1.492,320,2.155,324,2.222,335,2.368,366,1.742,368,1.419,378,3.005,510,2.605,675,1.529,676,2.787,681,3.548,773,2.986,780,1.995,886,2.397,936,2.692,1006,4.869,1045,3.295,1047,2.986,1278,2.915,1576,4.621,1580,2.492,1909,3.548,1910,3.762,1911,4.086,1912,4.086,1913,4.086,1914,4.086,1915,4.086]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.051,61,1.111,240,0.849,263,3.289,452,3.228,1188,3.289]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1189,4.24,1505,4.358,1902,6.118,1903,5.285]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.064,17,1.808,18,1.82,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[219,4.879,226,4.013,620,5.763]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,219,3.444,226,2.833,303,1.363,620,4.069,1555,3.351,1916,5.568]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.378,9,0.056,16,2.043,35,0.522,61,1.664,80,2.842,219,4.25,226,4.708,311,2.509,469,4.526,513,4.45,620,5.02,633,4.608,1917,6.325,1918,6.325,1919,6.87]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[829,0.474]],["title//docs/platform/automating-server-builds/",[20,4.627,49,1.255,150,4.048]],["keywords//docs/platform/automating-server-builds/",[226,3.293,737,4.855,1523,4.618,1920,6.473,1921,6.473]],["toc//docs/platform/automating-server-builds/",[2,3.657,20,4.03,42,2.275,49,1.094,89,3.197,100,2.059,150,3.526,207,4.081,226,3.495,399,1.687,604,5.02,623,4.03,797,4.697,909,4.794,1657,5.484,1658,5.484,1922,6.87]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.255,368,2.739,757,3.34]],["keywords//docs/email/running-a-mail-server/",[1364,4.422,1659,5.624,1923,7.045,1924,7.045]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.435,35,0.215,42,1.265,49,1.626,136,3.011,150,1.961,188,4.515,205,2.563,214,2.563,266,2.726,286,2.14,368,1.327,406,3.169,422,1.759,477,4.542,478,2.128,675,1.43,757,4.722,766,1.437,773,2.792,779,1.103,1022,2.612,1253,2.951,1267,3.518,1344,0.566,1544,4.294,1640,2.517,1719,3.169,1821,3.169,1822,3.169,1918,3.518,1925,2.866,1926,3.518,1927,6.019,1928,6.019,1929,3.821]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.567,756,2.577,1045,2.715,1576,3.808]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.06,11,0.531,49,0.778,61,0.878,756,1.743,757,2.069,1045,1.837,1576,2.576,1930,4.885]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.29,9,0.069,17,1.382,18,1.391,24,2.629,35,0.335,60,2.529,65,1.795,96,2.974,207,4.975,378,3.967,478,2.101,672,4.459,675,2.224,756,3.46,766,2.235,1045,2.235,1576,3.135,1580,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.299,189,3.022,1023,3.499,1555,4.346]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1555,4.24,1931,6.486,1932,6.486,1933,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.055,15,4.055,16,2.004,42,2.231,61,1.212,74,3.317,80,2.788,89,2.059,100,2.02,141,2.45,189,2.82,354,4.807,510,4.295,571,4.23,732,4.44,780,3.291,1006,3.458,1023,4.426,1556,5.852]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[829,0.474]],["title//docs/security/linode-manager-security-controls/",[89,2.206,90,2.173,303,1.767,464,3.421]],["keywords//docs/security/linode-manager-security-controls/",[303,1.584,934,4.73,942,2.919,1139,4.999,1934,6.473]],["toc//docs/security/linode-manager-security-controls/",[35,0.236,45,1.862,46,1.838,96,2.093,129,2.756,132,3.138,151,1.63,152,3.851,155,1.721,156,1.912,182,5.271,185,2.011,207,3.837,233,1.926,303,1.024,306,2.919,311,2.359,320,4.68,324,1.466,331,3.339,345,2.984,397,4.117,465,2.369,623,3.789,639,1.621,676,1.838,751,2.093,756,1.492,775,6.854,923,2.984,942,1.887,983,3.469,1007,3.056,1098,6.545,1139,3.231,1935,4.183,1936,4.183]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.746,16,2.346,24,3.488]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.731,21,3.751,1937,5.167,1938,6.473]],["toc//docs/security/backups/backing-up-your-data/",[2,5.932,4,0.771,8,2.479,15,3.418,16,2.412,21,2.058,29,0.851,42,1.176,49,0.904,68,2.595,69,2.835,117,1.769,119,2.058,120,2.301,123,1.807,205,2.382,226,1.807,235,1.909,296,3.374,316,2.34,330,1.561,336,2.137,355,1.513,424,2.197,511,5.482,528,2.946,591,2.835,618,2.11,805,2.743,1771,2.743,1877,2.946,1937,7.079,1939,3.27,1940,2.743,1941,4.932,1942,2.946,1943,3.27,1944,2.946,1945,3.551,1946,3.551,1947,3.551,1948,3.551]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.221,910,5.941]],["keywords//docs/platform/longview/longview/",[910,5.285,1949,7.728,1950,7.728]],["toc//docs/platform/longview/longview/",[9,0.056,24,3.022,38,1.592,100,1.35,129,2.967,136,4.132,180,2.55,226,2.291,229,2.827,233,3.146,264,3.478,286,2.522,309,2.165,310,2.747,323,1.241,424,2.786,460,2.165,650,1.885,680,3.478,780,2.199,877,3.29,886,2.642,908,3.595,910,7.136,1074,3.29,1455,3.911,1880,3.911,1951,4.503,1952,4.503,1953,4.503,1954,4.503,1955,4.503,1956,4.503,1957,4.503,1958,3.735,1959,3.911]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.654,90,2.614]],["keywords//docs/platform/linode-managed/",[934,6.254,1960,8.559]],["toc//docs/platform/linode-managed/",[9,0.061,19,2.645,29,0.751,35,0.283,42,3.722,80,2.075,89,1.532,96,2.509,184,1.448,196,4.355,233,2.309,324,1.757,377,3.018,397,4.722,415,3.018,469,3.304,643,2.247,672,4.69,941,2.67,1084,3.249,1278,5.285,1827,4.355,1876,4.355,1909,4.355,1958,4.16,1961,5.015,1962,5.015]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.051,49,0.984,117,1.925,607,3.822,643,2.768,1963,5.366]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[550,4.002,643,3.463,1963,6.712]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.071,11,0.68,61,1.126,68,4.574,89,1.913,101,2.966,117,2.705,119,3.628,123,3.185,131,2.7,141,2.276,309,3.01,336,3.767,406,5.193,528,5.193,618,3.719,643,2.805,1308,3.271,1963,9.353]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,1164,3.461,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.322,1965,6.473,1966,6.473,1967,5.959,1968,5.167]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.074,14,1.26,60,2.707,240,1.231,696,2.686,1164,6.151]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.051,11,0.671,1263,3.539,1699,2.665,1969,3.67,1970,4.003]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[550,2.383,927,3.674,1763,3.033,1969,2.734,1971,3.363,1972,3.033,1973,3.033,1974,2.982,1975,2.982,1976,4.603]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.072,29,1.31,35,0.493,57,5.26,309,4.203,696,2.62,1969,6.423]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[829,0.474]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.586,14,0.759,31,1.048,39,2.149,47,1.9,180,3.058,1296,2.796,1699,2.328]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.565,31,1.01,39,2.071,792,2.671,1296,2.695,1977,5.204,1978,5.204,1979,4.791]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.065,31,1.544,35,0.574,49,1.266,151,3.099,156,3.636,372,1.144,696,2.384,1296,5.276,1344,1.178]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.626,43,3.34,47,2.028,49,0.917,757,2.44,1699,2.485,1980,3.423]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1364,3.758,1763,3.944,1980,3.556,1981,5.986,1982,4.491,1983,4.491]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.064,29,1.165,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,399,1.91,757,4.253,1980,4.62]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.586,396,4.05,1699,2.328,1794,2.771,1964,3.093,1984,3.768,1985,3.692,1986,3.293]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[241,1.535,1683,2.815,1763,3.944,1986,3.652,1987,4.374,1988,4.965]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.081,35,0.347,64,2.384,65,1.858,100,1.844,118,3.654,184,1.776,303,1.505,330,2.703,561,4.389,639,2.384,696,1.844,779,1.776,837,2.812,1028,2.324,1986,7.101,1989,5.663,1990,6.151]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[829,0.474]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,169,2.984,1699,2.485,1991,3.194]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[240,0.889,1155,3.948,1991,3.587,1992,4.73,1993,4.618]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.723,42,2.205,184,1.923,1183,3.956,1699,2.872]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[199,2.003,345,3.105,550,2.253,643,1.95,1047,3.18,1183,2.585,1342,3.037,1763,2.867,1926,4.006,1994,4.351,1995,4.006]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.059,35,0.403,45,3.182,46,3.141,143,2.041,302,3.88,345,6.78,355,3.045,639,2.77,756,2.55,1183,5.645,1342,4.988,1640,4.71,1740,4.988,1996,6.581]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.626,756,2.056,1176,2.837,1699,2.485,1794,2.958,1964,3.301,1997,3.423]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[1997,3.845,1998,6.473,1999,6.473,2000,4.426,2001,4.855]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.058,29,1.05,311,2.559,368,3.256,372,1.008,399,1.72,696,2.1,923,4.998,942,3.16,971,4.466,1344,1.037,1620,4.334,1797,4.334,1997,6.278,2002,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.626,756,2.056,764,3.194,1176,2.837,1299,5.005,1997,3.423,2003,5.763]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1997,3.845,2000,4.426,2001,4.855,2004,6.473,2005,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.06,29,1.093,311,2.665,368,3.345,399,1.791,696,2.187,923,5.205,942,3.291,971,4.651,1620,4.513,1797,4.513,1997,6.406,2002,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.586,31,1.048,1160,2.082,1176,2.658,1699,2.328,1794,2.771,1819,2.658,1964,3.093]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.256,1519,3.797,2006,4.999,2007,5.621,2008,4.517]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.234,9,0.051,19,4.524,29,0.922,35,0.602,60,1.858,65,1.858,126,5.652,167,2.893,181,1.582,243,2.279,311,2.247,366,1.689,399,1.51,478,2.175,532,3.275,1160,2.372,1415,3.861,1521,3.805,1819,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,240,0.697,241,1.302,368,1.764,1176,2.5,1240,2.815,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[240,0.765,241,1.427,1240,3.086,1683,2.618,1851,3.807,1852,3.807,1853,4.836]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.065,17,1.849,18,1.861,35,0.448,240,1.399,241,2.612,311,2.905,1240,4.408,1854,5.966,1855,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.626,14,0.81,245,3.565,1263,3.301,1970,3.733,2009,3.381,2010,5.763]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1971,3.015,1973,2.719,1974,2.673,1975,2.673,2009,2.421,2011,4.126,2012,4.126,2013,3.095,2014,2.719,2015,2.218,2016,4.126,2017,4.126]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.054,14,0.929,35,0.373,38,2.338,156,3.023,181,1.701,290,3.879,324,2.317,335,3.832,366,1.815,399,1.624,478,2.338,713,3.832,780,3.229,2009,6.02,2015,3.554,2018,4.96,2019,4.615,2020,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.723,140,3.512,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.574,883,3.265,2021,6.473,2022,6.473,2023,4.618]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.07,24,2.72,35,0.347,64,2.384,90,2.581,101,2.914,140,6.139,141,2.236,157,3.805,191,3.409,235,3.306,323,1.695,368,2.136,404,3.921,508,3.446,1065,3.446,2024,6.12]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1301,3.86,1699,2.872,1794,3.418,1964,3.815]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.047,11,0.626,31,1.119,1176,2.837,1699,2.485,1794,2.958,1964,3.301]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.605,31,1.081,199,2.563,701,2.786,2007,4.836,2027,5.568,2028,5.568]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.097,17,1.629,18,1.639,31,2.191,60,2.116,101,3.319,265,4.316,330,3.079,2029,7.006,2030,7.006]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2031,3.815]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.962,11,0.521,14,0.674,394,3.346,1699,2.068,1794,2.461,1964,2.746,2035,3.159,2036,3.106,2037,4.414]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.586,184,1.559,323,1.488,676,2.373,1465,3.093,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.671,240,0.849,585,3.822,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.055,17,1.566,18,1.576,35,0.654,38,2.382,178,4.807,179,4.703,240,0.925,281,2.999,374,4.924,792,5.701,1295,3.102,1301,3.905]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2038,3.652]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.605,116,2.858,454,3.351,1819,2.741,1988,4.618,2032,3.351,2038,3.054]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.126,42,1.682,240,0.697,312,2.232,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.626,14,0.81,184,1.664,743,4.111,1699,2.485,1940,4.451,2045,4.111]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.65,1763,3.944,2045,4.271,2046,5.199,2047,4.965,2048,5.986]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.076,14,0.966,29,1.029,35,0.522,136,3.437,265,3.162,281,3.058,311,2.509,386,4.901,575,4.312,696,2.059,1340,5.484,2045,6.602,2047,5.698,2049,5.306,2050,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.586,49,0.859,143,1.542,240,0.741,1176,2.658,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.565,240,0.715,550,2.695,701,2.604,1763,3.429,1794,2.671,1906,4.52,2051,5.204]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.089,17,1.696,18,1.707,35,0.411,40,3.896,181,1.876,240,1.481,244,3.269,366,2.003,460,3.508,1474,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.626,47,2.028,49,0.917,143,1.646,276,2.932,1699,2.485,2052,3.16]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1763,4.265,1863,4.193,1988,5.369,2052,3.55,2053,6.473]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.723,1699,2.872,1794,3.418,1964,3.815,2054,3.772]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2056,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.671,14,0.869,49,0.984,143,1.765,1699,2.665,2052,3.389]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[643,2.189,1763,3.219,1863,3.165,1988,4.052,2052,2.679,2057,4.885,2058,3.9,2059,4.885,2060,3.57]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.056,29,1.029,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,399,1.687,639,3.587,734,5.724,793,6.327,1006,3.526,2052,5.075]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[829,0.474]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.042,11,0.552,31,0.986,120,3.29,241,1.302,1160,1.958,1699,2.19,1794,2.607,1964,2.909]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.01,241,1.334,1160,2.007,1519,3.053,1520,3.491,2007,4.52,2061,5.204,2062,5.204]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,1169,3.144,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.19,5,1.333,9,0.065,11,0.595,29,0.821,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,399,1.346,779,1.583,837,2.506,1028,2.072,1160,2.114]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.528,509,3.056,756,1.812,1699,2.19,1743,3.473,1794,2.607,1964,2.909,2063,3.098]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.626,42,1.908,473,3.617,478,2.037,1699,2.485,2065,4.111,2066,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.65,478,2.116,650,2.505,2066,3.283,2067,5.986,2068,5.986]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.326,9,0.054,29,0.991,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,398,3.59,399,1.624,779,1.909,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.586,14,0.759,24,2.388,158,3.34,192,2.503,1699,2.328,2071,2.902,2072,3.852]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.703,883,3.265,2071,3.479,2073,4.618,2074,5.369]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,197,2.552,478,1.695,1176,2.36,1699,2.068,1794,2.461,1964,2.746,2075,2.552,2076,3.278]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.172,5,1.313,11,0.586,47,1.9,1053,2.931,1699,2.328,1794,2.771,1964,3.093]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.405,1457,4.265,1763,4.265,2080,4.999,2081,4.73]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.742,4,2.541,5,1.522,9,0.051,47,2.203,49,0.997,96,3.132,195,4.055,319,3.873,324,2.193,696,1.876,936,4.125,940,3.873,941,4.623,942,2.824,977,4.369,1056,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.567,9,0.059,11,0.784,764,4.002]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.896,11,0.448,117,1.285,1192,2.768,1457,2.719,1459,3.294,1461,2.944,2082,4.126,2083,4.126,2084,4.126,2085,4.126,2086,4.126]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.721,4,2.527,5,1.496,9,0.051,14,0.865,17,1.43,18,1.439,49,0.979,96,3.077,195,3.985,319,3.805,324,2.155,936,4.053,940,3.805,941,4.567,942,2.774,977,4.293,1056,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,1699,2.328,1794,2.771]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.063,35,0.429,49,1.576,80,3.148,156,3.479,290,4.464,372,1.095,571,4.777,697,5.523,1344,1.127]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[829,0.474]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.502,11,0.671,14,0.869,30,2.665,1053,3.354,1699,2.665]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.791,1054,5.167,1055,3.948,1152,4.342,1763,4.265]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.038,5,2.165,9,0.073,29,0.972,30,4.383,35,0.366,185,3.121,209,4.205,303,1.589,324,2.274,639,2.516,942,2.927,1056,3.718,1060,4.277,2087,5.013,2088,5.013]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.044,11,0.586,49,0.859,1699,2.328,1794,2.771,1964,3.093,2015,2.902,2089,3.167]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2015,3.218,2089,3.512,2090,5.986,2091,4.491,2092,4.491,2093,4.491]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.061,14,1.047,35,0.42,49,1.186,265,3.429,266,5.315,311,2.721,478,2.634,672,3.966,779,2.151,2015,4.004,2020,4.826,2089,5.729,2094,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.671,49,0.984,749,2.733,1699,2.665,1794,3.171,1964,3.539]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.06,11,0.531,240,0.671,241,1.252,749,2.16,1488,3.9,2095,3.773,2096,4.885,2097,4.885]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.434,4,2.062,5,1.738,9,0.078,17,1.662,18,1.672,35,0.602,181,1.838,192,3.314,240,0.982,241,1.832,366,1.963,673,3.437]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[829,0.474]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.255,184,2.277,1944,6.542]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.369,184,2.566,872,5.369,1944,5.369]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.037,14,0.961,35,0.385,65,1.36,69,3.595,74,2.216,80,1.863,89,2.523,90,2.485,96,2.253,100,2.476,184,2.385,323,1.241,469,2.967,510,2.87,515,3.213,640,2.827,676,3.63,756,1.607,779,1.3,805,3.478,909,4.77,910,3.079,1023,2.182,1177,3.735,1334,4.146,1342,3.143,1355,3.911,1657,3.595,1658,3.595,1877,3.735,1939,4.146,2098,4.503]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.255,184,2.277,2099,6.85]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[184,2.034,1615,7.513,2099,6.118]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.187,4,1.284,9,0.086,14,0.526,29,0.56,35,0.513,49,0.595,64,1.449,65,1.129,80,3.038,88,2.668,96,2.961,143,1.068,148,1.815,181,0.962,184,1.08,188,4.439,240,0.514,241,1.517,296,2.221,302,2.03,324,2.073,330,1.643,372,0.538,561,2.668,637,2.221,672,1.991,676,1.643,696,1.121,837,3.357,885,2.423,1344,0.554,1880,3.248,1989,3.443,2099,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[829,0.474]],["title//docs/applications/social-networking/dolphin/",[2100,8.397]],["keywords//docs/applications/social-networking/dolphin/",[2100,6.712,2101,6.17,2102,7.116]],["toc//docs/applications/social-networking/dolphin/",[4,1.073,5,1.202,9,0.089,16,1.471,29,0.741,35,0.413,40,2,49,0.787,64,1.916,100,1.482,231,3.528,241,2.24,244,2.215,324,1.732,368,1.717,392,4.472,672,2.632,676,2.173,696,1.482,734,3.059,756,1.764,793,3.381,895,3.613,927,3.947,2100,8.962,2103,4.945]],["deprecated//docs/applications/social-networking/dolphin/",[597,0.698,826,0.639,829,0.087,2102,2.151,2104,0.875,2105,0.875,2106,0.875]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.619,14,0.936,90,2.004,378,3.155,1120,4.062]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,0.999,5,1.119,479,3.453,1120,2.808,1831,2.405,2107,4.603,2108,4.603,2109,4.603,2110,4.603,2111,4.603]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.56,4,1.688,5,2.442,90,3.022,155,3.199,324,2.725,378,5.269,479,5.835,2112,7.778]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.055,49,1.06,117,2.075,2113,5.784,2114,6.131]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2113,6.118,2115,7.045,2116,7.045,2117,7.045]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.07,35,0.484,64,3.325,80,3.549,330,2.703,779,1.776,2113,10.75,2114,5.663,2118,10.688,2119,6.151]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.674,643,3.236,885,4.678,938,5.04]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[226,3.932,643,3.463,885,5.007]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.234,80,2.545,89,1.879,123,3.13,141,2.236,226,5.923,229,3.861,234,4.495,337,4.389,528,5.102,637,3.654,690,4.389,885,3.985,886,5.033,1101,5.663,1117,4.495,1744,5.663,2120,5.342,2121,5.102]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.674,465,4.09,885,4.678,1771,5.578]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[226,3.932,1516,5.797,2122,7.728]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.742,35,0.353,89,3.046,96,3.132,141,3.157,226,5.479,229,3.93,330,2.751,513,4.055,637,5.923,885,4.055,886,3.673,1117,4.574,2120,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.784,1023,3.499,1699,3.114,1794,3.706]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.839,1023,3.745,1794,3.967]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.05,11,1.063,15,3.638,16,1.798,42,2.002,74,2.976,80,2.501,89,1.847,100,1.812,141,2.198,354,4.313,510,3.854,571,3.795,732,3.984,967,5.015,1006,3.103,1023,5.14,1176,2.976,1177,5.015,2123,2.691,2124,5.015]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[829,0.474]],["title//docs/troubleshooting/rescue-and-rebuild/",[1117,6.348,2125,7.206]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1117,6.254,2125,7.099]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.965,8,3.887,9,0.046,65,1.682,80,3.308,89,1.701,131,2.402,148,1.708,226,2.833,229,5.019,323,2.203,368,1.934,433,3.496,515,3.973,633,3.736,637,3.308,643,2.495,938,3.887,941,2.965,1006,2.858,1117,6.835,1552,5.127,2125,4.619,2126,4.836,2127,5.127,2128,5.569]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.255,89,2.41,1516,5.916]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2129,7.728,2130,7.728,2131,7.728]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.518,29,0.773,34,3.602,35,0.556,42,1.709,89,2.312,96,2.582,120,3.344,141,1.876,148,1.583,157,3.193,190,2.923,207,3.066,226,4.558,229,3.24,310,3.148,415,3.106,513,3.344,571,3.24,623,3.028,633,3.463,637,4.495,885,3.344,961,3.872,986,4.752,1022,3.529,1117,3.772,1327,4.752]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[829,0.474]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.445,226,4.013,513,5.109]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[226,4.355,2132,8.559]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.724,9,0.04,14,1.01,35,0.603,80,1.99,101,2.279,117,1.498,226,5.642,255,2.561,377,4.322,469,3.169,513,6.932,568,4.177,640,3.019,896,3.608,960,3.99,983,3.99,1074,3.515,1917,4.428,2133,4.428,2134,4.81]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1014,6.649,1025,5.277,1026,5.99,1027,5.417]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1025,4.374,1026,4.965,1027,4.491,1809,5.199,1810,5.199,2135,5.986]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.073,100,1.876,133,5.193,372,0.901,377,3.767,422,2.882,465,3.546,608,4.466,639,2.426,1025,6.346,1026,5.193,1027,6.514,1111,5.437,1806,5.764,1808,4.835,1809,5.437,1810,7.542,1811,5.193,2136,6.26,2137,6.26,2138,6.26]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[829,0.474]],["title//docs/troubleshooting/troubleshooting/",[780,4.722]],["keywords//docs/troubleshooting/troubleshooting/",[780,4.683]],["toc//docs/troubleshooting/troubleshooting/",[5,0.777,14,0.449,35,0.18,49,0.509,89,2.905,90,1.57,96,1.6,120,2.071,131,1.379,143,0.913,148,1.6,155,2.146,156,1.462,158,1.978,167,1.504,173,2.145,175,2.281,181,0.822,207,1.899,226,2.655,276,1.627,300,2.232,324,1.12,335,3.024,346,3.641,366,0.878,368,1.812,372,0.46,398,1.736,433,2.007,448,2.944,465,1.811,477,1.95,478,1.13,620,2.336,623,1.876,643,1.433,650,1.338,672,1.702,676,1.405,905,2.281,942,2.353,1048,2.553,1389,2.777,1444,2.777,1710,4.165,1805,2.47,1866,2.777,2139,3.197,2140,3.197,2141,2.777,2142,3.197,2143,3.197,2144,3.197,2145,3.197,2146,3.197,2147,3.197,2148,3.197,2149,2.944,2150,3.197,2151,3.197,2152,3.197,2153,3.197]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[465,4.92,942,3.919]],["keywords//docs/platform/accounts-and-passwords/",[90,2.12,465,3.99,934,5.148,942,3.178]],["toc//docs/platform/accounts-and-passwords/",[29,0.785,45,2.332,46,2.302,89,2.337,90,2.301,100,1.57,207,4.544,324,3.166,372,1.1,377,3.152,392,4.666,433,4.802,672,2.789,756,2.729,940,4.732,941,2.789,942,4.481,1048,4.182,1958,6.344,2002,3.828,2126,4.549]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[460,4.65]],["keywords//docs/platform/support/",[460,3.388,2154,7.045,2155,7.045,2156,7.045]],["toc//docs/platform/support/",[89,2.81,297,7.103,460,4.422,696,2.756,1958,7.628,2157,9.197]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.068,14,0.81,24,2.549,42,1.908,89,1.761,303,1.41,1544,4.111]],["keywords//docs/platform/linode-backup-service/",[2158,4.885,2159,4.885,2160,4.885,2161,4.885,2162,4.885,2163,4.885,2164,4.885,2165,4.885,2166,4.885]],["toc//docs/platform/linode-backup-service/",[2,6.123,8,6.415,42,2.589,89,2.808,90,1.624,92,4.688,96,2.701,311,1.972,379,3.851,398,2.931,422,2.485,424,3.339,502,4.97,565,4.478,604,3.945,637,3.207,748,6.79,1077,3.945,1717,4.478,1811,4.478,2167,5.398]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[181,2.235,276,4.42]],["keywords//docs/websites/hosting-a-website/",[276,3.585,1659,5.624,1660,6.118,1679,6.486]],["toc//docs/websites/hosting-a-website/",[0,0.965,4,1.559,5,2.09,9,0.071,29,0.721,32,3.066,35,0.271,49,0.766,60,1.453,89,2.626,143,1.374,148,1.475,155,1.979,181,1.237,192,2.23,240,0.986,241,2.203,276,2.447,334,5.877,366,1.321,477,2.934,478,2.539,567,7.913,603,3.169,673,2.313,690,3.432]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.383,303,2.126]],["keywords//docs/security/securing-your-server/",[303,2.06,309,2.879,643,2.682,2168,5.986,2169,5.986]],["toc//docs/security/securing-your-server/",[0,0.87,11,0.471,14,0.61,35,0.244,42,2.995,45,1.93,46,1.906,61,0.78,100,1.991,155,1.784,164,1.23,233,1.997,296,2.576,303,1.061,309,2.085,318,1.815,320,2.287,324,1.52,368,1.506,377,3.997,379,3.094,386,3.094,465,2.456,550,2.246,560,3.597,639,1.681,643,3.616,650,1.815,936,2.858,977,3.027,1132,1.407,1345,2.858,1415,2.723,1544,3.094,1672,3.993,1959,3.767,2019,3.027,2170,4.337,2171,3.993,2172,4.337,2173,5.509]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.981,29,0.998,49,1.06,749,2.945,1503,4.12]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[749,3.418,1503,4.781,1882,7.116]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.649,49,1.333,143,1.698,181,1.529,240,0.816,241,1.524,366,1.632,399,1.459,1883,5.162]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.671,49,0.984,184,1.784,2174,4.408,2175,4.408,2176,4.312]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.65,184,1.728,2174,4.271,2176,4.178,2177,5.986,2178,5.512]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,1.193,2179,7.545]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[240,0.968,2179,6.118,2180,7.045,2181,7.045]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.058,35,0.395,207,4.162,318,2.932,623,4.11,696,2.1,1098,5.811,2179,8.143,2182,7.006,2183,7.006,2184,7.006,2185,7.006,2186,7.006,2187,7.006,2188,7.006,2189,7.006,2190,7.006]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.445,240,1.083,2191,7.262]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[240,1.175,2192,8.559]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.063,29,1.14,45,3.387,46,3.344,60,2.298,124,4.464,164,2.158,310,4.642,937,6.075,2191,10.135,2193,7.61,2194,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,756,2.376,1013,2.804,1997,3.956,2195,3.202]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2000,4.426,2001,4.855,2196,6.473,2197,6.473,2198,5.959]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.052,29,0.955,35,0.359,311,2.328,368,2.213,372,0.917,399,1.565,675,2.385,766,3.306,785,3.888,786,3.271,923,4.547,942,2.875,971,4.063,1131,4.001,1344,0.944,1797,3.943,1997,5.223,2002,4.657,2121,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[829,0.474]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,117,1.925,355,2.632,598,4.312,599,4.932,943,4.635]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[599,6.832,943,6.42]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.455,2,2.596,16,1.45,29,0.731,35,0.275,38,1.724,54,3.017,148,3.147,171,5.71,255,2.596,355,2.077,376,4.367,598,6.698,635,3.658,640,3.061,682,5.177,943,3.658,969,6.301,1006,2.503,1354,4.49,1470,6.918,2199,4.876,2200,4.876,2201,4.235,2202,4.876]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,1169,3.388,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.981,29,0.998,42,2.205,478,2.355,1120,4.062]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[478,3.026,1120,5.221]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.566,404,5.437,477,5.203,478,3.016,983,7.075,1124,9.805,1941,7.408]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1153,6.517,2204,7.206]],["keywords//docs/websites/cms/kloxo-guides/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.15,164,2.048,1013,3.04,1169,3.674]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.209,5,1.354,9,0.066,29,0.834,31,1.816,35,0.314,47,3.292,49,1.273,65,1.682,100,1.669,141,2.024,143,1.59,181,1.432,184,1.608,241,1.428,303,1.363,323,1.534,330,2.447,366,1.529,399,1.367,779,1.608,837,2.546,1028,2.104,1160,2.147,1684,4.177]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.582,465,4.467,2207,6.542]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[465,4.377,2207,6.41,2208,7.116]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.338,65,2.991,324,3.47,372,1.095,465,5.609,1344,1.127,2208,9.117]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[829,0.474]],["title//docs/websites/cms/directadmin/",[2207,8.02]],["keywords//docs/websites/cms/directadmin/",[2207,7.953]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.723,49,1.06,749,2.945,2124,5.524,2203,5.784]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1648,4.999,2095,4.999,2209,6.473,2210,6.473,2211,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.059,164,2.048,2204,5.99,2212,2.53]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1120,4.297,2204,5.843,2205,5.026,2206,5.026]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.082,415,6.004,647,5.588]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.784,1023,3.499,2124,5.99,2203,6.272]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2213,7.045,2214,7.045,2215,5.843,2216,5.843]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[829,0.474]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.051,14,0.869,675,2.312,766,2.323,1120,3.769,1131,3.879]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[623,4.534,675,2.892,1120,4.714]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.632,9,0.067,17,1.891,18,1.904,202,4.332,675,3.044,766,3.887,780,3.973,786,4.176,1131,5.108]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[954,5.291,1132,2.558,2217,6.542]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[235,3.479,769,4.517,954,4.342,955,5.369,1132,2.099]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[829,0.474]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[164,2.236,954,5.291,1013,3.32]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[164,1.835,235,3.479,769,4.517,954,4.342,955,5.369]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.299,954,4.845,1013,3.04,2195,3.473]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,235,3.218,769,4.178,954,4.016,955,4.965,2195,2.879]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,1.996,9,0.076,29,1.378,241,2.357,954,6.169,1278,6.561]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.15,749,3.194,1132,2.342,2217,5.99]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1782,5.148,1783,5.285,2218,7.045,2219,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[164,2.236,749,3.488,1013,3.32]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.208,164,1.579,240,0.765,241,1.427,749,2.462,1015,4.445,1293,5.126]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.378,4,2.008,5,1.67,9,0.086,17,1.597,18,1.607,35,0.631,143,1.962,181,1.767,240,1.271,241,1.761,366,1.886]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1151,5.291,1153,5.916,1510,6.542]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[487,6.832,1151,5.742]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.809,31,1.048,35,0.304,85,3.851,190,5.206,200,4.688,203,4.478,207,3.207,229,3.389,233,2.485,240,0.741,305,3.945,335,3.129,354,3.851,519,3.293,618,3.207,623,3.167,672,2.874,766,2.03,827,3.945,982,4.97,1006,2.771,1087,3.249,1151,5.245,2220,5.398,2221,5.398,2222,5.398,2223,5.398,2224,5.398,2225,4.97]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.251,61,1.036,756,2.056,1013,2.426,1045,2.167,1576,3.039,2195,2.771]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,756,1.987,1576,2.936,2195,2.677,2198,5.126,2226,5.568,2227,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.341,164,1.752,756,2.205,1045,2.323,1576,3.258,2212,2.165]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[756,2.309,1579,4.618,2229,6.473,2230,6.473,2231,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.776,9,0.047,16,2.433,29,1.226,35,0.537,60,2.876,65,1.737,243,2.131,324,2.866,366,1.579,378,3.875,422,2.647,676,2.527,757,2.435,1006,2.951,1045,3.076,1576,3.032,1580,3.508,1581,4.202]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.15,1132,2.342,1169,3.674,2217,5.99]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.228,5,1.376,9,0.078,29,0.848,31,1.57,35,0.532,49,1.287,65,1.709,100,1.696,143,1.616,181,1.455,184,1.634,241,1.45,303,1.979,366,1.554,372,0.814,399,1.389,603,3.728,779,1.634,1028,2.138,1160,2.182,1344,0.838,1517,3.552]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,1013,2.804,1169,3.388,2195,3.202]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,61,0.956,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,372,0.765,399,1.306,779,1.535,837,2.431,1003,4.618,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2175,4.111,2176,4.022]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2232,5.568,2233,4.836,2234,4.618]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.191,35,0.574,42,2.633,60,2.402,197,4.234,372,1.144,399,1.953,757,4.315,1344,1.178,1980,4.725]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.723,49,1.06,749,2.945,2175,4.751,2176,4.648]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1648,4.999,2095,4.999,2178,5.959,2235,6.473,2236,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.788,61,0.971,473,3.389,478,1.909,1013,2.273,2065,3.852,2066,2.961,2195,2.596]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2217,4.78]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2175,3.852,2176,3.768]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.671,90,1.859,367,4.003,698,3.769,2175,4.408,2176,4.312]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[698,3.948,2238,6.473,2239,5.167,2240,5.167,2241,5.167]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.859,367,4.003,698,3.769,1013,2.601,2195,2.971]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2243,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,241,1.584,1013,2.601,1160,2.383,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.368,1519,4.133,1520,4.726,2244,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,241,1.584,1160,2.383,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.368,1519,4.133,1520,4.726,2245,7.045]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.41,877,5.763,1088,5.916]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2246,8.559,2247,8.559]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.42,156,3.406,207,5.801,456,4.908,496,5.754,640,4.676,1087,4.483,1088,9.005,2248,7.45,2249,7.45]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2175,4.408,2176,4.312]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2006,4.999,2250,6.473,2251,5.959,2252,6.473,2253,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[829,0.474]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.981,29,0.998,89,2.035,1086,3.815,1088,4.996]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[650,2.949,1086,4.036,1088,5.285,2254,7.045]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.629,18,1.639,35,0.395,61,1.26,117,2.921,164,2.658,189,2.932,424,4.334,647,3.924,751,3.505,1013,2.949,1132,2.272,1308,3.661,1503,4.334,2149,6.45]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.784,1023,3.499,2175,5.152,2176,5.04]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2215,5.843,2216,5.843,2255,7.045,2256,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[141,3.627,1023,5.674]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[829,0.474]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,169,2.984,1013,2.426,1991,3.194,2195,2.771]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,240,0.915,585,4.12,1013,2.804,2195,3.202]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[240,0.992,585,4.467,1132,2.342,2257,3.961]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,585,4.12,2123,2.964,2258,2.872]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/platform/stackscripts/",[20,4.627,47,2.776,527,6.542]],["keywords//docs/platform/stackscripts/",[20,3.797,238,4.004,257,4.855,2259,6.473,2260,6.473]],["toc//docs/platform/stackscripts/",[0,1.083,14,1.292,47,2.752,59,3.691,89,1.649,96,2.701,101,2.557,124,3.167,129,3.557,247,3.167,312,2.372,507,4.688,508,3.024,527,9.77,779,1.559,884,3.441,2040,3.621,2261,5.398,2262,4.97,2263,5.398,2264,5.398,2265,5.398,2266,5.398]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1013,2.601,1984,4.312,1985,4.225,1986,3.769,2195,2.971]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[1132,2.16,1984,4.648,1985,4.554,1986,4.062,2257,3.652]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[240,0.915,585,4.12,1132,2.16,1295,3.066,2257,3.652]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.804,240,0.968,585,4.358,1295,3.243]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.078,29,1.071,35,0.536,47,2.516,151,3.702,240,1.305,281,3.182,372,1.028,399,1.755,792,3.668,1295,4.375,1344,1.059]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2038,3.961,2195,3.473]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2267,5.204,2268,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.784,2038,3.961,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.784,2038,3.961,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.734,454,3.468,702,2.837,1013,2.426,2195,2.771,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.859,454,3.718,702,3.041,1132,2.004,2257,3.389,2271,4.515]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.626,90,1.734,454,3.468,702,2.837,2269,2.814,2270,2.792,2271,4.211]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.734,164,1.634,247,3.381,2212,2.019,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.085,35,0.459,100,2.439,184,2.349,303,1.991,696,2.439,779,2.349,1028,3.075,2273,7.375]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.734,247,3.381,1132,1.869,2257,3.16,2273,4.111,2274,4.451,2275,5.005]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[247,3.797,2273,4.618,2276,5.959,2277,5.621,2278,5.167]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.971,90,1.624,509,3.249,756,1.926,1013,2.273,1743,3.692,2063,3.293,2195,2.596]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.059,29,1.071,35,0.602,372,1.028,376,4.302,391,4.888,399,1.755,604,5.223,607,4.422,757,3.027,1344,1.059,2063,6.511,2279,6.208]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,1013,2.601,2195,2.971,2280,3.625]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2257,3.652,2280,3.907]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,1.618,141,1.962,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2257,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2269,2.814,2270,2.792]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.984,61,1.111,184,1.784,1013,2.601,2174,4.408,2195,2.971]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.626,255,3.068,929,3.565,2269,2.814,2270,2.792,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1055,2.98,2292,4.885,2293,4.885,2294,4.885,2295,4.243,2296,3.9,2297,3.9,2298,3.773,2299,3.9]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.299,140,3.808,1013,3.04,2195,3.473]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.713,140,3.715,883,3.554,2023,5.026]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,240,0.849,452,3.228,1013,2.601,1188,3.289,2195,2.971]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[240,0.849,304,3.144,675,2.312,766,2.323,1132,2.004,2257,3.389]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[701,3.525,1692,4.817,1694,6.118,2302,5.843]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,303,1.512,721,3.117,884,3.939,1013,2.601,2195,2.971]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2303,7.728,2304,7.728,2305,7.728]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.293,1132,2.16,2257,3.652,2306,4.751,2307,5.524]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/websites/wikis/twiki-on-centos-5/",[164,2.236,2031,4.518,2212,2.763]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.299,1013,3.04,2031,4.137,2195,3.473]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-fedora-14/",[1132,2.558,2031,4.518,2257,4.326]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[829,0.474]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.936,233,3.066,320,3.512,643,2.984,1084,4.314]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[447,3.1,643,2.682,978,5.512,1086,3.429,1108,5.512,1907,4.374]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.333,117,1.852,123,3.024,131,3.612,185,4.027,197,3.164,219,3.677,233,4.847,320,3.135,323,2.308,643,2.663,690,4.241,751,4.19,1091,6.283,1521,3.677,2060,4.343,2309,8.375]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.341,5,1.502,14,0.869,117,1.925,1053,3.354,1308,3.228]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1836,5.969,1894,6.712,2310,7.728]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.489,9,0.06,14,1.026,35,0.543,319,4.513,323,2.01,372,1.05,940,4.513,941,3.884,942,3.291,1344,1.08,1675,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[829,0.474]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,585,4.12,2269,3.252,2270,3.227]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.908,61,1.036,1013,2.426,1263,3.301,1969,3.423,1970,3.733,2195,2.771]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1971,3.57,1972,3.219,1974,3.165,1975,3.165,2014,3.219,2311,4.885,2312,4.885,2313,4.052,2314,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.083,29,1.505,35,0.438,57,4.681,309,3.74,372,1.119,399,1.91,696,2.331,1344,1.152,1969,5.966]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,1013,2.426,2195,2.771]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[678,5.167,1492,5.167,2315,6.473,2316,6.473,2317,6.473]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.08,17,1.405,18,1.414,35,0.478,40,2.446,181,1.555,192,2.803,240,1.344,244,3.798,286,3.387,304,3.076,318,3.547,366,1.66,372,0.87,460,2.907,673,2.907,1344,0.895,1472,4.219,2318,5.251]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[117,2.457,1308,4.121,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2258,2.401]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.095,31,1.446,35,0.42,49,1.186,143,2.128,240,1.023,372,1.072,713,4.318,1344,1.103,1620,4.608,2038,5.356]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2269,2.814,2270,2.792]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.06,61,1.197,749,2.945,1013,2.804,2195,3.202]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1496,6.41,1887,6.712,2320,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.984,143,1.765,169,3.199,1132,2.004,1991,3.424,2257,3.389]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,255,3.068,929,3.565,1013,2.426,2195,2.771,2290,4.6,2291,4.323]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1055,2.98,2296,3.9,2297,3.9,2298,3.773,2299,3.9,2322,4.885,2323,4.885,2324,4.885,2325,4.498]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,1013,2.138,2071,2.73,2072,3.623,2195,2.442]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.412,42,1.908,240,0.791,312,2.532,1132,1.869,2257,3.16]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.119,61,1.036,792,2.958,1013,2.426,1296,2.984,2195,2.771]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.293,61,1.197,276,3.388,1013,2.804,2195,3.202]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.162,61,1.076,199,2.756,701,2.995,2326,5.512,2327,5.986]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.401,14,0.81,30,2.485,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1055,4.297,1152,4.726,2328,7.045,2329,7.045]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,240,0.915,1013,2.804,1164,3.73,2195,3.202]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,240,0.915,585,4.12,2212,2.333,2334,2.679]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.076,240,1.061,1300,5.185]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.053,29,0.972,35,0.646,38,2.295,178,4.631,179,4.53,240,0.891,281,2.889,372,0.934,374,4.743,399,1.594,792,5.613,1295,2.988,1301,3.762,1344,0.961]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.037,61,1.036,720,4.323,756,2.056,1013,2.426,1045,2.167,2195,2.771]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,240,0.849,585,3.822,1013,2.601,1295,2.844,2195,2.971]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,1160,2.383,1819,3.041,2195,2.971]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2006,4.999,2251,5.959,2337,6.473,2338,6.473,2339,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.971,323,1.488,324,1.892,465,3.058,1045,2.03,1576,2.847,2212,1.892,2334,2.172]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[756,2.514,1045,2.649,1576,3.715,2340,7.045]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.05,29,0.906,35,0.598,42,2.806,185,2.907,320,3.188,372,0.87,399,1.484,639,2.343,675,2.262,757,4.492,773,4.418,779,1.746,951,4.826,1045,2.273,1344,0.895,1576,3.188,2341,6.046,2342,6.046]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.199,61,1.111,1013,2.601,2195,2.971,2306,4.408,2307,5.125]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.058,29,1.05,31,1.82,35,0.528,49,1.493,151,2.73,156,3.203,372,1.008,399,1.72,460,3.369,837,3.203,1296,5.472,1344,1.037]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.299,1013,3.04,1301,4.186,2195,3.473]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,756,2.056,1013,3.449,1362,3.797,2195,2.771,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1579,4.271,2344,5.986,2345,5.986,2346,5.512,2347,4.779,2348,4.779]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.08,35,0.42,38,2.634,65,2.25,100,2.233,184,2.151,303,1.823,323,2.053,372,1.072,696,2.233,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.734,454,3.468,702,2.837,2212,2.019,2271,4.211,2334,2.318]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[454,4.24,668,4.24,1162,4.642,2272,5.843]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.058,29,1.05,35,0.528,141,2.547,240,0.962,291,4.616,323,1.93,372,1.008,399,1.72,532,3.73,702,3.448,789,4.998,1344,1.037,1826,5.119,2271,7.722]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.34,49,0.917,61,1.036,757,2.44,1013,2.426,1980,3.423,2195,2.771]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1364,3.495,1982,4.177,1983,4.177,2326,5.126,2349,5.568,2350,5.568,2351,5.126]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.784,2031,4.137,2123,3.214,2258,3.114]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.784,2031,4.137,2269,3.527,2270,3.499]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.971,197,2.874,478,1.909,1013,2.273,2075,2.874,2076,3.692,2195,2.596]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,478,1.84,819,3.267,2075,2.771,2079,2.797,2352,5.204,2353,5.204,2354,5.204]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.723,31,1.293,276,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.65,31,1.162,199,2.756,701,2.995,2355,5.199,2356,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.299,1013,3.04,1023,3.499,2195,3.473]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1931,6.486,1932,6.486,2195,3.388,2357,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[141,3.433,287,7.293,323,2.602,1023,5.492]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.293,117,2.075,1160,2.568,1308,3.48,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1160,2.496,2008,4.517,2358,6.473,2359,5.621,2360,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.293,117,2.075,241,1.707,1160,2.568,1308,3.48]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1519,4.133,1520,4.726,2359,6.118,2360,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.065,29,1.191,35,0.448,60,2.402,181,2.046,241,2.039,366,2.184,372,1.144,399,1.953,779,2.296,1160,3.067,1344,1.178]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2257,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.054,14,0.929,29,0.991,35,0.578,302,3.59,323,1.822,372,0.951,399,1.624,464,3.132,478,2.338,508,3.704,639,2.563,1344,0.979,2075,6.14,2079,3.554]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.402,117,2.25,276,3.674,1308,3.773]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.256,701,3.238,2359,5.621,2360,5.621,2361,6.473]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.076,29,1.378,31,1.785,372,1.323,399,2.258,1344,1.362]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.299,2038,3.961,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,116,2.671,454,3.132,1819,2.562,2032,3.132,2038,2.854,2362,5.204,2363,5.204]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.092,31,1.333,35,0.59,38,2.429,49,1.094,143,1.962,240,0.943,323,1.893,372,0.988,713,3.982,1344,1.017,1620,4.25,2038,5.075]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/phpfox/",[2364,7.719]],["keywords//docs/applications/social-networking/phpfox/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[829,0.474]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.299,2031,4.137,2212,2.53,2334,2.905]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2031,4.036,2032,4.24,2033,5.285,2034,5.285]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.091,35,0.584,49,1.073,141,2.45,143,1.924,240,0.925,323,1.857,372,0.969,696,2.02,779,1.946,1344,0.998,2031,6.363]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.251,5,1.401,14,0.81,61,1.036,1013,2.426,1053,3.129,2195,2.771]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1836,4.999,2365,6.473,2366,5.959,2367,6.473,2368,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.784,2054,4.09,2269,3.527,2270,3.499]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2369,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2257,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2302,5.369]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2269,2.637,2270,2.616]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.784,1301,4.186,2269,3.527,2270,3.499]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,2212,2.165,2306,4.408,2307,5.125,2334,2.486]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.278,247,3.797,452,3.382,1683,3.044,2306,4.618]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.378,9,0.076,29,1.029,31,1.333,35,0.387,38,2.429,47,2.418,49,1.094,143,1.962,151,3.605,372,0.988,399,1.687,779,1.984,1344,1.017,2306,6.602,2308,5.966]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.445,5,1.619,14,0.936,1053,3.615,1503,4.12]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.529,5,1.713,1503,4.358,2298,5.441]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.617,9,0.068,14,1.171,35,0.469,319,5.152,372,1.198,1344,1.233]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.341,11,0.671,90,1.859,1831,3.228,2269,3.017,2270,2.994]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.368,1519,4.133,1520,4.726,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2257,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.368,1519,4.133,2008,4.917,2370,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.061,29,1.116,35,0.55,60,2.25,65,2.25,243,2.76,372,1.072,399,1.829,532,3.966,1160,3.766,1344,1.103,1545,5.443,1819,3.667]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.784,1301,4.186,2123,3.214,2258,3.114]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[1132,2.558,2054,4.467,2372,4.326]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2373,5.568]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.199,117,1.925,792,3.171,1296,3.199,1308,3.228]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.256,39,2.576,792,3.322,1296,3.352,1894,5.621]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.463,9,0.06,29,1.093,31,1.416,35,0.411,40,2.951,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08,1834,3.778]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2257,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.08,29,1.116,31,1.896,35,0.55,49,1.186,151,2.902,156,3.406,372,1.072,399,1.829,1296,5.057,1344,1.103]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2257,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[678,6.17,2374,7.728,2375,7.116]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[240,0.992,1132,2.342,1164,4.045,2257,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.322,2377,6.473,2378,6.473,2379,6.473,2380,5.621]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.068,14,1.171,29,1.248,60,2.515,240,1.144,372,1.198,399,2.045,1164,5.877,1344,1.233]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.723,240,0.915,1164,3.73,2269,3.252,2270,3.227]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.322,1968,5.167,2381,6.473,2382,6.473,2383,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2269,2.814,2270,2.792]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.65,1692,4.093,1863,3.878,2356,4.965,2384,5.512,2385,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2257,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1836,5.969,1837,6.41,2386,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.402,276,3.674,1132,2.342,2257,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.162,199,2.756,701,2.995,2302,4.965,2370,5.199,2387,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.213,9,0.07,29,0.906,31,2.059,40,2.446,64,2.343,65,1.826,90,1.819,100,1.812,101,2.864,184,1.746,303,1.48,330,2.657,372,0.87,399,1.484,696,1.812,779,1.746,837,2.764,1028,2.285,1344,0.895,1684,4.535,1834,3.13]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[240,0.822,701,2.995,1992,4.374,2388,5.986,2389,5.986,2390,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2123,2.565,2258,2.485]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2319,5.512]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2269,2.637,2270,2.616]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.784,2054,4.09,2123,3.214,2258,3.114]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2391,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.072,35,0.493,181,2.248,366,2.4,696,2.62,797,5.977,2054,6.124]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2123,2.403,2258,2.328]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.703,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-14/",[140,4.159,1132,2.558,2257,4.326]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.574,140,3.413,883,3.265,2023,4.618,2392,6.473]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,452,3.228,1188,3.289,2269,3.017,2270,2.994]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2269,2.48,2270,2.461,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1683,2.618,1851,3.807,1852,3.807,2394,5.568,2395,5.568,2396,4.069,2397,4.069]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2269,2.814,2270,2.792]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2398,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2257,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2269,2.48,2270,2.461]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.087,14,1.199,372,1.227,779,2.463,1344,1.263,2071,6.242]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2269,2.637,2270,2.616]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.15,1132,2.342,1169,3.674,2257,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.154,5,1.293,9,0.064,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1132,1.724,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,1169,3.388,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.19,5,1.333,9,0.065,11,0.595,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.15,749,3.194,1132,2.342,2257,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1782,5.148,1783,5.285,2401,7.045,2402,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.235,5,1.966,9,0.085,16,1.683,29,1.212,35,0.614,49,1.287,143,1.616,181,1.455,192,2.623,240,1.111,241,1.45,366,1.554,399,1.389,525,3.665,673,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[829,0.474]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.255,184,2.277,1183,4.685]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1183,4.591,1615,6.17,2403,7.728]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[509,4.346,2404,5.417,2405,6.272,2406,6.272]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[117,1.865,369,3.878,856,4.491,2405,5.199,2406,5.199,2407,4.965]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,147,3.828,376,5.979,377,4.603,509,4.603,568,8.628,1468,4.549,1631,7.042,1771,4.046,1870,4.345,2040,5.131,2201,4.549,2318,4.549,2405,8.628,2406,9.177,2408,7.649,2409,5.238]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.671,303,1.512,721,3.117,884,3.939,2269,3.017,2270,2.994]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.65,447,3.1,650,2.505,721,3.02,2356,4.965,2385,5.512]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,117,1.795,286,3.228,355,2.455,571,3.617,2410,5.005,2411,5.005]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[117,2.195,2410,6.118,2411,6.118,2412,7.045]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[147,5.945,286,5.791,323,2.242,349,5.458,368,2.825,373,7.491,640,5.108,886,4.773,2410,7.066,2411,7.066]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.769,148,1.895,598,4.312,974,4.932,2279,5.366,2413,4.772]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[117,1.865,470,4.271,974,4.779,1521,3.703,2407,4.965,2414,5.512]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,376,4.58,464,3.605,676,4.351,892,5.429,971,4.851,974,8.787,1830,5.429,2279,8.6,2415,7.007]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2257,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,1169,3.388,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.205,117,2.075,184,1.923,1183,3.956,1503,4.12]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.081,35,0.602,38,2.175,43,3.565,141,2.236,240,0.845,345,4.389,368,2.136,372,0.885,696,1.844,757,2.605,1183,6.677,1342,5.987,1344,0.911,1740,4.293]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.671,42,2.046,184,1.784,1183,3.67,2269,3.017,2270,2.994]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.199,164,1.752,792,3.171,1296,3.199,2212,2.165]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.079,29,1.093,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,399,1.791,1296,4.988,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.199,792,3.171,1132,2.004,1296,3.199,2372,3.389]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2399,2.71,2400,2.672]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.06,31,1.87,35,0.543,49,1.533,151,2.842,156,3.335,372,1.05,460,3.508,837,3.335,1296,5.584,1344,1.08]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2123,2.565,2258,2.485]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.626,38,2.037,720,4.323,756,2.056,1045,2.167,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.293,35,0.375,199,3.066,311,2.432,675,2.492]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.01,199,2.396,305,3.803,675,1.947,1701,4.791,2416,5.204,2417,5.204,2418,5.204]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.87,9,0.036,14,0.934,31,1.756,35,0.374,38,1.533,90,1.305,118,3.945,169,2.246,181,1.708,199,3.057,202,2.309,217,3.027,334,2.966,366,1.824,460,2.085,532,2.309,624,2.909,675,4.131,751,3.323,766,3.666,785,2.645,786,3.409,1131,2.723,2419,4.337,2420,6.641]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.119,61,1.036,792,2.958,1296,2.984,2212,2.019,2334,2.318]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.626,14,0.81,31,1.119,792,2.958,1296,2.984,2269,2.814,2270,2.792]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.368,39,2.804,792,3.616,1296,3.648]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.059,29,1.071,31,1.845,35,0.536,49,1.138,151,2.785,156,3.268,372,1.028,399,1.755,460,3.437,837,3.268,1296,5.527,1344,1.059]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2269,3.017,2270,2.994,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.784,140,3.808,2269,3.527,2270,3.499]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.574,883,3.265,2023,4.618,2421,6.473,2422,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.915,9,0.037,24,2.017,35,0.469,40,1.845,64,3.227,90,2.076,100,1.367,101,2.161,140,5.744,141,1.658,157,2.822,184,1.317,191,2.528,235,2.452,303,1.116,323,1.257,368,1.584,372,0.656,404,2.908,508,2.555,779,2.68,837,3.806,1028,1.724,1065,2.555,1344,0.675,1834,2.362,2024,4.924]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.671,240,0.849,585,3.822,1295,2.844,2269,3.017,2270,2.994]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.581,355,2.837,376,4.008,743,4.751,890,5.144]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[890,5.969,944,6.17,2423,7.728]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.293,64,4.145,97,4.97,102,4.05,148,1.656,199,3.599,203,4.478,379,3.851,492,4.31,702,2.657,743,5.578,766,2.03,785,3.293,786,2.771,890,6.039,1091,4.05,1278,3.851,1717,4.478,1830,3.851,1996,4.97,2262,4.97,2424,4.97,2425,4.97,2426,4.97]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,117,1.925,148,1.895,355,2.632,376,3.718,640,3.879]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[117,2.408,944,6.17,2427,7.728]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.683,38,1.799,117,2.767,148,3.203,149,3.55,173,3.413,174,3.55,192,2.358,214,3.413,231,3.629,286,2.85,318,2.129,334,3.479,355,3.785,376,3.061,640,7.273,673,2.446,702,2.504,892,3.629,1414,4.418]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.035,90,2.004,1132,2.16,2280,3.907,2372,3.652]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[184,1.784,323,1.703,676,2.715,1132,2.004,1465,3.539,2372,3.389]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2428,5.986,2429,5.986]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.558,22,4.062,148,2.042,598,4.648,972,5.316]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[117,2.195,470,5.026,972,5.624,2407,5.843]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.78,22,4.642,148,2.334,169,3.941,355,3.242,464,3.605,972,9.307,1083,6.609,1830,5.429,2415,7.007]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2269,2.814,2270,2.792]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2269,2.814,2270,2.792]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1457,4.265,2080,4.999,2081,4.73,2430,6.473,2431,6.473]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2355,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.192,9,0.049,19,4.417,29,0.89,35,0.593,60,1.795,65,1.795,126,5.518,167,2.795,181,1.529,243,2.202,311,2.171,366,1.632,372,0.855,399,1.459,478,2.101,532,3.164,1160,2.292,1344,0.88,1415,3.731,1521,3.677,1819,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.784,1023,3.499,2269,3.527,2270,3.499]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2215,5.843,2216,5.843,2432,7.045,2433,7.045]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.723,49,1.06,749,2.945,2269,3.252,2270,3.227]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1648,4.999,2095,4.999,2356,5.369,2435,6.473,2436,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.105,5,2.036,9,0.086,16,1.768,29,1.255,35,0.626,49,1.333,143,1.698,181,1.529,192,2.756,240,0.816,241,1.524,366,1.632,399,1.459,673,2.858]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,424,3.822,478,2.185,515,4.408,1059,4.635,2437,5.366]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[478,2.491,780,3.44,1702,5.843,2437,6.118]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.049,14,1.56,49,0.946,284,4.745,477,3.626,478,2.961,591,4.745,745,3.916,751,2.974,1059,4.459,1230,4.591,1771,4.591,1830,4.241,2437,10.275,2438,5.944,2439,5.944]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.936,184,1.923,323,1.835,515,4.751,2440,5.784]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[117,1.865,147,4.374,398,3.25,780,2.923,2441,5.986,2442,5.986]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,234,5.561,323,2.097,355,3.242,398,4.132,1830,5.429,1869,6.075,2141,6.609,2440,10.125,2443,7.61,2444,7.61]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[1132,2.558,2372,4.326,2445,6.092]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[235,3.787,769,4.917,1132,2.285,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2269,2.814,2270,2.792]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.605,756,1.987,1576,2.936,2270,2.698,2446,5.568,2447,5.568,2448,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.671,31,1.199,241,1.584,1160,2.383,2269,3.017,2270,2.994]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.368,1519,4.133,1520,4.726,2355,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2269,2.637,2270,2.616]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[829,0.474]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.336,148,2.042,323,1.835,671,4.866,2450,6.131]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[117,2.016,490,5.959,944,5.167,1521,4.004,2407,5.369]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.927,14,0.822,19,3.083,58,7.188,148,1.793,303,1.431,323,1.611,355,2.49,671,8.369,2040,3.921,2450,5.382,2451,9.076,2452,8.277,2453,5.845,2454,5.845,2455,5.845]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.936,90,2.004,148,2.042,676,2.926,2456,5.784]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2456,6.712,2457,7.728,2458,7.728]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.532,148,2.895,231,4.037,316,3.728,355,2.411,368,2.808,392,3.451,464,2.68,676,4.787,805,6.246,991,5.209,1089,6.456,1944,4.693,2456,8.196,2459,5.658,2460,5.658]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.756,150,3.706,312,3.173,697,3.421]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.713,312,3.096,697,3.337,883,3.554]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.952,5,1.154,16,1.411,17,1.103,18,1.11,29,0.711,35,0.481,45,2.112,46,2.085,49,0.755,60,1.433,148,2.181,155,1.952,181,1.22,233,2.184,311,2.597,312,3.746,320,2.502,324,1.663,415,2.856,474,4.121,569,3.936,697,2.248,713,2.75,751,2.374,820,8.808,922,4.121,1033,3.788,1059,3.56,2461,4.369,2462,7.11]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.671,1984,4.312,1985,4.225,1986,3.769,2123,2.75,2258,2.665]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,372,1.144,561,5.674,696,2.384,779,2.296,1028,3.005,1344,1.178,1986,4.851]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[143,1.646,180,3.264,241,1.477,1132,1.869,1160,2.222,2052,3.16,2372,3.16]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2052,3.55,2463,5.959,2464,5.959,2465,5.959,2466,6.473]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.07,35,0.6,60,2.576,65,2.576,243,3.161,372,1.227,532,4.541,1344,1.263]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[1132,2.004,1585,4.772,1805,4.772,2372,3.389,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[756,2.514,1132,2.285,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[1132,2.558,2038,4.326,2372,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.046,1132,2.004,1263,3.539,1970,4.003,2009,3.625,2372,3.389]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.051,14,0.865,29,0.922,35,0.347,38,2.175,156,2.812,181,1.582,290,3.609,324,2.155,335,3.565,366,1.689,372,0.885,399,2.106,478,2.175,713,3.565,780,3.004,1344,0.911,2009,5.795,2015,3.306,2018,4.614,2019,4.293,2020,3.985]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,184,1.664,323,1.588,676,2.532,1465,3.301,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,323,1.588,676,2.532,1465,3.301,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.067,21,4.716,35,0.459,65,2.457,100,2.439,323,2.242,564,5.361,672,4.332,1465,6.509]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[184,2.277,676,3.466,1465,4.518]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[303,1.724,676,3.096,1465,4.036,1466,5.026]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[829,0.474]],["title//docs/websites/wikis/confluence-on-centos-5/",[164,2.236,2212,2.763,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2471,4.491,2472,7.045,2473,5.624,2474,5.624]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.906,5,1.738,9,0.078,10,5.1,12,3.668,29,1.071,35,0.403,181,1.838,366,1.963,399,1.755,1013,3.009,2471,7.252]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[829,0.474]],["title//docs/websites/wikis/confluence-on-fedora-13/",[1132,2.558,2372,4.326,2471,5.028]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2471,4.491,2473,5.624,2474,5.624,2475,7.045]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.856,5,1.67,9,0.076,10,4.901,12,3.526,29,1.029,35,0.387,181,1.767,366,1.886,372,0.988,399,1.687,1013,2.892,1344,1.017,2471,7.137]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.908,473,3.617,478,2.037,1132,1.869,2065,4.111,2066,3.16,2372,3.16]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2476,5.621]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.326,9,0.054,35,0.508,42,2.189,57,3.979,148,2.028,181,1.701,243,2.45,372,0.951,398,3.59,779,1.909,1344,0.979,1396,5.941,2066,6.045,2069,4.615,2070,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,197,3.068,478,2.037,1132,1.869,2075,3.068,2076,3.94,2372,3.16]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[478,2.116,819,3.758,2075,3.187,2078,4.374,2079,3.218,2237,5.199]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,197,2.874,478,1.909,2075,2.874,2076,3.692,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.59,302,3.729,323,1.893,372,0.988,464,3.254,478,2.429,508,3.848,639,2.663,1344,1.017,2075,6.222,2079,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2471,4.491,2473,5.624,2474,5.624,2477,7.045]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2471,4.491,2473,5.624,2474,5.624,2478,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.784,2123,3.214,2258,3.114,2471,4.603]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2471,4.491,2473,5.624,2474,5.624,2479,7.045]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.959,5,1.811,9,0.061,29,1.116,35,0.42,181,1.916,366,2.045,372,1.072,399,1.829,1344,1.103,2471,7.371]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,473,3.389,478,1.909,2065,3.852,2066,2.961,2399,2.539,2400,2.503]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[478,2.288,650,2.709,2066,3.55,2079,3.479,2480,5.167]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.302,9,0.053,35,0.366,57,3.906,148,1.991,181,1.669,243,2.405,265,2.988,311,2.371,372,0.934,386,4.631,398,3.524,779,1.874,1344,0.961,1396,5.866,2050,4.354,2066,5.574,2069,4.53,2070,4.631]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.015,117,2.25,355,3.077,869,5.578]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[214,4.342,369,4.193,869,4.999,2414,5.959,2481,6.473]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.821,40,2.218,117,2.463,318,2.294,349,3.678,355,3.368,424,3.391,473,3.441,570,4.547,869,8.311,1589,5.048,2049,4.234,2173,4.547,2482,5.482,2483,7.279,2484,9.273,2485,5.482,2486,5.482,2487,5.482,2488,5.482]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2364,4.932,2489,5.689]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[884,4.926,2101,6.17,2364,6.17]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.076,64,3.565,372,1.323,696,2.756,1344,1.362,2364,7.342]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.019,11,0.552,14,0.714,394,3.544,2035,3.346,2036,3.29,2037,4.676,2123,2.261,2258,2.19]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.083,11,0.586,14,0.759,394,3.768,2035,3.557,2036,3.498,2399,2.539,2400,2.503]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.061,35,0.614,38,2.634,265,3.429,311,2.721,368,2.587,779,2.151,2035,4.908,2036,7.49,2050,4.997]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2123,2.565,2258,2.485]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.65,1692,4.093,1863,3.878,2384,5.512,2490,4.624,2491,5.512]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.971,150,2.771,151,2.104,240,0.741,2212,1.892,2334,2.172,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.7,4,1.84,5,1.47,9,0.087,29,0.906,35,0.341,60,1.826,151,2.355,154,4.313,240,1.164,243,2.24,372,0.87,399,1.484,779,1.746,1344,0.895,2493,4.67,2496,6.546,2498,5.251,2499,5.251]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.586,150,2.771,151,2.104,240,0.741,2123,2.403,2258,2.328,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1969,3.67,1970,4.003,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2500,4.885,2501,4.498]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.087,29,1.278,35,0.481,57,5.133,309,4.102,696,2.557,1969,6.326]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2123,2.403,2258,2.328]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1012,6.092,2035,5.197,2036,5.109]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2036,5.544,2101,6.832]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[829,0.474]],["title//docs/databases/redis/redis-on-centos-5/",[140,4.159,164,2.236,2212,2.763]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.574,140,3.413,883,3.265,2023,4.618,2502,6.473]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.044,24,2.387,35,0.304,40,2.184,47,1.9,64,2.092,90,2.352,100,1.618,101,2.557,140,5.64,141,1.962,157,3.339,184,1.559,191,2.992,235,2.902,303,1.321,323,1.487,368,1.875,404,3.441,508,3.024,779,2.258,837,2.468,1028,2.04,1065,3.024,1834,2.795,2024,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-fedora-13/",[140,4.159,1132,2.558,2372,4.326]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.574,140,3.413,883,3.265,2023,4.618,2503,6.473]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.784,140,3.808,2399,3.396,2400,3.348]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.574,883,3.265,2023,4.618,2504,6.473,2505,5.959]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[151,2.104,240,0.741,241,1.384,368,1.875,1132,1.751,1240,2.992,2372,2.961,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.064,29,1.165,35,0.438,47,2.737,169,4.027,180,4.405,240,1.068,281,3.462,399,1.91,422,3.581,699,5.688,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.586,150,2.771,151,2.104,240,0.741,2399,2.539,2400,2.503,2492,4.689,2493,4.17]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[240,0.889,2494,5.621,2495,5.621,2496,4.999,2497,5.621]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.641,4,1.776,5,1.398,9,0.085,29,0.861,35,0.324,60,1.737,151,2.24,154,4.102,240,1.124,243,2.131,265,2.647,311,2.1,372,0.827,399,1.412,779,1.66,1344,0.852,2050,3.858,2493,4.441,2496,6.319,2498,4.994,2499,4.994]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[307,4.845,464,3.421,611,4.758,650,3.022]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[309,3.388,611,4.642,650,2.949,971,4.491]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.021,11,0.275,14,0.787,15,1.524,16,0.753,22,1.545,35,0.242,38,1.979,47,0.891,61,0.455,84,1.9,90,1.293,95,3.14,117,1.339,124,1.486,149,1.767,157,4.964,164,0.718,173,1.699,198,1.668,207,1.504,243,0.938,307,5.383,308,1.59,309,1.218,310,4.895,318,1.06,335,2.49,346,2.999,355,1.079,456,1.668,543,2.199,546,1.767,550,2.225,611,7.254,623,1.486,635,1.9,650,1.06,780,1.237,886,1.486,1056,1.451,1088,4.946,1132,0.821,1281,3.956,1308,1.323,1314,1.807,1389,2.199,1400,5.153,1417,1.504,1424,2.331,1470,2.021,1875,2.199,2201,2.199,2506,2.331,2507,2.532,2508,2.532,2509,2.532,2510,2.532,2511,2.532]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.06,35,0.411,47,2.568,151,2.842,169,3.778,180,4.132,240,1.002,281,3.247,391,4.989,422,4.434,699,6.108,1188,5.128]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.671,31,1.199,452,3.228,1188,3.289,2123,2.75,2258,2.665]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.784,140,3.808,2123,3.214,2258,3.114]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.574,883,3.265,2023,4.618,2505,5.959,2512,6.473]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[148,1.767,1089,4.6,1743,5.603,1942,4.78,2513,5.306,2514,5.763]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1419,5.199,1942,4.965,2515,5.986,2516,5.986,2517,5.986,2518,5.986]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.02,14,1.249,148,2.725,192,2.358,231,3.629,296,3.022,355,3.19,357,4.061,676,2.235,702,2.504,1089,8.718,1419,7.715,1942,7.368,2173,4.22,2513,10.055,2519,5.087,2520,5.087,2521,5.087]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.065,35,0.445,531,4.418]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[533,5.621,534,5.621,536,5.621,2522,6.473,2523,6.473]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.076,17,2.138,18,2.152,35,0.518,531,6.248]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.15,164,2.048,1169,3.674,2212,2.53]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.172,5,1.313,9,0.064,29,0.809,31,1.784,35,0.304,47,3.235,49,1.245,65,1.63,100,1.618,141,1.962,143,1.542,181,1.388,184,1.559,241,1.384,303,1.321,323,1.487,330,2.372,366,1.482,372,0.777,399,1.326,779,1.559,837,2.468,1028,2.04,1160,2.082,1344,0.799,1684,4.05]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[829,0.474]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.299,140,3.808,2212,2.53,2334,2.905]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.574,883,3.265,2023,4.618,2524,6.473,2525,6.473]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.043,24,2.317,35,0.295,40,2.119,47,1.844,64,2.03,90,2.301,100,1.57,101,2.481,140,5.573,141,1.904,157,3.24,184,1.512,191,2.903,235,2.816,303,1.282,323,1.443,368,1.819,372,0.754,404,3.339,508,2.934,779,2.209,837,2.395,1028,1.979,1065,2.934,1344,0.776,1834,2.712,2024,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[240,0.992,245,4.467,1132,2.342,1164,4.045]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.322,2380,5.621,2526,6.473,2527,6.473,2528,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[240,0.992,1132,2.342,1164,4.045,2372,3.961]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.322,2380,5.621,2529,6.473,2530,6.473,2531,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.072,14,1.229,60,2.64,240,1.2,372,1.258,1164,6.057,1344,1.294]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.723,240,0.915,1164,3.73,2123,2.964,2258,2.872]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.322,1967,5.959,1968,5.167,2532,6.473,2533,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.081,12,3.906,14,1.07,29,1.14,60,2.298,205,5.105,240,1.045,372,1.095,399,1.869,1164,5.547,1344,1.127,2333,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.723,240,0.915,1164,3.73,2399,3.132,2400,3.087]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.322,1968,5.167,2534,6.473,2535,6.473,2536,6.473]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.837,99,3.194,117,1.795,837,2.635,906,3.381,1308,3.011,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[838,4.3,839,4.3,840,4.177,841,3.972,1308,2.909,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.837,99,3.194,164,1.634,189,2.412,837,2.635,906,3.381,1565,4.111]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[164,1.579,838,4.3,839,4.3,840,4.177,841,3.972,1566,4.445,1567,4.445]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.041,99,3.424,368,2.146,837,2.825,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[838,4.624,839,4.624,840,4.491,841,4.271,1566,4.779,1567,4.779]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.06,35,0.543,64,2.828,74,5.645,141,2.652,150,3.744,323,2.01,330,3.206,456,4.807,837,3.335,906,4.28,1565,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.15,117,2.25,1169,3.674,1308,3.773]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.491,5,1.67,9,0.076,29,1.029,31,1.796,35,0.387,47,2.418,49,1.473,143,1.962,181,1.767,241,1.761,366,1.886,372,0.988,399,1.687,1160,2.649,1344,1.017]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[829,0.474]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[355,2.837,376,4.008,598,4.648,2404,4.996,2537,5.784]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1521,4.358,2537,6.118,2538,7.045,2539,6.486]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,148,3.117,173,4.354,231,4.631,355,2.765,376,3.906,433,4.074,635,4.869,640,4.074,803,5.384,2537,10.28,2540,6.491,2541,5.976]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[148,2.215,391,4.938,392,4.405,2542,5.99]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[355,3.001,1510,5.843,2543,7.045,2544,7.045]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.602,14,1.064,38,1.825,117,2.357,148,3.222,149,3.602,179,3.602,274,3.772,291,3.401,318,2.16,355,2.199,377,3.106,392,6.407,433,3.24,456,3.401,608,3.682,622,4.483,639,2.001,844,4.483,1061,3.529,2542,7.431,2545,5.162,2546,4.752,2547,5.162]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,2.419,598,5.504,892,5.627]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[148,1.985,682,4.618,892,4.618,971,4.126,2539,5.959]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,148,2.192,355,4.048,676,3.141,877,5.223,892,8.45,971,6.057,1089,5.706,2291,5.362,2548,6.208,2549,7.148]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.15,1132,2.342,1169,3.674,2372,3.961]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.19,5,1.333,9,0.065,31,1.8,35,0.309,47,3.263,49,1.259,65,1.656,100,1.643,141,1.993,143,1.566,181,1.41,184,1.583,241,1.405,303,1.342,323,1.511,330,2.409,366,1.505,367,3.551,372,0.789,779,1.583,837,2.506,1028,2.072,1132,1.778,1160,2.114,1344,0.812]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.723,49,1.06,1169,3.388,2123,2.964,2258,2.872]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.256,117,2.016,241,1.659,1169,3.293,1683,3.044]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.154,5,1.293,9,0.064,11,0.577,29,0.797,31,1.769,35,0.3,47,3.207,49,1.231,65,1.606,100,1.594,141,1.933,143,1.519,181,1.368,184,1.535,241,1.363,303,1.301,323,1.465,330,2.336,366,1.46,367,3.444,372,0.765,399,1.306,779,1.535,837,2.431,1028,2.009,1160,2.05,1344,0.787]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.037,61,1.036,720,4.323,756,2.056,1045,2.167,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[550,3.352,756,2.309,1045,2.434,1087,3.895,2335,5.369]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.326,9,0.054,29,0.991,35,0.508,43,3.832,167,3.109,181,1.701,303,1.618,366,1.815,372,0.951,399,1.624,756,3.217,757,3.819,773,4.832,1045,3.391,1344,0.979,2336,5.484]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.971,116,2.771,192,2.503,247,3.167,650,2.26,2212,1.892,2334,2.172,2550,4.689]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[116,3.322,1625,5.369,2550,5.621,2551,6.473,2552,6.473]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.08,35,0.598,40,2.446,49,0.962,143,1.727,148,1.854,150,3.103,218,4.313,323,1.666,368,2.099,372,0.87,465,3.424,696,1.812,921,4.826,1023,2.93,1344,0.895,2548,5.251,2550,9.212]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.06,61,1.197,1169,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.01,39,2.071,117,1.621,241,1.334,1169,2.648,1683,2.447,1818,4.317,1819,2.562]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.088,5,1.219,9,0.061,29,0.751,31,1.71,35,0.283,47,3.424,49,1.179,61,1.332,65,2.237,100,1.503,141,1.823,143,1.432,181,1.29,184,1.448,241,1.286,303,1.227,323,1.382,330,2.204,366,1.377,372,0.721,399,1.231,779,1.448,837,2.293,1003,4.355,1028,1.895,1160,1.934,1344,0.743,2553,5.015]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,143,1.45,180,2.876,241,1.302,1160,1.958,1176,2.5,2052,2.785,2123,2.261,2258,2.19]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1863,3.878,2463,5.512,2464,5.512,2490,4.624,2554,5.512,2555,5.512]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.068,35,0.591,60,2.515,65,2.515,243,3.086,372,1.198,532,4.434,696,2.496,1344,1.233]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.341,756,2.205,1045,2.323,1132,2.004,2282,3.461,2372,3.389]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2556,4.885,2557,3.773,2558,3.773,2559,3.773,2560,3.773]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.984,143,1.765,240,0.849,304,3.144,1132,2.004,2372,3.389]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[678,6.17,2375,7.116,2561,7.728]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.341,5,1.502,14,0.869,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1836,5.969,1837,6.41,2562,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.389,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127,1675,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[829,0.474]],["title//docs/databases/postgresql/fedora-13/",[5,1.502,14,0.869,30,2.665,1053,3.354,1132,2.004,2372,3.389]],["keywords//docs/databases/postgresql/fedora-13/",[1055,4.714,1152,5.185,2563,7.728]],["toc//docs/databases/postgresql/fedora-13/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.293,241,1.707,1132,2.16,1160,2.568,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.368,1519,4.133,1520,4.726,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.293,1132,2.16,1160,2.568,1819,3.278,2372,3.652]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.368,1519,4.133,2008,4.917,2564,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.388,158,3.34,192,2.503,1132,1.751,2071,2.902,2072,3.852,2372,2.961]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.549,151,2.245,235,3.098,697,2.73,1132,1.869,2372,3.16]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2372,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2052,3.864,2465,6.486,2476,6.118,2565,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.984,143,1.765,276,3.144,1132,2.004,2052,3.389,2257,3.389]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2052,3.864,2302,5.843,2565,6.486,2566,7.045]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.058,29,1.05,35,0.395,123,3.565,183,4.398,303,2.295,372,1.008,399,1.72,639,3.634,734,5.8,793,6.411,1344,1.037,2052,5.142]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[829,0.474]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2567,6.272]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2567,5.621,2568,6.473,2569,6.473,2570,6.473]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.076,60,2.777,144,7.103,372,1.323,1344,1.362,2567,7.987]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.341,245,3.822,756,2.205,1045,2.323,1132,2.004,2282,3.461]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2571,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.992,4,2.097,9,0.06,14,1.031,16,2.181,29,1.098,35,0.545,60,1.493,65,1.493,150,2.538,243,1.832,324,2.569,366,1.358,372,0.711,378,3.473,422,2.276,675,1.85,757,2.094,766,1.859,1045,3.285,1344,0.732,1580,3.016,2228,3.381,2282,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.671,42,2.046,184,1.784,1183,3.67,2123,2.75,2258,2.665]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.978,9,0.088,35,0.488,38,1.724,43,2.826,64,1.89,141,1.773,150,3.724,281,2.171,324,1.708,345,3.479,368,1.693,372,0.702,427,2.861,696,1.462,757,2.065,779,1.408,937,5.792,1061,3.334,1183,6.798,1342,5.064,1344,0.722,1740,3.403]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.15,749,3.194,1132,2.342,2372,3.961]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1782,5.148,1783,5.285,2572,7.045,2573,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.402,276,3.674,1132,2.342,2372,3.961]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.162,199,2.756,701,2.995,2387,5.199,2476,5.199,2564,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.671,49,0.984,184,1.784,2123,2.75,2174,4.408,2258,2.665]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[184,2.471,2174,6.106]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.061,35,0.652,143,2.128,190,4.219,191,4.128,302,4.044,372,1.072,1344,1.103,2174,8.25]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2123,2.75,2258,2.665,2280,3.625]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[164,1.888,240,0.915,585,4.12,1295,3.066,2212,2.333]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.08,29,1.116,35,0.55,47,2.622,151,3.805,240,1.341,281,3.316,399,1.829,792,3.823,1295,4.496]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,585,3.822,1295,2.844,2123,2.75,2258,2.665]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,585,3.822,1295,2.844,2399,2.906,2400,2.864]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.084,35,0.574,151,3.099,240,1.092,281,3.54,372,1.144,792,4.082,1295,4.69,1344,1.178]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.626,184,1.664,743,4.111,1940,4.451,2045,4.111,2123,2.565,2258,2.485]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.703,2045,4.618,2046,5.621,2258,2.791,2490,4.999]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.072,14,0.896,29,0.955,35,0.567,136,3.188,265,2.934,281,2.837,311,2.328,372,0.917,386,4.547,575,4.001,696,1.91,1340,5.088,1344,0.944,2045,6.273,2047,5.286,2049,4.922,2050,4.275,2574,5.868]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.671,240,0.849,1295,2.844,2123,2.75,2258,2.665,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.605,39,2.216,240,0.765,1295,2.563,2258,2.401,2491,5.126,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.054,14,0.929,29,0.991,35,0.373,39,2.631,141,2.404,151,2.576,169,3.424,181,2.319,240,0.908,281,2.943,323,1.822,372,0.951,399,1.624,702,3.255,1295,4.724,1344,0.979,1417,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,240,0.849,585,3.822,1295,2.844,2212,2.165,2334,2.486]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,1300,4.726]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.081,29,1.14,35,0.558,151,2.965,240,1.045,281,3.387,372,1.095,399,1.869,792,3.906,1295,4.559,1344,1.127]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[829,0.474]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.048,33,2.26,300,3.768,486,4.05,779,1.559,2413,4.17,2577,4.689]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.845,33,1.821,199,2.003,240,0.598,312,1.912,487,5.315,701,2.177,2578,4.351,2579,4.351,2580,4.351]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.308,33,2.82,35,0.38,38,2.382,42,2.231,199,3.102,240,0.925,300,6.374,312,2.961,335,3.905,422,3.102,475,4.055,486,6.852,696,2.02,779,1.946,2019,4.703,2413,5.204,2577,5.852]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,884,3.673,2212,2.019,2334,2.318,2581,5.763,2582,5.763,2583,5.306]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2584,7.045,2585,7.045,2586,7.045,2587,5.441]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.078,35,0.403,47,2.516,64,2.77,100,2.142,151,2.785,184,2.064,303,1.749,372,1.028,696,2.142,779,2.744,1028,2.701,1344,1.059,2583,8.749]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.671,303,1.512,721,3.117,884,3.939,2123,2.75,2258,2.665]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.65,447,3.1,650,2.505,721,3.02,2490,4.624,2588,5.986]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.671,756,2.205,1176,3.041,1997,3.67,2123,2.75,2258,2.665]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[1997,3.845,2000,4.426,2001,4.855,2589,6.473,2590,5.959]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.172,11,0.586,756,1.926,1045,2.03,1176,2.658,1576,2.847,2123,2.403,2258,2.328]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.605,756,1.987,1576,2.936,2258,2.401,2590,5.126,2591,5.568,2592,5.568]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.626,255,3.068,929,3.565,2290,4.6,2291,4.323,2399,2.71,2400,2.672]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2593,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.586,255,2.874,929,3.34,1176,2.658,2123,2.403,2258,2.328,2290,4.31,2291,4.05]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1055,3.396,2295,4.836,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2594,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2123,2.403,2258,2.328]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1984,5.504,1985,5.393,2595,6.85]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1985,4.817,2595,6.118,2596,7.045,2597,6.486]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2595,7.066]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1386,5.99,1984,5.04,1985,6.542]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[749,2.863,1386,5.369,2597,5.959,2598,6.473,2599,6.473]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.092,372,1.323,696,2.756,1344,1.362,1386,7.628]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.586,756,1.926,1013,2.273,1176,2.658,1362,3.557,2123,2.403,2258,2.328,2343,4.31]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1579,4.271,2347,4.779,2348,4.779,2600,5.986,2601,5.986,2602,5.512]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.586,42,1.788,1176,2.658,1263,3.093,1969,3.207,1970,3.498,2123,2.403,2258,2.328]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2603,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.173,143,2.062,702,3.555,2604,6.272]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[241,1.659,665,5.621,668,3.895,1162,4.265,2604,5.621]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2604,7.066]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2123,2.565,2258,2.485]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,1160,2.222,1176,2.837,1819,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2605,5.621]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.965,9,0.078,11,0.78,19,3.787,29,0.721,31,0.934,35,0.537,60,1.453,65,1.453,126,4.732,167,2.262,181,1.237,243,1.782,311,1.757,366,1.321,372,0.692,399,1.181,478,1.701,532,2.561,1160,1.855,1344,0.712,1415,3.019,1521,2.975,1775,4.177,1776,5.957,1819,2.368,2284,3.116,2371,3.608,2606,7.182,2607,4.81]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,151,1.868,240,0.658,241,1.229,368,1.665,1176,2.36,1240,2.657,2123,2.134,2258,2.068,2393,3.42]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1683,2.618,1851,3.807,1852,3.807,2396,4.069,2397,4.069,2608,5.568,2609,5.568]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.056,29,1.029,35,0.387,201,5.306,240,1.271,241,2.372,244,3.078,265,3.162,311,3.38,372,0.988,399,1.687,1240,3.807,1263,3.935,1344,1.017,1854,5.153,2050,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.586,43,3.129,49,0.859,757,2.286,1176,2.658,1980,3.207,2123,2.403,2258,2.328]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1364,3.495,1980,3.308,1982,4.177,1983,4.177,2233,4.836,2234,4.618,2610,5.568]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.859,247,3.625,341,4.003,2274,6.647,2611,5.689]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2278,5.167,2612,6.473,2613,5.959,2614,6.473,2615,6.473]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.084,100,2.384,184,2.296,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2274,6.143,2611,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[829,0.474]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.004,247,3.907,341,4.314,2274,5.144,2616,5.784]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2278,5.624,2613,6.486,2616,6.118,2617,7.045]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.085,100,2.439,184,2.349,303,1.991,372,1.171,696,2.439,779,2.349,1028,3.075,1344,1.205,2616,7.066]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2123,2.261,2258,2.19]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2123,2.403,2258,2.328]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,197,2.704,478,1.796,1176,2.5,2075,2.704,2076,3.473,2123,2.261,2258,2.19]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[478,2.116,819,3.758,2075,3.187,2077,4.779,2078,4.374,2079,3.218]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,276,2.747,1176,2.658,2052,2.961,2123,2.403,2258,2.328]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1863,4.193,2052,3.55,2490,4.999,2554,5.959,2555,5.959]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.19,49,0.808,90,1.528,119,2.944,185,2.442,303,1.243,336,3.056,618,3.017,2618,3.923]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2058,5.167,2618,4.999,2619,6.473,2620,5.959,2621,5.959]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.172,5,1.313,11,0.586,14,0.759,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1457,4.642,2080,5.441,2081,5.148,2622,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.466,9,0.067,14,1.144,35,0.583,38,2.877,323,2.242,372,1.171,1344,1.205]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[240,0.822,701,2.995,1992,4.374,2623,5.986,2624,5.986,2625,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.723,1023,3.227,1176,3.278,2123,2.964,2258,2.872]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2215,6.41,2216,6.41,2626,7.728]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[323,2.602,961,7.083,1023,4.575,2121,7.832,2434,8.201]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.626,90,1.734,367,3.733,698,3.515,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2627,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.083,5,1.313,9,0.064,29,0.809,31,1.048,33,2.259,35,0.568,42,1.788,60,1.63,65,1.63,100,1.618,184,1.559,240,0.741,303,1.321,318,2.259,372,0.777,380,3.768,399,1.326,698,5.607,699,3.058,756,1.926,779,1.559,1028,2.04,1130,3.768,1188,2.874,1344,0.799,2242,4.688]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.313,11,0.586,14,0.759,30,2.328,1053,2.931,1176,2.658,2123,2.403,2258,2.328]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.582,1054,4.779,1055,3.652,1152,4.016,2628,5.986,2629,5.986]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.671,31,1.199,276,3.144,1176,3.041,2123,2.75,2258,2.665]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.605,31,1.081,199,2.563,701,2.786,2490,4.3,2605,4.836,2630,5.568]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.192,9,0.08,11,0.646,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[175,5.152,650,3.022,1669,6.272,2631,5.99]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2631,5.843,2632,6.486,2633,6.486,2634,6.486]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.067,14,0.805,35,0.323,117,1.118,119,2.079,123,2.913,174,2.504,175,2.56,181,0.923,192,1.663,274,2.621,297,6.884,316,2.364,323,1.578,336,2.159,379,2.56,475,2.159,618,2.131,650,3.413,681,3.116,751,1.795,886,2.105,904,3.303,908,2.864,990,3.116,1423,3.303,1521,2.219,1656,3.303,1995,3.303,2079,1.928,2425,3.303,2426,3.303,2461,5.272,2631,8.853,2633,3.303,2634,3.303,2635,3.588,2636,3.588,2637,3.588,2638,3.588,2639,3.588,2640,3.588,2641,3.588]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.401,14,0.81,30,2.485,123,2.932,185,2.771,639,2.234,2618,4.451]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2058,4.779,2618,4.624,2620,5.512,2621,5.512,2642,5.986,2643,5.986]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.074,14,1.26,35,0.505,643,4.016,1086,5.134,2618,8.481]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,756,2.056,1013,2.426,1362,3.797,2212,2.019,2334,2.318,2343,4.6]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1579,4.271,2346,5.512,2347,4.779,2348,4.779,2644,5.986,2645,5.986]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.004,101,3.155,118,3.956,464,3.155,2646,5.784]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1203,4.02,1623,4.154,1624,4.154,2646,4.52,2647,5.204,2648,4.791,2649,4.791,2650,5.204]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.876,9,0.046,22,3.397,86,4.069,101,2.638,148,2.452,185,2.678,197,2.965,265,3.681,284,4.446,432,4.619,672,2.965,702,3.936,1414,4.836,1808,6.175,1900,6.944,2404,4.177,2467,3.973,2506,5.127,2646,8.878,2651,5.127]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.586,42,1.788,47,1.9,1317,4.31,1373,3.945,1762,4.17,2399,2.539,2400,2.503]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1317,4.445,1373,4.069,1377,4.836,1762,4.3,2652,5.568,2653,5.568,2654,5.568]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.534,9,0.082,16,1.558,29,0.785,35,0.56,64,2.03,74,2.578,244,2.347,255,4.072,258,3.001,324,1.835,330,2.302,357,4.182,372,0.754,509,3.152,513,3.393,696,1.57,749,2.317,780,2.558,906,3.073,1344,0.776,1373,5.589,1385,4.823,1762,5.908,1766,4.823]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.046,61,1.111,184,1.784,1183,3.67,2212,2.165,2334,2.486]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[184,2.471,1183,5.084]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.087,35,0.509,38,1.852,43,3.036,64,2.03,141,1.904,150,3.926,345,3.737,368,1.819,372,0.754,427,3.073,696,1.57,757,2.218,779,1.512,937,6.106,1183,6.939,1342,5.338,1344,0.776,1740,3.656]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.626,31,1.119,241,1.477,1160,2.222,1176,2.837,2123,2.565,2258,2.485]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.368,1519,4.133,1520,4.726,2605,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.153,9,0.047,19,4.314,29,0.861,35,0.537,42,1.904,60,1.737,65,1.737,80,2.379,126,5.39,167,2.704,181,1.479,241,1.474,243,2.131,303,1.407,311,2.1,366,1.579,372,0.827,399,1.412,603,3.789,1160,2.217,1344,0.852,1415,3.61,1517,3.61,1521,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[829,0.474]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[148,2.419,2655,7.262,2656,6.85]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.446,61,1.164,2587,4.999,2656,5.621,2657,6.473]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.077,11,0.761,61,1.26,89,2.14,117,2.183,164,1.986,197,3.73,575,4.398,1132,2.272,1308,3.661,2123,3.118,2212,3.285,2258,3.021,2334,2.818,2656,8.143]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[829,0.474]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.567,5,1.756,15,4.346,16,2.148]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.114,4,1.677,7,6.17]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.865,2,5.591,4,1.642,5,1.492,7,4.898,8,5.657,14,1.204,24,2.282,90,1.178,136,2.582,148,0.697,167,1.841,217,5.976,304,3.122,318,3.584,323,1.079,431,6.965,885,2.536,922,1.973,1056,4.334,1517,1.426,1675,1.704,1940,3.024,2658,2.271,2659,6.92,2660,6.135,2661,3.915,2662,3.915,2663,2.271,2664,2.091,2665,2.271]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[829,0.474]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.888,90,1.859,2212,2.165,2280,3.625,2334,2.486]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.671,89,1.888,90,1.859,2280,3.625,2399,2.906,2400,2.864]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1120,3.948,2205,4.618,2206,4.618,2280,3.797,2281,4.855]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.172,9,0.092,96,2.701,100,2.343,184,1.559,240,0.741,241,1.384,281,2.403,303,1.321,323,1.487,372,0.777,779,1.559,1028,2.04,1045,2.03,1344,0.799,1345,3.557,1797,3.339,1831,2.821,2280,3.167,2282,3.024,2283,4.05,2284,3.497,2285,4.05,2286,4.05,2287,4.05,2288,4.05,2289,3.557]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[829,0.474]],["title//docs/websites/wikis/dokuwiki-engine/",[395,7.999,2666,7.999]],["keywords//docs/websites/wikis/dokuwiki-engine/",[241,1.981,2032,4.651,2667,7.728]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.087,100,2.557,184,2.463,303,2.088,696,2.557,779,2.463,1028,3.223,2666,7.853]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.341,11,0.671,90,1.859,1831,3.228,2399,2.906,2400,2.864]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.529,11,0.765,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.076,35,0.522,60,2.075,141,2.497,148,2.107,240,0.943,265,3.162,303,1.681,306,4.794,311,2.509,621,4.312,675,2.57,1831,5.85,2668,6.325]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.004,143,1.902,241,1.707,702,3.278,2669,6.131]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[668,4.24,749,3.116,2670,7.045,2671,7.045]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.084,100,2.384,184,2.296,241,2.039,303,1.946,372,1.144,696,2.384,779,2.296,1028,3.005,1344,1.178,2669,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[164,2.236,2212,2.763,2289,5.197]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.556,164,1.697,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.173,9,0.079,21,3.388,29,0.876,35,0.467,40,2.365,60,1.765,167,2.749,181,1.503,240,0.803,243,2.166,303,1.431,366,1.605,380,4.08,399,1.435,564,3.852,779,1.688,1517,3.669,1830,4.17,2289,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[829,0.474]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.299,1301,4.186,2212,2.53,2334,2.905]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.804,1301,4.083,1683,3.313,2025,5.285]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.302,5,1.578,9,0.083,29,0.972,38,2.295,47,2.284,150,3.331,151,3.959,372,0.934,399,1.594,696,1.945,1301,6.642,1344,0.961,2026,5.181]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[829,0.474]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.173,244,3.236,2673,6.649,2674,6.649]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1819,3.804,2673,7.116,2675,7.728]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.095,14,1.047,38,2.634,65,2.25,147,5.443,185,3.582,281,3.316,372,1.072,375,4.318,2674,8.991,2676,7.45]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.083,14,0.759,61,0.971,394,3.768,2035,3.557,2036,3.498,2212,1.892,2334,2.172]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[394,4.517,1007,4.73,1012,4.999,2035,4.265,2036,4.193]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.067,35,0.64,38,2.877,368,2.825,779,2.349,2035,5.361,2036,7.36]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[164,1.888,1984,4.648,1985,4.554,1986,4.062,2212,2.333]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.469,64,3.228,100,2.496,184,2.405,303,2.038,561,5.942,696,2.496,779,2.405,1028,3.147,1986,5.08]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[829,0.474]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.734,157,3.565,349,3.866,354,4.111,732,3.797,1743,3.94]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[117,2.016,349,4.342,732,4.265,916,4.517,2677,6.473]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.054,14,0.929,38,2.338,90,1.989,99,3.664,351,5.484,354,4.717,355,2.817,433,4.151,456,4.357,643,2.963,732,8.026,1743,4.521,2404,4.96,2678,6.612]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2031,5.539]],["keywords//docs/websites/wikis/twiki/",[454,4.24,1819,3.468,2031,4.036,2032,4.24]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[829,0.474]],["title//docs/applications/messaging/advanced-irssi-usage/",[147,5.763,475,4.746,2679,6.296]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,206,7.075,233,3.927,372,1.227,427,5.004,1344,1.263,1470,6.809,1486,6.809,1580,5.203]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.936,638,5.524,1050,5.524,1479,5.144,2679,5.316]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1479,4.624,1740,4.178,1741,5.199,1742,5.199,2679,4.779,2680,5.512]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.04,35,0.484,38,1.701,43,2.788,80,1.99,90,2.161,123,3.654,147,3.515,160,3.99,324,1.685,355,2.049,427,2.822,456,4.732,650,3.006,661,5.957,672,2.561,696,1.442,969,4.177,1263,2.755,1740,5.012,1746,4.428,1748,6.612,2404,3.608,2679,8.143,2681,4.81,2682,4.81,2683,4.81,2684,4.81]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.549,151,2.245,164,1.634,235,3.098,697,2.73,2212,2.019]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.713,697,3.337,883,3.554,1031,4.817]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,24,2.388,151,2.104,235,2.902,697,2.558,2399,2.539,2400,2.503]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.26,42,1.788,61,0.971,240,0.741,312,2.373,2212,1.892,2334,2.172]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.133,42,1.684,47,1.79,49,0.81,182,3.022,198,3.352,202,2.708,213,3.295,240,0.699,312,2.235,372,0.732,575,3.193,607,3.147,628,3.55,653,3.629,702,4.373,1087,3.061,1344,0.753,1417,4.447,1640,3.352,1991,2.819,2040,7.005,2041,3.629,2042,3.717,2043,3.717,2044,3.717,2413,3.929]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.586,14,0.759,33,2.26,42,1.788,240,0.741,312,2.373,2399,2.539,2400,2.503]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[245,4.879,1132,2.558,2038,4.326]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[116,2.858,454,3.351,1132,1.806,1819,2.741,2032,3.351,2038,3.054,2469,4.445]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[829,0.474]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.784,2038,3.961,2399,3.396,2400,3.348]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.605,116,2.858,454,3.351,1819,2.741,2032,3.351,2038,3.054,2400,2.581]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.056,14,1.301,35,0.522,296,4.081,372,0.988,424,4.25,475,4.134,647,3.848,1344,1.017,1620,4.25,2038,6.602,2470,5.966]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.549,151,2.245,235,3.098,245,3.565,697,2.73,1132,1.869]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.256,9,0.082,14,0.88,38,3.07,40,3.513,100,1.876,156,2.862,184,1.808,290,3.673,303,1.532,372,0.901,464,2.966,696,1.876,697,4.724,779,1.808,1028,2.366,1344,0.927,1834,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.412,42,1.908,164,1.634,240,0.791,312,2.532,2212,2.019]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.201,42,1.734,47,1.844,49,0.834,182,3.112,198,3.451,202,2.789,213,3.393,240,0.719,312,2.302,575,3.288,607,3.24,628,3.656,653,3.737,702,4.447,1087,3.152,1417,4.544,1640,3.451,1991,2.903,2040,7.089,2041,3.737,2042,3.828,2043,3.828,2044,3.828,2413,4.046]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.586,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2399,2.539,2400,2.503]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.063,35,0.657,181,1.957,366,2.09,372,1.095,607,4.708,757,3.223,1344,1.127,2063,6.715]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1984,5.504,1985,5.393,2685,6.85]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[241,1.806,1683,3.313,1987,5.148,2685,6.118]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.068,100,2.496,184,2.405,303,2.038,372,1.198,696,2.496,779,2.405,1028,3.147,1344,1.233,2685,7.233]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[829,0.474]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.047,117,1.795,154,4.111,575,3.617,1984,4.022,1985,3.94,2686,5.005]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[241,1.806,1683,3.313,1987,5.148,2686,6.118]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.082,696,2.99,2686,8.664]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1018,3.828]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.293,241,1.707,245,4.12,1132,2.16,1160,2.568]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.368,1519,4.133,1520,4.726,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,241,1.87,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.293,245,4.12,1132,2.16,1160,2.568,1819,3.278]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.368,1519,4.133,2008,4.917,2687,6.118]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.059,35,0.602,38,2.527,60,2.159,65,2.159,181,1.838,243,2.649,323,1.97,366,1.963,372,1.028,1160,3.664,1344,1.059,1545,5.223,1819,3.518]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[829,0.474]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.412,42,1.908,240,0.791,245,3.565,312,2.532,1132,1.869]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.709,240,0.889,312,2.844,1696,4.265,2039,4.73]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.726,33,3.167,42,1.709,47,1.817,49,0.822,182,3.066,198,3.401,202,2.748,204,3.682,213,3.344,240,0.709,312,2.268,372,0.743,575,3.24,607,3.193,628,3.602,653,3.682,702,4.41,1087,3.106,1344,0.764,1417,4.495,1640,3.401,1991,2.86,2040,7.047,2041,3.682,2042,3.772,2043,3.772,2044,3.772]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,1576,3.039,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1579,4.618,2688,5.959,2689,6.473,2690,6.473,2691,6.473]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.965,4,1.865,9,0.04,14,0.676,16,2.136,29,1.076,35,0.575,38,1.701,60,2.169,65,1.453,243,1.782,323,1.325,324,2.516,366,1.321,372,0.692,378,3.402,422,2.214,675,1.8,676,2.114,757,2.037,766,1.809,1006,2.469,1045,3.232,1344,0.712,1576,2.536,1580,2.934,1581,3.515,2228,3.289]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[164,1.888,240,0.915,304,3.388,675,2.492,766,2.504]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[701,2.995,881,4.178,1015,4.779,1692,4.093,1693,5.512,2692,4.965]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[240,0.849,245,3.822,304,3.144,675,2.312,766,2.323,1132,2.004]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[701,3.525,1692,4.817,1694,6.118,2469,5.624]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[829,0.474]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.626,240,0.791,304,2.932,675,2.156,766,2.167,2399,2.71,2400,2.672]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.605,675,2.083,1692,3.807,1698,5.126,1863,3.607,2480,4.445,2693,4.618]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.888,303,1.63,721,3.36,884,4.245,1013,2.804]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[164,1.997,447,3.648,650,2.949,721,3.554]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.038,14,0.658,35,0.397,59,3.202,98,4.912,131,3.647,136,2.342,185,2.251,233,4.33,303,1.723,308,2.939,366,1.286,415,2.818,447,3.645,519,4.294,650,2.946,721,4.267,751,3.521,766,2.647,980,3.341,981,3.341,988,3.341,1084,4.56,1086,2.682,1314,3.341,1907,3.421,1908,3.512]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.402,164,2.048,276,3.674,2212,2.53]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.162,164,2.386,199,2.756,701,2.995,2692,4.965]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1684,4.459,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.445,240,1.083,430,6.092]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.436,240,1.061,1696,5.092]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[148,2.334,167,3.579,318,4.879,511,5.878,621,4.777,1402,5.878,2291,5.709,2318,6.609,2548,6.609,2694,7.61,2695,7.61]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.173,240,0.992,743,5.152,2696,6.272]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.675,148,1.708,199,2.563,240,0.765,706,5.126,743,3.972,2696,4.836]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.059,1580,6.263]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,303,1.512,721,3.117,884,3.939,2212,2.165,2334,2.486]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,447,3.352,650,2.709,721,3.265,2334,2.604]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,4.311,519,4.21,650,2.888,721,3.482,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[829,0.474]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.671,303,1.512,721,3.117,884,3.939,2399,2.906,2400,2.864]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.65,447,3.1,650,2.505,721,3.02,2480,4.779,2693,4.965]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.389,59,3.119,98,4.816,131,3.59,136,2.282,185,2.193,233,4.273,303,1.689,308,2.863,366,1.252,372,0.656,415,2.745,447,3.573,519,4.21,650,2.888,721,4.2,751,3.453,766,2.595,980,3.254,981,3.254,988,3.254,1084,4.471,1086,2.613,1314,3.254,1344,0.675,1907,3.333,1908,3.422]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.293,61,1.197,276,3.388,2212,2.333,2334,2.679]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.162,61,1.076,199,2.756,701,2.995,2587,4.624,2697,5.512]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.192,9,0.08,29,0.89,31,2.044,40,2.404,61,1.069,64,2.304,65,1.795,90,1.788,100,1.781,101,2.816,184,1.716,303,1.455,330,2.612,372,0.855,399,1.459,696,1.781,779,1.716,837,2.718,1028,2.246,1344,0.88,1834,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.402,245,4.467,276,3.674,1132,2.342]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.162,199,2.756,701,2.995,2387,5.199,2469,4.779,2687,5.199]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.234,9,0.081,31,2.075,40,2.488,64,2.384,65,1.858,90,1.851,100,1.844,101,2.914,184,1.776,303,1.505,330,2.703,372,0.885,696,1.844,779,1.776,837,2.812,1028,2.324,1344,0.911,1684,4.614,1834,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-centos-5/",[164,2.236,2054,4.467,2212,2.763]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.308,164,1.579,341,3.607,1095,3.351,2054,3.154,2055,4.069,2698,5.568]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,452,3.228,1188,3.289,2399,2.906,2400,2.864]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2699,3.407,2700,3.346]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.063,35,0.429,201,5.878,240,1.36,241,2.538,244,3.41,311,2.78,372,1.095,1240,4.217,1263,4.359,1344,1.127,1854,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.388,158,3.34,164,1.531,192,2.503,2071,2.902,2072,3.852,2212,1.892]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[164,1.997,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.08,14,1.364,2071,6.192]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.246,158,3.142,192,2.354,2071,2.73,2072,3.623,2399,2.388,2400,2.354]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.765,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.084,14,1.118,265,3.661,311,2.905,372,1.144,779,2.296,1344,1.178,2050,5.335,2071,6.043]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2393,3.623,2399,2.388,2400,2.354]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.059,35,0.403,201,5.521,240,1.305,241,2.436,244,3.203,265,3.291,311,3.471,372,1.028,1240,3.961,1263,4.095,1344,1.059,1854,5.362,2050,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.971,90,1.624,247,3.167,2212,1.892,2273,3.852,2274,4.17,2275,4.689,2334,2.172]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[247,3.797,2273,4.618,2277,5.621,2278,5.167,2701,6.473]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.083,35,0.438,100,2.331,184,2.246,303,1.904,372,1.119,696,2.331,779,2.246,1028,2.939,1344,1.152,2273,7.165]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[829,0.474]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.971,90,1.624,509,3.249,756,1.926,1743,3.692,2063,3.293,2212,1.892,2334,2.172]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[756,2.514,1045,2.649,2063,4.297,2064,5.441]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.646,181,1.876,366,2.003,372,1.05,399,1.791,607,4.513,757,3.09,1344,1.08,2063,6.578]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,1576,3.039,2212,2.019,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,756,2.309,1045,2.434,1576,3.413,2334,2.604]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.978,4,1.881,9,0.04,14,0.685,16,2.158,29,1.298,35,0.541,60,2.191,65,1.473,243,1.807,324,2.542,366,1.339,372,0.702,378,3.437,399,1.197,422,2.245,675,1.825,676,2.143,757,2.065,766,1.834,1006,2.503,1045,3.258,1344,0.722,1576,2.572,1580,2.974,1581,3.563,2228,3.334]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.246,61,0.913,158,3.142,192,2.354,2071,2.73,2072,3.623,2212,1.779,2334,2.043]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,883,3.554,2071,3.787,2073,5.026]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.076,14,1.293,372,1.323,1344,1.362,2071,5.996]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.784,2399,3.396,2400,3.348,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,2445,4.624,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.671,240,0.849,1295,2.844,2399,2.906,2400,2.864,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.605,39,2.216,240,0.765,1295,2.563,2400,2.581,2480,4.445,2576,4.445]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.056,14,0.966,35,0.387,39,2.734,151,2.676,169,3.557,181,2.38,240,0.943,265,3.162,281,3.058,311,2.509,372,0.988,702,3.381,1295,4.26,1344,1.017,1417,4.081,2668,6.325]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.784,1040,4.845,2399,3.396,2400,3.348]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[235,3.218,769,4.178,1040,4.016,2702,5.512,2703,7.75]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[639,2.395,643,2.768,938,4.312,2071,3.321,2074,5.125,2704,5.689]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[123,2.648,240,0.715,643,2.332,1276,4.791,2060,3.803,2071,2.797,2074,4.317,2705,5.204]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[131,3.865,143,2.56,416,7.155,639,3.474,643,4.016,2074,7.434,2706,8.963]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.984,143,1.765,164,1.752,169,3.199,1991,3.424,2212,2.165]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[240,0.968,1991,3.904,1993,5.026,2707,7.045]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.807,244,3.732,311,3.042,375,4.827,378,3.945,745,5.488,1155,6.399]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.984,143,1.765,169,3.199,245,3.822,1132,2.004,1991,3.424]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[240,0.968,1991,3.904,1993,5.026,2321,6.486]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,169,2.984,1991,3.194,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[240,0.968,1991,3.904,1992,5.148,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[164,1.888,240,0.915,1295,3.066,2212,2.333,2575,5.316]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.576,164,1.835,240,0.889,1295,2.98,2576,5.167]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.638,9,0.075,14,0.947,29,1.009,35,0.38,151,2.625,169,3.489,181,2.349,240,0.925,372,0.969,399,1.655,460,3.24,702,3.317,1295,4.77,1344,0.998,1417,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.752,1585,4.772,1805,4.772,2212,2.165,2467,4.408,2468,4.515]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[164,1.997,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.074,35,0.619,639,3.474,2468,8.675]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[151,2.104,164,1.531,240,0.741,241,1.384,368,1.875,1240,2.992,2212,1.892,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.067,29,1.219,35,0.459,240,1.42,241,2.65,372,1.171,399,1.998,1240,4.509,1344,1.205]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[151,2.104,240,0.741,241,1.384,245,3.34,368,1.875,1132,1.751,1240,2.992,2393,3.852]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.07,35,0.481,240,1.463,241,2.73,372,1.227,1240,4.727,1344,1.263]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[829,0.474]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.388,61,0.971,151,2.104,235,2.902,697,2.558,2212,1.892,2334,2.172]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.713,883,3.554,1031,4.817,2449,5.624]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.352,9,0.055,14,0.947,38,3.229,40,3.695,100,2.02,156,3.081,184,1.946,290,3.953,303,1.649,372,0.969,464,3.192,697,4.327,779,1.946,1028,2.546,1344,0.998,1834,3.489]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.626,1585,4.451,1805,4.451,2399,2.71,2400,2.672,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.703,756,2.309,2000,4.426,2400,3.001,2467,4.618]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.015,284,5.765,756,2.577,2708,6.272]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[756,2.758,2708,6.712,2709,7.116]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.054,14,1.267,21,3.832,35,0.508,38,2.338,169,3.424,465,3.745,475,3.979,756,3.217,971,4.215,987,6.088,1006,4.628,1640,4.357,1940,5.107,2708,8.911]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2710,7.545,2711,7.999]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1683,3.634,2710,6.712,2712,7.728]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.066,16,1.683,29,0.848,35,0.456,47,1.991,49,0.901,141,2.057,151,2.204,156,2.587,181,1.455,240,1.414,281,2.519,323,1.559,366,1.554,372,0.814,702,2.785,1068,4.134,1344,0.838,1417,3.361,2664,5.209,2710,8.196,2711,7.446]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.734,143,1.646,702,2.837,2212,2.019,2334,2.318,2713,5.005]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.216,61,1.001,668,3.351,1162,3.669,2025,4.177,2713,4.836,2714,5.568]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.058,14,0.985,31,1.36,33,3.924,35,0.528,142,3.924,144,5.411,240,0.962,372,1.008,1344,1.037,2413,7.242,2577,8.143,2713,8.143]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.341,61,1.111,90,1.859,1831,3.228,2212,2.165,2334,2.486]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.529,61,1.267,215,5.026,1831,3.681]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.079,35,0.543,60,2.203,141,2.652,148,2.237,240,1.002,303,1.786,306,5.092,621,4.58,675,2.73,1831,5.993]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,255,3.068,929,3.565,2212,2.019,2290,4.6,2291,4.323,2334,2.318]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1055,3.396,2296,4.445,2297,4.445,2298,4.3,2299,4.445,2325,5.126,2715,5.568]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.069,29,0.89,35,0.335,90,1.788,100,1.781,131,2.563,155,2.445,233,2.736,243,2.202,265,2.736,355,2.532,372,0.855,376,3.577,399,1.459,626,4.241,650,2.488,779,1.716,826,4.343,914,4.241,929,6.513,1344,0.88,2300,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[829,0.474]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[303,1.512,643,2.768,929,3.822,1086,3.539,2300,4.772,2704,5.689]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2058,6.17,2716,7.728,2717,7.728]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.906,16,2.126,29,1.071,89,2.184,117,2.227,119,4.143,123,3.637,131,3.083,336,4.302,618,4.246,929,4.422,1086,6.517,2060,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[829,0.474]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.299,2212,2.53,2289,4.758,2334,2.905]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.556,61,1.076,1095,3.603,1615,4.779,2289,3.944,2672,5.512]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.067,9,0.075,21,3.082,29,0.797,35,0.436,40,2.151,60,1.606,167,2.5,181,1.368,240,1.062,303,1.301,366,1.46,372,0.765,380,3.711,397,3.389,399,1.306,532,2.831,564,3.503,779,1.535,1344,0.787,1517,3.338,1830,3.793,2171,4.895,2289,7.543]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1585,4.451,1805,4.451,2212,2.019,2334,2.318,2467,4.111,2468,4.211]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,756,2.514,2000,4.817,2467,5.026]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.07,35,0.6,372,1.227,639,3.306,1344,1.263,2468,8.485]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2718,4.795]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.788,61,0.971,473,3.389,478,1.909,2065,3.852,2066,2.961,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,478,2.288,650,2.709,2066,3.55,2079,3.479]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.278,9,0.052,29,0.955,35,0.496,42,2.11,57,3.835,148,1.955,181,1.639,243,2.362,372,0.917,398,3.46,399,1.565,779,1.84,1344,0.944,1396,5.793,2066,5.952,2069,4.448,2070,4.547]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.173,143,2.062,669,5.277,702,3.555]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[668,4.651,669,5.647,1162,5.092]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.084,35,0.448,64,3.083,100,2.384,184,2.296,303,1.946,669,7.445,696,2.384,779,2.296,1028,3.005]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[829,0.474]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.971,197,2.874,478,1.909,2075,2.874,2076,3.692,2212,1.892,2334,2.172]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,478,2.288,819,4.063,2075,3.446,2079,3.479]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.053,14,0.912,29,0.972,35,0.573,302,3.524,323,1.788,372,0.934,399,1.594,464,3.075,478,2.295,508,4.987,639,2.516,1344,0.961,2075,6.1,2079,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.299,2212,2.53,2334,2.905,2445,5.578]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,2445,5.441]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.08,35,0.42,100,2.233,143,2.128,184,2.151,303,1.823,372,1.072,675,2.787,696,2.233,766,2.801,779,2.151,1028,2.815,1344,1.103,1826,5.443]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.686,35,0.49]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.058,31,1.368,701,3.525,1433,6.486]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.134,31,0.947,35,0.541,49,0.776,80,3.002,124,2.861,145,3.766,146,3.563,148,1.496,149,3.403,153,4.235,181,1.254,192,2.261,199,2.245,316,3.213,335,2.826,366,1.992,378,2.31,422,3.34,511,5.604,571,3.061,639,1.89,673,2.345,676,2.143,696,1.462,941,2.596,1402,3.766,1666,4.49,1676,4.235,2019,3.403,2050,3.271,2719,4.49,2720,4.49]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.299,1040,4.845,2212,2.53,2334,2.905]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,235,3.787,769,4.917,1040,4.726]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.093,143,2.324,192,3.772,372,1.171,675,3.044,696,2.439,766,3.059,1040,5.458,1344,1.205]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.004,101,3.155,330,2.926,437,5.524,2721,5.784]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1623,5.167,1624,5.167,2648,5.959,2721,5.621,2722,6.473]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.494,9,0.061,14,1.047,90,2.241,174,5.199,355,3.174,367,6.326,415,4.483,432,6.179,437,6.179,2651,6.859,2721,9.461]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,184,1.664,743,4.111,1940,4.451,2045,4.111,2212,2.019,2334,2.318]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2045,5.026,2046,6.118,2334,2.834]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.084,14,0.929,29,0.991,35,0.578,136,3.308,281,2.943,372,0.951,386,4.717,575,4.151,696,1.982,1340,5.278,1344,0.979,2045,6.433,2047,5.484,2049,5.107,2574,6.088]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.542,151,2.814,2723,6.272,2724,6.272]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[240,0.822,2307,4.965,2723,5.199,2724,5.199,2725,5.986,2726,5.986]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.042,33,3.167,35,0.556,142,2.891,181,1.946,182,3.066,202,2.748,213,4.902,240,1.355,312,2.268,366,2.078,372,0.743,702,3.725,1068,5.529,1344,0.764,1417,4.495,2040,5.076,2041,5.399,2723,4.483,2724,4.483,2727,5.162]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[829,0.474]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.015,284,5.765,756,2.577,2728,6.272]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[757,2.741,1521,4.004,2709,5.959,2728,5.621,2729,6.473]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.046,14,0.783,29,0.834,124,3.267,133,4.619,149,5.58,156,3.655,200,4.836,213,3.607,229,3.496,283,4.177,290,3.267,320,2.937,324,1.951,368,1.934,386,3.973,607,4.946,676,2.447,757,2.358,1900,4.836,2728,8.878,2730,5.569,2731,5.127,2732,5.569,2733,5.569]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[829,0.474]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.239,4,1.341,185,2.971,639,2.395,643,2.768,1086,3.539]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2058,6.17,2734,7.728,2735,7.728]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.786,4,1.932,16,1.931,29,0.972,117,2.022,119,3.762,131,2.799,157,4.015,185,3.121,336,3.906,618,3.856,639,2.516,643,3.989,696,1.945,1086,6.265,2060,4.743]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.671,61,1.111,379,4.408,639,2.395,1352,5.689,1712,4.635]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[976,6.118,1712,5.285,2736,7.045,2737,7.045]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.505,324,3.14,391,6.129,465,5.076,976,7.784,1712,6.724]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.784,2054,4.09,2738,4.758,2739,4.758]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2740,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.784,2054,4.09,2399,3.396,2400,3.348]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.605,51,3.308,341,3.607,1095,3.351,2054,3.154,2055,4.069,2741,5.568]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.061,29,1.116,35,0.55,49,1.186,143,2.128,181,1.916,241,1.91,366,2.045,398,4.044,525,4.826,696,2.233,797,5.094,2054,5.531]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,151,1.979,240,0.697,241,1.302,368,1.764,1240,2.815,2212,1.779,2334,2.043,2393,3.623]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1683,3.044,1851,4.426,1852,4.426,2396,4.73,2397,4.73]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.411,201,5.635,240,1.323,241,2.469,244,3.269,311,2.665,372,1.05,399,1.791,1240,4.043,1263,4.179,1344,1.08,1854,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.34,49,0.917,61,1.036,757,2.44,1980,3.423,2212,2.019,2334,2.318]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2351,5.512,2587,4.624]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.061,29,1.116,35,0.55,42,2.467,60,2.25,65,2.25,197,3.966,243,2.76,372,1.072,399,1.829,757,4.136,1344,1.103,1980,4.425]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[829,0.474]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.626,43,3.34,49,0.917,757,2.44,1980,3.423,2399,2.71,2400,2.672]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1364,3.758,1980,3.556,1982,4.491,1983,4.491,2234,4.965,2480,4.779]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.064,35,0.566,42,2.575,60,2.349,65,2.349,197,4.141,243,2.882,372,1.119,757,4.253,1344,1.152,1980,4.62]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.293,164,1.888,1160,2.568,1819,3.278,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.368,1519,4.133,2008,4.917,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.063,29,1.14,35,0.558,60,2.298,65,2.298,181,1.957,243,2.82,366,2.09,399,1.869,1160,3.818,1545,5.561,1819,3.746]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,1160,2.383,1819,3.041,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.256,1519,3.797,2008,4.517,2339,5.621,2743,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.06,29,1.093,35,0.543,60,2.203,65,2.203,181,1.876,243,2.703,366,2.003,372,1.05,399,1.791,1160,3.714,1344,1.08,1545,5.331,1819,3.591]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.671,31,1.199,1160,2.383,1819,3.041,2399,2.906,2400,2.864]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.256,1519,3.797,2006,4.999,2008,4.517,2744,6.473]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.06,35,0.608,38,2.579,60,2.203,65,2.203,243,2.703,323,2.01,372,1.05,532,3.884,1160,2.813,1344,1.08,1819,3.591,2284,4.726,2371,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.004,118,3.956,330,2.926,331,5.316,2745,5.784]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1203,5.441,2649,6.486,2745,6.118,2746,7.045]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.849,9,0.054,14,0.595,15,2.547,16,1.259,17,0.984,18,0.99,35,0.367,49,0.674,90,2.392,118,2.515,143,1.209,155,1.741,169,2.192,174,2.954,199,1.949,217,2.954,240,0.895,265,4.885,274,3.093,324,1.483,355,1.803,392,2.582,464,2.005,473,2.657,523,3.379,639,2.527,886,2.483,938,2.954,1023,2.051,1061,2.894,1288,3.897,2745,8.846,2747,4.233]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[829,0.474]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.571,218,5.627,565,6.542]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.053,21,3.016,117,1.621,323,1.434,713,3.016,2748,5.204,2749,4.791,2750,5.204]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.473,38,2.137,149,4.219,196,5.251,324,2.118,368,2.099,475,3.638,564,5.585,624,4.056,707,5.566,869,4.67,1091,4.535,1830,4.313,2731,7.803,2749,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.293,164,1.888,241,1.707,1160,2.568,2212,2.333]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.368,1519,4.133,1520,4.726,2742,6.486]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.063,35,0.62,38,2.691,60,2.298,65,2.298,241,1.951,243,2.82,323,2.097,532,4.051,1160,2.934,2284,4.93,2371,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[829,0.474]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.199,61,1.111,241,1.584,1160,2.383,2212,2.165,2334,2.486]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.368,1519,4.133,1520,4.726,2339,6.118]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.08,29,1.116,35,0.42,60,2.25,65,2.25,241,1.91,243,2.76,372,1.072,399,1.829,532,3.966,1160,2.873,1344,1.103,2284,4.826,2371,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.553,117,2.25,323,1.99,713,4.186]],["keywords//docs/tools-reference/linux-system-administration-basics/",[117,1.621,199,2.396,757,2.204,780,2.541,793,3.559,2751,5.204,2752,4.791,2753,5.204]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.019,11,0.247,16,0.676,29,1.133,35,0.221,38,0.803,43,1.317,49,1.29,61,0.408,65,1.558,84,1.704,90,1.552,117,1.608,143,1.118,147,3.771,148,2.486,164,0.644,175,2.793,184,1.131,185,1.883,189,0.951,199,1.046,205,2.627,214,4.116,240,0.312,255,1.209,276,1.156,286,1.272,323,1.907,355,2.198,372,0.327,378,1.076,398,2.126,399,0.558,424,1.405,478,1.384,479,1.704,598,2.733,624,1.524,635,1.704,640,2.458,650,0.951,671,1.66,673,1.883,676,0.998,682,2.793,690,1.621,756,1.841,892,1.621,908,3.126,1006,1.166,1047,1.66,1059,1.704,1061,1.553,1068,1.66,1308,1.187,1396,4.043,1444,1.973,1544,1.621,1613,1.973,1869,1.813,1883,1.973,2141,1.973,2404,1.704,2440,1.973,2451,1.973,2541,2.091,2631,1.884,2632,2.091,2754,2.091,2755,2.271]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.984,143,1.765,240,0.849,245,3.822,304,3.144,1132,2.004]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[240,1.061,1863,5.007,2469,6.17]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.079,35,0.589,40,2.365,49,0.931,167,2.749,181,1.503,199,2.691,240,1.32,244,2.619,316,3.852,318,2.446,366,1.605,372,0.841,375,3.388,460,2.811,621,3.669,903,4.385,942,2.637,1344,0.866,1544,4.17,2376,4.385]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[829,0.474]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.299,2054,4.09,2212,2.53,2334,2.905]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.556,1095,3.603,2054,3.39,2055,4.374,2756,5.986,2757,5.986]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.055,29,1.009,35,0.515,49,1.073,100,2.02,143,1.924,181,1.733,184,1.946,241,1.727,303,1.649,366,1.85,398,3.658,525,4.365,696,2.02,779,1.946,797,4.608,1028,2.546,2054,5.173]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.046,164,1.752,1263,3.539,1970,4.003,2009,3.625,2212,2.165]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.052,14,0.896,29,0.955,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,399,2.159,478,2.253,713,3.694,780,3.112,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[829,0.474]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,650,2.586,2212,2.165,2334,2.486,2489,5.689,2758,5.366]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[749,3.116,2101,5.624,2758,6.118,2759,7.045]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.087,14,0.985,35,0.395,100,2.1,184,2.023,286,3.924,303,1.715,372,1.008,696,2.1,779,2.023,1028,2.647,1344,1.037,2758,9.801]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/apache-access-control/",[240,1.083,464,3.736,639,3.057]],["keywords//docs/web-servers/apache/apache-access-control/",[199,2.563,240,0.765,303,1.363,701,2.786,1548,4.836,2760,5.568,2761,5.568]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.696,18,1.707,199,4.434,240,1.002,320,3.847,464,4.563,509,4.39,639,3.733,751,3.65,942,3.291,1061,4.989,1501,5.824,2424,6.717]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[192,3.087,240,0.915,310,4.062,464,3.155,639,2.581]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[199,2.98,240,0.889,303,1.584,701,3.238,1548,5.621]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.847,156,3.335,192,3.382,310,5.875,464,5.433,475,4.39,623,4.28,639,4.445,2225,6.717]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.859,367,4.003,698,3.769,2212,2.165,2334,2.486]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[698,3.652,2239,6.719,2240,4.779,2241,4.779,2762,5.986]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.006,5,1.219,9,0.08,31,1.71,33,2.099,35,0.634,38,1.773,42,1.661,60,1.515,65,1.515,100,1.503,184,1.448,240,0.689,303,1.227,323,1.382,372,0.721,380,3.5,696,1.503,698,5.374,699,2.84,756,1.789,779,1.448,1028,1.895,1130,3.5,1344,0.743]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,169,2.984,1991,3.194,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[240,0.968,1492,5.624,1991,3.904,1993,5.026]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.705,244,3.563,311,2.905,372,1.144,375,4.61,378,3.768,745,5.24,1155,6.215,1344,1.178]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.671,90,1.859,367,4.003,698,3.769,2399,2.906,2400,2.864]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[698,3.948,2239,5.167,2240,5.167,2241,5.167,2763,6.473]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.978,5,1.186,9,0.079,29,0.731,31,1.682,33,2.041,35,0.606,42,1.615,60,1.473,65,2.191,100,1.462,184,1.408,240,0.67,265,2.245,303,1.193,311,1.781,372,0.702,380,3.403,399,1.197,696,1.462,698,5.286,699,2.762,756,1.74,779,1.408,1028,1.843,1130,3.403,1344,0.722]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.239,164,1.752,766,2.323,785,3.769,786,3.171,1132,2.004]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[164,1.835,1132,2.099,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.239,11,0.671,61,1.111,766,2.323,785,3.769,786,3.171]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.703,61,1.164,1133,4.855,1134,5.167,2764,5.959]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.845,17,2.138,18,2.152,766,3.458,785,5.61,786,4.72]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[608,4.751,675,2.492,766,2.504,785,4.062,786,3.418]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1133,4.855,1134,5.167,2765,6.473,2766,5.621,2767,6.473]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.753,9,0.072,45,3.891,46,3.841,766,3.287,785,5.332,786,4.486,1280,6.236]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[829,0.474]],["title//docs/platform/linode-beginners-guide/",[89,2.41,1153,5.916,1522,7.262]],["keywords//docs/platform/linode-beginners-guide/",[1659,5.624,2752,6.486,2768,7.045,2769,7.045]],["toc//docs/platform/linode-beginners-guide/",[2,2.126,9,0.033,29,0.598,32,2.546,38,1.412,43,2.315,60,1.206,64,2.415,89,3.515,117,1.244,131,1.722,148,1.225,155,1.643,181,1.027,207,3.701,246,2.731,276,2.032,301,3.188,464,1.892,478,1.412,518,2.996,576,3.188,623,3.655,676,1.755,690,2.849,734,2.47,756,1.425,779,1.153,945,3.468,1022,2.731,1023,1.935,1771,3.084,1827,5.411,1866,3.468,2120,3.468,2434,3.468,2770,3.993,2771,3.993,2772,6.231,2773,3.993,2774,3.993]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[675,2.702,766,2.715,1130,5.04,1131,4.533]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1280,5.026,1692,4.817,2766,6.118,2775,7.045]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.711,9,0.07,202,4.541,766,4.004,786,4.378,941,4.541,1136,5.953,1280,6.086]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[829,0.474]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,169,3.199,378,2.927,532,3.289,2776,6.179,2777,5.689]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1280,5.026,1692,4.817,2766,6.118,2777,6.486]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.08,751,4.854,766,3.648,1280,6.922]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[119,3.581,148,1.895,336,3.718,618,3.67,1022,4.225,2778,5.366]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1710,4.779,1712,4.491,2778,5.199,2779,5.986,2780,5.986,2781,5.986]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.063,14,1.07,131,4.271,232,5.878,233,3.503,372,1.095,643,3.41,942,3.432,1130,5.311,1344,1.127,2778,8.6,2782,7.61]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.671,68,4.515,148,1.895,1022,4.225,1709,4.772,2399,2.906]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1709,4.624,1710,4.779,1711,5.512,1712,4.491,1713,5.512,1714,5.512]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.067,14,1.144,131,3.509,232,6.284,233,3.746,372,1.171,643,3.646,942,3.67,1344,1.205,1709,7.984]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,756,2.376,1997,3.956,2212,2.333,2334,2.679]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[1997,3.845,2000,4.426,2001,4.855,2783,6.473,2784,5.621]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.059,29,1.071,311,2.611,368,3.3,372,1.028,399,1.755,923,5.1,942,3.224,971,4.556,1344,1.059,1620,4.422,1797,4.422,1997,6.341,2002,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.723,756,2.376,1997,3.956,2738,4.388,2739,4.388]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2785,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.723,756,2.376,1997,3.956,2399,3.132,2400,3.087]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[1997,3.845,2000,4.426,2001,4.855,2784,5.621,2786,6.473]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.052,29,1.317,35,0.359,65,1.925,311,2.328,330,2.801,368,3.053,372,0.917,399,1.565,696,1.91,923,4.547,942,2.875,971,4.063,1344,0.944,1620,3.943,1797,3.943,1997,5.98,2002,4.657,2049,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2787,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1972,3.219,1973,3.219,1974,3.165,1975,3.165,2009,2.866,2013,3.665,2014,3.219,2788,4.885,2789,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.445,38,2.788,240,1.083]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.365,199,2.98,240,0.889,701,3.238,1979,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.526,35,0.429,38,2.691,61,1.368,148,3.037,181,1.957,217,5.311,240,1.045,366,2.09,671,5.561,951,6.075,960,6.312,2451,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.992,375,4.186,903,5.417,2376,5.417]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[240,0.822,375,3.47,624,4.016,1696,3.944,2376,4.491,2790,5.512]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.849,18,1.861,331,6.349,375,5.905,624,5.335,745,5.24,903,7.643,1429,7.322,2376,5.966,2393,5.674]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[174,5.04,175,5.152,240,0.992,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[240,0.968,780,3.44,1696,4.642,2791,7.045]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.353,149,4.369,181,1.61,240,1.479,273,4.998,311,2.287,366,1.719,368,2.174,525,4.055,676,3.816,780,4.241,1006,5.118,1402,4.835,1910,5.764,2720,5.764,2792,6.26,2793,6.26]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,240,0.791,304,2.932,2399,2.71,2400,2.672]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[240,0.822,701,2.995,1992,4.374,2794,5.986,2795,5.986,2796,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2399,2.71,2400,2.672]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1045,1.636,1364,2.732,1925,3.264,2282,2.438,2557,3.361,2558,3.361,2559,3.361,2560,3.361,2688,4.006,2797,4.351,2798,4.006]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2399,2.71,2400,2.672]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2799,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.723,49,1.06,749,2.945,2399,3.132,2400,3.087]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1648,4.999,2095,4.999,2693,5.369,2800,6.473,2801,6.473]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1457,4.642,2080,5.441,2081,5.148,2802,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2399,2.71,2400,2.672]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.582,1055,3.652,1152,4.016,2803,5.986,2804,5.986,2805,5.986]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2,5,2.112,9,0.071,29,0.938,30,4.3,35,0.353,185,3.01,209,4.055,303,1.532,324,2.193,372,0.901,639,2.426,942,2.824,1056,3.586,1060,4.125,1344,0.927,2087,4.835,2088,4.835]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2399,2.71,2400,2.672]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1863,4.193,2052,3.55,2693,5.369,2806,6.473,2807,6.473]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.054,29,0.991,35,0.373,65,1.997,123,3.364,183,4.151,303,2.207,330,2.906,372,0.951,399,1.624,639,3.495,734,5.578,793,6.166,1006,3.394,1344,0.979,2052,4.945]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[829,0.474]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.936,167,3.132,185,3.202,633,4.468,2808,5.144]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2808,5.441,2809,7.045,2810,7.045,2811,7.045]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.053,14,0.912,16,1.931,29,0.972,45,2.889,46,2.852,65,1.96,117,2.022,136,3.247,148,1.991,157,4.015,167,3.052,185,4.281,233,2.988,323,1.788,633,6.817,643,2.908,696,1.945,2808,5.013]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.15,164,2.048,749,3.194,2212,2.53]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[164,2.191,749,3.418,2692,6.41]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[829,0.474]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[123,3.674,148,2.215,1022,4.938,2812,6.272]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1710,5.167,1712,4.855,2812,5.621,2813,6.473,2814,6.473]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.074,14,1.26,372,1.289,1130,6.255,1344,1.327,2812,9.536]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.047,49,0.917,61,1.036,2015,3.098,2089,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2815,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2816,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.047,11,0.626,49,0.917,2015,3.098,2089,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2015,3.218,2089,3.512,2091,4.491,2092,4.491,2093,4.491,2817,5.986]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.059,14,1.005,35,0.403,49,1.138,265,3.291,266,5.1,311,2.611,372,1.028,478,2.527,672,3.805,779,2.064,1344,1.059,2015,3.842,2020,4.63,2089,5.575,2094,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2699,3.866,2700,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2818,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1970,3.733,2009,3.381,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1972,3.429,1973,3.429,1974,3.371,1975,3.371,2009,3.053,2013,3.904,2014,3.429,2819,5.204]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.05,14,0.85,35,0.341,38,2.137,156,2.764,181,1.555,265,2.783,290,3.547,311,2.208,324,2.118,335,3.504,366,1.66,372,0.87,399,1.484,478,2.137,713,3.504,780,2.952,1344,0.895,2009,5.741,2015,3.25,2018,4.535,2019,4.219,2020,3.916,2050,4.056]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.06,143,1.902,240,0.915,375,3.86,624,4.468]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[240,0.889,375,3.751,624,4.342,2696,5.621,2790,5.959]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.084,18,2.097,375,5.195,624,7.366,1402,6.923,2820,8.963]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1970,3.733,2009,3.381,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1972,3.669,1973,3.669,1974,3.607,1975,3.607,2009,3.266,2013,4.177,2014,3.669]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.052,14,0.896,35,0.359,38,2.253,156,2.914,181,1.639,290,3.739,324,2.233,335,3.694,366,1.75,372,0.917,399,1.565,478,2.253,713,3.694,780,3.112,1344,0.944,2009,5.905,2015,3.426,2018,4.781,2019,4.448,2020,4.129]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1984,4.312,1985,4.225,1986,3.769,2212,2.165,2334,2.486]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[241,1.806,1683,3.313,1986,4.297,1987,5.148]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.459,64,3.154,100,2.439,184,2.349,303,1.991,372,1.171,561,5.805,779,2.349,1028,3.075,1344,1.205,1986,4.963]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.059,11,0.784,62,3.527,2821,6.272]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2032,4.651,2821,6.712,2822,7.728]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.851,35,0.6,64,3.306,561,6.086,1023,4.133,2821,10.084]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.065,189,3.301,667,4.811]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[241,1.427,667,3.396,668,3.351,1162,3.669,1683,2.618,1703,5.126,2025,4.177]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.068,14,1.171,29,1.248,35,0.469,64,3.228,189,3.486,667,7.006,696,2.496]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.15,749,3.194,1132,2.342,2823,7.222]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1782,5.148,1783,5.285,2824,7.045,2825,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.15,245,4.467,749,3.194,1132,2.342]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1782,5.148,1783,5.285,2826,7.045,2827,7.045]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,240,1.098,241,1.428,323,1.534,366,2.195,525,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[829,0.474]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,240,0.915,1164,3.73,2212,2.333,2334,2.679]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.616,2330,5.843,2331,6.486,2332,6.486]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.077,12,3.596,14,0.985,29,1.05,60,2.116,80,2.898,205,4.7,240,0.962,296,4.162,311,2.559,372,1.008,399,1.72,1164,5.92,1344,1.037,2333,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.047,11,0.626,240,0.791,1164,3.228,1176,2.837,2699,3.866,2700,3.797]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.616,1968,5.624,2330,5.843,2828,7.045]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.079,12,3.744,14,1.026,60,2.203,80,3.018,205,4.894,240,1.002,296,4.334,311,2.665,372,1.05,1164,6.041,1344,1.08,2333,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2699,3.866,2700,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2829,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.936,123,3.388,131,2.872,643,2.984,2060,4.866]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2060,5.647,2830,7.728,2831,7.728]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.06,131,3.146,151,2.842,181,1.876,185,4.632,335,4.228,368,2.533,643,4.316,938,5.092,1086,4.179,1087,4.39,1456,5.824,2060,7.038]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.626,42,1.908,1263,3.301,1969,3.423,1970,3.733,2738,3.797,2739,3.797]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1969,2.902,1971,3.57,1972,3.219,1973,3.219,1974,3.165,1975,3.165,2014,3.219,2313,4.052,2832,4.885]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.908,61,1.036,1263,3.301,1969,3.423,1970,3.733,2212,2.019,2334,2.318]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1969,3.092,1971,3.803,1972,3.429,1973,3.429,1974,3.371,1975,3.371,2014,3.429,2501,4.791]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.085,29,1.219,35,0.459,57,4.897,309,3.912,372,1.171,696,2.439,1344,1.205,1969,6.141]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.626,756,2.056,1013,2.426,1362,3.797,2343,4.6,2699,3.866,2700,3.797]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1579,5.026,2347,5.624,2348,5.624,2602,6.486]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.08,65,2.25,100,2.233,148,2.285,184,2.151,303,1.823,323,2.053,372,1.072,696,2.927,779,2.151,1028,2.815,1344,1.103,1362,4.908]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.251,11,0.626,756,2.056,1045,2.167,2282,3.228,2738,3.797,2739,3.797]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2798,4.498]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.035,4,2.141,9,0.042,14,1.064,16,2.251,29,1.134,35,0.556,60,1.559,65,1.559,243,1.913,324,2.651,366,1.417,372,0.743,378,3.585,422,2.376,675,1.931,757,2.186,766,1.941,1045,3.369,1344,0.764,1580,3.148,2228,3.529,2282,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.844,14,1.015,1943,6.649,2808,5.578]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2808,5.441,2833,7.045,2834,7.045,2835,7.045]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.8,8,5.199,20,4.37,35,0.614,49,1.186,337,5.315,633,4.997,639,2.887,643,3.338,2808,5.754,2836,7.45]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.626,49,0.917,143,1.646,276,2.932,2052,3.16,2738,3.797,2739,3.797]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1863,4.564,2052,3.864,2837,7.045,2838,6.118]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.056,35,0.387,65,2.075,123,3.495,183,4.312,303,2.265,330,3.019,372,0.988,639,3.587,734,5.724,793,6.327,1006,3.526,1344,1.017,2052,5.075]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[164,1.752,756,2.205,1013,2.601,1362,4.071,2212,2.165,2343,4.932]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1579,5.026,2347,5.624,2348,5.624,2839,7.045]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.083,65,2.349,100,2.331,148,2.385,184,2.246,303,1.904,323,2.143,696,3.01,779,2.246,1028,2.939,1362,5.125]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[829,0.474]],["title//docs/databases/postgresql/centos-5/",[5,1.502,14,0.869,30,2.665,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/postgresql/centos-5/",[30,3.038,1055,4.297,1152,4.726,2840,7.045]],["toc//docs/databases/postgresql/centos-5/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/centos-5/",[829,0.474]],["title//docs/databases/postgresql/fedora-12/",[5,1.502,14,0.869,30,2.665,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/postgresql/fedora-12/",[1055,4.714,1152,5.185,2841,7.728]],["toc//docs/databases/postgresql/fedora-12/",[0,2.058,5,2.193,9,0.054,29,0.991,30,4.425,35,0.373,185,3.179,209,4.283,303,1.618,324,2.317,372,0.951,639,2.563,942,2.982,1056,3.788,1060,4.357,1344,0.979]],["deprecated//docs/databases/postgresql/fedora-12/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.163,5,1.774,9,0.06,30,4.65,35,0.411,324,2.556,372,1.386,1056,4.179,1060,4.807,1344,1.426]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.401,11,0.626,14,0.81,30,2.485,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.038,1055,4.297,1152,4.726,2842,6.486]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.208,5,1.85,9,0.063,30,4.747,35,0.429,324,2.666,372,1.095,1056,4.359,1060,5.014,1344,1.127]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.251,61,1.036,756,2.056,1045,2.167,2212,2.019,2282,3.228,2334,2.318]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1045,1.837,1364,3.067,1925,3.665,2282,2.736,2557,3.773,2558,3.773,2559,3.773,2560,3.773,2843,4.885]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.006,4,2.112,9,0.041,14,1.041,16,2.204,29,1.32,35,0.548,60,1.515,65,1.515,243,1.858,324,2.596,366,1.377,372,0.721,378,3.509,399,1.231,422,2.309,675,1.876,757,2.124,766,1.886,1045,3.313,1344,0.743,1580,3.059,2228,3.429,2282,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,240,0.849,1295,2.844,2212,2.165,2334,2.486,2575,4.932]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.804,240,0.968,1295,3.243,2576,5.624]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.058,14,0.985,29,1.05,35,0.395,39,2.788,151,2.73,169,3.628,181,2.412,240,0.962,281,3.118,372,1.008,399,1.72,702,3.448,1295,4.316,1344,1.037,1417,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.671,240,0.849,1295,2.844,2575,4.932,2699,4.145,2700,4.071]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.605,39,2.216,240,0.765,1295,2.563,2576,4.445,2700,3.669,2844,5.568]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.076,14,0.966,35,0.387,39,2.734,64,2.663,151,2.676,169,3.557,181,2.38,240,0.943,281,3.058,372,0.988,702,3.381,1295,4.817,1344,1.017,1417,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,276,2.932,2052,3.16,2212,2.019,2334,2.318]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1863,4.564,2052,3.864,2587,5.441,2697,6.486]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.06,35,0.411,123,3.712,183,4.58,303,2.357,372,1.05,639,3.733,734,5.959,793,6.586,1344,1.08,2052,5.283]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.041,101,2.927,102,4.635,368,2.146,906,3.625,1565,4.408]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[840,5.285,841,5.026,1566,5.624,1567,5.624]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.053,61,1.744,164,2.375,189,2.488,263,3.164,550,3.078,1013,3.526,1132,1.928,1176,2.926,1238,4.343,1555,3.577,1699,2.563,1794,3.051,2123,2.646,2195,2.858,2212,2.083,2258,2.563,2845,5.944,2846,5.944,2847,5.944,2848,5.944]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[829,0.474]],["title//docs/tools-reference/tools/introduction-to-rsync/",[124,5.097,1937,6.935]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.964,6,4.836,885,3.607,1509,4.836,1937,4.445,2655,5.126,2849,5.568]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[422,3.927,938,5.953,1937,9.269,2850,8.53,2851,8.53,2852,8.53,2853,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.401,14,0.81,30,2.485,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.038,1055,4.297,1152,4.726,2854,7.045]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.078,5,1.638,9,0.075,29,1.009,30,4.468,35,0.38,209,4.365,324,2.361,372,0.969,942,3.039,1056,3.86,1060,4.44,1344,0.998,2087,5.204,2088,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[829,0.474]],["title//docs/development/version-control/how-to-configure-git/",[80,3.263,116,4.048,469,5.197]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.5,61,0.828,116,2.362,1308,2.405,1503,2.847,1622,3.997,1623,3.674,1624,3.674,1625,3.818,2855,4.603]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.42,38,2.634,116,5.591,185,3.582,197,3.966,265,4.496,355,3.174,422,4.496,437,6.179,604,5.443,1530,6.47]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.055,116,3.418,117,2.075,119,3.86,123,3.388]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[116,3.322,1622,5.621,1623,5.167,1624,5.167,1625,5.369]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.076,80,3.805,116,6.162,124,5.395]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[117,2.457,124,4.627,593,6.092]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[117,2.408,1808,5.969,2856,7.728]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.069,22,2.281,49,0.595,80,2.448,84,2.805,89,1.808,100,1.121,101,1.772,117,2.834,131,1.613,148,1.815,160,3.102,167,4.278,264,2.888,303,0.915,324,1.31,368,1.299,369,2.423,392,3.61,422,1.722,433,2.347,469,2.464,509,2.251,576,2.985,640,2.347,680,2.888,690,2.668,779,2.626,960,3.102,1344,0.554,1455,3.248,1468,3.248,1676,3.248,1776,4.908,1808,2.888,1959,3.248,2133,3.443,2857,5.918,2858,3.74,2859,3.74,2860,3.74]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[117,2.457,324,2.763,1061,5.393]],["keywords//docs/tools-reference/linux-users-and-groups/",[117,1.865,324,2.097,392,3.652,2542,4.965,2861,5.986,2862,5.986]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.398,22,2.819,148,2.866,156,2.113,167,3.946,173,3.1,274,3.377,291,3.045,316,3.045,324,3.274,355,1.969,377,2.781,392,6.116,422,3.208,433,4.375,465,2.617,570,3.833,844,4.013,968,4.254,1005,3.689,1061,6.389,1264,3.377,2542,5.781,2546,4.254,2863,4.621]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[323,2.173,2126,6.85,2127,7.262]],["keywords//docs/security/recovering-from-a-system-compromise/",[2864,7.045,2865,8.665,2866,6.486]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.538,35,0.373,89,2.755,207,3.928,234,4.832,623,3.879,885,5.841,1466,4.717,1811,5.484,2125,7.479,2483,6.088,2719,6.088,2867,6.612,2868,6.612,2869,6.612]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,240,0.791,304,2.932,675,2.156,766,2.167,2212,2.019,2334,2.318]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1692,4.817,1697,6.486,1863,4.564,2587,5.441]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.051,9,0.043,14,1.27,35,0.431,202,2.789,240,1.241,372,0.754,675,3.381,751,2.621,766,4.285,785,5.511,786,5.423,941,2.789,1131,3.288,1136,3.656,1344,0.776]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.293,164,1.888,452,3.48,1188,3.545,2212,2.333]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1189,4.24,1504,4.917,1505,4.358,2870,7.045]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.199,61,1.111,452,3.228,1188,3.289,2212,2.165,2334,2.486]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1189,4.24,1504,4.917,1505,4.358,1902,6.118]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.491,9,0.086,16,2.043,29,1.386,31,1.796,40,2.779,65,2.075,243,2.545,318,2.875,372,0.988,399,1.687,460,3.303,699,3.891,1344,1.017,1834,3.557]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.626,31,1.119,452,3.011,1176,2.837,1188,3.068,2699,3.866,2700,3.797]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1189,4.24,1504,4.917,1505,4.358,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.671,31,1.199,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1189,4.651,1504,5.394,1505,4.781]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.551,9,0.088,16,2.126,29,1.071,31,1.845,40,2.891,65,2.159,243,2.649,318,2.991,372,1.028,460,3.437,699,4.048,1344,1.059,1834,3.701]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.055,89,2.035,99,3.691,101,3.155,1514,5.784]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[899,6.41,900,6.712,1019,7.116]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.302,16,1.931,29,0.972,35,0.366,80,2.685,89,2.72,226,3.302,366,2.79,513,4.205,575,6.379,637,3.856,643,2.908,885,4.205,1269,8.197,1516,4.869,2871,6.491]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[829,0.474]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.671,240,0.849,452,3.228,1188,3.289,2738,4.071,2739,4.071]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1189,4.24,1505,4.358,1903,5.285,2301,5.441]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.064,35,0.438,47,2.737,156,3.556,169,4.027,180,4.405,240,1.068,281,3.462,422,3.581,699,5.688,909,5.428,1188,4.141]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.586,49,0.859,143,1.542,240,0.741,304,2.747,1176,2.658,2699,3.622,2700,3.557]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[240,0.822,701,2.995,1992,4.374,2872,5.986,2873,5.986,2874,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.081,35,0.557,38,2.175,40,2.488,181,1.582,192,2.852,240,1.357,244,3.844,286,3.446,304,3.13,318,2.574,323,1.695,366,1.689,372,0.885,460,2.958,673,2.958,1344,0.911,1472,4.293]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.341,5,1.502,14,0.869,164,1.752,1053,3.354,2212,2.165]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1457,5.092,2081,5.647,2875,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.341,5,1.502,14,0.869,245,3.822,1053,3.354,1132,2.004]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1836,5.969,1837,6.41,2876,7.728]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.53,9,0.063,14,1.07,35,0.558,323,2.097,372,1.095,940,4.708,941,4.051,942,3.432,1344,1.127]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2699,3.866,2700,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1457,4.642,2080,5.441,2081,5.148,2877,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.251,5,1.401,11,0.626,14,0.81,1053,3.129,2738,3.797,2739,3.797]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1457,4.642,2080,5.441,2081,5.148,2878,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.251,5,1.401,14,0.81,61,1.036,1053,3.129,2212,2.019,2334,2.318]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1457,4.642,2081,5.148,2366,6.486,2879,7.045]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.548,9,0.072,14,1.229,35,0.493,372,1.258,1344,1.294]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[829,0.474]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.325,61,1.036,309,2.771,611,3.797,2212,2.019,2334,2.318,2880,5.763]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[650,2.949,2881,7.045,2882,7.045,2883,7.045]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.076,35,0.518,309,5.364,372,1.323,1344,1.362]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[829,0.474]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.051,11,0.671,240,0.849,1164,3.461,2738,4.071,2739,4.071]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.072,1164,3.353,2330,4.965,2838,5.199,2884,5.986,2885,5.986]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.084,12,4.082,14,1.118,60,2.402,205,5.335,240,1.092,372,1.144,1164,5.707,1344,1.178,2333,5.966]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.984,61,1.111,143,1.765,1155,3.769,2212,2.165,2334,2.486]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[701,3.238,2886,6.473,2887,6.473,2888,6.473,2889,6.473]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.046,29,0.848,35,0.456,40,2.289,61,1.017,145,4.37,146,4.134,154,4.037,156,2.587,181,2.427,366,2.591,368,1.965,372,0.814,399,1.389,647,4.53,1155,4.933,1158,7.023,1159,4.914,1344,0.838,1501,4.517,1768,4.693,1905,5.209]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[175,5.152,398,3.921,650,3.022,780,3.527]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2865,9.209,2866,7.116]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.335,29,1.285,175,6.12,234,4.495,240,0.845,304,3.13,398,6.102,650,2.574,780,3.004,827,4.495,961,4.614,989,5.663,1669,5.342,1797,3.805,2069,5.987,2173,5.102,2890,6.151,2891,6.151]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.015,89,2.206,369,4.678,905,5.152]],["keywords//docs/networking/using-the-linode-shell-lish/",[369,4.564,905,5.026,916,4.917,1117,5.148]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,131,2.44,143,1.616,151,2.204,155,2.327,233,2.605,304,2.879,316,3.728,349,3.796,355,2.411,416,4.517,475,3.405,720,4.244,736,4.914,905,7.347,1084,3.665,2892,5.658,2893,5.658,2894,5.658,2895,5.658,2896,5.658,2897,5.658,2898,5.658,2899,5.658,2900,8.087]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.221,349,5.828]],["keywords//docs/networking/ssh/using-the-terminal/",[2901,7.728,2902,7.728,2903,7.728]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.32,22,2.613,88,3.057,90,1.289,142,2.4,148,2.756,160,5.457,167,4.226,184,1.237,206,3.554,218,3.057,233,1.972,323,1.813,349,2.874,355,3.412,377,3.96,430,3.309,509,2.578,574,3.554,598,6.272,599,3.42,624,2.874,682,3.057,732,2.823,885,2.775,917,3.945,943,3.214,1093,3.721,1743,2.93,1808,3.309,1873,3.554,2404,3.214,2904,4.284,2905,4.284,2906,4.284]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[124,4.627,477,4.811,478,2.788]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1702,5.843,2907,7.045,2908,7.045,2909,7.045]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.946,148,1.823,378,2.816,422,2.736,476,4.93,477,5.109,478,3.722,673,4.027,767,5.473,1230,4.591,1253,4.591,1254,4.745,1396,3.916,1719,4.93,2076,4.064,2754,5.473,2910,5.944,2911,5.473,2912,5.944,2913,5.944,2914,5.944,2915,5.944]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.984,143,1.765,164,1.752,240,0.849,304,3.144,2212,2.165]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[240,1.061,1863,5.007,2692,6.41]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.076,29,0.821,35,0.572,40,2.218,49,0.873,167,2.578,181,1.41,192,2.542,199,2.524,240,1.273,244,2.456,316,3.612,318,2.294,366,1.505,372,0.789,375,3.177,399,1.346,460,2.636,621,3.441,673,2.636,903,4.113,942,2.473,1344,0.812,1544,3.911,2376,4.113]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[829,0.474]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.917,61,1.036,143,1.646,240,0.791,304,2.932,2212,2.019,2334,2.318]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[701,2.995,1492,4.779,1906,5.199,2916,5.986,2917,5.986,2918,5.986]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.083,29,0.955,35,0.496,40,2.578,181,1.639,192,2.955,240,1.208,244,3.939,286,3.57,304,3.243,318,2.667,366,1.75,372,0.917,399,1.565,460,3.065,673,3.065,1344,0.944,1472,4.448]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[829,0.474]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.004,143,1.902,702,3.278,1230,5.144,2919,6.131]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2920,8.559,2921,8.559]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.302,5,1.578,9,0.073,64,2.516,100,1.945,184,1.874,244,2.908,303,1.589,422,2.988,460,3.121,608,4.631,779,1.874,1028,2.453,1230,7.849,2919,9.357,2922,6.491,2923,6.491]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[829,0.474]],["title//docs/networking/dns/dns-manager-overview/",[90,2.373,478,2.788,877,5.763]],["keywords//docs/networking/dns/dns-manager-overview/",[1483,5.126,1484,4.836,1654,5.126,1655,5.126,1702,4.618,1822,4.618,2924,5.568]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.568,16,1.201,22,2.464,29,1.156,45,1.798,46,1.775,49,0.643,80,1.671,84,3.03,90,1.215,155,2.586,214,2.71,255,2.15,372,0.581,377,2.431,378,5.111,469,2.661,477,3.835,478,2.729,479,3.03,603,2.661,640,2.536,673,3.023,780,1.972,1006,2.073,1074,2.951,1396,6.874,1554,3.508,1821,3.35,1822,3.35,1909,3.508,1941,3.508,2911,3.719,2925,4.039,2926,4.039]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.06,61,1.197,749,2.945,2212,2.333,2334,2.679]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1496,6.41,1887,6.712,2927,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.268,5,2.013,9,0.086,16,1.739,29,1.24,35,0.622,49,1.318,143,1.669,181,1.503,192,2.71,240,0.803,241,1.498,366,1.605,399,1.435,673,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.671,49,0.984,749,2.733,1176,3.041,2699,4.145,2700,4.071]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1645,7.116,2928,7.728,2929,7.728]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.251,5,1.989,9,0.085,16,1.71,29,0.861,35,0.661,49,1.302,143,1.642,181,2.104,240,0.79,241,1.474,323,1.584,366,2.246]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[829,0.474]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.723,49,1.06,749,2.945,2738,4.388,2739,4.388]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1648,5.969,2095,5.969,2838,6.712]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.219,5,1.944,9,0.084,16,1.656,29,0.834,35,0.654,49,1.273,143,1.59,181,2.056,192,2.582,240,0.765,241,1.428,323,1.534,366,2.195,673,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[829,0.474]],["title//docs/tools-reference/linux-package-management/",[65,2.382,90,2.373,117,2.457]],["keywords//docs/tools-reference/linux-package-management/",[264,4.02,680,4.02,1817,4.791,2930,5.204,2931,4.791,2932,4.791,2933,5.204,2934,4.791]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.192,61,0.614,65,3.327,90,2.94,100,1.023,117,1.714,150,1.752,164,0.968,185,1.642,197,1.817,264,4.25,318,1.429,323,0.941,355,1.454,372,0.491,391,2.334,422,2.533,475,2.055,593,2.637,680,2.637,909,2.383,1132,1.107,1308,2.875,1344,0.506,1503,2.112,1657,2.725,1658,2.725,1687,2.965,2931,5.066,2932,3.143,2934,6.364,2935,3.414,2936,3.414,2937,3.414,2938,3.414,2939,3.414,2940,3.414,2941,3.414,2942,3.414,2943,3.414,2944,3.414,2945,5.502,2946,3.414,2947,3.414]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":550,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2420,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2010,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2660,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":996,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2123,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2269,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2290,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2823,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2175,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2124,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":245,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1699,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2372,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2845,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2257,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":764,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1557,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2217,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":824,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2848,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":911,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1761,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1860,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":304,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":777,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1798,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1297,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1780,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1725,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1437,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":776,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":106,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2607,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1184,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2212,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1013,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1789,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1730,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1775,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1778,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":189,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":259,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1175,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":242,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1770,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":263,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2699,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1411,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2738,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2399,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2910,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1867,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2455,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":639,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1548,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2861,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2458,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":465,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":897,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1547,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1215,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":516,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":827,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":672,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":155,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2168,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2108,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1653,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":207,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":793,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2704,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1284,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":713,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2087,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1262,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":475,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":900,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1020,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1627,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2035,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":747,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":445,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1945,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1342,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":982,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":706,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1580,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1416,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":543,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":546,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1113,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1114,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1116,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":607,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2283,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2259,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1264,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":784,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analyt",{"_index":1095,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1271,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":681,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1277,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1802,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":725,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1449,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1446,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1450,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1448,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1447,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1451,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1453,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2582,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":484,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":240,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1864,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1799,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1497,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":912,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2916,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2315,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":677,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1491,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2917,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2316,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2374,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":409,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2874,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1171,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1493,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2796,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2918,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2625,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2390,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2707,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1492,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2321,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1992,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2317,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1692,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2330,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2526,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2529,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2532,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2381,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1965,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1165,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2623,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2872,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2794,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2873,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2624,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2389,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1906,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":880,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":782,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":129,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1839,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":180,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":870,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1283,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":602,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1355,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2265,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":151,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":250,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1052,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":680,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2933,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1817,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2935,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1308,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1890,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1892,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":474,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2513,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1034,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1037,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2880,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2881,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2133,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":790,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2496,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2492,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1939,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":867,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":421,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1373,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1374,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2653,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1378,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2652,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":340,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":384,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2893,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":351,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":135,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1638,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1466,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2424,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":320,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1261,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2065,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":161,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1543,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":296,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":804,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":510,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1721,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1665,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":204,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2425,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2158,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":486,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2138,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":192,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":856,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1197,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2721,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2598,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":277,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":279,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1528,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1522,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2678,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":781,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1618,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":406,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":145,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1441,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2820,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1673,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1092,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":579,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1025,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":206,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1776,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1206,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1208,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2134,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":346,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":894,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":394,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":425,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2782,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":851,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2102,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":507,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2142,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":758,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1326,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1320,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":437,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2434,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2254,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":588,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1194,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":208,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2274,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2614,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2278,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":150,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1436,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2596,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1137,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1434,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2638,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2519,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2722,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1136,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":476,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":819,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2045,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":700,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":703,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2567,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2568,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":761,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2343,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2261,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2264,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1292,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":762,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2702,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2040,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":879,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2710,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1356,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1501,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":459,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":111,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":382,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":164,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2692,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1015,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":881,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1395,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1392,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1393,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1394,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1293,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2231,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":655,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":766,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1701,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1240,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1138,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":433,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1746,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1747,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1621,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1479,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1974,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1572,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1575,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1006,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1909,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1523,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1526,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1537,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1525,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1538,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1539,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1524,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2052,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2059,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2464,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2465,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2566,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2837,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2463,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2554,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2555,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2565,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2053,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":168,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2542,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":205,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2862,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":412,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":986,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":419,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2221,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":1997,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2196,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2197,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2589,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":1998,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2004,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":482,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2732,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1313,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1793,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":470,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":136,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2048,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1243,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1074,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1425,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":238,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1458,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1321,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":836,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":809,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":813,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1720,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":312,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":668,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":331,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2467,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1973,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1033,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1057,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2511,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":355,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1841,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":857,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":162,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":955,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1131,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2775,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":432,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":174,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2407,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2412,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":884,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":837,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":838,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":517,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":266,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":114,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1089,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2127,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":593,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2453,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":183,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2439,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1792,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":522,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2132,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1212,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":740,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1312,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":716,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1976,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":315,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1755,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2793,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2471,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2472,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2477,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2475,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2474,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2478,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2473,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":131,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2499,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2498,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2851,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1517,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":916,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1128,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2891,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":112,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":176,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":935,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":702,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":665,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1690,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1703,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1162,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2671,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":850,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":109,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1695,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":464,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2205,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1097,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2486,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1527,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1825,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":885,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":937,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":918,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1333,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":498,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2071,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1870,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1219,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1223,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1224,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2282,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2774,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2673,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1120,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1123,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1707,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2675,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2674,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1869,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2770,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":360,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2110,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":889,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":664,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1278,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1810,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":998,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2750,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2748,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2749,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":221,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1916,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1222,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1225,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1226,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1227,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1135,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1019,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":899,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2260,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1016,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":841,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1499,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":840,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2199,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2778,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1385,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2836,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2894,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2940,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":818,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":313,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":314,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2772,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":501,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1412,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2024,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":869,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2485,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1324,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1325,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2659,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2648,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":828,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1233,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":796,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1786,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2697,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2350,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2320,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2198,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2349,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1634,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1886,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":875,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1494,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1506,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2351,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2882,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":876,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1495,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1887,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2927,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2587,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2783,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2326,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1931,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2305,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1633,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2757,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":163,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1957,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1989,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1681,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":797,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":578,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1536,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":153,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2792,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2042,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":773,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":463,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2263,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":984,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":281,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":717,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1978,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1102,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1896,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2635,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":352,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2173,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":247,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2570,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1669,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":908,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1771,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1469,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1402,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2207,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2664,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":167,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":397,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2164,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2682,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2136,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2521,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1984,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2597,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":226,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":448,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2650,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1643,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2215,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1295,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1254,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":952,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":220,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":222,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1256,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":478,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2114,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2941,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1484,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2354,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1483,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2907,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2908,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2909,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":110,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":113,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":115,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":405,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":658,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":753,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":830,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2072,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2938,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2667,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2666,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2100,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":378,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1702,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2924,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1563,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1561,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1562,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1559,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1564,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2187,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2188,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2182,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2183,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2185,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2184,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2186,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1576,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1930,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2230,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1583,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2227,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2592,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2447,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1913,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2771,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1599,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2932,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1118,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":547,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1774,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":667,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1163,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1689,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":868,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1622,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2041,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2712,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1041,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":959,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":956,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1282,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":769,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":255,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":599,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2663,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2468,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2009,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2013,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2011,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2012,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2789,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2818,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2819,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2788,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":257,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":679,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":267,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":733,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2758,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2759,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":553,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":554,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":756,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2784,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2001,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1147,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":311,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2161,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":219,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1216,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2417,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2413,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":395,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1159,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":965,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":710,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2034,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":431,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":707,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":142,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2484,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2017,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1332,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":287,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2729,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2706,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2936,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2939,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1899,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2181,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":132,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1552,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1259,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1036,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":292,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1553,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1823,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":844,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":548,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1980,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2398,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2232,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1101,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":601,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1455,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2291,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":632,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1881,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":231,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1640,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1213,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":357,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2172,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":775,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1345,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1129,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1353,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1018,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":605,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":746,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1160,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2743,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":159,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2006,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1600,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1039,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2284,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2606,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":631,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2613,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2020,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":1132,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2825,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2824,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2469,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2827,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2826,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2476,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2466,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2302,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2219,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1862,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1861,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1784,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1781,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2237,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2375,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1670,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1012,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2728,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2730,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":148,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2518,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":728,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2544,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":931,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1322,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":490,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2849,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":337,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":920,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1709,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":971,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":380,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":640,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2538,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2427,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2892,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1269,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":309,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1307,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1075,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":789,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":973,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":853,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":855,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":854,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2044,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":138,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2604,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2595,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2616,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1676,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2279,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2869,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":663,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1626,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":570,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1586,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1985,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1987,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2106,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1087,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2043,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2599,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1237,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2307,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2895,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2890,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1193,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2680,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1762,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2654,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2896,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2684,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2577,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2580,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1664,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1021,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1710,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":620,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1090,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":128,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1260,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2336,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":273,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1390,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2669,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2074,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":610,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1078,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1038,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1229,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1649,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1650,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":720,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1644,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":751,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1337,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2611,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1503,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1882,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["get",{"_index":469,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2708,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1938,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":849,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":393,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":715,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2550,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":116,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":888,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1202,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2855,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2470,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1625,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":544,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2488,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1642,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":939,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":283,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1046,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1743,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2677,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2515,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2516,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1361,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1921,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":752,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1639,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1759,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1760,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1085,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1758,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1764,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":914,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1106,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1290,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1456,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1289,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":693,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":695,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":692,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":892,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1722,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1061,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2000,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":906,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1500,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1017,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":407,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2281,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1153,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":139,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1419,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1619,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":539,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":794,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":798,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":374,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":130,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":485,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2452,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":977,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2084,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2700,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hdf",{"_index":541,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":972,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":203,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":587,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":589,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2223,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1795,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":981,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":178,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":945,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2156,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":921,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2647,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1708,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":738,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":744,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1077,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":488,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":644,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1808,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":800,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1258,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":181,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1660,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":399,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":705,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1024,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":891,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":536,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2523,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1205,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1440,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":887,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":621,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":358,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1613,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":199,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2760,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1858,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2361,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1140,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1696,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1874,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":186,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":187,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":1995,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":904,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1631,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2038,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2363,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2268,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2362,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2267,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":458,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1925,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1244,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1706,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2333,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2636,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":788,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":299,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":372,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":339,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":365,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1115,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1122,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":860,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":714,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1204,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":694,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1170,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":759,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1463,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1459,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2082,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1185,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1663,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1833,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1662,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1030,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":835,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":949,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1403,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":864,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":808,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1977,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":533,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1196,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1363,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1752,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1339,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":508,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1970,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1971,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1112,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2121,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":523,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":731,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":652,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":656,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":302,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":638,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2115,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2443,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2309,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":124,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1898,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1897,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":127,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1630,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1454,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2135,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1275,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1614,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":623,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":642,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2247,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1126,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1346,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2508,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1668,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":611,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1281,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1088,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2246,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1740,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1753,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1718,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2679,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2639,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2280,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":175,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2617,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2612,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2016,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1352,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1347,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2739,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2331,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2380,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2527,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2530,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2378,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2828,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":925,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":924,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2332,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2528,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2531,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2379,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1967,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2383,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1968,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2382,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1966,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1167,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":562,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1584,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1249,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1408,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":451,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":417,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1238,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":564,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":661,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":669,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":927,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2073,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":254,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":166,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":449,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":783,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1357,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1248,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2400,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":518,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":580,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":839,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":233,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1031,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2023,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1592,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":270,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2411,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2410,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":612,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":928,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2204,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1531,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1540,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":958,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2584,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":402,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":403,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":390,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":901,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1513,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1511,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":723,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1951,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":521,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":749,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1498,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2929,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1496,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1647,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1891,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1782,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1488,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":388,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":662,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":670,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1104,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":872,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":964,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":975,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2633,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1990,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":396,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1854,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1051,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2694,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":576,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1232,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1014,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1247,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1169,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2334,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1818,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2545,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1217,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1214,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":791,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2863,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1534,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":811,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":795,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1905,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1155,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2887,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2886,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":379,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":376,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":671,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1439,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1838,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2160,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2769,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2768,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1840,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1121,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1654,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1659,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2889,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1736,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":934,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1655,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2130,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2159,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1679,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1661,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2903,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2865,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2888,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1941,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":641,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":117,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2835,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2752,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2423,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2866,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":919,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2883,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1714,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1975,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1777,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1783,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1982,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1579,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2930,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1711,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1713,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2901,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2751,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1304,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2216,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1888,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":678,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2314,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":905,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":509,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2019,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2064,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1821,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1914,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2450,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":300,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":487,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1617,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":197,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1856,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2509,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":676,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2457,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":370,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":936,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2456,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":558,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1465,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":910,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2634,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2002,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2069,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1176,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2093,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":711,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2258,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":223,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1246,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":119,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2781,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2779,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2780,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2619,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":575,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":581,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":165,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":122,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1040,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1042,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1044,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":757,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1849,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1364,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1367,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1581,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2063,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":294,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1944,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":608,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":483,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1842,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2162,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2111,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2621,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2107,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":871,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2271,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":742,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2404,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2273,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2701,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2276,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2277,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":424,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":224,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1462,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1769,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":454,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2105,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":191,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1674,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":461,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2270,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2436,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1868,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1593,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1596,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":545,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1608,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1632,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2287,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2709,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":895,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2821,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":398,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2646,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1207,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":654,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1263,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":371,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":630,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1210,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":133,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1950,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":269,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":137,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":726,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":727,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1516,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2131,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1161,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1273,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1438,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":107,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":687,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":845,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1607,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":494,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":583,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1474,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2497,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1878,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1300,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2696,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2761,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2747,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2179,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1768,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1413,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2493,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2711,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1241,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2575,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2376,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2192,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":585,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":229,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":577,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2180,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":391,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2191,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":244,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2449,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1791,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":697,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1032,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1338,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":184,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":1994,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":810,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1291,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2494,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1804,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1344,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1963,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":633,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2919,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2920,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":574,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2122,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1360,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1387,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1855,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2921,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2335,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2631,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1472,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1635,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":169,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1234,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":801,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1358,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":1993,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":535,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":350,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1315,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2174,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1316,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1637,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1719,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2685,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2310,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2875,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2366,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2365,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2367,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1837,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2876,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2562,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1835,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2877,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1172,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2878,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2802,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2879,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2081,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1836,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2368,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1859,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2431,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1457,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2735,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":833,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2083,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2734,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2080,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2622,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2430,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2560,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":832,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1675,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1461,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1183,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1186,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2403,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2068,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":563,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1124,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":943,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2176,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2236,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":160,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1845,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1947,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1844,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1843,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2248,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":595,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2495,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2510,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":650,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2834,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1813,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1685,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":874,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":582,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2847,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":237,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1812,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2360,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2359,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2742,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":852,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2339,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2244,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2338,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1519,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2387,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2687,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2564,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2370,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2008,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2337,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2250,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1520,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1700,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2253,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2605,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2355,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2007,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1518,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2744,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1433,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1330,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2681,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1748,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":586,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":902,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":898,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":190,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":177,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1151,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":423,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1319,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":883,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":450,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1028,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":345,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":344,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":718,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2066,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":873,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":600,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":134,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1130,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1391,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":426,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1141,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2546,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":995,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1000,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":997,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2030,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1221,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2868,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1741,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1532,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1502,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1201,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":213,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2203,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2210,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":171,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1375,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2055,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1054,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2078,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1368,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":239,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":954,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":724,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1255,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":999,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1969,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2500,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2311,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2312,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2313,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2501,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2603,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2832,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2799,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":262,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":976,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1280,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2776,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1671,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1029,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":721,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2304,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2303,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":627,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1091,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1535,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":334,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":929,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2323,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2293,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2325,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2324,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2715,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2322,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1250,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2296,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2717,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2716,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2295,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2594,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2294,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2593,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2292,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2318,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":951,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":336,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1276,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2445,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2583,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":552,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2705,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":778,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1389,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2342,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2661,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":938,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1806,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2482,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":877,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1270,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":834,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1005,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":686,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1423,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2934,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2104,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1331,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":353,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":734,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1964,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1314,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2112,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2109,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1745,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1658,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":227,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":201,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2224,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":689,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":942,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":645,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1027,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1377,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1911,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2286,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":649,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2051,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1901,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":515,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1819,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2358,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2923,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1103,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":392,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":157,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1829,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":211,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":321,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":325,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2618,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2642,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2725,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["php",{"_index":241,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1173,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1851,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2569,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2670,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1857,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1242,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1852,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2608,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2609,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1069,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1569,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1239,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1986,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2364,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1831,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2242,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1444,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":683,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":418,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2054,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2698,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2756,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2373,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2391,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2369,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2056,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2740,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2741,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1384,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1907,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":228,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2272,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":748,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2036,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":806,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1445,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2206,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":947,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":950,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":948,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":953,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2713,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":597,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":427,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1571,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1257,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1340,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1705,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":496,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1926,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1871,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":335,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1398,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":248,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2057,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":530,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1826,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1045,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2229,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1582,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1577,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2226,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2690,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2689,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2843,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2571,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2556,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2557,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2798,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2446,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2829,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2688,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2797,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2558,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2559,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":209,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2629,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1152,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2328,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2841,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2620,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2840,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2854,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2842,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2803,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2804,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2805,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2643,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":317,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2733,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1805,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":146,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2695,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1794,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1988,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1473,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":420,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1026,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":141,"title":{},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2137,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":696,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2719,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":768,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":771,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1846,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2167,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1468,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2419,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1475,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":519,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1376,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1285,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1956,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1556,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2444,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":286,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":342,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":144,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":513,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":367,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2551,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2240,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2926,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2640,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":566,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2089,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2815,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2090,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2816,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2817,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2787,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2091,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1544,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":200,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":473,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":251,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2039,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1991,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":212,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":767,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1485,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1084,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2651,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":442,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":737,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1311,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":739,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1310,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":172,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1073,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2060,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2830,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1565,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1566,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1567,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":338,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":684,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":688,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":108,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":825,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2586,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1059,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2581,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2585,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":381,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":674,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1574,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2169,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":256,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":963,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1749,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":383,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2308,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":495,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1188,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1903,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1505,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2870,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1902,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2301,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2442,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":389,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2225,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2846,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1231,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2298,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1943,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2833,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1481,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1008,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":862,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1750,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1742,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2092,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2014,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2850,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2125,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2120,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1533,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":364,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1442,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":477,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2126,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":923,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2262,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["redi",{"_index":140,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":624,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2502,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1181,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":817,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2524,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2503,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2392,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2525,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2505,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2422,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2022,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1179,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2421,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2021,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1178,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1180,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2504,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":698,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2762,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2243,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2239,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2241,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2627,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2238,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2763,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":966,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":492,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1510,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1809,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":859,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1354,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":750,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2539,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":987,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1796,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2454,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1053,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1055,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1050,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1177,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2720,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":185,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1125,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":408,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1218,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2408,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":635,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1065,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1063,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1064,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1790,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1530,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":265,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":202,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1117,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2208,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":940,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2637,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":896,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2076,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2079,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":743,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1591,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1427,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2790,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":525,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":812,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1350,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":284,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1482,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":194,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":988,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":903,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1401,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2103,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":609,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1060,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":503,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":941,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2864,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2085,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":843,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":805,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1266,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1656,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":295,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2931,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1007,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1937,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":452,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1504,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1189,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1191,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":310,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1400,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":368,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1923,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":926,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1814,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":504,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1404,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1405,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1489,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1487,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":506,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":842,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":505,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":195,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2086,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2341,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1470,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":480,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":592,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":565,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2163,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1288,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1624,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2409,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":275,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":282,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":356,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":732,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":930,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":682,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["seasid",{"_index":2724,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2483,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":303,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2416,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1464,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1460,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":848,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":978,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":847,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2537,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":983,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":785,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2764,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2765,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1924,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":846,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2233,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1981,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1467,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":628,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1068,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":741,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1920,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1615,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":260,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1211,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1960,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":354,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1380,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1678,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":647,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":691,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1712,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2736,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":327,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":328,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":820,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":236,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1884,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1573,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":369,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1723,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2703,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":946,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2113,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1279,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1616,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":786,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":373,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":497,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":493,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":154,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2306,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":217,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1379,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1381,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":532,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2070,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2676,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1490,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":404,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1866,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2723,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1107,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2686,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1047,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1983,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":502,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2046,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2574,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2489,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2552,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2101,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1815,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":126,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1816,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":326,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":779,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":709,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2755,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2773,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2405,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":278,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":330,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2649,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1209,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1927,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1797,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":594,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":537,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2371,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2731,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":745,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":196,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":301,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":893,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2202,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1253,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":361,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1435,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2047,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":293,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":215,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2297,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":210,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2726,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2195,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2357,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1801,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1848,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1847,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2914,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":643,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2809,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2737,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1108,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1105,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2808,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2810,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2811,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":675,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1134,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2767,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1133,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2418,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2766,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1693,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1697,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1694,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1698,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2384,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1704,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":258,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":261,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":527,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1717,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1142,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1606,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1336,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1071,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1560,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2672,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1486,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2662,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1417,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1686,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":802,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1251,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1228,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":799,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1252,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2220,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":571,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":158,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":235,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1094,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":922,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1093,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2117,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2116,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":719,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1143,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1220,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2541,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":985,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":329,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":430,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2033,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":479,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2777,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":549,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1636,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2540,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2745,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2285,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2222,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":915,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":460,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1035,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2746,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1127,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":657,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":659,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":660,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":708,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1779,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1509,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2655,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2657,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":149,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":323,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1949,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2340,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2170,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":704,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2753,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":636,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1056,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":359,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2543,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":520,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1299,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":974,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1942,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2517,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":591,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":218,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1174,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":863,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":865,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":866,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1415,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2062,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1546,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1585,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1588,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1587,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1477,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":410,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2154,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2641,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1765,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":349,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2902,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":472,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1272,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1667,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":598,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":729,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2615,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":858,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1199,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":957,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1657,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1595,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1594,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":653,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":308,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1865,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2155,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":214,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2481,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":648,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1009,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":280,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":735,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":305,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":763,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":772,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":348,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1070,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1139,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1164,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1166,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2885,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1168,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":909,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":538,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1100,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":722,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1081,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2438,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2632,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":341,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2275,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":307,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2118,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1022,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1388,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":736,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":780,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":829,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2718,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2003,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1298,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1471,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1011,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1822,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1010,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":730,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":319,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1590,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1086,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1568,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":807,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2031,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":182,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1080,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1934,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2915,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1230,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2491,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2590,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2385,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2435,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2448,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2432,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2588,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2177,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2235,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2255,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2209,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2213,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1763,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2096,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":1999,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1192,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1646,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1850,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":882,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":913,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2844,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2928,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2884,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2785,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2480,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2800,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2786,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2077,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2234,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1306,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2838,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2693,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2027,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1645,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2095,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1904,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2490,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2691,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2356,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2433,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2178,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2256,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2211,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2214,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1895,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2028,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2097,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1303,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2626,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1648,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2029,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2266,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1672,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":616,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1305,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1309,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1443,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2075,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2352,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2353,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1200,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1302,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2393,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":316,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1187,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1190,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2406,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2656,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":651,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":414,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1521,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2061,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1328,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2139,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1824,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2171,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":770,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1023,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1932,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":690,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1598,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":375,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":147,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2579,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2578,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":324,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2088,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1048,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1940,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1296,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1507,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1508,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1386,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1067,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1623,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1820,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":499,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2037,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1910,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":886,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":118,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1203,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":120,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":596,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":787,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":366,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1979,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1478,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1512,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2441,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2871,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":685,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1766,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1928,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":271,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2288,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2440,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":411,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1767,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1318,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1317,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":253,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":491,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":447,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1476,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1274,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":230,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":481,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2925,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":343,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2098,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":960,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":551,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":143,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1853,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1683,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2025,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1157,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1370,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":362,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":712,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":701,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1863,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2822,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":666,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1301,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2289,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1323,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1267,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":760,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1715,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2791,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":619,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":276,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1885,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":125,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1739,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2487,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":462,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":466,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":890,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1515,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1555,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1933,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1098,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2507,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":225,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":363,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2032,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1554,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1245,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":123,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2813,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2814,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2831,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2812,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":446,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":803,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":232,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":531,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2522,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":534,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":422,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":831,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1900,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1099,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":179,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1195,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1198,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1570,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1329,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1545,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":291,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":792,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":618,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1788,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1787,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1785,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2300,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1514,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1154,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1156,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":413,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2015,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1972,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2018,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1079,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2520,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":540,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2937,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1738,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1641,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":774,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":264,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":500,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2099,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":489,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2549,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1362,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2644,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2344,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1365,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1366,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2347,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2645,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2601,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2348,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2839,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2346,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2602,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1369,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2345,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2600,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2514,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":590,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1751,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1754,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2067,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1096,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2714,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file +{"store":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{"title":"Create Physical Backups of your MariaDB or MySQL Databases","deprecated":null,"shortguide":null},"/docs/development/java/install-java-jdk/":{"title":"How to install JDK on Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{"title":"Use mysqldump to Back Up MySQL or MariaDB","deprecated":null,"shortguide":null},"/docs/development/iot/install-thingsboard-iot-dashboard/":{"title":"View IoT Data with Thingsboard","deprecated":null,"shortguide":null},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{"title":"How to Deploy RStudio Server Using an NGINX Reverse Proxy","deprecated":null,"shortguide":null},"/docs/development/go/install-go-on-ubuntu/":{"title":"How to Install Go on Ubuntu","deprecated":null,"shortguide":null},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{"title":"How to install R on Ubuntu and Debian","deprecated":null,"shortguide":null},"/docs/platform/meltdown_statement/":{"title":"What You Need to Do to Mitigate Meltdown and Spectre","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{"title":"How to Install and Use Elasticsearch Plugins","deprecated":null,"shortguide":null},"/docs/development/python/install_python_miniconda/":{"title":"How to install Python 3 with Miniconda","deprecated":null,"shortguide":true},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{"title":"Install Elasticsearch on Debian and Ubuntu","deprecated":null,"shortguide":true},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{"title":"Install Elasticsearch on Fedora, Red Hat, and CentOS","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_ce/":{"title":"How to Install Docker CE","deprecated":null,"shortguide":true},"/docs/applications/containers/install_docker_compose/":{"title":"How to Install Docker Compose","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-linux/":{"title":"How to install Git on Linux","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-mac/":{"title":"How to install Git on Mac","deprecated":null,"shortguide":true},"/docs/development/version-control/how-to-install-git-windows/":{"title":"How to install Git on Windows","deprecated":null,"shortguide":true},"/docs/development/introduction-to-websockets/":{"title":"Introduction to WebSockets","deprecated":null,"shortguide":null},"/docs/applications/containers/deploying-microservices-with-docker/":{"title":"How to Deploy Microservices with Docker","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-use-docker-compose/":{"title":"How to Use Docker Compose","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{"title":"Faster File Navigation with autojump","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-container-communication/":{"title":"How to Connect Docker Containers","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{"title":"Monitor Remote Hosts with Icinga","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-reverse-proxy/":{"title":"How to Use NGINX as a Reverse Proxy","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{"title":"How to Back Up Your PostgreSQL Database","deprecated":null,"shortguide":null},"/docs/security/encrypt-data-disk-with-dm-crypt/":{"title":"How to Encrypt Your Data with dm-crypt","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{"title":"Store and Share your Files with Nextcloud on Centos 7","deprecated":null,"shortguide":null},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{"title":"Use a Linode for Web Development on Remote Devices","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{"title":"Monitor an nginx Web Server Using the Elastic Stack on Centos 7","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{"title":"How to Scrape a Website with Beautiful Soup","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{"title":"Install Icinga2 Monitoring on Debian 9","deprecated":null,"shortguide":null},"/docs/databases/postgresql/configure-postgresql/":{"title":"Configure PostgreSQL","deprecated":null,"shortguide":null},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{"title":"Create a SOCKS5 Proxy Server with Shadowsocks on Ubuntu and CentOS 7","deprecated":null,"shortguide":null},"/docs/development/monitor-filesystem-events-with-pyinotify/":{"title":"Monitor Filesystem Events with Pyinotify","deprecated":null,"shortguide":null},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{"title":"How to Use tmux the Terminal Multiplexer","deprecated":null,"shortguide":null},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{"title":"Use Scrapy to Extract Data From HTML Tags","deprecated":null,"shortguide":null},"/docs/development/python/task-queue-celery-rabbitmq/":{"title":"How to Set Up a Task Queue with Celery and RabbitMQ","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{"title":"How to Deploy Apps with Rancher","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{"title":"How to Install, Configure, and Deploy NGINX on a Kubernetes Cluster","deprecated":null,"shortguide":null},"/docs/applications/containers/when-and-why-to-use-docker/":{"title":"When and Why to Use Docker","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{"title":"Virtual Cloud Desktop Using Apache Guacamole","deprecated":null,"shortguide":null},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{"title":"How to Automate Builds with Jenkins on Ubuntu","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{"title":"Set Up WireGuard VPN on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{"title":"Display Jupyter Notebooks with Jekyll","deprecated":null,"shortguide":null},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{"title":"How to Develop and Deploy Your Applications Using Wercker","deprecated":null,"shortguide":null},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{"title":"Using Terraform to Provision Linode Environments","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{"title":"Add CAA Records in the Linode Manager","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{"title":"How to Scan for Vulnerabilties with ClamAV","deprecated":null,"shortguide":null},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{"title":"How to Use HAProxy for Load Balancing","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{"title":"How to Use ZFS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{"title":"Configure and Use Salt Cloud and Cloud Maps to Provision Systems","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{"title":"How to Keep Your Data Private in the Cloud with Tahoe-LAFS","deprecated":null,"shortguide":null},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{"title":"Set Up Apache to Run Multiple WordPress Sites on a Single Linode","deprecated":null,"shortguide":null},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{"title":"Install, Configure, and Run Spark on Top of a Hadoop YARN Cluster","deprecated":null,"shortguide":null},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{"title":"Visualize Server Security on CentOS 7 with an Elastic Stack and Wazuh","deprecated":null,"shortguide":null},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{"title":"How to Install and Set Up a 3-Node Hadoop Cluster","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{"title":"How to Move Your Machine Learning Model to Production","deprecated":null,"shortguide":null},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{"title":"Use Nightmare.js to Automate Headless Browsing","deprecated":null,"shortguide":null},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{"title":"Zipkin Server Configuration Using Docker and MySQL","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{"title":"How to Install NeoVim and Plugins with vim-plug","deprecated":null,"shortguide":null},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{"title":"iptables Configuration for VPN Killswitch","deprecated":null,"shortguide":null},"/docs/uptime/analytics/set-up-a-zipkin-server/":{"title":"Set Up a Zipkin Server","deprecated":null,"shortguide":null},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{"title":"How to Set Up the htaccess File on Apache","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{"title":"How to Install OpenVZ On Debian 9","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{"title":"Find Your Linode's IP Address","deprecated":null,"shortguide":null},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{"title":"Create a Highly Available PostgreSQL Cluster Using Patroni and HAProxy","deprecated":null,"shortguide":null},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{"title":"How to Set up tinc, a Peer-to-Peer VPN","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{"title":"How to Create a Docker Swarm Manager and Nodes on Linode","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{"title":"Use Laravel Forge to Automate Web-Server Creation on a Linode","deprecated":null,"shortguide":null},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{"title":"Visualize Apache Web Server Logs Using an Elastic Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{"title":"How to Create a Private Python Package Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{"title":"How to Install and Configure Graylog2 on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{"title":"How to Install and Configure Redmine on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{"title":"Install and Configure Caddy on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/using-your-systems-hosts-file/":{"title":"Using Your System's hosts File","deprecated":null,"shortguide":null},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{"title":"Add a Custom Search to your Site with Solr","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{"title":"How to Install Ghost CMS on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-streisand-gateway/":{"title":"How to Set Up a Streisand Gateway","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{"title":"How to Use Midnight Commander, a Visual File Manager","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{"title":"Install and Manage MySQL Databases with Puppet Hiera on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/project-management/install-farmos/":{"title":"Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App","deprecated":null,"shortguide":null},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{"title":"Create, Tag, and Upload Your Own Docker Image","deprecated":null,"shortguide":null},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{"title":"How to Create an Email Server with Mail-in-a-Box","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{"title":"How to Install PrestaShop on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{"title":"How to use a YubiKey for Two-Factor Secure Shell Authentication","deprecated":null,"shortguide":null},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{"title":"Install a Jupyter Notebook Server on a Linode Behind an Apache Reverse Proxy","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/introduction-to-vim-customization/":{"title":"Introduction To Vim Customization","deprecated":null,"shortguide":null},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{"title":"How to Install and Run AskBot with LetsEncrypt SSL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{"title":"Install a Half-Life 2: Deathmatch Dedicated Server on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{"title":"How to Install a Turtl Server on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{"title":"How to Install and Configure a Redis Cluster on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{"title":"Create a Python Virtual Environment on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/applications/containers/how-to-use-dockerfiles/":{"title":"How to Use Dockerfiles","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{"title":"Install and Configure MySQL Workbench on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{"title":"Install and Configure ownCloud on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{"title":"Custom Compiled Kernel on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{"title":"Configure and Use Salt SSH to Manage Your Linodes","deprecated":null,"shortguide":null},"/docs/security/getting-started-with-selinux/":{"title":"Getting Started with SELinux","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{"title":"How to Deploy an nginx Container with Docker on Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{"title":"How to Install, Configure and Run The Fish Shell","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{"title":"How to Install Docker and Pull Images for Container Deployment","deprecated":null,"shortguide":null},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{"title":"Install Taskwarrior on Ubuntu 16.10","deprecated":true,"shortguide":null},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{"title":"How to Install SELinux on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/containers/introduction-to-docker/":{"title":"An Introduction to Docker","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{"title":"Install ntopng for Network Monitoring on Debian 8","deprecated":null,"shortguide":null},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{"title":"Set Up a Production-Ready Cassandra Node Cluster on Ubuntu 16.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{"title":"How to Change SELinux Modes","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-git/":{"title":"How to Use Git the Version Control System","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-wget/":{"title":"How to Use Wget","deprecated":null,"shortguide":null},"/docs/platform/how-to-use-block-storage-with-your-linode/":{"title":"How to Use Block Storage with Your Linode","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{"title":"Install and Configure NixOS on a Linode","deprecated":null,"shortguide":null},"/docs/databases/cassandra/deploy-scalable-cassandra/":{"title":"How to Install Apache Cassandra on Ubuntu 17.04 and CentOS 7","deprecated":null,"shortguide":null},"/docs/platform/use-coreos-container-linux-on-linode/":{"title":"Use CoreOS Container Linux on Linode","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-centos/":{"title":"Install Java on Centos 7","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-debian/":{"title":"Install Java on Debian 8","deprecated":null,"shortguide":null},"/docs/development/java/install-java-on-ubuntu-16-04/":{"title":"Install Java on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{"title":"Install Seafile with nginx on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{"title":"Deploy an Image to a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{"title":"Enable Backups on a Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{"title":"Log in to CoreOS Container Linux","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{"title":"Reset the Root Password on your Linode","deprecated":null,"shortguide":null},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{"title":"Resize a Linode Disk","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{"title":"Use nano to Edit Files in Linux","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{"title":"Install Plex Media Server on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{"title":"Install Plex Media Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{"title":"How to Install OpenCart on CentOS 7","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/linux-command-line-tips/":{"title":"Linux Command Line Tips","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-grep/":{"title":"How to Use the Grep Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-head/":{"title":"How to Use the Head Command","deprecated":null,"shortguide":null},"/docs/quick-answers/linux/how-to-use-tail/":{"title":"How to Use the Tail Command","deprecated":null,"shortguide":null},"/docs/security/advanced-ssh-server-security/":{"title":"Use Advanced OpenSSH Features to Harden Access to Your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{"title":"Install Odoo 10 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{"title":"Host Your Own RSS Reader with Tiny Tiny RSS on CentOS 7","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{"title":"Use the Distribution-Supplied Kernel on CentOS 6 with Grub Legacy","deprecated":false,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{"title":"Install a Custom Distribution on a Linode","deprecated":null,"shortguide":null},"/docs/platform/upgrade-to-hourly-billing/":{"title":"Upgrade to Hourly Billing","deprecated":null,"shortguide":null},"/docs/platform/disk-images/resizing-a-linode/":{"title":"Resizing a Linode","deprecated":null,"shortguide":null},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{"title":"Install OpenVAS 8 on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{"title":"Install MongoDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{"title":"Create an ARK: Survival Evolved Server on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-centos-7/":{"title":"Install Magento on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{"title":"Install Magento on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{"title":"Configure Postfix to Send Mail Using Gmail and Google Apps on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{"title":"How to Install PostgreSQL Relational Databases on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{"title":"Create a MongoDB Replica Set","deprecated":null,"shortguide":null},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{"title":"Use Varnish & nginx to Serve WordPress over SSL & HTTP on Debian 8","deprecated":null,"shortguide":null},"/docs/platform/disk-images/clone-your-linode/":{"title":"Clone Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{"title":"How to Install Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{"title":"Use One-Time Passwords for Two-Factor Authentication with SSH on Ubuntu 16.04 and Debian 8","deprecated":null,"shortguide":null},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{"title":"How to Configure OpenVPN Access Server to Tunnel Traffic","deprecated":null,"shortguide":null},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{"title":"How to Use LUKS for Full Disk Encryption on Linux","deprecated":null,"shortguide":null},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{"title":"Big Data in the Linode Cloud: Streaming Data Processing with Apache Storm","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{"title":"Install WordPress on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{"title":"How to use a GPG key for SSH authentication","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{"title":"Install Alpine Linux on your Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-cpanel-on-centos/":{"title":"Install cPanel on CentOS","deprecated":null,"shortguide":null},"/docs/networking/remote-access/":{"title":"Remote Access","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{"title":"Obtain a Commercially Signed SSL Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{"title":"Obtain a Commercially Signed SSL Certificate on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{"title":"Nginx SSL and TLS Deployment Best Practices","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{"title":"Custom Compiled Kernel on CentOS 7","deprecated":null,"shortguide":null},"/docs/websites/host-a-website-with-high-availability/":{"title":"Host a Website with High Availability","deprecated":null,"shortguide":null},"/docs/websites/introduction-to-high-availability/":{"title":"Introduction to High Availability","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{"title":"Install VNC on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{"title":"How to Install PostgreSQL on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{"title":"Install MongoDB on Ubuntu 16.04 (Xenial)","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{"title":"Use lighttpd Web Server on Ubuntu 16.04 (Xenial Xerus)","deprecated":null,"shortguide":null},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{"title":"Update and Secure Drupal 8 on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{"title":"Install Apache Tomcat on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{"title":"How to Install a LEMP (Linux, Nginx, MySQL, PHP) Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{"title":"How to Install a LAMP Stack on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{"title":"How to Upgrade to Ubuntu 16.04 LTS","deprecated":null,"shortguide":null},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{"title":"How to Install a Redis Server on Ubuntu or Debian 8","deprecated":null,"shortguide":null},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{"title":"Install and Configure Redis on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{"title":"Install Nagios 4 on Ubuntu and Debian 8","deprecated":null,"shortguide":null},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{"title":"Use Unicorn and Nginx to Configure Ruby on Rails Applications on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{"title":"Install FreeBSD on Linode","deprecated":null,"shortguide":null},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{"title":"Install WordPress Using WP-CLI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{"title":"How to Unbundle nginx from Omnibus GitLab for Serving Multiple Websites","deprecated":null,"shortguide":null},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{"title":"Install Black Mesa on Debian or Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{"title":"Install Let's Encrypt to Create SSL Certificates","deprecated":null,"shortguide":null},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{"title":"Launch a Counter Strike: Global Offensive (CS:GO) server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{"title":"Left 4 Dead 2 Multiplayer Server Installation","deprecated":null,"shortguide":null},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{"title":"Install PHP-FPM and Apache on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{"title":"Clojure Deployment with Immutant and WildFly on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{"title":"Install SteamCMD for a Steam Game Server","deprecated":null,"shortguide":null},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{"title":"Configure SPF and DKIM With Postfix on Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/install-roundcube-on-ubuntu/":{"title":"Install Roundcube on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{"title":"Install CoreOS on Your Linode","deprecated":true,"shortguide":null},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{"title":"Open Web Analytics (OWA): Install & Launch on Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{"title":"How to Setup a Terraria Linux Server","deprecated":null,"shortguide":null},"/docs/networking/vpn/configuring-openvpn-client-devices/":{"title":"Configure OpenVPN Client Devices","deprecated":null,"shortguide":null},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{"title":"Set up a Hardened OpenVPN Server on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{"title":"Tunnel Your Internet Traffic Through an OpenVPN Server","deprecated":null,"shortguide":null},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{"title":"Install MySQL Workbench for Database Administration","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{"title":"Deploy Graphite with Grafana on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-7/":{"title":"LAMP on CentOS 7","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{"title":"Deploy Django Applications Using uWSGI and Nginx on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-and-configure-drupal-8/":{"title":"Install and Configure Drupal 8","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/security/firewalls/configure-firewall-with-ufw/":{"title":"How to Configure a Firewall with UFW","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{"title":"Use Puppet Modules to Create a LAMP Stack","deprecated":null,"shortguide":null},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{"title":"Install and Configure Mumble on Debian","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{"title":"Access Your Box.com Account from Your Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{"title":"Install Nginx ngx_pagespeed Module on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{"title":"Install Odoo 9 ERP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{"title":"Set Up Nginx with PageSpeed on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{"title":"Install nginx and a StartSSL Certificate on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{"title":"Installing Monit for Server Monitoring","deprecated":null,"shortguide":null},"/docs/security/using-fail2ban-for-security/":{"title":"Use Fail2ban to Secure Your Server","deprecated":null,"shortguide":null},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{"title":"Deploy a Just Cause 2 Multiplayer Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gogs-on-debian/":{"title":"Install Gogs on Debian 9 with nginx and PostgreSQL","deprecated":null,"shortguide":null},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{"title":"Install Zimbra Open Source Edition on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/voip/install-asterisk-on-centos-7/":{"title":"How to Install Asterisk on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/access-google-drive-linode/":{"title":"Access Google Drive from Linode with Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{"title":"Introduction to FirewallD on CentOS","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{"title":"Install and Configure Salt Master and Minion Servers","deprecated":null,"shortguide":null},"/docs/development/java/java-development-wildfly-centos-7/":{"title":"Java Development with WildFly on CentOS 7","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-and-configure-puppet/":{"title":"Install and Configure Puppet","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{"title":"How to Configure nginx for Optimized Performance","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-bungee-cord/":{"title":"How to Set Up BungeeCord to Link Spigot Servers","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{"title":"Learn How to Install Ansible and Run Playbooks","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{"title":"NodeBalancer SSL Configuration","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-graphical-shell-glish/":{"title":"Using the Linode Graphical Shell (Glish)","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{"title":"How to Install MySQL on CentOS 7","deprecated":null,"shortguide":null},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{"title":"How to Install MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitor-systems-logwatch/":{"title":"Monitor System Logs with Logwatch","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{"title":"Apache Web Server on Ubuntu 14.04 LTS","deprecated":null,"shortguide":null},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{"title":"Pritunl VPN Server and Management Panel on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/install-teamspeak/":{"title":"Install a TeamSpeak Server on Linode","deprecated":null,"shortguide":null},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{"title":"Configure Your Linode for Reverse DNS (rDNS)","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{"title":"Install Nginx Web Server on Debian 8","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{"title":"Use Salt States to Configure a LAMP Stack on a Minion","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{"title":"Use Salt States to Create LAMP Stack and Fail2ban Across Salt minions","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-8/":{"title":"Apache Web Server on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{"title":"LAMP on Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{"title":"Run a Distribution-Supplied Kernel","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{"title":"Run a Distribution-Supplied Kernel on a KVM Linode","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-nginx-debian/":{"title":"Ruby on Rails with NGINX On Debian 9","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/vagrant-linode-environments/":{"title":"Using Vagrant to Manage Linode Environments","deprecated":null,"shortguide":null},"/docs/platform/kvm-reference/":{"title":"KVM Reference","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{"title":"How to Install MySQL on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{"title":"Install and configure nginx and PHP-FastCGI on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{"title":"Nginx and PHP-FastCGI on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/beginners-guide-chef/":{"title":"A Beginner's Guide to Chef","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{"title":"Creating Your First Chef Cookbook","deprecated":null,"shortguide":null},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{"title":"Install a Chef Server Workstation on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{"title":"Install OpenVPN Access Server on Linux for Secure Communications","deprecated":null,"shortguide":null},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{"title":"Protecting Your Linode with TCP Wrappers","deprecated":null,"shortguide":null},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{"title":"Upgrading to Debian 8 (Jessie)","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{"title":"Running a Spigot Minecraft Server on Ubuntu 14.04 and 14.10","deprecated":null,"shortguide":null},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{"title":"Install Don't Starve Together Game Server on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{"title":"Custom Compiled Kernel with PV-GRUB on Debian & Ubuntu","deprecated":true,"shortguide":null},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{"title":"Turbocharge Your WordPress Search Using Solr","deprecated":null,"shortguide":null},"/docs/game-servers/pocketmine-server-on-debian-7/":{"title":"PocketMine Server on Debian 7","deprecated":null,"shortguide":null},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{"title":"Docker Commands Quick Reference Cheat Sheet","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{"title":"Email with Postfix, Dovecot and MariaDB on CentOS 7","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{"title":"Node.js Web Server Deployed within Docker","deprecated":null,"shortguide":null},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{"title":"Team Fortress 2 on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{"title":"How to Optimize MySQL Performance Using MySQLTuner","deprecated":null,"shortguide":null},"/docs/uptime/reboot-survival-guide/":{"title":"Reboot Survival Guide","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{"title":"Tuning Your Apache Server","deprecated":null,"shortguide":null},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{"title":"How to install Docker and deploy a LAMP Stack","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/top-htop-iotop/":{"title":"Using top to Monitor Server Performance","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/load-testing-with-siege/":{"title":"Load Testing Web Servers with Siege","deprecated":null,"shortguide":null},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{"title":"Set Up MariaDB Clusters with Galera Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{"title":"Getting Started with NodeBalancers","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{"title":"How to Install Git and Clone a GitHub Repository","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/ossec-ids-debian-7/":{"title":"Install and Configure OSSEC on Debian 7","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{"title":"Installing McMyAdmin for Minecraft on Debian","deprecated":null,"shortguide":null},"/docs/game-servers/multicraft-on-debian/":{"title":"Installing Multicraft on Debian","deprecated":true,"shortguide":null},"/docs/game-servers/multicraft-on-ubuntu/":{"title":"Installing Multicraft on Ubuntu","deprecated":null,"shortguide":null},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{"title":"Install Subsonic Media Server on Ubuntu or Debian to Stream Music Through Your Linode","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-for-websites/":{"title":"Google Analytics for Websites","deprecated":null,"shortguide":null},"/docs/uptime/analytics/google-analytics-on-wordpress/":{"title":"Google Analytics for WordPress","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{"title":"Upgrading glibc for the GHOST Vulnerability","deprecated":null,"shortguide":null},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{"title":"How to Set Up a Minecraft Server on Ubuntu or Debian","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{"title":"LAMP on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/game-servers/garrys-mod-server-on-centos-7/":{"title":"Garry's Mod on CentOS 7","deprecated":null,"shortguide":null},"/docs/networking/dns/common-dns-configurations/":{"title":"Common DNS Configurations","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{"title":"How to Install Node.js and Nginx on Debian","deprecated":null,"shortguide":null},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{"title":"Install iPerf to Diagnose Network Speed in Linux","deprecated":null,"shortguide":null},"/docs/websites/cms/high-availability-wordpress/":{"title":"High Availability WordPress Hosting","deprecated":null,"shortguide":null},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{"title":"Configure Master-Master MySQL Database Replication","deprecated":null,"shortguide":null},"/docs/development/nodejs/how-to-install-nodejs/":{"title":"How to Install Node.js","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{"title":"Install a LEMP Stack on CentOS 7 with FastCGI","deprecated":null,"shortguide":null},"/docs/platform/network-helper/":{"title":"Network Helper","deprecated":null,"shortguide":null},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{"title":"Themes, Modules, & Backups with Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/websites/cms/drush-drupal/":{"title":"Installing & Using Drupal Drush on Debian 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-centos/":{"title":"SSL Certificates with Apache on CentOS 7","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{"title":"SSL Certificates with Apache on Debian & Ubuntu","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{"title":"How to Upgrade to Ubuntu 14.04 LTS","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{"title":"Install Nginx and a StartSSL Certificate on Debian 7 (Wheezy)","deprecated":false,"shortguide":null},"/docs/websites/cms/cms-overview/":{"title":"Content Management Systems: an Overview","deprecated":null,"shortguide":null},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{"title":"Disabling SSLv3 for POODLE","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/filezilla/":{"title":"Transfer Files with FileZilla","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{"title":"How to Install a Webmin Control Panel and Modules on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{"title":"Install iRedmail, Open-Source Mail Server, on Ubuntu","deprecated":null,"shortguide":null},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{"title":"Upgrading Bash for the Shellshock Vulnerability","deprecated":null,"shortguide":null},"/docs/platform/linode-images/":{"title":"Linode Images","deprecated":null,"shortguide":null},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{"title":"Yesod, Nginx, and MySQL on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{"title":"Install GitLab on Ubuntu 14.04 (Trusty Tahr)","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-weechat-for-irc/":{"title":"Using WeeChat for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/applications/messaging/install-znc-debian/":{"title":"Install ZNC from Source on Debian","deprecated":null,"shortguide":null},"/docs/email/using-google-apps-for-email/":{"title":"Using Google Apps for Email","deprecated":null,"shortguide":null},"/docs/networking/linux-static-ip-configuration/":{"title":"Linux Static IP Configuration","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{"title":"Deploy VoIP Services with Asterisk and Freepbx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{"title":"Running mod_fastcgi and PHP-FPM on Debian 7 (Wheezy) with Apache","deprecated":null,"shortguide":null},"/docs/databases/mariadb/mariadb-setup-debian/":{"title":"How to Set Up MariaDB on Debian 9","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/owncloud-debian-7/":{"title":"Installing and Configuring ownCloud on Debian 7.4","deprecated":null,"shortguide":null},"/docs/email/postfix/postfix-smtp-debian7/":{"title":"Configure Postfix to Send Mail Using an External SMTP Server","deprecated":null,"shortguide":null},"/docs/applications/cloud-storage/dropbox/":{"title":"Installing and Configuring Dropbox","deprecated":null,"shortguide":null},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{"title":"Switch to a 64-bit Linux Kernel","deprecated":false,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{"title":"LAMP Server on Fedora 20","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{"title":"Run Graphic Software on Your Linode with X-Forwarding on Debian","deprecated":null,"shortguide":null},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{"title":"Run Graphic Software on your Linode with X-Forwarding on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{"title":"Using VNC to Operate a Desktop on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{"title":"Creating a MongoDB Replication Set on CentOS 6.4","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{"title":"Creating a MongoDB Replication Set on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{"title":"Creating a MongoDB Replication Set on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{"title":"Patching OpenSSL for the Heartbleed Vulnerability","deprecated":null,"shortguide":null},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{"title":"Installing Mail Filtering for Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{"title":"Updating Virtual Host Settings from Apache 2.2 to Apache 2.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{"title":"Creating an HTTP Proxy Using Squid on CentOS 6.4","deprecated":null,"shortguide":null},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{"title":"Creating an HTTP Proxy Using Squid on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/platform/billing-and-payments/":{"title":"Billing and Payments","deprecated":null,"shortguide":null},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{"title":"How to Mount NFS Shares on Debian 9","deprecated":null,"shortguide":null},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{"title":"Setting up an SSH Tunnel with Your Linode for Safe Browsing","deprecated":null,"shortguide":null},"/docs/platform/package-mirrors/":{"title":"Package Mirrors","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{"title":"Ruby on Rails with Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{"title":"Install a LEMP (Linux, Nginx, MariaDB, PHP) Stack on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{"title":"LEMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/websites/varnish/getting-started-with-varnish-cache/":{"title":"Getting Started with Varnish Cache","deprecated":null,"shortguide":null},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{"title":"Pflogsumm for Postfix Monitoring on CentOS 6","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{"title":"Ruby on Rails with Nginx on Ubuntu 12.04 LTS (Precise)","deprecated":true,"shortguide":null},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{"title":"How to Install and Configure phpMyAdmin on CentOS 6","deprecated":null,"shortguide":null},"/docs/applications/containers/what-is-docker/":{"title":"Docker","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{"title":"How to Install Nginx on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{"title":"Using MySQL Relational Databases on Fedora 20","deprecated":true,"shortguide":null},"/docs/platform/api/api-key/":{"title":"API Key","deprecated":null,"shortguide":null},"/docs/platform/linode-cli/":{"title":"Linode CLI","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{"title":"How to Install MySQL on CentOS 6","deprecated":null,"shortguide":null},"/docs/networking/dns/previewing-websites-without-dns/":{"title":"Previewing Websites Without DNS","deprecated":null,"shortguide":null},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{"title":"How to Install MySQL on Debian 7","deprecated":null,"shortguide":null},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{"title":"Install SquirrelMail on Ubuntu 16.04 or Debian 8","deprecated":null,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{"title":"Installing SquirrelMail on Debian 7","deprecated":true,"shortguide":null},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{"title":"Installing SquirrelMail on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{"title":"Run PHP with CGI and Apache on CentOS 6","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{"title":"Run PHP with CGI and Apache on Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{"title":"How to Install MySQL with phpMyAdmin on Debian 7","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{"title":"How to Install and Configure phpMyAdmin on Debian 8","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{"title":"LAMP Server on Fedora 19","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{"title":"Apache Web Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-mysql/":{"title":"Longview App for MySQL","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-nginx/":{"title":"Longview App for Nginx","deprecated":null,"shortguide":null},"/docs/platform/longview/longview-app-for-apache/":{"title":"Longview App for Apache","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{"title":"LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{"title":"Migrate from Shared Hosting to Linode","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{"title":"LAMP Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{"title":"How to Install a LAMP Stack on Arch Linux","deprecated":null,"shortguide":null},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{"title":"Minecraft on Linode with Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/development/version-control/introduction-to-version-control/":{"title":"Introduction to Version Control","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{"title":"Ruby on Rails with Apache on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{"title":"How to Install MySQL with phpMyAdmin on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{"title":"lighttpd Web Server on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-debian-7/":{"title":"Apache Web Server on Debian 7 (Wheezy)","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{"title":"Secure Communications with OpenVPN on Ubuntu 12.04 (Precise) and Debian 7","deprecated":true,"shortguide":null},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{"title":"Troubleshooting Problems with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{"title":"Install Ruby on Rails with Apache on Debian 8","deprecated":null,"shortguide":null},"/docs/security/encryption/full-disk-encryption-xen/":{"title":"Full Disk Encryption","deprecated":true,"shortguide":null},"/docs/platform/automating-server-builds/":{"title":"Automating Server Builds","deprecated":null,"shortguide":null},"/docs/email/running-a-mail-server/":{"title":"Running a Mail Server","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{"title":"Email with Postfix, Dovecot, and MySQL","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{"title":"How to Upgrade to Debian 7 (Wheezy)","deprecated":true,"shortguide":null},"/docs/security/linode-manager-security-controls/":{"title":"Linode Manager Security Controls","deprecated":null,"shortguide":null},"/docs/security/backups/backing-up-your-data/":{"title":"Backing Up Your Data","deprecated":null,"shortguide":null},"/docs/platform/longview/longview/":{"title":"What is Longview and How to Use it","deprecated":null,"shortguide":null},"/docs/platform/linode-managed/":{"title":"Linode Managed","deprecated":null,"shortguide":null},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{"title":"Install a Mosh Server as SSH Alternative on Linux","deprecated":null,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache Tomcat on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{"title":"Install Openfire on Ubuntu 12.04 for Instant Messaging","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{"title":"Use uWSGI to deploy Python apps with Nginx on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{"title":"Deploy Exim as a Send-only Mail Server on Ubuntu 12.04 ","deprecated":true,"shortguide":null},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{"title":"Launch Discussion Forums with phpBB on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{"title":"Deploy Multiple Web Servers with ProxyPass on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{"title":"Monitor Services with Nagios on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Email with Citadel on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{"title":"Email with Citadel on Ubuntu 14.04 LTS (Truly Tahr)","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Nginx and Perl-FastCGI on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{"title":"Run PHP with CGI and Apache on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{"title":"Use ejabberd for Instant Messaging on Ubuntu-12-04","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{"title":"Redis on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{"title":"Web.py on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Installing Nginx on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{"title":"TWiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{"title":"Monitor System Logs with Logwatch on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Apache and mod_wsgi on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{"title":"Ikiwiki on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{"title":"Use Cacti to Monitor Resource Utilization on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{"title":"Apache Web Server on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{"title":"Deploy Websites with a Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{"title":"Piwik on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{"title":"Use Cherokee Web Server on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{"title":"Install Nginx and PHP via FastCGI on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LEMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{"title":"Use CouchDB for Document-Based Data Storage on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 12.04 LTS (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{"title":"Deploy MySQL Relational Databases on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{"title":"Install MySQL on Ubuntu 14.04","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{"title":"Use MongoDB to Store Application Data on Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 12.04","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"Installing Prosody XMPP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{"title":"LAMP Server on Ubuntu 12.04 (Precise Pangolin)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring-and-maintaining-your-server/":{"title":"Monitoring and Maintaining Your Server","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{"title":"Monitoring Servers with Zabbix","deprecated":true,"shortguide":null},"/docs/applications/social-networking/dolphin/":{"title":"Dolphin","deprecated":"true - '[Boonex Home Page](http://www.boonex.com)' - '[Boonex Plug-in Market](http://www.boonex.com/market)' - '[Boonex Forums](http://www.boonex.com/forums/)'","shortguide":null},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{"title":"Use cPanel to Manage Domains and Databases","deprecated":null,"shortguide":null},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{"title":"How to Install A SHOUTcast DNAS Server on Linux","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{"title":"Copying a Disk Over SSH","deprecated":null,"shortguide":null},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{"title":"Copying a Disk to a Different Account","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{"title":"How to Upgrade to Ubuntu 12.04 (Precise)","deprecated":true,"shortguide":null},"/docs/troubleshooting/rescue-and-rebuild/":{"title":"Rescue and Rebuild","deprecated":null,"shortguide":null},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{"title":"Migrating a Server to Your Linode","deprecated":true,"shortguide":null},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{"title":"Disks and Configuration Profiles","deprecated":null,"shortguide":null},"/docs/platform/prepaid-billing-and-payments-legacy/":{"title":"Prepaid Billing and Payments (Legacy)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting/":{"title":"Troubleshooting","deprecated":null,"shortguide":null},"/docs/platform/accounts-and-passwords/":{"title":"Accounts and Passwords","deprecated":null,"shortguide":null},"/docs/platform/support/":{"title":"Support","deprecated":null,"shortguide":null},"/docs/platform/linode-backup-service/":{"title":"Use the Linode Backup Service to Protect and Secure Your Data","deprecated":null,"shortguide":null},"/docs/websites/hosting-a-website/":{"title":"Hosting a Website","deprecated":null,"shortguide":null},"/docs/security/securing-your-server/":{"title":"How to Secure Your Server","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{"title":"Set Up a LAMP Server on Gentoo","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{"title":"Monitoring Servers with Munin on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{"title":"mod_evasive on Apache","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{"title":"How to Configure ModSecurity on Apache","deprecated":null,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{"title":"Email with Citadel on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{"title":"How to Use Nano Text Editor Commands in Linux","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{"title":"LEMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{"title":"Set Up DNS Services on cPanel","deprecated":null,"shortguide":null},"/docs/websites/cms/kloxo-guides/":{"title":"Kloxo Guides","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{"title":"LEMP Server on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/cms/creating-accounts-on-directadmin/":{"title":"Creating Accounts on DirectAdmin","deprecated":true,"shortguide":null},"/docs/websites/cms/directadmin/":{"title":"DirectAdmin","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{"title":"LAMP Server on Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-kloxo-on-centos-5/":{"title":"Install Kloxo on CentOS 5","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{"title":"How to Upgrade to Ubuntu 11.10 (Oneiric)","deprecated":true,"shortguide":null},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{"title":"Install a Commercial SSL Certificate Using cPanel","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-fedora-15/":{"title":"OpenCart on Fedora 15","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/opencart-on-centos-6/":{"title":"OpenCart on CentOS 6","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{"title":"OpenCart on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{"title":"LAMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-on-centos-6/":{"title":"LAMP on CentOS 6","deprecated":null,"shortguide":null},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{"title":"NodeBalancer Reference Guide","deprecated":null,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{"title":"Email with Postfix, Dovecot and MySQL on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{"title":"LEMP Server on Fedora 15","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{"title":"LEMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{"title":"Send-only Mail Server with Exim on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{"title":"LAMP Server on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{"title":"Provide Authoritative DNS Services with NSD on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{"title":"Use Unbound for Local DNS Resolution on Fedora 15","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{"title":"Manage Projects with Redmine on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{"title":"Manage Projects with Redmine on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{"title":"Nginx and PHP-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and PHP-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/an-overview-of-ipv6-on-linode/":{"title":"An Overview of IPv6 on Linode","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{"title":"Nginx and Perl-FastCGI on Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{"title":"Set Up an IPv6 Tunnel on Your Linode","deprecated":null,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{"title":"How to Upgrade to Ubuntu 11.04 (Natty)","deprecated":true,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{"title":"Multiple Web Servers with ProxyPass on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{"title":"Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/platform/stackscripts/":{"title":"Automate Deployment with StackScripts","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{"title":"Discussion Forums with phpBB on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{"title":"Discussion Forums with phpBB on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{"title":"Django, Apache and mod_wsgi on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{"title":"Ikiwiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{"title":"Ikiwiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{"title":"Ikiwiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{"title":"Manage Content with Markdown and Mango on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{"title":"Manage Content with Markdown and Mango on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{"title":"Manage Content with Markdown and Mango on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{"title":"Manage Development with the Mantis Bug Tracker on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{"title":"Manage Development with the Mantis Bug Tracker on Fedora 14","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{"title":"Manage Email Lists with GNU Mailman on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{"title":"Manage a Debian 6 (Squeeze) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{"title":"Manage a Fedora 14 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{"title":"Monitor System Logs with Logwatch on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{"title":"Monitoring Servers with Munin on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{"title":"Oracle 10g Express Edition on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-6-squeeze/":{"title":"Redis on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{"title":"Ruby on Rails with Apache on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{"title":"SSL Certificates with Apache 2 on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{"title":"Secure Communications with OpenVPN on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{"title":"Sinatra Framework and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-centos-5/":{"title":"TWiki on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{"title":"TWiki on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-fedora-14/":{"title":"TWiki on Fedora 14","deprecated":true,"shortguide":null},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{"title":"Use Public Key Authentication with SSH","deprecated":null,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{"title":"Using MySQL Relational Databases on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{"title":"Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{"title":"Instant Messaging Services with Openfire on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{"title":"Apache 2 Web Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{"title":"Ikiwiki on Arch Linux","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{"title":"LAMP Server on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{"title":"Multiple Web Servers with ProxyPass on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{"title":"Oracle 10g Express Edition on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{"title":"Use CouchDB for Document Based Data Storage on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{"title":"WSGI using uWSGI and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{"title":"Websites with nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/debian-6-squeeze/":{"title":"Use PostgreSQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{"title":"Apache Tomcat on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{"title":"Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{"title":"Basic Postfix Email Gateway on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{"title":"Django, Apache and mod_wsgi on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{"title":"Nginx and Perl-FastCGI on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{"title":"Postfix, Dovecot, and System User Accounts on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{"title":"Sinatra Framework and nginx on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{"title":"Web.py on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{"title":"Email and Calendars with Zimbra 6 on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{"title":"Manage Content with Markdown and Mango on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{"title":"Send-only Mail Server with Exim on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{"title":"TWiki on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{"title":"TWiki on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{"title":"Use Unbound for Local DNS Resolution on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Websites with nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{"title":"How to Upgrade to Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{"title":"Nginx and Perl-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{"title":"Nginx and PHP-FastCGI on Arch Linux","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{"title":"Use Unbound for Local DNS Resolution on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{"title":"Websites with Nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{"title":"Ikiwiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/phpfox/":{"title":"phpFox","deprecated":true,"shortguide":null},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{"title":"TWiki on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{"title":"Use MySQL Relational Databases on Debian 6 (Squeeze)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{"title":"Piwik on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 14","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{"title":"Web.py on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{"title":"Sinatra Framework and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{"title":"Using MySQL Relational Databases on Gentoo","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{"title":"Nginx and PHP-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{"title":"Nginx and Perl-FastCGI on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{"title":"Web.py on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-fedora-13/":{"title":"Piwik on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{"title":"WSGI using uWSGI and nginx on Arch Linux","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{"title":"WSGI using uWSGI and nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{"title":"Apache 2 Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{"title":"Apache Tomcat on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{"title":"Apache Tomcat on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{"title":"Use MySQL Relational Databases on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{"title":"Websites with Nginx on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{"title":"Apache 2 Web Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{"title":"Installing Prosody XMPP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{"title":"Piwik on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-14/":{"title":"Redis on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 14","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{"title":"LEMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{"title":"LEMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{"title":"LAMP Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/nagios-server-monitoring/":{"title":"Nagios Server Monitoring","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{"title":"Manipulate Lists with sort and uniq","deprecated":null,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{"title":"Use Killall and Kill Commands to Stop Processes on Linux","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{"title":"View and Follow the End of Text Files with tail","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{"title":"Use MongoDB to Store Application Data on Fedora 14","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{"title":"LEMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{"title":"Monitor Services with Nagios on Gentoo Linux","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{"title":"Monitor Services with Nagios on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{"title":"WSGI using uWSGI and nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{"title":"WSGI using uWSGI and nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{"title":"WSGI using uWSGI and nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{"title":"Basic Postfix Email Gateway on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{"title":"Enable SSL for HTTPS Configuration on nginx","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{"title":"WSGI using uWSGI and nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{"title":"WSGI using uWSGI and nginx on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.10 (Maverick) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{"title":"Redis on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{"title":"Download Resources from the Command Line with wget","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{"title":"Find Files in Linux, Using the Command Line","deprecated":null,"shortguide":null},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{"title":"Manage a Fedora 13 Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{"title":"Monitor System Logs with Logwatch on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{"title":"View the Beginning of Text Files with head","deprecated":null,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{"title":"Use MySQL Relational Databases on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{"title":"How to Upgrade to Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{"title":"LAMP Server on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{"title":"Use dig to Perform Manual DNS Queries","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{"title":"Use vmstat to Monitor System Performance","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{"title":"osCommerce on Fedora 13","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.10 (Maverick)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{"title":"Create File System Links with ln","deprecated":null,"shortguide":null},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{"title":"How to Use logrotate to Manage Log Files","deprecated":null,"shortguide":null},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{"title":"Build Database Clusters with MongoDB","deprecated":null,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{"title":"Discussion Forums with phpBB on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{"title":"Power Team Collaboration with eGroupware on Fedora 13","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{"title":"Ikiwiki on Fedora 13","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{"title":"Instant Messaging Services with ejabberd on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{"title":"Monitor System Logs with Logwatch on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{"title":"Monitor System Logs with Logwatch on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/logwatch-log-monitoring/":{"title":"Logwatch Log Monitoring","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-centos-5/":{"title":"Confluence on CentOS 5","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-fedora-13/":{"title":"Confluence on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{"title":"Provide Authoritative DNS Services with NSD on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{"title":"Use Unbound for Local DNS Resolution on Fedora 13","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{"title":"Confluence on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{"title":"Confluence on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{"title":"Confluence on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{"title":"Provide Authoritative DNS Services with NSD on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{"title":"How to Use the Date Command in Linux","deprecated":null,"shortguide":null},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{"title":"Social Networking with phpFox on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{"title":"Create an Aggregate Blog using Planet Venus on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{"title":"Create an Aggregate Blog using Planet on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{"title":"SSL Certificates with Apache 2 on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{"title":"Instant Messaging Services with Openfire on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/social-networking/planet-feed-aggregator/":{"title":"Planet Feed Aggregator","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-centos-5/":{"title":"Redis on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-fedora-13/":{"title":"Redis on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{"title":"Redis on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{"title":"Run PHP Applications under CGI with Apache on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Apache on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{"title":"Build ASP.NET/Mono Applications with mod_mono and Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/firewalls/control-network-traffic-with-iptables/":{"title":"Control Network Traffic with iptables","deprecated":null,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{"title":"Ruby on Rails with Nginx on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{"title":"Redis on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{"title":"Archiving and Compressing files with GNU Tar and GNU Zip","deprecated":null,"shortguide":null},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{"title":"How to Install and Configure WordPress","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{"title":"LEMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/redis/redis-on-debian-5-lenny/":{"title":"Redis on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{"title":"Apache Tomcat on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{"title":"Apache Tomcat on Fedora 13","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{"title":"Apache Tomcat on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{"title":"Apache Tomcat on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{"title":"Custom Compiled Kernel with PV-GRUB on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{"title":"Custom Compiled Kernel with PV-GRUB on CentOS 7","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{"title":"Run a Custom Compiled Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{"title":"LEMP Server on Arch Linux","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{"title":"Manipulate Text from the Command Line with sed","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{"title":"Modify File Permissions with chmod","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{"title":"How to Grep for Text in Files","deprecated":null,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{"title":"LEMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{"title":"LEMP Server on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{"title":"Basic Postfix Email Gateway on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{"title":"Git Based Development Networks with Girocco on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{"title":"LEMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Web Apps with Cherokee and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{"title":"Email with Postfix, Courier and MySQL on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{"title":"Apache 2 Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{"title":"Use MySQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-13/":{"title":"Use PostgreSQL Relational Databases on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{"title":"Nginx and PHP-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{"title":"Nginx and Perl-FastCGI on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{"title":"Use CouchDB for Document Based Data Storage on Fedora 13","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{"title":"Use MongoDB to Store Application Data on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{"title":"Websites with the Cherokee Web Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{"title":"Websites with the Cherokee Web Server on Fedora 14","deprecated":true,"shortguide":null},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{"title":"CakePHP on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{"title":"Email with Postfix, Courier and MySQL on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{"title":"Monitor Services with Nagios on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{"title":"LAMP Server on Fedora 13","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{"title":"Websites with nginx on Fedora 13","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{"title":"Monitoring Servers with Munin on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{"title":"Manage an Ubuntu 10.04 (Lucid) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{"title":"Django, Apache and mod_wsgi on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_wsgi on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_wsgi on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{"title":"Monitoring Resource Utilization with Cacti on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{"title":"Django, Apache and mod_python on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{"title":"Django, Apache and mod_wsgi on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{"title":"Use Nginx as a Front-end Proxy and Software Load Balancer","deprecated":null,"shortguide":null},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{"title":"Question and Answer Communities with OSQA on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{"title":"Secure Communications with OpenVPN on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Citadel on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{"title":"Oracle 10g Express Edition on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{"title":"Oracle 10g Express Edition on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-fluxbb/":{"title":"Discussion Forums with FluxBB","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{"title":"Discussion Forums with Vanilla Forums","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{"title":"Instant Messaging Services with Openfire on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-flatpress/":{"title":"Manage Web Content with FlatPress","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and Perl-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{"title":"Send-only Mail Server with Exim on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{"title":"Track Bugs and Manage Development with Bug Genie","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{"title":"Track Bugs and Manage Development with Flyspray","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{"title":"Use MongoDB to Store Application Data on Ubuntu 10.04 (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{"title":"Use Unbound for Local DNS Resolution on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with the Cherokee Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{"title":"Securely Manage Remote PostgreSQL Servers with pgAdmin on Mac OS X","deprecated":null,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{"title":"Use MySQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{"title":"Apache 2 Web Server on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{"title":"How to Upgrade to Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{"title":"Manage Projects with Redmine on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{"title":"Websites with nginx on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{"title":"Diagnosing Network Issues with MTR","deprecated":null,"shortguide":null},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{"title":"How to Access PostgreSQL Database Remotely Using pgAdmin on Windows","deprecated":null,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{"title":"Email and Calendars with Zimbra 6 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{"title":"Manage Distributed Version Control with Mercurial","deprecated":null,"shortguide":null},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{"title":"Deploy VoIP Services with Asterisk and FreePBX on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{"title":"Monitor Services with Nagios on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{"title":"Nginx and PHP-FastCGI on Ubuntu 10.04 LTS (Lucid)","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/synchronize-files-with-unison/":{"title":"Synchronize Files with Unison","deprecated":true,"shortguide":null},"/docs/databases/mysql/back-up-your-mysql-databases/":{"title":"Back Up Your MySQL Databases","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{"title":"Manage a Debian 5 (Lenny) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{"title":"Manage an Ubuntu 9.10 (Karmic) Linode with ISPConfig","deprecated":true,"shortguide":null},"/docs/websites/wikis/dokuwiki-engine/":{"title":"DokuWiki Engine","deprecated":null,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{"title":"Manage MySQL with phpMyAdmin on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-phpfusion/":{"title":"Manage Web Content with PHP-Fusion","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-centos-5/":{"title":"Webalizer on Centos 5","deprecated":true,"shortguide":null},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{"title":"Web.py on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{"title":"Manage CPAN Modules with cpanminus","deprecated":null,"shortguide":null},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{"title":"Create an Aggregate Blog using Planet on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{"title":"Discussion Forums with phpBB on Centos 5","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{"title":"Using GNU Screen to Manage Persistent Terminal Sessions","deprecated":null,"shortguide":null},"/docs/websites/wikis/twiki/":{"title":"TWiki","deprecated":true,"shortguide":null},"/docs/applications/messaging/advanced-irssi-usage/":{"title":"Advanced Irssi Usage","deprecated":null,"shortguide":null},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{"title":"Using Irssi for Internet Relay Chat","deprecated":null,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{"title":"Use MongoDB to Store Application Data on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{"title":"Use MongoDB to Store Application Data on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{"title":"Using Apache for Proxy and Clustering Services on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{"title":"Using Apache for Proxy and Clustering Services on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{"title":"Ikiwiki on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{"title":"Ikiwiki on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{"title":"Use MongoDB to Store Application Data on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{"title":"Using Apache for Proxy and Clustering Services on CentOS 5","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{"title":"Manage Email Lists with GNU Mailman on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-mybb/":{"title":"Discussion Forums with MyBB","deprecated":true,"shortguide":null},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{"title":"How to Install a Simple Machines Discussion Forum (SMF) on Linux","deprecated":false,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{"title":"Nginx and PHP-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{"title":"Nginx and Perl-FastCGI on Fedora 12","deprecated":true,"shortguide":null},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{"title":"Using Apache for Proxy and Clustering Services on Fedora 12","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Dovecot and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{"title":"SSL Certificates with Apache 2 on CentOS","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{"title":"SSL Certificates with Apache 2 on Fedora 12","deprecated":true,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{"title":"SSL Certificates with Apache 2 on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{"title":"Secure Communications with OpenVPN on CentOS 6","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{"title":"Websites with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{"title":"Apache Configuration Structure","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{"title":"Managing Resources with Apache mod_alias","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{"title":"Secure Communications with OpenVPN on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{"title":"Secure Communications with OpenVPN on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{"title":"Websites with nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{"title":"Websites with nginx on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-centos-5/":{"title":"Piwik on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{"title":"Use CouchDB for Document Based Data Storage on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{"title":"Use CouchDB for Document Based Data Storage on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{"title":"Run PHP Applications under CGI with Apache on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{"title":"Manage Development with the Mantis Bug Tracker on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{"title":"Manage Email Lists with GNU Mailman on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Dovecot and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{"title":"Use CouchDB for Document Based Data Storage on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{"title":"osCommerce on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{"title":"Django, Apache and mod_python on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{"title":"Magento on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{"title":"Access Futon Over SSH to Administer CouchDB","deprecated":null,"shortguide":null},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{"title":"Multiple Web Servers with ProxyPass on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{"title":"Multiple Web Servers with ProxyPass on Fedora 12","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{"title":"Multiple Web Servers with ProxyPass on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{"title":"Django, Apache and mod_python on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{"title":"Power Team Collaboration with eGroupware on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{"title":"Run PHP Applications under CGI with Apache on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{"title":"Run PHP Applications under CGI with Apache on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{"title":"Use MongoDB to Store Application Data on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{"title":"Power Team Collaboration with eGroupware on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/clients/retrieve-email-using-getmail/":{"title":"Retrieve Email Using Getmail","deprecated":null,"shortguide":null},"/docs/development/frameworks/catalyst-and-modperl/":{"title":"Catalyst and mod_perl","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{"title":"Manage Web Content with Plone on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{"title":"Manage MySQL with phpMyAdmin on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{"title":"Oracle 10g Express Edition on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{"title":"Securely Administer Oracle XE with an SSH Tunnel","deprecated":true,"shortguide":null},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{"title":"Webalizer on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{"title":"Power Team Collaboration with eGroupware on Debian 5 (Lenny)","deprecated":"truew","shortguide":null},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{"title":"Provide Authoritative DNS Services with NSD on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-joomla/":{"title":"Manage Web Content with Joomla!","deprecated":true,"shortguide":null},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{"title":"Use Unbound for Local DNS Resolution on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{"title":"osCommerce on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/how-to-configure-nginx/":{"title":"How to Configure nginx","deprecated":null,"shortguide":null},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{"title":"Magento on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{"title":"Manage Distributed Source Branches with Bazaar","deprecated":null,"shortguide":null},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{"title":"Monitoring Resource Utilization with Cacti on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{"title":"Deploy Smalltalk Applications with Seaside","deprecated":true,"shortguide":null},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{"title":"Using Fetchmail to Retrieve Email","deprecated":true,"shortguide":null},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{"title":"Create an SSH Tunnel for MySQL Remote Access","deprecated":null,"shortguide":null},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{"title":"Limiting Access with SFTP Jails on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{"title":"Piwik on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{"title":"Piwik on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{"title":"Run PHP Applications under CGI with Apache on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{"title":"Send-only Mail Server with Exim on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{"title":"Send-only Mail Server with Exim on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{"title":"Nginx and Perl-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{"title":"Nginx and Perl-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{"title":"Nginx and Perl-FastCGI on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{"title":"Manage Source Code Versions with Subversion","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{"title":"Schedule Tasks with Cron","deprecated":null,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{"title":"Nginx and PHP-FastCGI on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{"title":"Nginx and PHP-FastCGI on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-system-administration-basics/":{"title":"Linux System Administration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{"title":"Apache 2 Web Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{"title":"Piwik on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{"title":"Instant Messaging Services with ejabberd on CentOS 5","deprecated":true,"shortguide":null},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{"title":"Social Networking with Elgg on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-access-control/":{"title":"Apache Access Control","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{"title":"Rule-based Access Control for Apache","deprecated":null,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{"title":"Manage Projects with Redmine on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{"title":"Multiple Web Servers with ProxyPass on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{"title":"Manage Projects with Redmine on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{"title":"Create a Self-Signed Certificate on CentOS and Fedora","deprecated":null,"shortguide":null},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{"title":"Create a Self-Signed Certificate on Debian and Ubuntu","deprecated":null,"shortguide":null},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{"title":"How to Make a Self-Signed SSL Certificate","deprecated":true,"shortguide":null},"/docs/platform/linode-beginners-guide/":{"title":"Linode Beginner's Guide","deprecated":null,"shortguide":null},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{"title":"Obtaining a Commercial SSL Certificate","deprecated":true,"shortguide":null},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{"title":"Using OpenSSL's subjectAltName with Multiple Site Domains","deprecated":null,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{"title":"Transfer Files with Cyberduck on Mac OS X","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{"title":"Transfer Files with Filezilla on Ubuntu 9.10 Desktop","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{"title":"Email with Citadel on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{"title":"Email with Citadel on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{"title":"Email with Citadel on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{"title":"Apache Configuration Basics","deprecated":null,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{"title":"Rewrite URLs with mod_rewrite and Apache","deprecated":null,"shortguide":null},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{"title":"Troubleshooting Common Apache Issues","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{"title":"Apache 2 Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{"title":"LAMP Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{"title":"Use MySQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.10 (Karmic)","deprecated":true,"shortguide":null},"/docs/networking/ssh/using-sshfs-on-linux/":{"title":"Using SSHFS To Mount Remote Directories","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{"title":"LAMP Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{"title":"Transfer Files with WinSCP on Windows","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{"title":"Installing Prosody XMPP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{"title":"Installing Prosody XMPP Server on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{"title":"Installing Prosody XMPP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with ejabberd on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{"title":"Redirect URLs with the Apache Web Server","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{"title":"Instant Messaging Services with ejabberd on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{"title":"Discussion Forums with phpBB on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{"title":"Install MediaWiki on Ubuntu 16.04","deprecated":null,"shortguide":null},"/docs/websites/cms/managing-web-content-with-drupal-7/":{"title":"Installing Drupal 7","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{"title":"LAMP Server on Fedora 11","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{"title":"LAMP Server on Fedora 12","deprecated":true,"shortguide":null},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{"title":"Apache Tomcat on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{"title":"Installing Apache Tomcat on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{"title":"SSH Connections Using PuTTY on Windows","deprecated":null,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{"title":"Instant Messaging Services with Openfire on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{"title":"Instant Messaging Services with Openfire on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{"title":"Email and Calendars with Zimbra 6 on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{"title":"Email with Postfix, Courier and MySQL on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{"title":"Using rdiff-backup with SSHFS","deprecated":null,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{"title":"Websites with the Cherokee Web Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{"title":"Email and Calendars with Zimbra 6 on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/centos-5/":{"title":"Use PostgreSQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/postgresql/fedora-12/":{"title":"Use PostgreSQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{"title":"Use PostgreSQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{"title":"Email with Postfix, Courier and MySQL on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{"title":"Django, Apache and mod_python on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{"title":"Django, Apache and mod_python on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{"title":"Websites with the Cherokee Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{"title":"Run a Distribution-Supplied Kernel with PV-GRUB","deprecated":true,"shortguide":null},"/docs/tools-reference/tools/introduction-to-rsync/":{"title":"Introduction to rsync","deprecated":null,"shortguide":null},"/docs/databases/postgresql/debian-5-lenny/":{"title":"Use PostgreSQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/version-control/how-to-configure-git/":{"title":"Getting Started with Git","deprecated":null,"shortguide":null},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{"title":"How to Install Git on Linux, Mac or Windows","deprecated":null,"shortguide":null},"/docs/tools-reference/introduction-to-linux-concepts/":{"title":"Introduction to Linux Concepts","deprecated":null,"shortguide":null},"/docs/tools-reference/linux-users-and-groups/":{"title":"Linux Users and Groups","deprecated":null,"shortguide":null},"/docs/security/recovering-from-a-system-compromise/":{"title":"Recovering from a System Compromise","deprecated":null,"shortguide":null},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{"title":"SSL Certificates with Apache 2 on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{"title":"Ruby on Rails with Nginx on CentOS 5","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{"title":"Ruby on Rails with Nginx on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{"title":"Ruby on Rails with Nginx on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Nginx on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{"title":"Install a Custom Distribution on a Xen Linode","deprecated":true,"shortguide":null},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{"title":"Ruby on Rails with Apache on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{"title":"Apache 2 Web Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{"title":"Use MySQL Relational Databases on CentOS 5","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{"title":"Use MySQL Relational Databases on Fedora 12","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{"title":"Use MySQL Relational Databases on Ubuntu 8.04 (Hardy)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{"title":"Use MySQL Relational Databases on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{"title":"Use MySQL Relational Databases on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{"title":"Configure a Firewall with Arno Iptables in Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{"title":"Installing Apache Tomcat on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{"title":"lighttpd Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{"title":"Troubleshooting Memory and Networking Issues","deprecated":null,"shortguide":null},"/docs/networking/using-the-linode-shell-lish/":{"title":"Using the Linode Shell (Lish)","deprecated":null,"shortguide":null},"/docs/networking/ssh/using-the-terminal/":{"title":"Using the Terminal","deprecated":null,"shortguide":null},"/docs/networking/dns/dns-records-an-introduction/":{"title":"DNS Records: an Introduction","deprecated":null,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{"title":"Apache 2 Web Server on CentOS 5","deprecated":true,"shortguide":null},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{"title":"Apache 2 Web Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/websites/cms/manage-web-content-with-movable-type/":{"title":"Manage Web Content with Movable Type","deprecated":true,"shortguide":null},"/docs/networking/dns/dns-manager-overview/":{"title":"DNS Manager Overview","deprecated":null,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{"title":"LAMP Server on Debian 5 (Lenny)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{"title":"LAMP Server on Ubuntu 8.04 LTS (Hardy)","deprecated":true,"shortguide":null},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{"title":"LAMP Server on Ubuntu 9.04 (Jaunty)","deprecated":true,"shortguide":null},"/docs/tools-reference/linux-package-management/":{"title":"Linux Package Management","deprecated":null,"shortguide":null}},"index":{"version":"2.1.3","fields":["title","keywords","toc","deprecated"],"fieldVectors":[["title//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.242,1,6.181,2,3.292,3,3.502,4,1.344,5,1.505]],["keywords//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[2,3.449,3,3.669,4,1.408,6,5.625,7,5.171]],["toc//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[0,1.95,2,6.137,8,6.775]],["deprecated//docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/",[]],["title//docs/development/java/install-java-jdk/",[9,0.063,10,5.63,11,0.858]],["keywords//docs/development/java/install-java-jdk/",[10,5.518,12,3.936,13,6.415]],["toc//docs/development/java/install-java-jdk/",[]],["deprecated//docs/development/java/install-java-jdk/",[]],["title//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[3,3.502,4,1.344,7,4.935,14,0.869,15,3.721,16,1.841]],["keywords//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,3.449,3,3.669,4,1.408,6,5.625,7,5.171]],["toc//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[2,5.989,5,1.937,8,5.551,15,4.788,16,2.368,17,1.846,18,1.858,19,4.196,20,4.667,21,4.611]],["deprecated//docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/",[]],["title//docs/development/iot/install-thingsboard-iot-dashboard/",[22,4.408,23,6.651,24,3.197,25,6.651]],["keywords//docs/development/iot/install-thingsboard-iot-dashboard/",[23,6.49,26,7.049,27,7.049,28,5.628]],["toc//docs/development/iot/install-thingsboard-iot-dashboard/",[0,1.119,9,0.064,16,2.381,22,3.396,24,3.538,25,9.413,29,1.201,30,2.402,31,1.083,32,3.549,33,2.331,34,3.885,35,0.316,36,5.566,37,5.566,38,1.97,39,2.217,40,2.253,41,3.972,42,1.845,43,3.227,44,5.125,45,2.479,46,2.447]],["deprecated//docs/development/iot/install-thingsboard-iot-dashboard/",[]],["title//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[14,0.81,31,1.121,32,3.675,33,2.414,47,2.031,48,5.006,49,0.92]],["keywords//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[50,5.847,51,4.189,52,6.49,53,6.49]],["toc//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[9,0.065,16,2.423,17,1.889,18,1.901,29,1.222,32,5.188,33,3.408,48,8.98,49,1.65]],["deprecated//docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/",[]],["title//docs/development/go/install-go-on-ubuntu/",[9,0.063,11,0.858,54,4.882]],["keywords//docs/development/go/install-go-on-ubuntu/",[11,0.766,54,4.362,55,7.049,56,5.847]],["toc//docs/development/go/install-go-on-ubuntu/",[9,0.087,54,6.692,57,5.263,58,7.593,59,5.979,60,2.643]],["deprecated//docs/development/go/install-go-on-ubuntu/",[]],["title//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.058,11,0.785,50,5.993,61,1.298]],["keywords//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[50,5.847,51,4.189,52,6.49,53,6.49]],["toc//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[9,0.062,11,0.845,48,6.755,50,8.332,61,1.398,62,3.8,63,5.319,64,3.017,65,2.351,66,7.777,67,7.161,68,5.684]],["deprecated//docs/development/r/how-to-install-r-on-ubuntu-and-debian/",[]],["title//docs/platform/meltdown_statement/",[69,5.768,70,7.224,71,6.274,72,6.274]],["keywords//docs/platform/meltdown_statement/",[71,6.122,72,6.122,73,5.289,74,3.471]],["toc//docs/platform/meltdown_statement/",[45,1.798,69,3.222,71,5.457,72,3.505,73,3.028,74,3.8,75,4.036,76,4.036,77,7.223,78,4.036,79,4.036,80,1.671,81,4.036,82,4.036,83,6.283,84,3.028,85,4.484,86,4.592,87,6.283,88,2.88,89,2.886,90,1.216,91,6.283,92,3.505,93,4.036,94,4.036,95,4.592,96,2.02,97,3.716,98,2.817,99,2.238,100,2.315,101,1.913,102,3.028,103,3.505,104,4.036,105,4.036]],["deprecated//docs/platform/meltdown_statement/",[]],["title//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[9,0.058,14,1.016,106,4.847,107,4.093]],["keywords//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[106,4.019,107,3.394,108,4.378,109,4.181,110,3.559,111,5.99]],["toc//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[9,0.049,12,3.13,17,1.427,18,1.436,106,7.172,107,6.597,112,2.227,113,5.34,114,4.909,115,6.149,116,6.149,117,6.149,118,7.45,119,2.147,120,4.494,121,3.805]],["deprecated//docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/",[]],["title//docs/development/python/install_python_miniconda/",[9,0.058,39,2.877,122,5.58,123,6.651]],["keywords//docs/development/python/install_python_miniconda/",[123,7.12,124,7.733,125,7.733]],["toc//docs/development/python/install_python_miniconda/",[]],["deprecated//docs/development/python/install_python_miniconda/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[9,0.058,11,0.785,61,1.298,106,4.847]],["keywords//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[106,4.346,126,5.625,127,2.077,128,5.963,129,1.819]],["toc//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/",[]],["title//docs/databases/elasticsearch/install_elasticsearch_centos/",[9,0.05,106,4.147,127,1.982,129,1.736,130,6.181,131,6.181]],["keywords//docs/databases/elasticsearch/install_elasticsearch_centos/",[106,4.346,126,5.625,127,2.077,128,5.963,129,1.819]],["toc//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["deprecated//docs/databases/elasticsearch/install_elasticsearch_centos/",[]],["title//docs/applications/containers/install_docker_ce/",[9,0.063,132,3.426,133,6.095]],["keywords//docs/applications/containers/install_docker_ce/",[132,3.358,134,4.118,135,7.733]],["toc//docs/applications/containers/install_docker_ce/",[]],["deprecated//docs/applications/containers/install_docker_ce/",[]],["title//docs/applications/containers/install_docker_compose/",[9,0.063,132,3.426,136,5.766]],["keywords//docs/applications/containers/install_docker_compose/",[132,3.358,134,4.118,137,7.733]],["toc//docs/applications/containers/install_docker_compose/",[]],["deprecated//docs/applications/containers/install_docker_compose/",[]],["title//docs/development/version-control/how-to-install-git-linux/",[9,0.063,138,4.051,139,2.461]],["keywords//docs/development/version-control/how-to-install-git-linux/",[138,3.971,139,2.412,140,4.595]],["toc//docs/development/version-control/how-to-install-git-linux/",[]],["deprecated//docs/development/version-control/how-to-install-git-linux/",[]],["title//docs/development/version-control/how-to-install-git-mac/",[9,0.063,138,4.051,141,4.575]],["keywords//docs/development/version-control/how-to-install-git-mac/",[138,3.971,140,4.595,141,4.483]],["toc//docs/development/version-control/how-to-install-git-mac/",[9,0.094,65,2.351,138,5.713,142,7.209,143,7.161,144,7.161]],["deprecated//docs/development/version-control/how-to-install-git-mac/",[]],["title//docs/development/version-control/how-to-install-git-windows/",[9,0.063,138,4.051,145,4.016]],["keywords//docs/development/version-control/how-to-install-git-windows/",[138,3.971,140,4.595,145,3.936]],["toc//docs/development/version-control/how-to-install-git-windows/",[]],["deprecated//docs/development/version-control/how-to-install-git-windows/",[]],["title//docs/development/introduction-to-websockets/",[146,5.1,147,7.21]],["keywords//docs/development/introduction-to-websockets/",[147,5.847,148,4.646,149,7.049,150,7.049]],["toc//docs/development/introduction-to-websockets/",[0,1.408,49,1.118,147,10.426,151,4.616,152,7.004,153,3.023,154,5.255,155,5.81,156,6.449,157,6.449,158,3.506]],["deprecated//docs/development/introduction-to-websockets/",[]],["title//docs/applications/containers/deploying-microservices-with-docker/",[47,2.779,132,3.426,159,6.853]],["keywords//docs/applications/containers/deploying-microservices-with-docker/",[30,2.404,31,1.084,132,2.419,159,4.839,160,4.839,161,5.13,162,2.939]],["toc//docs/applications/containers/deploying-microservices-with-docker/",[9,0.071,14,0.912,17,1.506,18,1.516,30,2.8,31,1.262,60,1.962,112,2.35,132,4.413,134,3.456,136,6.507,159,7.732,163,3.636,164,1.855,165,5.012,166,5.012,167,4.742]],["deprecated//docs/applications/containers/deploying-microservices-with-docker/",[]],["title//docs/applications/containers/how-to-use-docker-compose/",[14,1.109,132,3.426,136,5.766]],["keywords//docs/applications/containers/how-to-use-docker-compose/",[132,3.718,136,6.258]],["toc//docs/applications/containers/how-to-use-docker-compose/",[9,0.063,17,1.272,18,1.28,24,2.425,31,1.066,38,1.939,42,3.073,45,2.441,46,2.409,132,4.026,133,4.233,136,6.776,168,4.005,169,1.682,170,3.825,171,2.814,172,2.137,173,5.045,174,4.759,175,3.91,176,3.254,177,2.507,178,3.391,179,3.391]],["deprecated//docs/applications/containers/how-to-use-docker-compose/",[]],["title//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[169,2.218,180,7.224,181,5.993,182,6.274]],["keywords//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[39,3.079,182,6.716,183,7.733]],["toc//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[9,0.065,14,1.137,39,2.252,90,1.703,129,1.588,142,3.665,169,1.736,182,9.462,184,5.655,185,4.912,186,9.437,187,4.441,188,5.655,189,2.93,190,5.655,191,3.727,192,5.655,193,3.795,194,3.948,195,4.036]],["deprecated//docs/tools-reference/tools/faster-file-navigation-with-autojump/",[]],["title//docs/applications/containers/docker-container-communication/",[132,3.426,134,4.202,153,3.405]],["keywords//docs/applications/containers/docker-container-communication/",[5,1.717,132,3.061,134,3.754,196,7.049]],["toc//docs/applications/containers/docker-container-communication/",[0,1.084,5,1.314,9,0.063,14,0.759,16,1.607,17,1.252,18,1.26,19,2.847,29,0.811,30,2.328,35,0.307,121,3.339,132,4.376,133,4.168,134,5.367,136,3.943,153,3.966,172,2.104,197,3.766,198,3.85,199,3.766,200,3.057,201,1.39,202,3.206]],["deprecated//docs/applications/containers/docker-container-communication/",[]],["title//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[201,1.861,203,2.088,204,3.476,205,5.993]],["keywords//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[61,1.267,203,2.038,205,5.847,206,5.628]],["toc//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[16,1.684,17,1.313,18,1.321,29,0.85,35,0.321,120,5.909,129,1.588,142,5.239,158,2.831,175,4.036,201,2.431,203,3.15,204,3.89,206,7.535,207,2.369,208,3.204,209,3.135,210,2.623,211,5.207]],["deprecated//docs/uptime/monitoring/monitor-remote-hosts-with-icinga/",[]],["title//docs/web-servers/nginx/nginx-reverse-proxy/",[14,1.016,31,1.405,32,4.606,33,3.025]],["keywords//docs/web-servers/nginx/nginx-reverse-proxy/",[31,1.504,33,3.239,212,7.12]],["toc//docs/web-servers/nginx/nginx-reverse-proxy/",[0,1.571,9,0.063,17,1.252,18,1.26,31,1.05,32,4.984,33,3.274,35,0.307,39,3.113,49,1.248,60,1.631,200,3.057,201,1.39,213,3.496,214,4.686,215,2.874,216,3.556,217,2.485,218,4.686,219,4.168,220,2.874,221,4.476,222,3.85,223,3.62,224,4.476,225,3.206,226,4.968]],["deprecated//docs/web-servers/nginx/nginx-reverse-proxy/",[]],["title//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[5,1.759,15,4.349,16,2.151,30,3.117]],["keywords//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.19,30,2.585,227,3.881,228,5.99,229,5.99,230,5.99]],["toc//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[2,3.806,5,2.6,17,1.659,18,1.669,20,4.194,21,4.143,45,3.183,46,3.142,204,3.438,231,4.631,232,4.795,233,5.1,234,7.146,235,4.989,236,5.1]],["deprecated//docs/databases/postgresql/how-to-back-up-your-postgresql-database/",[]],["title//docs/security/encrypt-data-disk-with-dm-crypt/",[24,3.197,237,4.47,238,6.651,239,6.651]],["keywords//docs/security/encrypt-data-disk-with-dm-crypt/",[237,5.827,240,7.049,241,5.628]],["toc//docs/security/encrypt-data-disk-with-dm-crypt/",[2,2.747,8,3.601,14,1.064,17,1.197,18,1.205,90,1.554,169,1.584,221,4.279,237,3.192,238,9.084,239,9.084,241,8.387,242,3.985,243,5.159,244,2.626,245,4.75,246,7.565,247,4.75,248,4.48,249,3.681,250,3.985,251,2.376,252,3.77]],["deprecated//docs/security/encrypt-data-disk-with-dm-crypt/",[]],["title//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[129,1.736,169,1.898,207,2.589,253,3.324,254,5.127,255,5.368]],["keywords//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[255,6.716,256,4.785,257,7.733]],["toc//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[3,3.817,5,1.641,9,0.089,17,1.564,18,1.574,49,1.458,54,4.169,164,1.926,255,5.851,258,0.928,259,1.729,260,6.737,261,2.498,262,3.02,263,4.169,264,4.607]],["deprecated//docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/",[]],["title//docs/development/use-a-linode-for-web-development-on-remote-devices/",[14,0.869,34,4.314,89,1.89,164,1.767,204,2.974,265,3.627]],["keywords//docs/development/use-a-linode-for-web-development-on-remote-devices/",[34,4.181,89,1.832,132,2.601,134,3.19,204,2.882,266,5.515]],["toc//docs/development/use-a-linode-for-web-development-on-remote-devices/",[9,0.067,14,1.17,16,1.357,29,0.685,31,0.887,34,3.182,45,2.03,46,2.004,89,1.394,90,1.373,132,1.979,134,4.433,153,2.977,163,5.201,169,1.4,187,2.145,201,1.174,204,4.004,215,2.428,224,3.781,265,4.884,266,6.352,267,4.558,268,4.558,269,3.959,270,4.558,271,3.781,272,4.558,273,2.428,274,4.558]],["deprecated//docs/development/use-a-linode-for-web-development-on-remote-devices/",[]],["title//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[14,0.714,31,0.988,49,0.811,108,3.713,129,1.427,164,1.453,203,1.469,207,2.128,275,2.911]],["keywords//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[31,1.084,129,1.565,164,1.593,275,3.193,276,5.571,277,5.571,278,5.571]],["toc//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[0,1.068,9,0.073,14,0.747,17,1.234,18,1.241,28,4.243,31,1.034,35,0.302,106,5.187,108,5.65,275,5.222,279,4.408,280,2.83,281,4.105,282,2.448,283,3.792,284,9.112,285,9.112,286,6.413,287,4.243,288,5.314,289,4.243,290,3.884]],["deprecated//docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/",[]],["title//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[291,6.274,292,3.677,293,6.651,294,6.651]],["keywords//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[24,2.866,39,2.579,291,5.625,295,6.476,296,6.476]],["toc//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[9,0.068,16,1.412,21,2.749,24,2.099,29,0.712,39,1.889,59,3.243,156,4.366,164,1.356,171,2.435,176,1.952,261,1.759,262,2.126,291,4.119,293,7.849,294,8.718,297,2.112,298,4.742,299,3.558,300,5.674,301,4.742,302,2.657,303,3.663,304,3.934,305,4.742,306,2.783,307,3.125,308,7.107,309,4.742,310,4.366,311,4.742,312,2.818,313,3.663]],["deprecated//docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/",[]],["title//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[9,0.053,61,1.197,63,4.556,203,1.926,206,5.319]],["keywords//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[61,1.267,203,2.038,205,5.847,206,5.628]],["toc//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[0,0.979,5,1.187,9,0.058,14,0.685,17,1.131,18,1.138,35,0.412,142,4.7,164,2.477,205,4.043,206,8.192,211,4.487,217,3.341,314,4.873,315,4.487,316,3.402,317,3.891,318,4.706,319,1.195,320,2.481,321,3.562,322,3.402,323,4.867,324,3.06,325,2.345,326,2.974,327,1.781]],["deprecated//docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/",[]],["title//docs/databases/postgresql/configure-postgresql/",[30,3.751,35,0.494]],["keywords//docs/databases/postgresql/configure-postgresql/",[5,1.357,30,2.404,227,3.61,328,2.45,329,5.571,330,5.571,331,5.571]],["toc//docs/databases/postgresql/configure-postgresql/",[5,1.552,17,1.479,18,1.488,30,3.794,35,0.5,119,3.069,169,1.956,194,4.447,227,4.128,324,4.001,332,4.199,333,6.371,334,3.682,335,3.942,336,3.361,337,6.371,338,6.371,339,1.758,340,6.371]],["deprecated//docs/databases/postgresql/configure-postgresql/",[]],["title//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.085,11,0.587,33,2.262,49,0.862,129,1.517,207,2.262,341,5.401,342,4.691]],["keywords//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[11,0.651,33,2.509,129,1.682,342,5.202,343,5.99,344,5.99]],["toc//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[0,1.022,9,0.071,17,1.18,18,1.188,35,0.289,41,3.628,42,1.685,49,1.195,54,3.146,64,1.972,141,2.948,145,2.588,158,4.904,191,3.351,264,3.477,297,2.265,325,2.446,342,9.808,345,2.236,346,4.059,347,5.084,348,4.681,349,3.477,350,2.948,351,3.061]],["deprecated//docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/",[]],["title//docs/development/monitor-filesystem-events-with-pyinotify/",[154,5.42,203,2.088,352,5.155,353,6.274]],["keywords//docs/development/monitor-filesystem-events-with-pyinotify/",[39,2.579,203,1.872,353,5.625,354,6.476,355,6.476]],["toc//docs/development/monitor-filesystem-events-with-pyinotify/",[0,1.931,9,0.066,16,1.74,29,0.878,39,2.327,40,2.365,60,1.767,80,2.419,90,1.76,118,5.075,122,4.514,154,6.209,176,2.405,216,3.851,352,4.169,353,5.075,356,3.786,357,9.609,358,5.843,359,4.169,360,4.079,361,5.843]],["deprecated//docs/development/monitor-filesystem-events-with-pyinotify/",[]],["title//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[14,1.016,362,6.274,363,4.847,364,6.651]],["keywords//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[114,4.448,362,4.839,363,3.738,364,5.13,365,4.839,366,5.13,367,3.975]],["toc//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[0,1.304,9,0.052,35,0.369,90,3.061,114,5.18,145,3.303,169,1.992,362,10.725,365,5.635,366,5.974,367,6.353,368,2.766]],["deprecated//docs/networking/ssh/persistent-terminal-sessions-with-tmux/",[]],["title//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[14,0.869,24,2.735,369,5.368,370,4.935,371,5.691,372,5.368]],["keywords//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[39,2.579,369,5.625,373,5.963,374,5.963,375,6.476]],["toc//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[0,0.759,9,0.067,14,0.531,17,0.877,18,0.882,29,1.11,39,1.504,61,0.679,63,2.583,80,1.563,85,2.695,122,2.917,129,1.061,140,2.244,163,3.342,176,1.555,203,1.092,207,1.582,217,1.74,220,2.011,273,2.011,304,3.133,307,2.489,339,2.039,368,1.61,369,7.293,373,3.477,374,6.806,376,3.477,377,2.636,378,3.777,379,1.038,380,3.865,381,2.073,382,2.447,383,3.777,384,3.777,385,0.545,386,3.477,387,2.76,388,2.19,389,2.273,390,2.273,391,1.79,392,2.695,393,2.636]],["deprecated//docs/development/python/use-scrapy-to-extract-data-from-html-tags/",[]],["title//docs/development/python/task-queue-celery-rabbitmq/",[16,1.841,29,0.929,236,4.41,394,5.691,395,5.368,396,5.691]],["keywords//docs/development/python/task-queue-celery-rabbitmq/",[39,2.579,236,4.621,328,2.848,395,5.625,397,6.476]],["toc//docs/development/python/task-queue-celery-rabbitmq/",[9,0.084,17,1.197,18,1.205,39,3.013,80,3.708,122,3.985,163,4.239,172,2.011,203,2.187,236,3.681,307,3.4,328,3.326,339,1.423,376,4.75,379,1.418,395,9.124,396,4.75,398,6.04,399,3.681,400,5.159,401,5.159]],["deprecated//docs/development/python/task-queue-celery-rabbitmq/",[]],["title//docs/applications/containers/how-to-deploy-apps-with-rancher/",[47,2.779,200,4.47,402,6.853]],["keywords//docs/applications/containers/how-to-deploy-apps-with-rancher/",[132,3.061,134,3.754,402,6.122,403,5.847]],["toc//docs/applications/containers/how-to-deploy-apps-with-rancher/",[9,0.081,42,2.151,47,2.286,112,2.35,132,2.817,133,5.012,163,3.636,176,2.671,200,3.676,201,1.671,402,9.5,404,4.438,405,3.959,406,5.012,407,4.529,408,5.974,409,4.868]],["deprecated//docs/applications/containers/how-to-deploy-apps-with-rancher/",[]],["title//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.05,31,1.202,35,0.351,47,2.177,328,2.718,403,5.127]],["keywords//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[31,1.26,47,2.281,132,2.812,134,3.449,403,5.372]],["toc//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[9,0.069,17,1.116,18,1.123,29,0.722,31,0.935,35,0.273,47,1.693,89,2.196,112,1.741,132,3.117,176,1.979,201,1.238,208,4.869,209,3.98,252,3.513,328,3.157,403,9.457,410,3.065,411,2.611,412,1.766,413,3.987,414,4.807,415,4.807,416,4.807,417,3.065]],["deprecated//docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/",[]],["title//docs/applications/containers/when-and-why-to-use-docker/",[14,1.222,132,3.774]],["keywords//docs/applications/containers/when-and-why-to-use-docker/",[132,3.358,134,4.118,418,7.733]],["toc//docs/applications/containers/when-and-why-to-use-docker/",[14,1.544,121,5.547,132,5.157,419,7.436]],["deprecated//docs/applications/containers/when-and-why-to-use-docker/",[]],["title//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[14,0.869,68,4.517,256,3.825,258,0.851,379,1.699,420,5.691]],["keywords//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[421,4.839,422,5.571,423,5.571,424,4.072,425,5.571,426,5.571,427,5.571]],["toc//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[4,1.654,9,0.061,49,1.214,89,2.327,96,3.809,132,3.304,153,3.284,336,4.015,420,10.137,424,5.561,428,4.581,429,6.075]],["deprecated//docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/",[]],["title//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[11,0.785,20,4.239,171,3.709,430,6.274]],["keywords//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[20,4.137,430,6.122,431,6.49,432,7.049]],["toc//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[9,0.043,16,0.997,17,0.777,18,0.782,19,1.765,20,1.964,28,2.672,29,0.503,35,0.19,40,1.355,47,1.179,59,2.289,60,1.637,80,1.385,107,1.896,120,2.446,170,2.336,171,1.718,172,2.111,220,1.782,248,2.906,302,1.875,307,2.205,312,1.988,313,2.585,332,2.205,381,1.163,430,7.475,431,7.215,433,3.346,434,3.346,435,3.141,436,2.906,437,2.071,438,5.415,439,5.415,440,3.346,441,3.346,442,2.585,443,3.081,444,2.776,445,2.101,446,3.346,447,8.606,448,3.346,449,2.776,450,3.346,451,5.415,452,3.346,453,3.346,454,2.776,455,3.346,456,3.346,457,3.346]],["deprecated//docs/development/ci/automate-builds-with-jenkins-on-ubuntu/",[]],["title//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[11,0.724,16,1.984,29,1.001,458,5.526,459,3.451]],["keywords//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[458,7.104,459,4.436]],["toc//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[9,0.051,16,1.897,29,0.957,35,0.362,42,2.112,45,2.838,46,2.801,49,1.403,60,1.926,74,3.138,80,2.638,100,1.912,153,3.794,158,4.401,325,3.065,326,3.887,458,9.003]],["deprecated//docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/",[]],["title//docs/applications/project-management/jupyter-nobook-on-jekyll/",[460,6.651,461,5.768,462,5.993,463,6.274]],["keywords//docs/applications/project-management/jupyter-nobook-on-jekyll/",[39,2.807,461,5.628,463,6.122,464,3.685]],["toc//docs/applications/project-management/jupyter-nobook-on-jekyll/",[0,1.174,9,0.047,14,0.821,17,1.356,18,1.365,35,0.332,96,2.925,169,1.794,176,2.405,404,3.996,407,4.079,461,6.607,462,6.865,463,7.188,464,3.054,465,5.075,466,4.982,467,5.843,468,3.851,469,5.843,470,3.274,471,5.843,472,2.811,473,5.843]],["deprecated//docs/applications/project-management/jupyter-nobook-on-jekyll/",[]],["title//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[14,0.937,47,2.347,172,2.597,265,3.909,474,5.786]],["keywords//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[132,3.358,265,4.538,474,6.716]],["toc//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[16,2.138,17,1.116,18,1.123,19,5.851,29,1.079,35,0.408,45,2.141,46,2.114,56,3.987,80,1.99,140,2.856,167,3.513,172,3.351,176,1.979,474,8.86,475,4.807,476,2.278,477,2.723,478,4.807,479,4.807,480,7.18,481,3.168,482,5.123,483,4.807]],["deprecated//docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/",[]],["title//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[14,0.937,89,2.038,163,3.733,269,5.786,484,5.786]],["keywords//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[89,2.156,98,4.921,107,3.994,484,6.122]],["toc//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[9,0.069,11,0.523,17,1.116,18,1.123,19,2.536,35,0.542,38,2.541,47,1.693,49,1.372,56,3.987,57,2.894,60,1.453,62,2.349,89,2.915,90,1.448,98,5.012,107,2.723,171,2.468,202,2.856,235,3.355,262,3.219,442,3.713,484,7.464,485,3.018,486,4.175,487,2.894]],["deprecated//docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/",[]],["title//docs/quick-answers/linode-platform/add-caa-dns-records/",[89,2.038,90,2.007,176,2.742,488,5.526,489,4.065]],["keywords//docs/quick-answers/linode-platform/add-caa-dns-records/",[391,3.07,488,5.372,489,3.952,490,2.292,491,4.859]],["toc//docs/quick-answers/linode-platform/add-caa-dns-records/",[176,4.452,189,4.529,235,6.102,488,8.972,489,6.599]],["deprecated//docs/quick-answers/linode-platform/add-caa-dns-records/",[]],["title//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[492,6.545,493,7.89,494,6.095]],["keywords//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[73,4.859,492,5.372,494,5.003,495,6.476,496,6.476]],["toc//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[9,0.072,17,2.081,18,2.094,146,5.261,339,2.473,492,7.436,494,6.925]],["deprecated//docs/security/vulnerabilities/scanning-your-linode-for-malware/",[]],["title//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[14,1.016,316,5.043,497,5.58,498,5.42]],["keywords//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[497,5.973,499,6.174,500,5.802]],["toc//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[9,0.065,17,1.889,18,1.901,35,0.588,203,2.352,316,5.68,381,2.828,428,4.898,497,6.285,498,6.104]],["deprecated//docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/",[]],["title//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[11,0.785,14,1.016,62,3.53,501,6.274]],["keywords//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[501,4.523,502,4.794,503,5.207,504,4.157,505,5.207,506,4.157,507,4.794,508,4.022]],["toc//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[0,0.953,9,0.038,16,1.412,17,1.101,18,1.108,24,2.099,216,3.125,235,3.31,244,2.414,317,3.786,377,3.31,435,2.184,442,3.663,501,9.589,504,3.786,506,5.674,507,7.849,508,7.834,509,4.742,510,4.742,511,8.524,512,8.524,513,4.742,514,4.366,515,4.742]],["deprecated//docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[14,0.759,35,0.307,242,4.172,256,4.84,269,4.691,339,1.49,516,3.559]],["keywords//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[516,5.096,517,7.12,518,7.733]],["toc//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[0,1.435,9,0.029,14,0.504,16,1.704,17,0.832,18,0.837,29,0.86,35,0.463,40,1.451,89,1.096,90,1.08,96,1.794,142,2.323,163,2.009,169,1.757,193,2.405,242,5.517,256,6.772,318,1.947,381,1.246,385,0.517,470,2.009,485,2.251,516,6.824,519,3.113,520,5.323,521,2.158,522,2.286,523,2.769,524,3.113,525,2.323,526,3.3,527,2.558,528,3.3,529,3.584]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/",[]],["title//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[24,2.735,256,3.825,530,4.637,531,3.771,532,5.691,533,5.691]],["keywords//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[179,3.447,237,3.447,352,3.975,504,4.448,531,3.399,534,5.571,535,4.448]],["toc//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[9,0.034,14,0.925,16,1.959,17,0.994,18,1,29,0.988,35,0.243,45,1.907,46,1.882,49,0.683,89,1.309,90,1.29,158,2.143,164,1.224,176,1.762,179,4.07,208,3.726,215,2.28,261,1.588,312,2.544,318,3.572,368,1.825,377,2.989,389,2.577,532,9.424,533,8.273,536,6.577,537,2.774,538,6.577,539,3.551,540,3.551,541,6.577,542,3.718]],["deprecated//docs/applications/cloud-storage/tahoe-lafs-on-debian-9/",[]],["title//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[16,1.513,29,0.763,89,1.554,189,2.632,235,3.546,258,0.7,381,1.766,543,2.847,544,2.706]],["keywords//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[545,6.122,546,6.122,547,7.049,548,6.122]],["toc//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[9,0.062,17,1.805,18,1.817,35,0.571,189,4.029,201,2.003,258,1.071,379,2.138,520,4.358,543,6.235]],["deprecated//docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/",[]],["title//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.043,35,0.307,328,2.375,381,1.877,549,4.691,550,4.312,551,4.312,552,4.312]],["keywords//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[549,6.122,551,5.628,552,5.628,553,6.122]],["toc//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[9,0.032,17,0.916,18,0.922,35,0.489,45,1.757,54,2.442,64,1.531,134,2.101,158,3.09,172,2.965,203,1.141,209,2.188,247,4.775,328,3.344,332,2.6,381,1.371,382,2.557,411,5.071,535,3.15,549,9.56,552,6.071,554,3.427,555,7.471,556,3.633,557,3.633,558,2.754,559,3.633,560,3.946,561,3.273,562,2.044]],["deprecated//docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/",[]],["title//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[49,0.862,108,3.947,129,1.517,207,2.262,275,3.095,287,4.312,319,1.324,563,4.973]],["keywords//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[564,6.415,565,7.12,566,7.733]],["toc//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[9,0.08,16,1.188,17,0.926,18,0.932,29,0.599,31,0.776,32,3.971,33,2.608,35,0.354,49,0.637,54,2.469,90,1.202,100,1.197,106,5.14,108,4.552,151,2.63,153,1.722,176,1.643,191,2.63,201,1.028,258,0.55,264,2.729,275,4.389,286,7.786,339,1.101,350,2.314,490,1.412,491,4.673,563,7.968,564,3.31,567,3.99,568,3.99,569,3.99,570,5.409]],["deprecated//docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/",[]],["title//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[9,0.046,16,1.717,29,0.866,122,4.453,208,3.266,328,2.535,551,4.602]],["keywords//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[551,6.174,552,6.174,553,6.716]],["toc//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[0,0.594,17,0.686,18,0.69,24,1.307,29,1.21,35,0.493,45,1.316,46,1.299,58,2.565,59,2.02,64,1.146,80,2.024,101,1.4,119,1.031,163,1.655,169,1.501,201,0.761,203,1.808,208,4.119,209,1.637,213,1.914,251,1.36,328,2.15,336,1.558,339,0.815,381,1.699,411,2.655,417,1.883,486,2.565,523,2.282,551,5.805,552,6.93,553,7.539,554,2.565,555,4.246,561,2.45,571,4.246,572,2.45,573,2.108,574,2.954,575,2.954,576,3.222,577,2.45,578,2.719,579,2.719,580,2.565,581,2.45,582,2.45,583,3.07,584,2.565,585,2.954]],["deprecated//docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/",[]],["title//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[165,5.146,586,5.526,587,4.183,588,5.319,589,6.134]],["keywords//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[39,2.219,160,4.839,590,5.571,591,5.13,592,5.13,593,5.571,594,5.571]],["toc//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[0,1.137,5,1.377,9,0.045,16,2.408,17,1.313,18,1.321,29,1.215,39,2.252,45,2.519,46,2.487,60,1.71,112,2.048,151,6.22,160,7.023,163,3.169,201,1.457,379,2.223,588,4.515,589,7.445,592,5.207,595,5.655,596,5.655,597,3.5]],["deprecated//docs/applications/big-data/how-to-move-machine-learning-model-to-production/",[]],["title//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[14,0.937,20,3.909,598,5.786,599,6.134,600,6.134]],["keywords//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[20,4.137,197,4.921,598,6.122,601,7.049]],["toc//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[0,1.466,9,0.077,17,1.693,18,1.704,20,5.653,21,4.229,40,3.899,176,3.003,197,5.092,381,3.348,576,4.807,598,6.335]],["deprecated//docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/",[]],["title//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[4,1.344,14,0.869,35,0.351,49,0.986,132,2.684,602,4.774]],["keywords//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[132,3.358,356,5.011,602,5.973]],["toc//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[2,4.938,4,1.191,5,1.334,9,0.044,17,1.272,18,1.28,24,2.425,35,0.527,42,1.816,49,1.48,60,1.657,65,1.657,132,3.432,136,4.005,297,2.441,325,3.803,602,7.841,603,4.375,604,5.045,605,4.233,606,5.48]],["deprecated//docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/",[]],["title//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.053,107,3.774,607,5.786,608,5.146,609,5.319]],["keywords//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[107,3.394,607,5.202,608,4.627,610,4.181,611,4.782,612,5.515]],["toc//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[9,0.073,17,1.234,18,1.241,35,0.302,88,3.792,90,2.329,107,5.669,334,2.226,381,1.847,607,9.234,608,5.972,609,4.243,612,4.893,613,4.893,614,5.314,615,3.502,616,3.884,617,5.314,618,5.314,619,3.288,620,3.792,621,5.314,622,5.314]],["deprecated//docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/",[]],["title//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[35,0.411,459,3.742,623,4.761,624,7.224]],["keywords//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[319,2.099,459,4.436]],["toc//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[14,1.236,17,1.479,18,1.488,34,4.447,35,0.362,158,4.401,185,5.534,325,4.23,351,3.835,385,0.919,459,4.554,562,3.3,623,4.199,625,5.285,626,6.371,627,6.371,628,4.78,629,6.371,630,3.786]],["deprecated//docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/",[]],["title//docs/uptime/analytics/set-up-a-zipkin-server/",[16,2.151,29,1.085,49,1.153,602,5.58]],["keywords//docs/uptime/analytics/set-up-a-zipkin-server/",[356,5.549,602,6.615]],["toc//docs/uptime/analytics/set-up-a-zipkin-server/",[9,0.062,17,1.234,18,1.241,35,0.604,49,1.697,60,1.607,65,2.337,164,2.211,213,3.444,297,3.443,325,3.719,339,1.466,412,1.307,602,7.729,603,4.243,604,4.893,631,5.314,632,3.884]],["deprecated//docs/uptime/analytics/set-up-a-zipkin-server/",[]],["title//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[16,1.984,29,1.001,169,2.045,258,0.918,633,4.183]],["keywords//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[258,1.18,633,5.377]],["toc//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[0,1.28,17,1.479,18,1.488,29,0.957,146,3.739,187,2.998,303,4.922,304,5.285,327,2.329,360,4.447,521,3.835,558,4.447,633,6.321,634,7.636,635,5.908,636,4.275,637,6.371,638,4.546]],["deprecated//docs/web-servers/apache/how-to-set-up-htaccess-on-apache/",[]],["title//docs/applications/containers/how-to-install-openvz-on-debian-9/",[9,0.058,61,1.298,63,4.941,639,6.274]],["keywords//docs/applications/containers/how-to-install-openvz-on-debian-9/",[132,3.358,379,2.126,639,6.716]],["toc//docs/applications/containers/how-to-install-openvz-on-debian-9/",[0,0.84,9,0.033,17,0.97,18,0.976,35,0.448,41,2.983,47,1.472,54,2.586,64,1.621,65,1.264,74,2.058,134,4.201,176,1.721,245,5.944,264,2.859,271,5.356,282,1.925,334,1.75,351,2.516,390,3.887,582,3.467,639,8.329,640,2.918,641,5.607,642,6.456,643,3.467,644,5.944,645,2.805,646,3.848,647,3.136,648,4.18,649,2.484,650,6.544,651,3.06]],["deprecated//docs/applications/containers/how-to-install-openvz-on-debian-9/",[]],["title//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[225,4.293,635,4.239,652,4.536,653,7.224]],["keywords//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[225,5.596,654,7.518]],["toc//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[89,2.968,90,2.923,367,6.925,655,4.351]],["deprecated//docs/quick-answers/linode-platform/find-your-linodes-ip-address/",[]],["title//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[0,1.085,14,0.759,30,2.331,328,2.375,497,4.172,522,3.444,656,5.401,657,4.973]],["keywords//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[5,1.883,30,3.337,328,3.4]],["toc//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[9,0.086,17,1.453,18,1.462,30,3.747,35,0.567,45,2.787,46,2.752,60,1.892,84,4.695,85,4.466,497,6.708,542,5.435,657,7.995,658,8.683,659,3.507]],["deprecated//docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/",[]],["title//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[16,1.841,29,0.929,459,3.202,660,5.368,661,7.926]],["keywords//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[11,0.704,129,1.819,319,1.587,459,3.355,660,5.625]],["toc//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[0,1.817,9,0.035,11,0.471,14,0.609,17,1.006,18,1.012,35,0.377,38,1.534,40,1.754,47,1.527,60,1.31,62,2.118,88,3.093,169,2.477,187,2.039,201,1.116,202,2.575,208,3.761,256,2.682,385,0.625,435,1.996,459,4.685,476,2.054,625,3.595,659,2.429,660,9.297,662,1.815,663,3.99,664,4.334,665,3.093,666,4.334,667,4.334,668,4.334]],["deprecated//docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/",[]],["title//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.242,89,1.89,90,1.862,132,2.684,208,3.502,669,5.368]],["keywords//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[132,2.812,134,3.449,670,6.476,671,6.476,672,6.476]],["toc//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[0,1.563,17,1.805,18,1.817,42,2.578,47,2.74,90,3.025,132,4.361,208,4.406,669,8.724,673,6.451]],["deprecated//docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/",[]],["title//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[14,0.759,20,3.169,49,0.862,89,1.652,164,1.544,674,4.691,675,4.973,676,4.973]],["keywords//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[259,1.255,543,2.739,674,4.245,677,4.245,678,4.888,679,2.982,680,2.943,681,3.572,682,4.888]],["toc//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[0,1.215,17,1.403,18,1.412,42,2.003,47,2.129,49,0.965,89,1.848,151,3.983,176,3.489,251,2.784,282,2.784,345,2.657,391,4.017,476,2.864,674,5.249,675,7.803,683,4.417,684,4.513,685,4.077,686,5.013,687,2.263]],["deprecated//docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/",[]],["title//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[14,0.674,49,0.765,61,0.862,108,3.505,164,1.371,258,0.661,275,2.748,280,2.554,287,3.829,688,2.109]],["keywords//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[106,3.738,126,4.839,286,4.621,565,5.13,570,4.839,689,5.13,690,4.448]],["toc//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[9,0.074,17,1.252,18,1.26,22,3.292,24,3.459,35,0.307,106,5.245,108,7.365,109,3.766,275,5.267,279,4.476,280,2.874,282,2.485,286,6.484,289,4.308,290,3.943,570,6.789,688,3.437,691,4.168,692,6.789]],["deprecated//docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/",[]],["title//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[0,1.339,39,2.653,65,2.014,282,3.069,531,4.065]],["keywords//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[39,2.579,693,6.476,694,6.476,695,5.625,696,6.476]],["toc//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[9,0.053,14,0.929,17,1.534,18,1.544,39,3.591,49,1.055,64,2.564,65,2.726,90,1.991,158,3.309,204,3.18,258,0.911,304,5.483,336,3.487,697,6.61,698,6.61,699,6.61,700,4.717,701,6.61]],["deprecated//docs/applications/project-management/how-to-create-a-private-python-package-repository/",[]],["title//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.053,35,0.379,61,1.197,63,4.556,702,6.662]],["keywords//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[703,7.12,704,7.733,705,7.733]],["toc//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[9,0.09,12,3.496,17,1.594,18,1.604,35,0.526,45,3.059,46,3.02,49,1.096,106,4.608,651,2.664,703,9.636,706,2.061,707,3.255]],["deprecated//docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/",[]],["title//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[9,0.053,11,0.724,35,0.379,62,3.255,708,4.065]],["keywords//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[11,0.841,31,1.504,708,4.718]],["toc//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[4,1.493,9,0.094,17,1.594,18,1.604,31,1.336,35,0.39,45,3.059,46,3.02,297,3.059,464,3.59,609,5.483,708,6.386,709,3.891]],["deprecated//docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/",[]],["title//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.053,35,0.379,129,1.871,207,2.79,710,5.786]],["keywords//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[710,7.437,711,4.286]],["toc//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[9,0.064,17,1.846,18,1.858,35,0.452,42,2.636,164,2.274,176,3.274,327,2.907,710,8.85,712,3.917,713,7.953]],["deprecated//docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/",[]],["title//docs/networking/dns/using-your-systems-hosts-file/",[14,1.016,169,2.218,201,1.861,714,7.224]],["keywords//docs/networking/dns/using-your-systems-hosts-file/",[201,1.816,412,1.733,715,7.049,716,6.49]],["toc//docs/networking/dns/using-your-systems-hosts-file/",[19,4.853,42,3.049,201,2.369,685,4.425,717,8.469,718,7.344]],["deprecated//docs/networking/dns/using-your-systems-hosts-file/",[]],["title//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[99,3.693,109,4.65,176,2.742,544,3.548,719,5.146]],["keywords//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[719,5.445,720,7.049,721,7.049,722,7.049]],["toc//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[0,1.304,9,0.071,12,3.303,17,1.506,18,1.516,54,4.015,64,2.517,258,0.894,264,4.438,319,1.59,325,3.122,326,3.959,638,6.353,651,2.517,719,8.449,723,5.162]],["deprecated//docs/websites/cms/add-a-custom-search-to-your-site-with-solr/",[]],["title//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,406,5.146,680,4.01]],["keywords//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[406,5.003,724,6.476,725,6.476,726,6.476,727,6.476]],["toc//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[4,1.586,9,0.096,17,1.693,18,1.704,31,1.419,88,5.205,197,5.092,406,7.441,482,5.205,659,4.088,728,6.051]],["deprecated//docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/",[]],["title//docs/networking/vpn/set-up-a-streisand-gateway/",[16,2.151,29,1.085,729,6.274,730,5.42]],["keywords//docs/networking/vpn/set-up-a-streisand-gateway/",[319,1.276,458,4.32,459,2.698,729,4.523,731,2.628,732,5.207,733,5.207,734,5.207]],["toc//docs/networking/vpn/set-up-a-streisand-gateway/",[9,0.078,14,1.047,17,1.729,18,1.74,45,3.318,46,3.275,153,3.214,297,3.318,381,2.589,459,3.859,729,8.482,730,5.588,735,6.179]],["deprecated//docs/networking/vpn/set-up-a-streisand-gateway/",[]],["title//docs/tools-reference/tools/how-to-install-midnight-commander/",[14,0.869,90,1.862,169,1.898,287,4.935,368,2.635,736,5.691]],["keywords//docs/tools-reference/tools/how-to-install-midnight-commander/",[737,7.049,738,7.049,739,7.049,740,7.049]],["toc//docs/tools-reference/tools/how-to-install-midnight-commander/",[9,0.052,14,1.252,17,1.506,18,1.516,121,4.015,146,3.808,169,1.992,187,3.053,202,3.856,368,3.795,409,4.868,435,2.989,736,8.197,741,5.974,742,4.276,743,5.974,744,4.015,745,5.382,746,5.635]],["deprecated//docs/tools-reference/tools/how-to-install-midnight-commander/",[]],["title//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.174,5,1.315,9,0.043,11,0.587,62,2.639,90,1.627,747,4.052,748,4.48]],["keywords//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,1.302,5,1.459,748,4.969,749,5.515,750,5.202,751,4.627]],["toc//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[4,2.07,9,0.083,17,1.334,18,1.343,35,0.541,65,1.738,163,3.221,174,4.992,176,2.366,262,2.577,428,3.46,747,8.225,748,6.785,752,5.748,753,4.101,754,5.748,755,3.788]],["deprecated//docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/",[]],["title//docs/applications/project-management/install-farmos/",[9,0.038,35,0.273,90,1.444,164,1.371,200,2.717,489,2.926,530,3.598,756,4.165,757,4.795,758,4.165]],["keywords//docs/applications/project-management/install-farmos/",[679,4.718,756,6.716,759,3.422]],["toc//docs/applications/project-management/install-farmos/",[4,1.385,9,0.051,17,1.479,18,1.488,35,0.362,45,2.838,46,2.801,119,2.224,151,4.199,176,2.623,251,2.935,259,1.636,349,4.357,391,3.02,659,3.57,685,3.065,756,9.426,760,6.371,761,3.189,762,4.199]],["deprecated//docs/applications/project-management/install-farmos/",[]],["title//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.339,132,2.893,372,5.786,470,3.733,700,4.754]],["keywords//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[470,4.799,763,8.563]],["toc//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[0,1.529,132,4.3,140,4.522,372,6.609,444,6.312,445,4.778,470,6.535,476,3.607,764,7.006,765,7.006]],["deprecated//docs/applications/containers/create-tag-and-upload-your-own-docker-image/",[]],["title//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[0,1.339,49,1.063,766,2.379,767,2.823,768,5.319]],["keywords//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[769,6.476,770,6.476,771,6.476,772,6.476,773,6.476]],["toc//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[9,0.081,11,0.705,17,1.506,18,1.516,35,0.369,46,2.853,49,1.036,121,4.015,176,2.671,321,4.742,391,3.075,409,4.868,489,3.959,685,3.122,767,2.75,768,5.18,774,3.597,775,6.488,776,2.442,777,5.974]],["deprecated//docs/email/how-to-create-an-email-server-with-mail-in-a-box/",[]],["title//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,778,6.274]],["keywords//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[680,4.655,778,6.716,779,5.398]],["toc//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[3,2.517,9,0.079,14,0.625,16,1.323,17,1.031,18,1.038,29,0.668,35,0.385,45,1.979,46,1.954,49,0.709,64,1.723,112,1.609,163,2.49,169,2.077,237,2.749,258,0.932,261,1.648,292,2.262,297,3.014,321,3.247,323,2.981,327,1.624,349,3.039,558,3.102,633,2.79,687,1.664,767,1.883,776,1.672,778,9.02,780,4.091,781,4.443,782,4.443,783,3.247]],["deprecated//docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/",[]],["title//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[14,0.81,202,3.425,319,1.413,336,3.041,382,3.735,784,4.602,785,4.453]],["keywords//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[655,2.904,784,5.171,786,5.963,787,6.476,788,6.476]],["toc//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[9,0.062,15,4.682,17,1.805,18,1.817,35,0.442,69,6.209,336,4.103,688,3.42,784,8.883,789,2.248,790,3.8]],["deprecated//docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/",[]],["title//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[9,0.041,32,3.239,33,2.128,49,0.811,89,1.554,258,0.7,461,4.056,462,4.214,791,5.08]],["keywords//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[147,5.847,687,2.64,792,7.049,793,7.049]],["toc//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[0,1.354,9,0.054,17,1.564,18,1.574,32,4.295,33,2.821,35,0.519,65,2.037,90,2.029,258,0.928,381,2.341,461,7.292,462,7.576,776,2.535,794,6.737,795,4.11,796,3.459]],["deprecated//docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/",[]],["title//docs/tools-reference/tools/introduction-to-vim-customization/",[99,4.374,146,4.63,608,6.095]],["keywords//docs/tools-reference/tools/introduction-to-vim-customization/",[608,6.615,611,6.837]],["toc//docs/tools-reference/tools/introduction-to-vim-customization/",[0,1.119,9,0.064,17,1.292,18,1.3,54,3.444,90,1.677,99,5.186,169,2.454,215,2.964,264,3.807,299,4.176,520,3.119,535,4.444,608,7.897,609,8.645,797,9.354,798,5.566,799,3.972]],["deprecated//docs/tools-reference/tools/introduction-to-vim-customization/",[]],["title//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[9,0.046,11,0.627,62,2.816,381,2.004,687,2.159,800,5.006,801,5.006]],["keywords//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[39,2.579,161,5.963,800,5.625,801,5.625,802,3.325]],["toc//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[0,1.304,5,1.58,9,0.071,16,1.932,17,1.506,18,1.516,29,0.975,35,0.369,45,2.89,46,2.853,47,2.286,297,2.89,477,3.676,687,2.43,800,9.955,801,5.635,803,4.438]],["deprecated//docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/",[]],["title//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.041,11,0.552,49,0.811,61,0.913,320,2.586,804,4.677,805,4.677,806,4.677,807,3.474]],["keywords//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[201,1.543,806,5.515,808,5.99,809,4.181,810,5.99,811,5.99]],["toc//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[9,0.041,14,0.725,17,1.197,18,1.205,35,0.293,40,2.088,49,1.752,99,2.86,148,3.4,242,5.844,320,4.56,381,2.629,583,3.239,742,4.986,804,8.248,805,8.248,809,3.601,812,3.77,813,4.279,814,4.48,815,3.985,816,5.159]],["deprecated//docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/",[]],["title//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.058,11,0.785,49,1.153,817,6.651]],["keywords//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[11,0.766,818,7.049,819,7.049,820,7.049]],["toc//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[9,0.072,17,1.534,18,1.544,45,2.944,46,2.907,194,6.294,297,2.944,817,6.086,821,9.017,822,9.017,823,9.017,824,9.017,825,9.017,826,6.61]],["deprecated//docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/",[]],["title//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[9,0.05,11,0.672,35,0.351,62,3.02,162,3.261,328,2.718]],["keywords//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[827,7.049,828,7.049,829,4.426,830,6.122]],["toc//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[0,1.194,9,0.048,14,0.835,35,0.338,40,2.405,89,1.817,153,2.564,162,3.135,176,3.447,208,3.366,209,5.376,251,2.737,328,2.612,417,6.714,464,3.106,571,5.16,572,4.929,830,5.16,831,5.941,832,5.16,833,5.941]],["deprecated//docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/",[]],["title//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.242,11,0.672,39,2.461,163,3.463,379,1.699,834,5.691]],["keywords//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[39,3.079,695,6.716,835,7.733]],["toc//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[0,1.812,9,0.053,17,1.534,18,1.544,39,4.087,96,3.309,122,5.106,163,6.177,187,3.11,379,2.479,695,5.741,836,4.831,837,4.831,838,6.61]],["deprecated//docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/",[839,0.476]],["title//docs/applications/containers/how-to-use-dockerfiles/",[14,1.222,840,6.352]],["keywords//docs/applications/containers/how-to-use-dockerfiles/",[132,3.358,134,4.118,840,5.651]],["toc//docs/applications/containers/how-to-use-dockerfiles/",[0,1.714,38,3.769,132,3.704,171,4.38,470,4.78,840,8.489]],["deprecated//docs/applications/containers/how-to-use-dockerfiles/",[]],["title//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.344,9,0.05,11,0.672,35,0.351,62,3.02,841,4.935]],["keywords//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,1.681,842,7.12,843,7.733]],["toc//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[4,2.474,5,1.74,9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,213,4.631,316,4.989,334,2.993,381,2.484,841,8.524]],["deprecated//docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/",[]],["title//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[9,0.053,11,0.724,35,0.379,62,3.255,844,5.146]],["keywords//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[844,5.973,845,7.733,846,7.733]],["toc//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[0,1.497,4,1.619,9,0.078,17,1.729,18,1.74,35,0.555,319,1.826,339,2.055,477,4.22,494,5.754,723,4.319,844,7.544]],["deprecated//docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.672,61,1.111,74,3.044,99,3.427,562,3.202,847,2.827]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[11,0.651,61,1.076,848,4.627,849,4.627,850,4.494,851,4.274]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[9,0.061,35,0.563,64,2.952,74,5.743,89,2.327,112,2.756,339,2.099,345,3.346,847,4.53]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/",[]],["title//docs/applications/configuration-management/configure-and-use-salt-ssh/",[14,0.869,35,0.351,89,1.89,90,1.862,516,4.073,655,2.771]],["keywords//docs/applications/configuration-management/configure-and-use-salt-ssh/",[516,5.096,517,7.12,852,7.733]],["toc//docs/applications/configuration-management/configure-and-use-salt-ssh/",[9,0.051,16,1.897,17,1.479,18,1.488,29,0.957,142,5.697,146,3.739,169,1.956,204,4.23,368,2.716,516,7.505,655,4.513,853,6.371,854,5.534,855,4.922]],["deprecated//docs/applications/configuration-management/configure-and-use-salt-ssh/",[]],["title//docs/security/getting-started-with-selinux/",[80,3.266,481,5.2,856,5.766]],["keywords//docs/security/getting-started-with-selinux/",[325,3.116,856,4.733,857,6.476,858,6.476,859,6.476]],["toc//docs/security/getting-started-with-selinux/",[9,0.064,17,1.846,18,1.858,45,3.542,46,3.497,247,4.994,856,8.666,860,7.953,861,7.953]],["deprecated//docs/security/getting-started-with-selinux/",[]],["title//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[31,1.296,47,2.347,89,2.038,132,2.893,134,3.548]],["keywords//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[132,3.061,134,3.754,840,5.152,862,7.049]],["toc//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[47,2.934,132,4.556,134,6.119,170,5.814,193,5.589,368,3.551,583,5.23]],["deprecated//docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/",[]],["title//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.053,35,0.379,381,2.315,382,4.317,863,5.786]],["keywords//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[863,5.202,864,5.99,865,5.99,866,4.494,867,5.99,868,5.99]],["toc//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[9,0.065,14,1.144,45,3.624,46,3.578,99,4.511,306,4.775,863,10.386,869,8.136]],["deprecated//docs/quick-answers/linux/how-to-install-configure-and-run-fish/",[]],["title//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.05,47,2.177,132,2.684,134,3.292,454,5.127,470,3.463]],["keywords//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[132,3.061,134,3.754,840,5.152,870,7.049]],["toc//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[9,0.057,17,1.659,18,1.669,31,1.39,54,4.422,80,2.959,132,4.636,327,2.612,454,5.928,470,5.325,530,5.362,652,4.487,871,7.146,872,6.58]],["deprecated//docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/",[]],["title//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.058,11,0.785,834,6.651,873,6.651]],["keywords//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[874,7.733,875,7.733,876,7.733]],["toc//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[9,0.053,17,1.534,18,1.544,45,2.944,46,2.907,88,4.717,90,1.991,176,2.721,236,8.232,287,5.278,390,3.979,873,9.449,877,5.741,878,6.61,879,5.106]],["deprecated//docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/",[839,0.476]],["title//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.063,11,0.858,856,5.766]],["keywords//docs/quick-answers/linux/install-selinux-on-ubuntu/",[139,2.02,856,4.733,880,5.963,881,6.476,882,5.372]],["toc//docs/quick-answers/linux/install-selinux-on-ubuntu/",[9,0.07,17,2.029,18,2.042,45,3.894,46,3.844,390,5.263,856,6.389,880,8.049]],["deprecated//docs/quick-answers/linux/install-selinux-on-ubuntu/",[]],["title//docs/applications/containers/introduction-to-docker/",[132,3.774,146,5.1]],["keywords//docs/applications/containers/introduction-to-docker/",[132,3.358,134,4.118,840,5.651]],["toc//docs/applications/containers/introduction-to-docker/",[45,3.894,46,3.844,132,5.099,470,4.899,669,7.593,840,6.389]],["deprecated//docs/applications/containers/introduction-to-docker/",[]],["title//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[9,0.05,61,1.111,203,1.787,280,3.292,662,2.589,883,5.368]],["keywords//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[883,6.122,884,7.049,885,4.495,886,6.122]],["toc//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[0,0.979,9,0.039,17,1.131,18,1.138,35,0.412,45,2.171,46,2.143,100,1.462,119,1.701,164,1.394,169,1.496,176,2.986,191,3.212,201,1.255,203,1.409,282,2.245,318,2.647,319,1.195,327,1.781,339,2.39,348,4.487,350,2.826,508,3.764,623,3.212,628,3.656,651,1.89,662,2.041,883,9.675,887,3.562,888,4.873]],["deprecated//docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/",[]],["title//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[11,0.494,16,1.352,29,0.682,62,2.219,129,1.275,165,3.508,207,1.902,208,2.573,328,1.997,872,4.181,889,3.508]],["keywords//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[5,1.459,889,4.627,890,5.99,891,4.181,892,4.494,893,3.023]],["toc//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[17,1.072,18,1.079,20,2.71,29,1.047,35,0.262,54,2.858,60,1.396,112,1.672,169,2.139,191,3.043,208,5.293,237,4.311,258,0.636,264,3.158,273,2.459,325,2.222,327,1.688,328,3.689,350,2.677,571,4.011,649,2.744,659,3.904,687,3.141,761,3.487,776,1.738,889,7.217,894,2.944,895,2.992,896,2.71]],["deprecated//docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/",[]],["title//docs/quick-answers/linux/how-to-change-selinux-modes/",[247,4.954,445,4.954,856,5.766]],["keywords//docs/quick-answers/linux/how-to-change-selinux-modes/",[856,7.012]],["toc//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["deprecated//docs/quick-answers/linux/how-to-change-selinux-modes/",[]],["title//docs/quick-answers/linux/how-to-use-git/",[14,0.937,138,3.421,140,3.959,339,1.838,476,3.158]],["keywords//docs/quick-answers/linux/how-to-use-git/",[139,2.198,897,7.049,898,5.847,899,7.049]],["toc//docs/quick-answers/linux/how-to-use-git/",[]],["deprecated//docs/quick-answers/linux/how-to-use-git/",[]],["title//docs/quick-answers/linux/how-to-use-wget/",[14,1.222,900,6.714]],["keywords//docs/quick-answers/linux/how-to-use-wget/",[139,2.198,900,5.445,901,5.847,902,5.03]],["toc//docs/quick-answers/linux/how-to-use-wget/",[14,1.328,64,3.664,169,2.9,900,7.296,903,9.445]],["deprecated//docs/quick-answers/linux/how-to-use-wget/",[]],["title//docs/platform/how-to-use-block-storage-with-your-linode/",[14,1.016,89,2.209,179,4.47,360,5.043]],["keywords//docs/platform/how-to-use-block-storage-with-your-linode/",[179,3.706,244,3.049,271,4.969,904,5.99,905,4.378,906,4.494]],["toc//docs/platform/how-to-use-block-storage-with-your-linode/",[28,4.589,54,3.557,89,2.912,176,3.92,179,6.419,193,3.857,264,3.931,271,9.724,360,7.242,365,4.992,521,3.46,906,4.312,907,5.748]],["deprecated//docs/platform/how-to-use-block-storage-with-your-linode/",[]],["title//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[9,0.058,35,0.411,89,2.209,908,6.274]],["keywords//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[908,6.122,909,5.847,910,6.122,911,4.921]],["toc//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[0,1.539,9,0.083,16,1.188,17,0.926,18,0.932,29,0.599,34,2.786,35,0.533,89,1.905,112,2.255,120,2.916,163,2.236,193,2.678,244,3.17,273,2.125,318,2.167,327,2.277,334,1.671,381,1.387,399,2.847,410,2.544,470,2.236,525,4.036,649,2.371,655,1.789,685,1.92,908,7.517,912,3.99,913,2.994,914,3.674,915,2.847,916,2.342,917,3.99,918,3.186,919,2.786,920,2.729]],["deprecated//docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/",[]],["title//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.046,11,0.627,129,1.619,207,2.414,258,0.794,889,4.453,921,5.764]],["keywords//docs/databases/cassandra/deploy-scalable-cassandra/",[5,1.459,889,4.627,891,4.181,893,3.023,922,5.99,923,5.99]],["toc//docs/databases/cassandra/deploy-scalable-cassandra/",[9,0.063,17,1.252,18,1.26,35,0.444,54,3.339,146,3.166,169,1.657,172,2.104,176,3.218,251,2.485,258,0.743,264,3.69,273,2.874,282,2.485,319,1.323,327,1.972,328,2.372,472,2.596,643,4.476,723,3.128,837,3.943,889,8.262,924,3.85,925,4.968,926,3.766,927,4.968]],["deprecated//docs/databases/cassandra/deploy-scalable-cassandra/",[]],["title//docs/platform/use-coreos-container-linux-on-linode/",[14,0.937,89,2.038,134,3.548,139,2.078,928,4.754]],["keywords//docs/platform/use-coreos-container-linux-on-linode/",[132,3.358,928,5.518,929,7.733]],["toc//docs/platform/use-coreos-container-linux-on-linode/",[29,0.993,34,4.614,35,0.376,95,4.831,100,1.983,134,5.465,139,3.2,247,4.151,360,4.614,525,4.283,649,3.928,688,2.907,877,5.741,930,6.61,931,5.278,932,5.741,933,4.717]],["deprecated//docs/platform/use-coreos-container-linux-on-linode/",[]],["title//docs/development/java/install-java-on-centos/",[9,0.058,12,3.677,129,2.029,207,3.025]],["keywords//docs/development/java/install-java-on-centos/",[13,5.372,129,2.497,934,6.476,935,5.963]],["toc//docs/development/java/install-java-on-centos/",[9,0.079,10,5.43,12,5.936,17,1.766,18,1.777,163,4.264,265,4.466,936,7.006,937,6.075,938,7.006]],["deprecated//docs/development/java/install-java-on-centos/",[]],["title//docs/development/java/install-java-on-debian/",[9,0.058,12,3.677,61,1.298,280,3.847]],["keywords//docs/development/java/install-java-on-debian/",[13,5.847,61,1.267,279,5.847,935,6.49]],["toc//docs/development/java/install-java-on-debian/",[9,0.079,10,5.43,12,5.936,17,1.766,18,1.777,163,4.264,265,4.466,936,7.006,937,6.075,938,7.006]],["deprecated//docs/development/java/install-java-on-debian/",[]],["title//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.058,11,0.785,12,3.677,62,3.53]],["keywords//docs/development/java/install-java-on-ubuntu-16-04/",[10,4.621,11,0.704,12,3.297,13,5.372,939,4.008]],["toc//docs/development/java/install-java-on-ubuntu-16-04/",[9,0.067,10,5.943,12,4.24,17,1.933,18,1.945,29,1.251,163,4.667,279,6.909,836,6.087,939,5.154]],["deprecated//docs/development/java/install-java-on-ubuntu-16-04/",[]],["title//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[9,0.053,11,0.724,31,1.296,62,3.255,940,5.786]],["keywords//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[31,1.165,254,4.969,892,4.494,905,4.378,940,5.202,941,5.99]],["toc//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[0,1.28,4,1.385,9,0.081,11,0.693,14,0.896,31,1.71,35,0.572,80,2.638,100,1.912,112,2.307,312,3.786,321,4.656,776,2.398,940,8.743,942,6.371,943,6.371]],["deprecated//docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/",[]],["title//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[47,2.779,89,2.413,470,4.421]],["keywords//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/",[]],["title//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[2,4.202,89,2.413,327,2.884]],["keywords//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["deprecated//docs/quick-answers/linode-platform/enable-backups-on-a-linode/",[]],["title//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[134,3.847,139,2.253,688,3.176,928,5.155]],["keywords//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[928,5.03,945,7.049,946,4.646,947,5.628]],["toc//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[324,5.23,655,3.734,688,4.614,915,5.943,926,5.814,928,7.488,948,5.814,949,6.909]],["deprecated//docs/quick-answers/linux/log-in-to-coreos-container-linux/",[]],["title//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[89,2.209,950,4.47,951,3.847,952,3.26]],["keywords//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["deprecated//docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/",[]],["title//docs/quick-answers/linode-platform/resize-a-linode-disk/",[89,2.413,244,4.016,906,5.92]],["keywords//docs/quick-answers/linode-platform/resize-a-linode-disk/",[139,2.412,470,4.333,944,5.651]],["toc//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["deprecated//docs/quick-answers/linode-platform/resize-a-linode-disk/",[]],["title//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,0.937,139,2.078,169,2.045,273,3.548,953,4.998]],["keywords//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[363,4.73,382,4.568,953,5.289,954,5.628]],["toc//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[14,1.229,169,2.684,191,5.761,339,2.412,953,8.114,955,7.593,956,8.742]],["deprecated//docs/quick-answers/linux/use-nano-to-edit-files-in-linux/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.05,49,0.986,129,1.736,207,2.589,905,4.517,957,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[958,7.12,959,7.12,960,7.733]],["toc//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,153,3.084,176,2.942,377,4.989,410,4.557,428,4.302,659,4.005,905,5.223,957,8.856,961,5.706,962,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-centos-7/",[]],["title//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.05,11,0.672,49,0.986,62,3.02,905,4.517,957,5.127]],["keywords//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[958,7.12,959,7.12,963,7.733]],["toc//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[9,0.057,17,1.659,18,1.669,35,0.406,49,1.141,153,3.084,176,2.942,377,4.989,410,4.557,428,4.302,659,4.005,905,5.223,957,8.856,961,5.706,962,6.58]],["deprecated//docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-opencart-on-centos-7/",[9,0.058,129,2.029,207,3.025,964,4.847]],["keywords//docs/websites/ecommerce/install-opencart-on-centos-7/",[129,1.819,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/install-opencart-on-centos-7/",[0,1.354,5,1.641,9,0.073,17,1.564,18,1.574,35,0.383,45,3,46,2.962,64,2.613,119,2.352,259,1.729,377,4.702,381,2.341,405,4.11,659,3.775,964,7.455]],["deprecated//docs/websites/ecommerce/install-opencart-on-centos-7/",[]],["title//docs/quick-answers/linux/linux-command-line-tips/",[139,2.253,368,3.08,389,4.349,745,5.993]],["keywords//docs/quick-answers/linux/linux-command-line-tips/",[363,3.738,382,3.61,482,3.975,745,4.621,746,4.839,954,4.448,966,5.571]],["toc//docs/quick-answers/linux/linux-command-line-tips/",[38,2.215,139,1.952,363,5.827,368,3.702,610,4.368,647,4.695,652,3.93,813,5.191,967,5.762,968,5.762,969,6.258,970,5.191,971,4.695,972,6.258,973,6.258,974,6.258,975,5.191,976,6.258,977,5.191,978,5.762,979,5.435,980,6.258]],["deprecated//docs/quick-answers/linux/linux-command-line-tips/",[]],["title//docs/quick-answers/linux/how-to-use-grep/",[14,1.109,368,3.364,902,5.63]],["keywords//docs/quick-answers/linux/how-to-use-grep/",[139,2.198,901,5.847,902,5.03,981,4.495]],["toc//docs/quick-answers/linux/how-to-use-grep/",[]],["deprecated//docs/quick-answers/linux/how-to-use-grep/",[]],["title//docs/quick-answers/linux/how-to-use-head/",[14,1.109,368,3.364,982,6.299]],["keywords//docs/quick-answers/linux/how-to-use-head/",[139,2.02,169,1.988,901,5.372,982,5.171,983,6.476]],["toc//docs/quick-answers/linux/how-to-use-head/",[]],["deprecated//docs/quick-answers/linux/how-to-use-head/",[]],["title//docs/quick-answers/linux/how-to-use-tail/",[14,1.109,368,3.364,984,6.299]],["keywords//docs/quick-answers/linux/how-to-use-tail/",[139,2.02,169,1.988,901,5.372,984,5.171,985,6.476]],["toc//docs/quick-answers/linux/how-to-use-tail/",[]],["deprecated//docs/quick-answers/linux/how-to-use-tail/",[]],["title//docs/security/advanced-ssh-server-security/",[14,0.81,89,1.763,487,3.47,643,4.782,651,2.236,986,5.006,987,4.024]],["keywords//docs/security/advanced-ssh-server-security/",[11,0.566,49,0.831,129,1.462,139,1.624,319,1.276,655,2.335,786,4.794,988,4.794]],["toc//docs/security/advanced-ssh-server-security/",[14,1.189,17,1.086,18,1.093,19,2.469,99,2.594,100,1.404,119,2.952,232,3.14,251,3.895,326,2.855,334,1.96,476,2.218,521,2.817,558,3.266,572,3.882,651,1.815,655,2.098,761,2.342,946,3.084,952,2.112,989,4.679,990,3.339,991,3.339,992,4.308,993,5.837,994,4.064,995,4.679,996,4.308,997,4.308,998,3.339,999,4.308,1000,4.064,1001,4.308,1002,4.679,1003,4.679,1004,4.679]],["deprecated//docs/security/advanced-ssh-server-security/",[]],["title//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,1005,5.146,1006,6.662]],["keywords//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[11,0.566,680,3.135,892,3.907,1005,4.022,1007,4.794,1008,4.794,1009,4.794,1010,5.207]],["toc//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[0,1.576,5,1.143,9,0.072,17,0.653,18,0.657,30,2.025,35,0.481,39,1.12,42,1.556,45,1.253,46,1.237,49,0.964,60,2.718,100,1.408,112,1.018,119,2.462,140,1.671,142,1.822,163,3.385,165,3.626,169,1.441,172,1.096,297,2.69,325,2.258,327,1.028,339,1.295,405,2.864,436,2.442,445,2.947,628,3.521,640,1.963,688,2.064,728,2.333,1005,8.009,1011,2.589,1012,2.589,1013,2.442,1014,2.589,1015,3.747,1016,1.444]],["deprecated//docs/websites/cms/install-odoo-10-on-ubuntu-16-04/",[]],["title//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[129,1.517,201,1.391,207,2.262,1017,5.717,1018,4.973,1019,7.202]],["keywords//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[129,1.682,258,0.825,1017,4.378,1018,5.515,1020,5.99,1021,5.99]],["toc//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[4,1.523,9,0.056,14,0.985,17,1.626,18,1.636,35,0.398,100,2.102,112,3.395,172,2.731,258,0.965,1017,6.853,1019,10.393,1022,5.411]],["deprecated//docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/",[]],["title//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[14,0.759,74,2.66,101,2.56,102,4.052,129,1.517,916,3.169,1023,2.275,1024,4.973]],["keywords//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1025,6.174,1026,7.733,1027,7.733]],["toc//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[9,0.078,35,0.552,74,4.779,916,5.695]],["deprecated//docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/",[1028,3.823]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.058,89,2.209,99,4.005,101,3.424]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[909,5.847,910,6.122,911,4.921,1029,6.49]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[9,0.066,35,0.465,64,2.229,89,3.173,90,1.731,99,3.187,100,1.725,101,2.724,112,2.962,244,2.926,352,4.101,470,3.221,644,5.292,646,5.292,651,2.229,911,4.012,915,4.101,916,4.8,951,3.061,1030,5.748,1031,5.748,1032,3.931]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/",[]],["title//docs/platform/upgrade-to-hourly-billing/",[1033,3.825,1034,6.853,1035,5.766]],["keywords//docs/platform/upgrade-to-hourly-billing/",[1034,6.122,1035,5.152,1036,5.847,1037,5.289]],["toc//docs/platform/upgrade-to-hourly-billing/",[542,8.668,1033,4.838,1038,3.774]],["deprecated//docs/platform/upgrade-to-hourly-billing/",[]],["title//docs/platform/disk-images/resizing-a-linode/",[89,2.658,906,6.521]],["keywords//docs/platform/disk-images/resizing-a-linode/",[906,6.425,1033,4.152]],["toc//docs/platform/disk-images/resizing-a-linode/",[89,3.141,906,7.706]],["deprecated//docs/platform/disk-images/resizing-a-linode/",[]],["title//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,280,3.548,1039,5.786]],["keywords//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[11,0.841,1039,6.716,1040,7.733]],["toc//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[9,0.06,17,1.729,18,1.74,35,0.423,119,2.6,204,3.584,336,3.93,339,2.055,492,6.179,651,2.889,790,3.639,1039,10.045]],["deprecated//docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-centos-7/",[9,0.058,129,2.029,207,3.025,707,3.424]],["keywords//docs/databases/mongodb/install-mongodb-on-centos-7/",[5,1.459,11,0.651,707,2.839,893,3.023,1041,4.097,1042,5.515]],["toc//docs/databases/mongodb/install-mongodb-on-centos-7/",[0,1.258,5,1.524,9,0.05,17,1.453,18,1.462,24,2.769,35,0.356,80,2.591,90,1.885,119,3.032,176,2.576,177,2.863,282,2.883,306,3.673,315,5.762,392,4.466,583,3.93,707,5.363,1043,4.996]],["deprecated//docs/databases/mongodb/install-mongodb-on-centos-7/",[]],["title//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.158,11,0.627,49,0.92,62,2.816,1044,5.307,1045,5.307,1046,5.764]],["keywords//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[11,0.841,49,1.234,1047,7.733]],["toc//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[0,1.194,9,0.048,17,1.379,18,1.388,29,0.893,35,0.338,41,4.24,49,1.838,57,3.577,153,2.564,158,2.974,339,1.639,521,3.577,663,5.471,812,4.342,1044,9.695,1048,5.845,1049,5.941]],["deprecated//docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/",[]],["title//docs/websites/ecommerce/install-magento-on-centos-7/",[9,0.058,129,2.029,207,3.025,1050,4.847]],["keywords//docs/websites/ecommerce/install-magento-on-centos-7/",[129,1.98,1050,4.73,1051,6.49,1052,7.049]],["toc//docs/websites/ecommerce/install-magento-on-centos-7/",[0,0.916,4,0.991,5,1.11,9,0.074,17,1.058,18,1.065,21,2.643,29,1.036,35,0.567,45,2.03,46,2.004,49,0.727,64,1.768,112,1.651,119,2.408,133,3.521,187,2.145,207,1.909,258,0.628,259,1.17,273,2.428,319,1.117,334,1.909,405,4.209,544,2.428,576,3.004,630,2.709,687,1.707,894,2.906,1050,6.69,1053,4.197]],["deprecated//docs/websites/ecommerce/install-magento-on-centos-7/",[]],["title//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,1050,4.847]],["keywords//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[11,0.766,1050,4.73,1051,6.49,1054,7.049]],["toc//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[0,0.953,4,1.031,5,1.155,9,0.057,17,1.101,18,1.108,21,2.749,29,1.068,35,0.576,45,2.112,46,2.085,49,0.757,64,1.839,112,1.717,119,2.481,133,3.663,187,2.231,258,0.653,259,1.217,273,2.526,319,1.162,334,1.986,405,4.337,544,2.526,576,3.125,630,2.818,687,1.776,894,3.024,1050,6.805,1053,4.366]],["deprecated//docs/websites/ecommerce/install-magento-on-ubuntu-16-04/",[]],["title//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.521,14,0.674,35,0.273,43,2.78,61,0.862,200,2.717,762,3.16,767,2.032,1055,1.805,1056,3.978]],["keywords//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[11,0.704,61,1.164,1055,2.437,1056,5.372,1057,4.733]],["toc//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[5,1.334,9,0.044,17,1.272,18,1.28,35,0.311,49,0.875,60,1.657,169,1.682,176,2.256,200,3.105,319,1.937,327,2.003,651,2.125,761,2.743,766,1.957,790,2.677,952,4.185,1055,4.219,1056,4.545,1058,4.375,1059,5.045,1060,4.545,1061,5.48,1062,5.48]],["deprecated//docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[5,1.505,9,0.05,30,2.667,129,1.736,207,2.589,1063,3.357]],["keywords//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[30,3.042,891,4.921,1064,5.628,1065,4.301]],["toc//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[0,1.345,5,2.333,9,0.054,17,0.755,18,0.76,22,1.985,30,3.326,35,0.185,100,0.976,119,1.136,129,0.914,153,1.404,176,2.179,193,4.489,204,1.565,215,1.733,227,3.429,282,2.438,319,1.889,336,1.717,382,2.108,390,1.959,435,3.082,521,4.028,556,2.996,651,2.99,661,2.996,712,1.602,1066,5.209,1067,5.293,1068,5.293,1069,2.441,1070,6.315,1071,2.225,1072,3.254]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/",[]],["title//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.452,29,1.085,707,3.424,1073,7.224]],["keywords//docs/databases/mongodb/create-a-mongodb-replica-set/",[328,3.099,707,3.341,893,3.558,1074,7.049]],["toc//docs/databases/mongodb/create-a-mongodb-replica-set/",[0,1.194,16,1.769,17,1.379,18,1.388,29,0.893,35,0.551,45,2.646,46,2.612,60,1.796,80,2.46,119,2.074,169,2.571,176,2.446,201,1.53,251,2.737,336,3.135,662,2.488,707,3.969,723,3.445,761,2.974,1075,4.693,1076,4.929]],["deprecated//docs/databases/mongodb/create-a-mongodb-replica-set/",[]],["title//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[14,0.606,31,0.839,61,0.775,217,1.986,280,2.297,543,2.416,562,3.426,687,1.615,948,3.01,1077,3.331,1078,3.152]],["keywords//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[31,1.165,543,3.357,687,2.243,829,3.761,1077,4.627,1079,5.202]],["toc//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[0,1.084,9,0.074,17,1.252,18,1.26,31,1.52,35,0.608,45,2.403,46,2.372,60,1.631,99,2.991,107,3.057,169,1.657,217,2.485,259,1.385,273,2.874,435,2.485,543,3.024,659,3.024,1077,7.785,1080,4.686,1081,4.048,1082,5.396,1083,5.396]],["deprecated//docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/",[]],["title//docs/platform/disk-images/clone-your-linode/",[89,2.658,1084,6.352]],["keywords//docs/platform/disk-images/clone-your-linode/",[944,5.651,1084,7.314]],["toc//docs/platform/disk-images/clone-your-linode/",[89,3.141,1084,7.506]],["deprecated//docs/platform/disk-images/clone-your-linode/",[]],["title//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.058,129,2.029,207,3.025,258,0.995]],["keywords//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[129,2.172,258,1.065,891,5.398]],["toc//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[9,0.072,17,1.215,18,1.223,35,0.565,45,2.332,46,2.302,164,1.497,176,2.155,201,1.348,210,2.428,258,1.053,319,1.874,323,3.513,379,1.439,522,4.876,544,2.788,558,3.655,685,2.519,687,2.864,1085,4.18,1086,7.041,1087,5.589,1088,4.18,1089,4.82]],["deprecated//docs/web-servers/apache/install-and-configure-apache-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[14,0.674,129,1.347,202,2.85,207,2.008,231,3.107,232,3.218,336,2.53,655,2.15,785,3.704,952,2.164]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[655,3.467,1090,7.12,1091,7.733]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[9,0.056,17,1.626,18,1.636,29,1.052,35,0.398,45,3.12,46,3.08,65,2.118,202,4.162,251,4.319,336,4.947,761,3.506,785,5.411,1092,7.004,1093,6.083,1094,4.539]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/",[]],["title//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.469,14,0.606,61,0.775,62,2.107,202,2.562,231,2.794,232,2.893,280,2.297,336,2.275,655,1.933,785,3.331,952,1.946]],["keywords//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[11,0.704,61,1.164,655,2.904,1090,5.963,1095,6.476]],["toc//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[9,0.056,17,1.626,18,1.636,29,1.052,35,0.398,45,3.12,46,3.08,202,4.162,251,4.319,336,5.576,761,3.506,762,4.616,785,5.411,1093,6.083,1094,4.539]],["deprecated//docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/",[]],["title//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[35,0.351,49,0.986,323,4.147,651,2.397,731,3.12,1096,3.542]],["keywords//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[459,3.652,662,2.952,731,3.558,1096,4.039]],["toc//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[16,2.172,17,1.693,18,1.704,29,1.096,49,1.164,60,2.205,327,2.666,410,4.651,635,4.281,651,2.829,731,3.682,790,3.564,1096,4.18,1097,4.391,1098,5.473,1099,5.824]],["deprecated//docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/",[]],["title//docs/security/encryption/use-luks-for-full-disk-encryption/",[14,0.869,139,1.928,237,3.825,241,4.935,244,3.146,632,4.517]],["keywords//docs/security/encryption/use-luks-for-full-disk-encryption/",[61,1.267,241,5.628,882,5.847,1100,7.049]],["toc//docs/security/encryption/use-luks-for-full-disk-encryption/",[0,1.28,9,0.07,14,0.896,17,1.479,18,1.488,35,0.362,61,1.58,89,1.949,112,2.307,237,6.229,241,5.087,244,4.475,280,3.393,319,1.562,339,1.758,413,5.285,916,3.739,1101,4.78]],["deprecated//docs/security/encryption/use-luks-for-full-disk-encryption/",[]],["title//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[24,3.31,89,1.554,256,3.143,258,0.7,302,2.847,1102,5.08,1103,4.412,1104,4.412]],["keywords//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[110,4.189,591,6.49,1104,6.122,1105,6.49]],["toc//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[0,1.535,16,0.799,17,0.623,18,0.627,29,0.403,60,0.811,80,1.868,89,0.821,90,0.808,96,2.259,151,1.769,169,1.386,193,3.028,203,1.305,208,3.879,251,1.236,261,0.995,328,5.178,351,1.616,368,1.924,381,1.569,470,3.837,526,4.155,583,2.834,685,1.291,895,2.924,1101,3.386,1104,9.579,1105,8.845,1106,2.684,1107,2.226,1108,2.226,1109,2.684,1110,2.471,1111,4.513]],["deprecated//docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/",[]],["title//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,543,4.048]],["keywords//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[545,6.122,546,6.122,548,6.122,1112,6.49]],["toc//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[0,1.084,9,0.063,17,1.252,18,1.26,29,0.811,31,1.05,35,0.573,169,2.4,249,3.85,258,0.743,259,1.385,334,3.274,524,4.686,543,5.994,557,4.968,558,6.416,700,3.85,1112,8.463,1113,5.396]],["deprecated//docs/websites/cms/install-wordpress-on-ubuntu-16-04/",[]],["title//docs/security/authentication/gpg-key-for-ssh-authentication/",[14,0.937,251,3.069,336,3.515,655,2.987,924,4.754]],["keywords//docs/security/authentication/gpg-key-for-ssh-authentication/",[336,2.747,655,2.335,784,4.157,924,3.716,1114,5.207,1115,5.207,1116,4.794,1117,4.794]],["toc//docs/security/authentication/gpg-key-for-ssh-authentication/",[17,1.252,18,1.26,89,1.65,96,2.701,176,2.221,251,5.137,319,1.916,334,2.26,336,2.847,465,4.686,586,4.476,655,2.419,761,3.912,784,4.308,924,6.559,1032,3.69,1078,3.943,1094,3.496,1116,4.968,1118,5.396,1119,7.817,1120,4.686,1121,5.396]],["deprecated//docs/security/authentication/gpg-key-for-ssh-authentication/",[]],["title//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.058,89,2.209,139,2.253,1122,6.274]],["keywords//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[99,3.321,909,4.969,1122,5.202,1123,5.99,1124,5.99,1125,5.99]],["toc//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[9,0.072,17,1.215,18,1.223,35,0.565,45,2.332,46,2.302,49,0.836,64,2.031,65,1.583,74,2.578,89,1.601,95,3.826,112,1.896,139,2.385,244,2.665,247,3.287,319,1.283,339,1.444,470,2.934,525,3.392,645,3.513,649,3.111,919,3.655,1122,7.846,1126,3.826,1127,4.18,1128,5.235]],["deprecated//docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/",[]],["title//docs/websites/cms/install-cpanel-on-centos/",[9,0.063,129,2.216,1129,4.814]],["keywords//docs/websites/cms/install-cpanel-on-centos/",[1129,4.301,1130,7.049,1131,7.049,1132,7.049]],["toc//docs/websites/cms/install-cpanel-on-centos/",[9,0.056,14,1.318,35,0.533,42,2.322,74,3.449,89,2.142,90,2.11,490,3.74,706,2.814,795,4.274,1129,5.721,1133,6.449]],["deprecated//docs/websites/cms/install-cpanel-on-centos/",[]],["title//docs/networking/remote-access/",[204,4.181,651,3.371]],["keywords//docs/networking/remote-access/",[654,5.171,1134,6.476,1135,6.476,1136,6.476,1137,6.476]],["toc//docs/networking/remote-access/",[14,1.124,29,0.836,32,5.097,35,0.316,225,5.559,252,4.068,490,2.829,531,3.396,634,4.834,635,6,651,3.101,655,2.495,662,3.348,684,4.258,915,3.972,926,5.58,950,3.444,1094,3.607,1138,4.444]],["deprecated//docs/networking/remote-access/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[127,1.849,129,1.619,687,2.159,776,2.169,796,2.96,1139,4.024,1140,3.62]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[127,1.921,129,1.682,1140,3.761,1141,4.494,1142,4.782,1143,4.627]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[0,1.408,17,1.626,18,1.636,112,2.536,176,2.883,220,3.73,687,2.623,776,4.248,796,3.597,951,4.994,1144,6.545,1145,6.449,1146,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.587,61,0.97,562,2.798,687,2.022,776,2.032,796,2.773,1139,3.77,1140,3.391]],["keywords//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[11,0.651,61,1.076,1140,3.761,1141,4.494,1142,4.782,1143,4.627]],["toc//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[0,1.408,17,1.626,18,1.636,112,2.536,176,2.883,220,3.73,687,2.623,776,4.248,796,3.597,951,4.994,1144,6.545,1145,6.449,1146,6.449]],["deprecated//docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/",[]],["title//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.202,47,2.177,166,4.774,167,4.517,321,4.517,687,2.314]],["keywords//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[31,1.504,321,5.651,687,2.896]],["toc//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[0,1.068,17,1.234,18,1.241,31,1.034,35,0.302,49,0.848,60,1.607,99,2.946,217,4.197,251,2.448,319,1.303,323,3.566,327,1.943,392,3.792,410,5.81,472,2.557,636,3.566,712,2.617,990,3.792,991,3.792,1147,4.105,1148,5.314,1149,5.314,1150,5.314,1151,5.314,1152,5.314,1153,5.314,1154,5.314,1155,5.314,1156,5.314]],["deprecated//docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[74,3.281,99,3.693,129,1.871,207,2.79,847,3.047]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[129,1.819,848,5.003,849,5.003,850,4.859,851,4.621]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[9,0.061,35,0.563,64,2.952,74,5.743,89,2.327,112,2.756,339,2.099,345,3.346,847,4.53]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/",[]],["title//docs/websites/host-a-website-with-high-availability/",[201,1.861,292,3.677,522,4.606,1087,5.28]],["keywords//docs/websites/host-a-website-with-high-availability/",[500,5.289,562,3.652,711,3.528,1138,5.628]],["toc//docs/websites/host-a-website-with-high-availability/",[4,0.848,5,0.95,9,0.06,17,0.906,18,0.911,35,0.56,49,0.623,60,2.283,90,1.175,176,3.108,208,2.211,258,0.843,319,0.956,323,2.618,325,3.633,326,4.607,328,1.716,334,1.634,352,2.784,489,2.381,490,1.381,531,2.381,543,2.187,558,2.724,635,2.29,645,2.618,1075,3.429,1086,7.872,1088,6.028,1089,5.635,1138,3.115,1157,3.902,1158,6.12,1159,2.618]],["deprecated//docs/websites/host-a-website-with-high-availability/",[]],["title//docs/websites/introduction-to-high-availability/",[146,4.63,522,5.031,1087,5.766]],["keywords//docs/websites/introduction-to-high-availability/",[201,1.816,292,3.588,500,5.289,1138,5.628]],["toc//docs/websites/introduction-to-high-availability/",[5,1.58,49,1.036,164,1.855,169,1.992,203,1.876,316,4.529,339,1.79,435,2.989,498,4.868,504,5.18,522,6.974,743,5.974,887,4.742,1087,7.994,1138,7.108]],["deprecated//docs/websites/introduction-to-high-availability/",[]],["title//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.058,11,0.785,62,3.53,424,5.28]],["keywords//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[11,0.766,62,3.444,421,6.122,424,5.152]],["toc//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[9,0.045,17,1.292,18,1.3,35,0.316,49,1.276,68,6.836,80,2.304,89,1.702,139,2.493,141,4.635,145,4.069,153,3.45,319,1.364,351,4.812,424,7.913,630,4.75,632,4.068,649,3.308]],["deprecated//docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/",[]],["title//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[9,0.058,11,0.785,30,3.117,62,3.53]],["keywords//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[30,2.795,892,4.859,1064,5.171,1065,3.952,1160,4.346]],["toc//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[0,1.88,5,1.947,9,0.064,11,0.605,17,1.292,18,1.3,30,4.864,35,0.316,62,2.72,119,1.943,204,2.678,215,2.964,227,3.607,319,1.959,404,3.807,651,3.101,1063,3.023,1066,3.19,1070,3.668,1161,4.176]],["deprecated//docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/",[]],["title//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,707,3.158,1162,6.134]],["keywords//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[5,1.459,11,0.651,707,2.839,893,3.023,1041,4.097,1042,5.515]],["toc//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[0,1.328,5,1.61,9,0.053,17,1.534,18,1.544,24,2.925,35,0.376,80,2.737,90,1.991,119,2.308,176,2.721,177,3.024,282,3.045,306,3.879,583,4.151,707,5.468,1043,5.278]],["deprecated//docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/",[]],["title//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[11,0.587,14,0.759,49,0.862,62,2.639,164,1.544,1162,4.973,1163,3.295,1164,5.401]],["keywords//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[711,3.87,1163,4.718,1165,7.12]],["toc//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[0,1.037,9,0.041,17,1.197,18,1.205,35,0.293,40,2.088,142,3.343,166,3.985,167,3.77,175,3.681,187,2.427,201,2.541,262,2.313,327,1.886,368,2.199,379,2.712,381,1.793,389,3.106,410,3.289,530,3.87,659,4.239,967,4.75,1163,4.616,1166,6.57,1167,4.48,1168,1.991,1169,5.159]],["deprecated//docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/",[]],["title//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[11,0.672,61,1.111,100,1.855,280,3.292,319,1.515,679,3.771]],["keywords//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[100,1.672,258,0.767,259,1.43,679,3.399,680,3.354,1170,3.672,1171,5.13]],["toc//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[0,1.436,2,3.806,17,1.659,18,1.669,64,2.772,77,5.928,100,2.144,169,2.194,177,3.269,247,4.487,319,1.752,339,1.972,544,5.061,584,6.207,647,5.362,1033,3.465]],["deprecated//docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,258,0.918,1172,3.733]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[1173,7.049,1174,7.049,1175,7.049,1176,7.049]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[9,0.07,14,1.229,17,2.029,18,2.042,60,2.643,258,1.204,1172,6.061]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/",[]],["title//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.105,9,0.041,11,0.552,31,0.988,62,2.482,139,1.584,259,1.304,275,2.911,1177,2.586]],["keywords//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[31,1.371,259,1.81,892,5.289,1177,3.588]],["toc//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[4,1.361,5,1.524,9,0.07,17,1.453,18,1.462,31,1.94,35,0.356,47,2.205,49,1.386,60,1.892,164,1.789,201,1.612,259,1.606,275,3.586,334,2.621,379,1.721,790,4.243,1168,2.415,1177,3.186]],["deprecated//docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/",[]],["title//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[9,0.053,11,0.724,62,3.255,275,3.818,759,2.948]],["keywords//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[892,4.859,1178,6.476,1179,6.476,1180,6.476,1181,6.476]],["toc//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[0,1.194,4,2.108,5,1.447,9,0.078,14,0.835,17,1.379,18,1.388,35,0.476,60,1.796,201,1.53,258,1.154,259,1.525,275,3.405,334,2.488,379,1.633,686,4.929,759,2.629,790,4.091,1182,5.941,1183,5.941]],["deprecated//docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/",[]],["title//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.785,62,3.53,1033,3.502,1184,3.558]],["keywords//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[11,0.841,62,3.778,1033,3.749]],["toc//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[9,0.051,11,1.094,15,3.835,16,1.897,42,2.112,62,3.113,74,3.138,89,1.949,100,1.912,112,2.307,522,4.062,583,4.001,774,3.532,977,5.285,1016,3.271,1033,4.88,1184,4.33,1185,5.285]],["deprecated//docs/security/upgrading/upgrade-to-ubuntu-16-04/",[]],["title//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.05,11,0.672,49,0.986,61,1.111,162,3.261,280,3.292]],["keywords//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[162,3.16,885,3.819,1186,5.99,1187,5.99,1188,5.99,1189,5.515]],["toc//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[9,0.078,11,0.545,16,1.493,17,1.163,18,1.171,29,0.753,35,0.553,38,1.774,61,0.901,89,2.694,100,1.504,101,2.376,112,1.815,162,5.133,178,3.101,202,2.978,209,2.779,319,1.229,334,2.099,335,3.101,339,1.383,413,4.158,417,3.196,896,2.941,1075,4.15,1190,4.615]],["deprecated//docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/",[]],["title//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.053,35,0.379,129,1.871,162,3.515,207,2.79]],["keywords//docs/databases/redis/install-and-configure-redis-on-centos-7/",[129,1.98,162,3.719,891,4.921,1189,6.49]],["toc//docs/databases/redis/install-and-configure-redis-on-centos-7/",[9,0.071,14,0.705,16,1.493,17,1.163,18,1.171,29,0.753,35,0.501,38,1.774,89,2.694,101,2.376,112,1.815,162,5.477,177,2.293,178,3.101,209,2.779,252,3.663,319,1.229,334,2.099,335,3.101,336,2.644,339,1.383,413,4.158,417,3.196,896,2.941,952,2.262,1075,4.15,1190,4.615]],["deprecated//docs/databases/redis/install-and-configure-redis-on-centos-7/",[]],["title//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[9,0.05,11,0.672,61,1.111,280,3.292,1191,3.673,1192,5.127]],["keywords//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[11,0.651,203,1.732,885,3.819,1191,3.559,1193,5.99,1194,5.99]],["toc//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[0,1.174,9,0.066,17,1.356,18,1.365,35,0.332,41,4.169,45,2.602,46,2.569,107,3.311,112,2.116,119,2.04,164,2.366,171,3,258,0.805,318,4.495,345,2.569,346,4.665,651,2.266,1071,3.996,1191,6.555,1192,4.847]],["deprecated//docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/",[]],["title//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[11,0.552,14,0.714,31,0.988,35,0.289,172,1.981,464,2.656,774,2.816,1195,4.677,1196,2.706]],["keywords//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[31,1.165,212,5.515,1197,3.606,1198,5.99,1199,5.99,1200,4.019]],["toc//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[0,1.466,9,0.092,17,1.693,18,1.704,31,1.419,35,0.547,80,3.02,172,2.844,464,3.813,1195,8.869,1196,3.885]],["deprecated//docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/",[]],["title//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.063,89,2.413,1201,6.853]],["keywords//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[1201,7.437,1202,8.563]],["toc//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[9,0.068,89,2.609,112,3.089,139,2.66,146,5.006,248,7.409,1201,10.088]],["deprecated//docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/",[]],["title//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[9,0.046,11,0.627,14,0.81,482,4.113,543,3.23,774,3.196,1203,5.006]],["keywords//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[11,0.566,107,2.95,258,0.717,543,2.918,1204,5.207,1205,5.207,1206,5.207,1207,4.022]],["toc//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[5,1.423,9,0.088,16,1.74,29,0.878,38,2.068,88,4.169,100,2.883,107,3.311,121,3.616,194,4.079,310,5.38,368,2.491,482,5.905,543,4.637,706,1.753,837,4.27,866,4.384,1203,7.188,1207,4.514]],["deprecated//docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/",[]],["title//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[31,1.121,189,2.986,292,2.934,1078,4.213,1208,5.307,1209,5.307,1210,4.453]],["keywords//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[138,3.325,1210,5.003,1211,5.003,1212,6.476,1213,6.476]],["toc//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[0,1.436,9,0.076,17,1.659,18,1.669,31,1.848,96,3.577,201,1.841,379,1.965,464,3.736,709,4.049,1208,6.58,1209,8.75,1210,7.341]],["deprecated//docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/",[]],["title//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.053,11,0.724,61,1.197,1214,6.134,1215,6.134]],["keywords//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[809,4.521,812,4.733,1216,6.476,1217,5.963,1218,5.963]],["toc//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[9,0.042,17,1.215,18,1.223,35,0.298,40,2.119,49,1.586,99,2.903,153,2.259,242,6.979,381,1.82,706,1.571,742,3.45,807,6.179,814,4.547,815,4.044,1214,9.148,1215,9.148,1217,4.82,1218,4.82,1219,4.82,1220,5.235,1221,5.235]],["deprecated//docs/game-servers/install-black-mesa-on-debian-or-ubuntu/",[]],["title//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.242,9,0.05,237,3.825,687,2.314,776,2.326,1222,6.181]],["keywords//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[776,2.91,1223,7.733,1224,7.733]],["toc//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[0,1.101,9,0.044,17,1.272,18,1.28,64,2.125,77,4.545,100,2.372,121,3.391,187,2.578,237,6.281,312,4.697,334,3.31,442,4.233,687,3.472,776,3.82,1225,10.15,1226,7.904]],["deprecated//docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/",[]],["title//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.552,49,0.811,299,3.811,409,3.811,774,2.816,1227,4.677,1228,4.677,1229,4.677,1230,4.677]],["keywords//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[11,0.473,1048,3.039,1200,2.922,1230,4.009,1231,4.354,1232,4.354,1233,4.354,1234,4.354,1235,4.354,1236,4.009,1237,3.363]],["toc//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[9,0.047,17,1.356,18,1.365,29,0.878,35,0.332,49,1.534,80,2.419,247,3.669,299,6.209,673,4.847,706,1.753,946,3.851,1048,7.295,1147,4.514,1227,7.62,1228,7.62,1229,7.62,1238,4.514,1239,5.38]],["deprecated//docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/",[]],["title//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.046,49,0.92,320,2.934,1192,4.782,1240,5.307,1241,5.307,1242,5.006]],["keywords//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[809,4.921,1237,5.445,1243,7.049,1244,7.049]],["toc//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[9,0.055,14,0.966,17,1.594,18,1.604,35,0.39,49,1.477,89,2.101,112,2.487,320,4.71,809,4.794,975,5.697,1192,7.676,1240,8.52,1241,8.52]],["deprecated//docs/game-servers/left-4-dead-2-multiplayer-server-installation/",[]],["title//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.046,61,1.036,258,0.794,259,1.48,280,3.07,1245,4.782,1246,4.213]],["keywords//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[258,0.673,259,1.255,885,3.117,1079,4.245,1168,1.886,1247,4.888,1248,2.71,1249,4.501,1250,4.501]],["toc//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[9,0.06,17,1.729,18,1.74,35,0.555,258,1.026,259,2.797,419,6.179,508,5.754,948,5.199,1245,8.101,1249,6.858]],["deprecated//docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/",[]],["title//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[11,0.672,47,2.177,774,3.427,1251,5.691,1252,5.368,1253,4.774]],["keywords//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[1251,4.794,1252,4.523,1253,4.022,1254,5.207,1255,4.794,1256,5.207,1257,4.523,1258,5.207]],["toc//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[0,1.28,9,0.081,10,4.546,17,1.479,18,1.488,31,1.239,33,2.668,47,2.244,49,1.017,172,3.925,213,5.697,280,3.393,939,3.942,1252,5.534,1253,6.791,1255,5.866,1257,5.534]],["deprecated//docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/",[]],["title//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.053,49,1.063,809,4.65,812,4.869,1048,4.65]],["keywords//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[809,3.889,812,4.072,1048,3.889,1236,5.13,1237,4.304,1259,5.13,1260,5.571]],["toc//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[9,0.075,17,1.626,45,3.12,46,3.08,49,1.118,65,2.118,176,2.883,282,3.226,303,5.411,319,1.717,377,4.889,381,2.434,437,4.334,809,6.545,971,5.255,1048,4.889]],["deprecated//docs/game-servers/install-steamcmd-for-a-steam-game-server/",[]],["title//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[35,0.351,61,1.111,280,3.292,1055,2.326,1261,4.774,1262,4.935]],["keywords//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[490,1.843,766,1.86,885,3.32,1055,1.96,1261,4.022,1262,4.157,1263,4.523,1264,4.794]],["toc//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[9,0.033,16,2.841,29,1.433,35,0.364,60,1.249,120,3.019,167,3.019,176,2.634,251,1.903,313,3.191,334,2.679,336,2.179,391,3.032,489,2.52,490,2.264,796,2.121,815,3.191,896,2.424,1055,2.947,1101,3.099,1261,6.811,1262,5.108,1263,5.556,1264,3.803,1265,4.131,1266,4.131,1267,4.131,1268,4.131,1269,3.588,1270,4.131,1271,2.367,1272,3.019,1273,4.131]],["deprecated//docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/",[]],["title//docs/email/clients/install-roundcube-on-ubuntu/",[9,0.058,11,0.785,62,3.53,1274,6.274]],["keywords//docs/email/clients/install-roundcube-on-ubuntu/",[11,0.766,766,2.517,1274,6.122,1275,6.49]],["toc//docs/email/clients/install-roundcube-on-ubuntu/",[0,1.386,4,1.5,5,1.11,9,0.074,17,1.058,18,1.065,35,0.259,64,1.768,65,1.378,100,1.368,112,1.651,119,1.591,121,2.821,139,1.422,187,2.145,201,1.777,258,1.147,259,1.17,275,3.953,327,1.666,379,1.897,390,2.744,393,3.182,530,3.42,687,1.707,759,3.053,896,2.675,1274,9.11,1276,4.558]],["deprecated//docs/email/clients/install-roundcube-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.063,89,2.413,928,5.63]],["keywords//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[99,3.591,911,4.521,915,4.621,928,4.621,1277,5.963]],["toc//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[9,0.074,17,1.594,18,1.604,35,0.39,89,2.83,112,2.487,169,2.841,244,3.496,256,4.25,581,5.697,649,4.081,688,3.02,928,7.468,1043,5.483]],["deprecated//docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/",[839,0.476]],["title//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[9,0.043,49,0.862,110,3.209,164,1.544,191,3.559,409,4.052,562,2.798,1278,4.973]],["keywords//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[164,2.211,191,5.096,1279,7.733]],["toc//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[4,1.811,9,0.067,14,1.171,16,2.48,17,1.933,18,1.945,29,1.251,35,0.473,1278,9.662]],["deprecated//docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/",[]],["title//docs/game-servers/host-a-terraria-server-on-your-linode/",[49,1.153,139,2.253,659,4.048,1280,6.274]],["keywords//docs/game-servers/host-a-terraria-server-on-your-linode/",[812,5.152,1048,4.921,1280,6.122,1281,4.189]],["toc//docs/game-servers/host-a-terraria-server-on-your-linode/",[0,1.084,9,0.043,17,1.252,18,1.26,35,0.444,38,1.909,40,2.184,41,3.85,42,1.788,49,1.467,80,2.234,85,3.85,90,1.625,114,4.308,325,2.596,327,1.972,381,1.875,583,3.388,623,3.556,628,4.048,723,3.128,742,3.556,926,3.766,1085,4.308,1280,9.686]],["deprecated//docs/game-servers/host-a-terraria-server-on-your-linode/",[]],["title//docs/networking/vpn/configuring-openvpn-client-devices/",[34,5.043,35,0.411,158,3.616,731,3.646]],["keywords//docs/networking/vpn/configuring-openvpn-client-devices/",[141,3.019,145,2.651,459,2.698,731,2.628,1282,4.523,1283,4.157,1284,4.794,1285,4.794]],["toc//docs/networking/vpn/configuring-openvpn-client-devices/",[17,1.564,18,1.574,35,0.383,60,2.037,139,2.101,145,3.429,153,2.907,158,5.187,351,4.055,459,3.49,630,4.003,776,2.535,998,4.807,1032,4.607,1283,5.378,1285,6.203,1286,4.807,1287,6.203]],["deprecated//docs/networking/vpn/configuring-openvpn-client-devices/",[]],["title//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[16,1.717,29,0.866,49,0.92,61,1.036,63,3.942,731,2.909,987,4.024]],["keywords//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[459,3.652,731,3.558,1282,6.122,1288,5.03]],["toc//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[9,0.038,17,1.101,18,1.66,35,0.605,45,2.112,46,2.085,49,1.134,90,1.428,101,2.248,158,3.557,163,2.657,169,2.617,203,1.371,325,2.282,326,2.894,410,3.024,428,2.855,459,2.457,662,1.986,688,2.085,731,4.302,776,1.785,1081,3.558,1098,3.558,1269,4.119,1286,6.083,1289,4.366,1290,4.742]],["deprecated//docs/networking/vpn/set-up-a-hardened-openvpn-server/",[]],["title//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[49,0.986,323,4.147,324,3.881,650,5.127,731,3.12,1096,3.542]],["keywords//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[459,3.652,731,3.558,1282,6.122,1288,5.03]],["toc//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[17,1.98,18,1.993,35,0.485,45,3.799,46,3.751,326,5.205,662,3.573,731,4.305,1291,8.53]],["deprecated//docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/",[]],["title//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.448,5,1.622,9,0.053,723,3.862,841,5.319]],["keywords//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[4,1.533,841,5.628,842,6.49,1292,7.049]],["toc//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[0,0.993,4,2.101,5,1.785,9,0.04,17,1.147,18,1.154,24,3.866,29,0.742,35,0.281,49,0.789,119,1.725,153,2.132,176,4.248,381,1.718,435,2.276,465,6.365,562,2.56,615,4.83,841,5.851,1066,4.2,1069,3.708,1293,4.942,1294,4.942,1295,4.942,1296,4.55]],["deprecated//docs/databases/mysql/deploy-mysql-workbench-for-database-administration/",[]],["title//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[11,0.724,47,2.347,774,3.693,1297,5.786,1298,5.786]],["keywords//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[110,3.559,203,2.435,1297,5.202,1298,5.202,1299,5.99]],["toc//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[0,1.052,9,0.072,11,0.569,16,1.559,17,1.215,18,1.223,24,3.384,29,0.787,30,2.259,35,0.601,39,2.085,176,2.155,203,1.513,213,3.392,258,1.053,345,2.302,789,1.513,919,3.655,1297,9.178,1298,7.846,1300,5.235]],["deprecated//docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/",[]],["title//docs/web-servers/lamp/lamp-on-centos-7/",[129,2.216,207,3.304,759,3.492]],["keywords//docs/web-servers/lamp/lamp-on-centos-7/",[4,1.211,129,1.565,258,0.767,259,1.43,759,2.465,891,3.889,1301,5.13]],["toc//docs/web-servers/lamp/lamp-on-centos-7/",[0,1.328,3,3.745,4,1.437,5,1.61,9,0.082,17,1.534,18,1.544,35,0.626,201,1.703,210,3.066,258,0.911,259,1.697,379,1.817,562,3.424,685,3.18,1302,6.61]],["deprecated//docs/web-servers/lamp/lamp-on-centos-7/",[]],["title//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[11,0.587,14,0.759,31,1.05,47,1.902,172,2.106,774,2.994,1303,2.488,1304,2.798]],["keywords//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[31,1.371,39,2.807,1303,3.247,1304,3.652]],["toc//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[9,0.058,16,2.172,17,1.693,18,1.704,29,1.096,31,1.874,35,0.547,39,2.905,172,2.844,213,4.727,919,5.092,1303,3.36,1304,4.99]],["deprecated//docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/",[]],["title//docs/websites/cms/install-and-configure-drupal-8/",[9,0.058,35,0.411,280,3.847,679,4.408]],["keywords//docs/websites/cms/install-and-configure-drupal-8/",[258,0.825,259,1.538,679,3.655,680,3.606,1170,3.948,1171,5.515]],["toc//docs/websites/cms/install-and-configure-drupal-8/",[17,1.766,18,1.777,35,0.432,54,4.709,64,2.952,80,3.15,112,2.756,258,1.048,264,5.204,280,4.053,679,6.043,799,5.43,1305,7.006]],["deprecated//docs/websites/cms/install-and-configure-drupal-8/",[]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[11,0.672,258,0.851,597,3.825,774,3.427,1306,5.691,1307,5.368]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[9,0.054,17,1.564,18,1.574,35,0.66,38,2.384,198,4.807,199,4.702,258,0.928,297,3,387,4.923,802,5.705,1303,3.103,1309,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/",[]],["title//docs/security/firewalls/configure-firewall-with-ufw/",[35,0.448,325,3.796,628,5.92]],["keywords//docs/security/firewalls/configure-firewall-with-ufw/",[11,0.407,61,0.672,325,1.8,623,2.466,628,2.807,662,1.567,981,2.385,1310,3.741,1311,3.741,1312,3.741,1313,3.741,1314,3.741,1315,3.741,1316,1.956]],["toc//docs/security/firewalls/configure-firewall-with-ufw/",[9,0.043,11,0.587,14,0.759,17,1.252,18,1.26,29,0.811,35,0.307,61,0.97,85,3.85,90,1.625,139,1.683,169,1.657,176,2.221,273,2.874,325,3.761,326,6.527,327,1.972,390,3.248,468,3.556,487,3.248,562,2.795,628,7.561,688,2.372,1316,2.821,1317,5.396]],["deprecated//docs/security/firewalls/configure-firewall-with-ufw/",[]],["title//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,1.242,14,0.869,262,2.771,275,3.542,747,4.637,759,2.735]],["keywords//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[20,3.269,262,2.498,747,4.18,751,4.304,1318,5.571,1319,5.571,1320,5.13]],["toc//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[0,2.217,4,1.27,5,1.423,14,1.163,35,0.332,60,1.767,90,1.76,169,2.541,201,1.505,258,1.14,259,1.5,262,4.685,379,1.606,381,2.031,428,3.517,748,4.847,1321,5.38,1322,4.169]],["deprecated//docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/",[]],["title//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.058,35,0.411,61,1.298,1323,6.274]],["keywords//docs/applications/voip/install-and-configure-mumble-on-debian/",[61,1.076,1048,4.181,1323,5.202,1324,5.99,1325,4.782,1326,5.99]],["toc//docs/applications/voip/install-and-configure-mumble-on-debian/",[9,0.076,17,1.659,18,1.669,29,1.074,35,0.406,49,1.517,119,2.495,153,4.101,158,3.577,925,6.58,1323,9.273,1327,7.146]],["deprecated//docs/applications/voip/install-and-configure-mumble-on-debian/",[]],["title//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[89,2.209,477,4.093,651,2.802,1328,6.651]],["keywords//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[169,1.501,256,3.025,768,3.903,1328,4.501,1329,4.245,1330,4.888,1331,4.501,1332,4.888,1333,4.888]],["toc//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[16,2.172,17,1.693,18,1.704,29,1.096,35,0.415,119,2.547,405,4.451,645,6.464,768,5.824,1127,5.824,1331,6.716,1334,7.294,1335,6.716,1336,7.294,1337,7.294]],["deprecated//docs/applications/cloud-storage/access-your-box-account-from-your-linode/",[]],["title//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.05,11,0.672,31,1.202,62,3.02,262,2.771,1338,5.127]],["keywords//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[11,0.841,31,1.504,1339,6.415]],["toc//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[9,0.079,17,1.766,18,1.777,31,2.142,35,0.432,64,2.952,80,3.15,171,3.907,1016,3.907,1338,8.215]],["deprecated//docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/",[]],["title//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[9,0.05,11,0.672,63,4.227,774,3.427,1005,4.774,1340,6.181]],["keywords//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[11,0.651,680,3.606,1005,4.627,1007,5.515,1008,5.515,1009,5.515]],["toc//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[0,1.199,5,0.92,9,0.073,17,0.877,18,0.882,30,1.63,35,0.215,39,1.504,40,2.414,49,1.459,60,1.803,100,1.133,119,2.082,140,2.244,142,2.447,169,1.831,172,1.473,187,1.777,191,2.489,297,3.292,325,1.817,345,1.661,350,2.19,381,1.313,405,2.304,436,3.28,649,3.544,688,1.661,728,3.133,755,2.489,1005,7.86,1011,3.477,1012,3.477,1014,3.477,1015,3.015,1081,2.833,1341,3.777,1342,3.477,1343,3.777]],["deprecated//docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.672,16,1.841,29,0.929,31,1.202,774,3.427,1339,5.127]],["keywords//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[11,0.606,31,1.084,562,2.886,1200,3.738,1338,4.621,1339,6.636]],["toc//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[9,0.052,29,0.975,31,1.977,35,0.369,64,3.453,65,1.962,80,2.686,171,3.332,261,2.406,262,3.991,339,1.79,412,1.596,435,2.989,659,3.636,1016,3.332,1338,7.385,1339,5.382]],["deprecated//docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/",[]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.046,31,1.121,61,1.036,280,3.07,776,2.169,1246,4.213,1344,4.453]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[31,1.26,885,4.129,1141,4.859,1344,5.003,1345,6.476]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[9,0.071,16,1.514,17,1.18,18,1.188,31,1.456,35,0.289,60,1.537,169,1.561,177,2.326,220,3.986,251,2.342,261,1.885,345,2.236,391,2.41,531,3.102,561,4.218,625,4.218,685,2.446,761,2.545,776,3.687,796,4.561,847,2.326,896,2.984,1143,3.927,1344,7.568]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.058,49,1.153,203,2.088,1346,6.651]],["keywords//docs/uptime/monitoring/monitoring-servers-with-monit/",[1347,9.594]],["toc//docs/uptime/monitoring/monitoring-servers-with-monit/",[9,0.045,11,0.615,35,0.46,42,1.875,61,1.016,127,1.814,129,1.588,164,1.617,201,1.457,204,2.721,302,3.169,339,1.56,352,4.036,399,4.036,528,5.207,537,3.665,562,2.93,832,4.912,1016,2.904,1316,2.956,1346,9.482,1348,4.515,1349,5.655,1350,3.948,1351,5.655,1352,0.84]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-monit/",[]],["title//docs/security/using-fail2ban-for-security/",[14,1.016,49,1.153,319,1.771,1353,4.761]],["keywords//docs/security/using-fail2ban-for-security/",[1353,5.096,1354,7.733,1355,7.12]],["toc//docs/security/using-fail2ban-for-security/",[9,0.043,11,0.578,14,0.747,29,0.798,35,0.569,61,0.955,127,1.704,129,1.492,158,2.66,207,2.226,232,3.566,307,3.502,635,3.119,766,1.898,1107,4.408,1350,3.71,1353,7.007,1355,4.893,1356,5.314,1357,5.314,1358,5.314,1359,5.314,1360,4.893,1361,7.731,1362,4.893,1363,4.616]],["deprecated//docs/security/using-fail2ban-for-security/",[]],["title//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.627,47,2.031,49,0.92,320,2.934,774,3.196,1242,5.006,1364,5.307]],["keywords//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[11,0.606,809,3.889,812,4.072,1200,3.738,1237,4.304,1365,5.571,1366,5.571]],["toc//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[9,0.056,17,1.626,18,1.636,35,0.398,49,1.496,80,2.9,320,5.38,706,2.102,975,5.81,1242,6.083,1364,9.732,1367,7.004,1368,7.004]],["deprecated//docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/",[]],["title//docs/development/version-control/install-gogs-on-debian/",[9,0.05,30,2.667,31,1.202,61,1.111,63,4.227,1369,5.368]],["keywords//docs/development/version-control/install-gogs-on-debian/",[30,2.795,31,1.26,56,5.372,138,3.325,1369,5.625]],["toc//docs/development/version-control/install-gogs-on-debian/",[9,0.094,14,0.896,17,1.479,30,2.749,31,1.239,35,0.362,41,4.546,54,3.942,164,1.822,217,2.935,312,3.786,410,4.062,651,2.471,1081,4.78,1369,9.426]],["deprecated//docs/development/version-control/install-gogs-on-debian/",[]],["title//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[9,0.046,11,0.627,191,3.799,273,3.07,345,2.535,774,3.196,1370,3.799]],["keywords//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[11,0.388,1055,1.345,1200,2.398,1263,3.104,1370,2.355,1371,3.573,1372,2.244,1373,3.573,1374,3.573,1375,3.573,1376,3.573,1377,3.573,1378,3.573,1379,3.104,1380,3.573]],["toc//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[0,1.607,9,0.075,16,1.658,29,1.201,35,0.316,42,1.845,49,0.888,64,2.159,89,1.702,90,1.677,119,1.943,220,2.964,299,4.176,477,5.3,687,2.084,776,3.52,796,2.858,1143,4.3,1321,5.125,1370,6.738]],["deprecated//docs/email/zimbra/zimbra-on-ubuntu-14-04/",[]],["title//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.058,129,2.029,207,3.025,1381,5.28]],["keywords//docs/applications/voip/install-asterisk-on-centos-7/",[129,1.159,891,2.882,1382,4.129,1383,4.129,1384,4.129,1385,3.586,1386,4.129,1387,4.129,1388,4.129,1389,4.129,1390,4.129,1391,4.129]],["toc//docs/applications/voip/install-asterisk-on-centos-7/",[9,0.088,17,1.197,18,1.205,35,0.43,45,2.298,46,2.268,74,2.541,80,2.136,129,1.449,171,3.884,297,2.298,325,2.482,327,1.886,334,2.161,345,2.268,472,2.482,623,3.4,649,3.066,1381,7.21,1392,5.159,1393,6.965,1394,4.279,1395,5.159,1396,5.159,1397,4.48]],["deprecated//docs/applications/voip/install-asterisk-on-centos-7/",[]],["title//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.672,89,1.89,651,2.397,762,4.073,774,3.427,1127,4.935]],["keywords//docs/applications/cloud-storage/access-google-drive-linode/",[11,0.651,691,4.627,762,3.948,926,4.181,1127,4.782,1398,5.99]],["toc//docs/applications/cloud-storage/access-google-drive-linode/",[9,0.061,151,5.015,223,5.106,645,5.106,651,3.842,762,6.527,789,2.2,790,3.718,1127,7.907,1269,6.609,1399,7.609]],["deprecated//docs/applications/cloud-storage/access-google-drive-linode/",[]],["title//docs/security/firewalls/introduction-to-firewalld-on-centos/",[129,2.216,146,4.63,1085,6.299]],["keywords//docs/security/firewalls/introduction-to-firewalld-on-centos/",[89,1.201,127,1.259,129,1.102,139,1.224,256,2.429,319,0.962,325,1.889,623,2.587,1085,3.134,1400,3.925,1401,3.925,1402,3.925,1403,3.925]],["toc//docs/security/firewalls/introduction-to-firewalld-on-centos/",[9,0.048,29,0.893,35,0.551,42,1.969,90,1.79,318,3.227,325,2.859,326,3.625,350,3.445,435,2.737,487,3.577,558,4.147,623,3.916,994,5.16,1085,7.742,1097,3.577,1404,3.916,1405,5.941,1406,5.941,1407,5.941,1408,5.471,1409,5.941,1410,4.59]],["deprecated//docs/security/firewalls/introduction-to-firewalld-on-centos/",[]],["title//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.05,35,0.351,49,0.986,209,3.427,516,4.073,855,4.774]],["keywords//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[1411,7.733,1412,7.733,1413,7.733]],["toc//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[9,0.071,17,1.506,18,1.516,35,0.578,47,2.286,65,1.962,176,2.671,209,3.597,282,2.989,516,7.803,799,4.63,855,5.012,1414,5.974,1415,6.488]],["deprecated//docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/",[]],["title//docs/development/java/java-development-wildfly-centos-7/",[12,3.391,129,1.871,207,2.79,265,3.909,1253,5.146]],["keywords//docs/development/java/java-development-wildfly-centos-7/",[3,3.157,4,1.211,12,2.836,258,0.767,1253,4.304,1257,4.839,1416,5.571]],["toc//docs/development/java/java-development-wildfly-centos-7/",[4,1.21,9,0.075,12,2.833,14,0.783,17,1.292,18,1.3,32,3.549,33,2.331,35,0.454,49,0.888,176,2.291,217,3.682,258,1.101,280,2.964,559,5.125,603,4.444,939,3.444,1253,7.226,1272,4.068,1417,5.566,1418,5.566,1419,5.566,1420,5.566,1421,5.566]],["deprecated//docs/development/java/java-development-wildfly-centos-7/",[]],["title//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.063,35,0.448,747,5.92]],["keywords//docs/applications/configuration-management/install-and-configure-puppet/",[749,7.12,750,6.716,751,5.973]],["toc//docs/applications/configuration-management/install-and-configure-puppet/",[9,0.059,17,1.147,18,1.154,29,0.742,35,0.549,119,1.725,120,7.543,176,3.978,208,4.152,209,4.843,262,3.286,273,2.632,392,3.526,623,3.257,655,2.215,747,8.111,761,2.473,776,1.86,796,2.537]],["deprecated//docs/applications/configuration-management/install-and-configure-puppet/",[]],["title//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.405,35,0.411,349,4.941,527,5.155]],["keywords//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[31,1.26,335,4.008,349,4.429,527,4.621,711,3.242]],["toc//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[17,0.959,19,2.179,88,2.948,145,2.103,153,3.379,158,2.068,169,1.964,203,1.194,217,1.903,226,3.803,302,2.315,303,3.191,349,4.376,350,2.395,352,2.948,394,3.803,398,6.251,524,3.588,530,3.099,688,3.443,712,2.034,837,3.019,1000,3.588,1078,3.019,1422,3.588,1423,4.017,1424,4.131,1425,2.455,1426,4.131,1427,3.588,1428,4.131,1429,4.131,1430,4.131,1431,3.803,1432,3.803,1433,4.131,1434,3.427,1435,3.803,1436,4.131,1437,3.803,1438,3.803,1439,4.131,1440,4.131,1441,3.803]],["deprecated//docs/web-servers/nginx/configure-nginx-for-optimized-performance/",[]],["title//docs/game-servers/minecraft-with-bungee-cord/",[16,1.841,29,0.929,49,0.986,683,4.517,1442,5.368,1443,4.935]],["keywords//docs/game-servers/minecraft-with-bungee-cord/",[683,3.572,1281,2.905,1442,4.245,1443,3.903,1444,4.888,1445,4.888,1446,4.888,1447,4.888,1448,4.888]],["toc//docs/game-servers/minecraft-with-bungee-cord/",[9,0.058,16,2.16,29,1.09,35,0.492,49,1.383,89,2.218,100,1.462,153,2.103,208,2.761,250,3.764,325,3.49,381,1.694,706,1.462,718,3.891,789,1.409,790,2.381,1016,2.502,1281,2.896,1442,8.911,1443,5.791,1449,4.873,1450,4.873,1451,6.017,1452,6.3]],["deprecated//docs/game-servers/minecraft-with-bungee-cord/",[]],["title//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[9,0.053,381,2.315,588,5.319,735,5.526,1453,6.134]],["keywords//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[735,4.32,1454,7.617,1455,5.207,1456,5.207,1457,5.207,1458,5.207,1459,5.207]],["toc//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[0,0.966,9,0.058,11,0.523,14,0.676,35,0.488,38,1.701,46,2.114,49,0.767,119,1.678,142,4.652,164,1.374,169,1.476,185,4.175,210,2.23,236,3.43,275,2.755,289,3.838,339,1.981,381,2.495,659,2.694,706,1.442,735,8.462,799,3.43,1238,3.713,1453,7.912,1460,4.807,1461,4.807,1462,4.807,1463,4.175]],["deprecated//docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/",[]],["title//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[35,0.448,687,2.955,1159,5.294]],["keywords//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.042,35,0.296,89,1.593,499,4.157,636,3.494,687,1.95,776,1.96,1159,3.494]],["toc//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[9,0.056,17,1.626,18,1.636,31,1.362,35,0.533,49,1.496,164,2.681,251,3.226,258,0.965,531,4.274,687,2.623,745,5.81,776,2.636,790,3.422,1159,4.7]],["deprecated//docs/platform/nodebalancer/nodebalancer-ssl-configuration/",[]],["title//docs/networking/using-the-linode-graphical-shell-glish/",[14,0.937,89,2.038,382,4.317,949,5.526,1464,5.319]],["keywords//docs/networking/using-the-linode-graphical-shell-glish/",[382,4.568,926,4.921,949,5.847,1464,5.628]],["toc//docs/networking/using-the-linode-graphical-shell-glish/",[89,2.742,102,6.726,327,3.277,470,5.023,651,3.477,949,9.112]],["deprecated//docs/networking/using-the-linode-graphical-shell-glish/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[4,1.571,9,0.058,129,2.029,207,3.025]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1465,2.87,1466,3.476,1467,3.476,1468,3.612,1469,3.107]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-7/",[]],["title//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,4.093,9,0.058,129,2.029,207,3.025]],["keywords//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1466,3.476,1469,3.107,1470,4.354,1471,4.354,1472,4.354]],["toc//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[0,1.703,3,6.561,5,1.472,9,0.048,14,0.85,17,1.403,18,1.412,49,0.965,80,2.502,96,3.025,119,2.11,213,3.916,335,3.74,946,3.983,950,3.74,951,4.513,952,2.727,987,4.219,1066,3.463]],["deprecated//docs/databases/mariadb/how-to-install-mariadb-on-centos-7/",[]],["title//docs/uptime/monitoring/monitor-systems-logwatch/",[203,2.088,339,1.993,688,3.176,1473,4.14]],["keywords//docs/uptime/monitoring/monitor-systems-logwatch/",[319,1.587,688,3.91,1473,3.711,1474,4.621]],["toc//docs/uptime/monitoring/monitor-systems-logwatch/",[9,0.043,11,0.578,21,3.081,35,0.302,61,0.955,127,1.704,129,1.492,139,1.657,169,1.632,187,2.501,207,2.226,324,3.337,381,3.167,437,3.288,688,2.337,766,1.898,926,3.71,1316,2.778,1473,6.723,1475,5.314,1476,4.616,1477,9.112,1478,4.243]],["deprecated//docs/uptime/monitoring/monitor-systems-logwatch/",[]],["title//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.672,49,0.986,164,1.767,258,0.851,774,3.427,1184,3.044]],["keywords//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[11,0.651,217,2.759,258,0.825,711,2.998,1200,4.019,1479,5.99]],["toc//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[9,0.079,17,1.427,18,1.436,35,0.487,40,3.472,154,4.613,201,1.584,258,1.361,262,4.792,302,3.446,334,2.575,379,1.69,472,2.958,1480,4.292,1481,5.34,1482,4.75]],["deprecated//docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.627,49,0.92,90,1.736,459,2.986,744,3.567,774,3.196,1483,5.006]],["keywords//docs/networking/vpn/pritunl-vpn-ubuntu/",[11,0.704,459,3.355,1200,4.346,1483,5.625,1484,6.476]],["toc//docs/networking/vpn/pritunl-vpn-ubuntu/",[9,0.07,17,2.029,18,2.042,35,0.497,49,1.395,153,3.772,1483,9.393]],["deprecated//docs/networking/vpn/pritunl-vpn-ubuntu/",[]],["title//docs/game-servers/install-teamspeak/",[9,0.058,49,1.153,89,2.209,1485,6.274]],["keywords//docs/game-servers/install-teamspeak/",[1237,5.445,1485,6.122,1486,7.049,1487,5.445]],["toc//docs/game-servers/install-teamspeak/",[9,0.056,17,1.626,18,1.636,35,0.398,64,2.717,80,2.9,312,4.162,325,3.37,370,5.592,381,2.434,481,4.616,620,4.998,1485,10.221,1488,7.004]],["deprecated//docs/game-servers/install-teamspeak/",[]],["title//docs/networking/dns/configure-your-linode-for-reverse-dns/",[32,4.248,35,0.379,89,2.038,490,2.357,1489,6.134]],["keywords//docs/networking/dns/configure-your-linode-for-reverse-dns/",[654,5.171,1490,6.476,1491,5.963,1492,5.625,1493,6.476]],["toc//docs/networking/dns/configure-your-linode-for-reverse-dns/",[29,1.499,32,6.363,490,3.532]],["deprecated//docs/networking/dns/configure-your-linode-for-reverse-dns/",[]],["title//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.05,31,1.202,49,0.986,61,1.111,164,1.767,280,3.292]],["keywords//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[31,1.165,61,1.076,217,2.759,711,2.998,885,3.819,886,5.202]],["toc//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[9,0.067,17,1.933,18,1.945,31,2.041,61,1.497,65,2.518,282,4.833,345,3.662]],["deprecated//docs/web-servers/nginx/install-nginx-web-server-on-debian-8/",[]],["title//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[14,0.81,35,0.328,275,3.303,516,3.799,759,2.551,855,4.453,1494,4.602]],["keywords//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[4,1.211,139,1.737,258,0.767,259,1.43,516,3.672,885,3.552,1495,5.13]],["toc//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[0,2.174,35,0.497,169,2.684,201,2.252,379,2.403,759,3.869,1494,6.979]],["deprecated//docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/",[]],["title//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,1.021,14,0.714,275,2.911,516,4.93,759,2.248,855,3.924,1353,3.348,1494,4.056]],["keywords//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[4,1.063,258,0.673,259,1.255,516,3.221,885,3.117,1353,3.221,1495,4.501,1496,3.903,1497,4.888]],["toc//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[0,2.048,35,0.452,169,2.442,177,3.638,209,4.409,516,6.716,550,6.349,855,6.143,1494,6.349,1498,7.953]],["deprecated//docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/",[]],["title//docs/web-servers/apache/apache-web-server-debian-8/",[49,0.986,61,1.111,164,1.767,258,0.851,280,3.292,1246,4.517]],["keywords//docs/web-servers/apache/apache-web-server-debian-8/",[61,0.936,258,0.717,689,4.794,690,4.157,711,2.606,1499,5.207,1500,4.157,1501,5.207]],["toc//docs/web-servers/apache/apache-web-server-debian-8/",[9,0.078,17,1.403,18,1.412,35,0.482,40,3.43,154,4.534,201,1.557,258,1.461,262,4.756,302,3.387,334,2.531,379,1.662,472,2.908,1480,4.219,1481,5.249,1482,4.668]],["deprecated//docs/web-servers/apache/apache-web-server-debian-8/",[]],["title//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[61,1.298,280,3.847,759,3.197,1246,5.28]],["keywords//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,0.898,61,0.742,258,0.569,259,1.06,292,2.102,759,1.827,885,2.632,1502,4.129,1503,4.129,1504,3.425,1505,3.801,1506,4.129]],["toc//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[4,2.275,5,1.673,9,0.074,16,2.045,17,1.594,18,1.604,29,1.032,35,0.526,201,1.769,210,3.186,258,1.275,259,1.763,379,1.888,685,3.304]],["deprecated//docs/web-servers/lamp/lamp-on-debian-8-jessie/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,3.558,101,3.424,102,5.42,381,2.511]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[74,2.95,851,4.274,911,4.181,916,3.515,1507,5.515,1508,5.515]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[9,0.068,35,0.485,74,4.201,101,5.049,377,5.955,916,5.006,1509,6.811,1510,7.854]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/",[]],["title//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,3.044,89,1.89,101,2.929,102,4.637,381,2.148,911,4.314]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[74,2.744,851,3.975,882,4.621,911,3.889,916,3.269,1507,5.13,1508,5.13]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[9,0.049,11,0.932,35,0.349,61,1.541,74,3.028,101,4.682,127,2.751,129,2.409,139,1.918,207,2.575,377,4.292,485,3.861,916,3.608,1316,4.484,1509,4.909,1510,5.661,1511,5.308]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/",[]],["title//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.296,61,1.197,63,4.556,464,3.482,1196,3.548]],["keywords//docs/development/ror/ruby-on-rails-nginx-debian/",[31,1.084,61,1.001,464,2.912,1197,3.354,1512,3.889,1513,3.447,1514,5.13]],["toc//docs/development/ror/ruby-on-rails-nginx-debian/",[4,1.361,9,0.086,17,1.453,18,1.462,31,1.689,45,2.787,46,2.752,47,2.205,80,2.591,200,3.546,297,2.787,327,2.288,334,2.621,464,3.271,472,4.178,709,4.92,1196,4.625]],["deprecated//docs/development/ror/ruby-on-rails-nginx-debian/",[]],["title//docs/applications/configuration-management/vagrant-linode-environments/",[14,0.937,89,2.038,90,2.007,163,3.733,1515,5.786]],["keywords//docs/applications/configuration-management/vagrant-linode-environments/",[20,2.703,89,1.409,90,1.387,151,3.035,258,0.634,265,2.703,464,2.408,677,4,1515,4,1516,4.241]],["toc//docs/applications/configuration-management/vagrant-linode-environments/",[9,0.074,16,2.045,29,1.032,35,0.526,49,1.096,89,2.101,107,3.891,169,2.109,258,0.946,520,3.849,649,4.081,706,2.061,768,5.483,1515,8.037,1516,6.323,1517,5.965]],["deprecated//docs/applications/configuration-management/vagrant-linode-environments/",[]],["title//docs/platform/kvm-reference/",[911,6.067,1518,7.21]],["keywords//docs/platform/kvm-reference/",[911,4.521,1519,6.476,1520,6.476,1521,6.476,1522,5.625]],["toc//docs/platform/kvm-reference/",[34,4.368,35,0.356,74,3.082,99,3.469,129,1.758,139,1.952,244,3.186,247,3.93,327,2.288,360,4.368,379,1.721,445,3.93,587,3.93,649,3.719,790,3.058,877,5.435,911,4.368,926,4.368,1023,2.636,1316,3.271,1410,4.834,1522,5.435,1523,6.258,1524,4.695]],["deprecated//docs/platform/kvm-reference/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[4,1.571,9,0.058,61,1.298,280,3.847]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[3,2.339,4,0.898,5,1.005,61,0.742,139,1.288,256,2.555,885,2.632,1465,2.721,1466,3.296,1467,3.296,1468,3.425,1469,2.946]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-8/",[]],["title//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.046,11,0.627,31,1.121,35,0.328,62,2.816,259,1.48,1168,2.224]],["keywords//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[31,1.371,259,1.81,892,5.289,1168,2.72]],["toc//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[9,0.054,17,1.564,18,1.574,31,1.777,35,0.383,60,2.037,65,2.037,118,5.851,201,1.735,259,2.66,261,2.498,302,3.775,319,1.651,379,1.852,615,4.44,1168,2.6,1525,4.23]],["deprecated//docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/",[]],["title//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.724,31,1.296,259,1.71,774,3.693,1168,2.571]],["keywords//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[11,0.606,31,1.084,259,1.43,1168,2.15,1526,5.571,1527,3.269,1528,3.738]],["toc//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.551,42,1.969,60,1.796,65,1.796,80,2.46,148,5.519,187,2.796,201,1.53,259,1.525,261,2.203,319,1.456,327,2.172,379,1.633,412,1.461,615,3.916,1168,2.293,1423,3.731,1525,3.731,1529,3.677]],["deprecated//docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/",[]],["title//docs/applications/configuration-management/beginners-guide-chef/",[1161,5.92,1530,7.265,1531,5.63]],["keywords//docs/applications/configuration-management/beginners-guide-chef/",[20,2.869,751,3.776,1320,4.501,1531,3.488,1532,4.888,1533,4.501,1534,4.888,1535,3.776,1536,4.501]],["toc//docs/applications/configuration-management/beginners-guide-chef/",[49,1.036,157,5.974,158,3.248,163,3.636,169,1.992,208,3.676,381,2.255,485,4.074,521,3.906,641,5.635,753,4.63,1108,5.382,1531,7.252,1535,5.012,1537,6.488,1538,5.635,1539,6.488,1540,6.488,1541,6.488,1542,5.974]],["deprecated//docs/applications/configuration-management/beginners-guide-chef/",[]],["title//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.452,799,5.155,1531,5.155,1535,5.58]],["keywords//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[20,3.056,751,4.022,759,2.304,1496,4.157,1531,3.716,1535,4.022,1536,4.794,1543,5.207]],["toc//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[0,1.767,4,2.36,9,0.051,16,1.897,29,0.957,35,0.5,64,2.471,201,1.641,237,3.942,258,1.211,259,1.636,327,2.329,379,1.752,952,2.875,1535,4.922,1542,5.866,1544,6.371]],["deprecated//docs/applications/configuration-management/creating-your-first-chef-cookbook/",[]],["title//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[9,0.05,11,0.672,49,0.986,774,3.427,1108,5.127,1531,4.41]],["keywords//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[750,4.245,751,3.776,1211,3.776,1531,3.488,1533,4.501,1545,4.888,1546,4.888,1547,4.888,1548,4.501]],["toc//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[0,1.194,9,0.048,16,1.769,29,0.893,49,1.336,64,2.305,119,2.074,140,3.531,176,3.447,208,3.366,251,2.737,334,2.488,476,2.816,519,5.16,531,3.625,706,1.783,761,2.974,961,4.744,1108,6.946,1531,5.975,1535,4.59,1548,5.471,1549,5.941]],["deprecated//docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/",[]],["title//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.046,49,0.92,139,1.798,319,1.413,651,2.236,731,2.909,894,3.675]],["keywords//docs/networking/vpn/install-openvpn-access-server-on-linux/",[11,0.606,61,1.001,127,1.787,129,1.565,459,2.886,662,2.333,731,2.812]],["toc//docs/networking/vpn/install-openvpn-access-server-on-linux/",[9,0.07,29,0.957,35,0.362,49,1.017,90,1.919,119,2.224,139,1.987,141,3.694,145,3.243,158,4.401,351,3.835,525,4.128,651,2.471,731,5.748,789,1.842,1550,6.371,1551,6.371]],["deprecated//docs/networking/vpn/install-openvpn-access-server-on-linux/",[]],["title//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[89,2.209,1423,4.536,1552,5.155,1553,5.28]],["keywords//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[319,1.587,325,3.116,1554,6.476,1555,6.476,1556,5.625]],["toc//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[14,1.268,19,3.487,273,3.521,435,3.045,558,4.614,688,2.907,968,6.086,994,5.741,1423,6.444,1553,7.5,1557,6.086,1558,6.61,1559,6.61,1560,6.086,1561,6.61,1562,5.741]],["deprecated//docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/",[]],["title//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.298,280,3.847,1033,3.502,1246,5.28]],["keywords//docs/security/upgrading/upgrade-to-debian-8-jessie/",[61,1.267,1033,3.417,1246,5.152,1563,4.243]],["toc//docs/security/upgrading/upgrade-to-debian-8-jessie/",[9,0.054,15,4.055,16,2.006,42,2.233,61,1.211,74,3.318,80,2.789,89,2.06,100,2.021,112,2.439,280,3.588,367,4.807,522,4.295,583,4.23,742,4.44,790,3.291,1016,3.459,1033,4.428,1564,5.851]],["deprecated//docs/security/upgrading/upgrade-to-debian-8-jessie/",[]],["title//docs/game-servers/minecraft-with-spigot-ubuntu/",[11,0.627,49,0.92,381,2.004,774,3.196,1281,3.425,1443,4.602,1565,5.764]],["keywords//docs/game-servers/minecraft-with-spigot-ubuntu/",[1281,5.089,1443,6.837]],["toc//docs/game-servers/minecraft-with-spigot-ubuntu/",[0,1.529,9,0.061,35,0.432,49,1.214,80,3.15,99,4.219,107,4.311,112,2.756,119,2.657,578,7.006,649,4.522,1281,4.522,1566,9.904]],["deprecated//docs/game-servers/minecraft-with-spigot-ubuntu/",[]],["title//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.043,11,0.587,49,0.862,774,2.994,1048,3.77,1080,4.691,1567,5.401,1568,4.973]],["keywords//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[11,0.531,809,3.412,1048,3.412,1147,3.776,1200,3.28,1237,3.776,1259,4.501,1569,4.888,1570,4.888]],["toc//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[9,0.054,17,1.564,18,1.574,35,0.383,49,1.458,80,2.789,336,3.554,706,2.021,975,5.588,1080,9,1147,5.204,1568,9.541,1571,6.737,1572,9.133]],["deprecated//docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/",[]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.587,61,0.97,74,2.66,99,2.994,562,2.798,847,2.471,916,3.169,1573,3.854]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[11,0.566,61,0.936,848,4.022,849,4.022,850,3.907,851,3.716,1574,4.157,1575,4.157]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/",[839,0.476]],["title//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[14,0.937,109,4.65,543,3.733,719,5.146,1576,6.662]],["keywords//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[11,0.704,61,1.164,109,4.521,543,3.629,719,5.003]],["toc//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[0,0.802,8,2.786,9,0.083,12,2.031,15,2.402,16,1.188,24,2.756,35,0.533,42,1.323,44,5.734,60,1.883,64,1.548,96,1.997,107,3.529,109,5.347,119,2.174,169,1.225,225,2.371,334,1.671,350,2.314,445,2.506,477,2.261,523,3.082,635,2.342,706,1.197,719,7.683,780,3.674,1071,2.729,1081,2.994,1577,3.99,1578,8.654]],["deprecated//docs/websites/cms/turbocharge-wordpress-search-with-solr/",[]],["title//docs/game-servers/pocketmine-server-on-debian-7/",[49,1.153,61,1.298,207,3.025,1579,6.274]],["keywords//docs/game-servers/pocketmine-server-on-debian-7/",[61,1.39,1281,4.595,1579,6.716]],["toc//docs/game-servers/pocketmine-server-on-debian-7/",[9,0.085,49,1.7,107,4.833,153,3.681,381,2.965,706,2.56,1579,7.409]],["deprecated//docs/game-servers/pocketmine-server-on-debian-7/",[]],["title//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,2.684,368,2.635,686,5.127,1518,5.127,1580,6.181,1581,6.181]],["keywords//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,3.061,368,3.005,1582,7.049,1583,7.049]],["toc//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[132,3.616,134,5.589,385,1.202,435,3.836,470,6.438,676,7.669,765,7.669]],["deprecated//docs/applications/containers/docker-commands-quick-reference-cheat-sheet/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,3.502,129,1.736,207,2.589,766,2.207,1055,2.326,1584,3.261]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[766,2.313,891,4.521,1585,6.476,1586,6.476,1587,4.621]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[3,4.634,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.344,129,1.736,766,2.207,1023,2.604,1055,2.326,1584,3.261]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[766,2.313,1025,5.171,1587,4.621,1590,6.476,1591,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[4,1.778,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/",[]],["title//docs/applications/containers/node-js-web-server-deployed-within-docker/",[47,2.177,49,0.986,132,2.684,164,1.767,197,4.314,813,5.127]],["keywords//docs/applications/containers/node-js-web-server-deployed-within-docker/",[11,0.566,61,0.936,132,2.261,134,2.773,197,3.635,208,2.95,711,2.606,1592,4.794]],["toc//docs/applications/containers/node-js-web-server-deployed-within-docker/",[9,0.062,49,1.603,64,3.017,132,4.831,134,4.142,164,2.224,197,7.012,381,2.703,470,4.358]],["deprecated//docs/applications/containers/node-js-web-server-deployed-within-docker/",[]],["title//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.724,61,1.197,320,3.391,1593,5.146,1594,6.134]],["keywords//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[11,0.704,61,1.164,812,4.733,1595,6.476,1596,6.476]],["toc//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[9,0.049,14,0.864,17,1.427,18,1.436,35,0.349,40,2.489,49,0.981,242,4.75,320,5.028,368,2.621,706,1.845,1081,4.613,1219,5.661,1239,7.898,1271,3.524,1593,7.631,1594,9.095,1597,5.661]],["deprecated//docs/game-servers/team-fortress2-on-debian-and-ubuntu/",[]],["title//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.448,14,0.937,349,4.556,527,4.754,1469,4.754]],["keywords//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,1.533,1469,5.03,1598,7.049,1599,6.49]],["toc//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[4,2.184,335,4.813,349,5.319,919,5.429,955,6.755,1469,5.55,1600,7.777,1601,7.777,1602,7.777,1603,7.777,1604,7.777,1605,7.777]],["deprecated//docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/",[]],["title//docs/uptime/reboot-survival-guide/",[95,5.766,1045,7.265,1161,5.92]],["keywords//docs/uptime/reboot-survival-guide/",[95,5.152,1606,7.049,1607,7.049,1608,7.049]],["toc//docs/uptime/reboot-survival-guide/",[2,3.112,5,1.423,11,0.635,15,4.982,16,2.464,42,1.937,60,1.767,61,1.05,95,6.048,129,2.324,169,1.794,195,4.169,207,2.447,316,4.079,325,2.811,326,3.565,498,4.384,615,3.851,687,2.188,814,5.075,1023,2.461,1609,5.843,1610,5.843,1611,5.843]],["deprecated//docs/uptime/reboot-survival-guide/",[]],["title//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[49,1.259,258,1.087,335,4.882]],["keywords//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[35,0.401,258,0.971,711,3.528,1599,6.49]],["toc//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[154,5.153,258,0.946,262,4.149,302,3.849,398,5.483,832,5.965,919,4.794,1480,4.794,1481,5.965,1612,6.323,1613,6.868,1614,6.868,1615,6.868,1616,6.868,1617,6.868,1618,6.868,1619,6.868,1620,6.868]],["deprecated//docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/",[]],["title//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[9,0.053,47,2.347,132,2.893,275,3.818,759,2.948]],["keywords//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[11,0.704,61,1.164,132,2.812,759,3.935]],["toc//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[4,1.586,9,0.077,29,1.096,35,0.415,64,2.829,132,4.683,134,3.885,258,1.005,381,2.535,470,4.088,652,4.58,706,2.189,759,3.228]],["deprecated//docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/",[839,0.476]],["title//docs/uptime/monitoring/top-htop-iotop/",[14,0.937,49,1.063,203,1.926,527,4.754,550,5.319]],["keywords//docs/uptime/monitoring/top-htop-iotop/",[203,1.872,550,5.171,1621,5.625,1622,5.963,1623,5.171]],["toc//docs/uptime/monitoring/top-htop-iotop/",[177,3.558,290,5.684,334,3.257,368,4.743,389,4.682,550,6.209,741,7.161,742,5.126,1557,7.161,1621,6.755,1622,7.161]],["deprecated//docs/uptime/monitoring/top-htop-iotop/",[]],["title//docs/tools-reference/tools/load-testing-with-siege/",[49,1.063,60,2.014,164,1.905,316,4.65,1624,5.786]],["keywords//docs/tools-reference/tools/load-testing-with-siege/",[1624,6.716,1625,7.733,1626,7.733]],["toc//docs/tools-reference/tools/load-testing-with-siege/",[0,1.598,35,0.579,64,3.085,169,2.442,289,6.349,368,4.344,381,2.764,388,4.611,1624,8.85]],["deprecated//docs/tools-reference/tools/load-testing-with-siege/",[]],["title//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,3.266,11,0.627,16,1.717,29,0.866,61,1.036,328,2.535,1088,4.602]],["keywords//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[3,2.95,4,1.132,11,0.566,61,0.936,328,2.29,500,3.907,1088,4.157,1627,4.794]],["toc//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[5,2.028,9,0.067,29,1.251,35,0.473,60,2.518,65,2.518,261,3.089,325,4.007,1075,4.667,1088,6.65]],["deprecated//docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/",[]],["title//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[80,3.266,481,5.2,1159,5.294]],["keywords//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[499,7.472,500,4.18,1159,5.367,1627,5.13]],["toc//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[35,0.432,177,3.481,201,1.96,222,5.43,379,2.092,584,6.609,643,6.312,684,4.053,887,5.561,1159,7.388,1628,4.709,1629,7.609]],["deprecated//docs/platform/nodebalancer/getting-started-with-nodebalancers/",[]],["title//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[9,0.053,138,3.421,282,3.069,898,5.526,1084,4.869]],["keywords//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[138,3.076,898,4.969,1630,5.202,1631,4.782,1632,4.782,1633,4.969]],["toc//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[0,1.745,9,0.05,35,0.356,60,2.625,138,3.213,220,3.333,282,2.883,454,5.191,477,3.546,764,5.762,898,7.203,1084,6.346,1538,8.661,1634,8.683,1635,6.258,1636,6.258,1637,6.258]],["deprecated//docs/development/version-control/how-to-install-git-and-clone-a-github-repository/",[]],["title//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.053,35,0.379,61,1.197,207,2.79,564,5.526]],["keywords//docs/uptime/monitoring/ossec-ids-debian-7/",[67,7.885,1638,8.563]],["toc//docs/uptime/monitoring/ossec-ids-debian-7/",[9,0.042,29,0.787,35,0.435,64,2.031,96,3.828,99,2.903,169,2.774,187,3.598,203,1.513,232,3.513,326,3.194,360,3.655,404,6.795,537,3.392,564,8.766,613,4.82,706,1.571,766,1.87,837,3.826,896,3.072,1350,3.655,1435,4.82,1639,4.82]],["deprecated//docs/uptime/monitoring/ossec-ids-debian-7/",[]],["title//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.058,61,1.298,1281,4.293,1640,6.274]],["keywords//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[61,0.878,885,3.117,886,4.245,1246,3.572,1281,2.905,1563,2.943,1640,4.245,1641,4.245,1642,3.412]],["toc//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[9,0.08,17,1.805,18,1.817,35,0.442,49,1.241,80,3.22,90,2.343,325,3.742,706,2.334,789,2.248,1281,4.622,1640,6.755]],["deprecated//docs/game-servers/minecraft-with-mcmyadmin-on-debian/",[]],["title//docs/game-servers/multicraft-on-debian/",[9,0.063,61,1.418,1643,6.095]],["keywords//docs/game-servers/multicraft-on-debian/",[61,1.39,1281,4.595,1643,5.973]],["toc//docs/game-servers/multicraft-on-debian/",[9,0.087,35,0.497,476,4.143,706,2.623,744,5.409,1281,5.195,1643,6.753]],["deprecated//docs/game-servers/multicraft-on-debian/",[839,0.476]],["title//docs/game-servers/multicraft-on-ubuntu/",[9,0.063,11,0.858,1643,6.095]],["keywords//docs/game-servers/multicraft-on-ubuntu/",[11,0.841,1281,4.595,1643,5.973]],["toc//docs/game-servers/multicraft-on-ubuntu/",[9,0.087,35,0.497,476,4.143,706,2.623,744,5.409,1281,5.195,1643,6.753]],["deprecated//docs/game-servers/multicraft-on-ubuntu/",[]],["title//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.038,11,0.521,49,0.765,61,0.862,89,1.467,324,3.011,905,3.505,1103,4.165,1644,4.165,1645,4.415]],["keywords//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[1644,6.716,1645,7.12,1646,7.733]],["toc//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[9,0.072,14,1.26,35,0.509,112,3.246,339,2.473,1644,9.54]],["deprecated//docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/",[]],["title//docs/uptime/analytics/google-analytics-for-websites/",[110,4.689,292,4.016,762,5.2]],["keywords//docs/uptime/analytics/google-analytics-for-websites/",[51,3.849,110,5.284,356,4.196,1647,5.963]],["toc//docs/uptime/analytics/google-analytics-for-websites/",[16,2.423,110,4.835,176,4.256,259,2.089,324,6.492,762,5.362,796,4.178,1592,7.491,1648,5.362]],["deprecated//docs/uptime/analytics/google-analytics-for-websites/",[]],["title//docs/uptime/analytics/google-analytics-on-wordpress/",[110,4.689,543,4.421,762,5.2]],["keywords//docs/uptime/analytics/google-analytics-on-wordpress/",[51,3.559,110,5.005,356,3.881,543,3.357,1647,5.515]],["toc//docs/uptime/analytics/google-analytics-on-wordpress/",[16,1.969,28,5.278,107,3.745,110,6.856,176,3.712,324,5.662,762,7.603,796,3.394,1203,5.741,1207,5.106,1649,6.61]],["deprecated//docs/uptime/analytics/google-analytics-on-wordpress/",[]],["title//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[73,5.42,406,5.58,1033,3.502,1650,6.651]],["keywords//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[11,0.531,61,0.878,86,3.572,127,1.568,129,1.373,319,1.198,406,3.776,866,3.667,1033,2.37]],["toc//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[9,0.073,11,0.993,60,2.037,61,1.641,103,5.851,127,2.16,129,2.565,140,4.003,207,2.821,1016,3.459,1023,2.838,1033,3.266,1272,4.923,1650,6.203,1651,6.737,1652,6.737]],["deprecated//docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/",[]],["title//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.672,16,1.841,29,0.929,49,0.986,61,1.111,1281,3.673]],["keywords//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[11,0.841,61,1.39,1281,4.595]],["toc//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[9,0.07,49,1.395,153,3.772,381,3.038,706,2.623,1281,6.979]],["deprecated//docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/",[]],["title//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[11,0.858,759,3.492,774,4.374]],["keywords//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[4,1.132,258,0.717,259,1.337,1200,3.494,1653,4.794,1654,5.207,1655,5.207,1656,4.022]],["toc//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[0,1.497,4,2.123,5,1.814,9,0.078,17,1.729,18,1.74,35,0.619,201,1.919,258,1.026,259,1.912,379,2.048]],["deprecated//docs/web-servers/lamp/lamp-on-ubuntu-14-04/",[]],["title//docs/game-servers/garrys-mod-server-on-centos-7/",[129,2.029,207,3.025,1482,5.58,1657,7.224]],["keywords//docs/game-servers/garrys-mod-server-on-centos-7/",[129,2.172,891,5.398,1658,7.733]],["toc//docs/game-servers/garrys-mod-server-on-centos-7/",[9,0.048,14,0.85,17,1.403,18,1.412,35,0.343,40,3.43,49,1.562,95,4.417,100,1.813,169,1.856,312,3.591,581,5.013,706,1.813,1081,6.358,1482,7.56,1659,9.787,1660,6.043,1661,6.043]],["deprecated//docs/game-servers/garrys-mod-server-on-centos-7/",[]],["title//docs/networking/dns/common-dns-configurations/",[35,0.448,194,5.508,490,2.792]],["keywords//docs/networking/dns/common-dns-configurations/",[1492,6.716,1662,7.12,1663,7.12]],["toc//docs/networking/dns/common-dns-configurations/",[14,1.206,16,1.831,29,0.924,35,0.349,42,2.038,49,1.369,189,4.444,201,1.584,231,3.984,235,4.292,391,4.682,489,3.752,490,2.176,491,4.613,766,2.196,767,2.606,1562,5.34,1664,5.661,1665,4.909,1666,4.909]],["deprecated//docs/networking/dns/common-dns-configurations/",[]],["title//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[9,0.058,31,1.405,61,1.298,197,5.043]],["keywords//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[61,0.878,292,2.488,1667,3.903,1668,4.245,1669,4.888,1670,4.888,1671,4.245,1672,4.888,1673,4.888]],["toc//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[0,1.936,9,0.077,31,1.419,35,0.415,49,1.164,113,6.335,164,2.086,169,2.958,187,3.432,197,5.092,307,4.807,371,6.716,1674,7.294]],["deprecated//docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/",[]],["title//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.05,139,1.928,317,4.935,662,2.589,1675,5.368,1676,5.368]],["keywords//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[317,5.628,662,2.952,918,5.628,1675,6.122]],["toc//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[9,0.052,11,0.705,14,0.912,49,1.421,60,1.962,61,1.166,139,2.024,158,4.456,334,2.717,1272,6.507,1316,3.392,1423,4.074,1511,4.015,1675,7.732,1677,6.488,1678,5.382,1679,5.974,1680,6.488]],["deprecated//docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/",[]],["title//docs/websites/cms/high-availability-wordpress/",[201,1.861,522,4.606,543,4.048,1087,5.28]],["keywords//docs/websites/cms/high-availability-wordpress/",[4,1.408,500,4.859,543,3.629,1075,3.629,1681,5.963]],["toc//docs/websites/cms/high-availability-wordpress/",[0,1.155,5,1.4,9,0.066,16,1.712,29,0.863,35,0.623,65,1.738,119,2.007,209,4.535,258,0.792,261,2.131,273,3.061,543,3.221,706,1.725,789,1.662,1075,5.336,1159,3.857,1517,4.992,1682,4.312,1683,4.992,1684,5.748]],["deprecated//docs/websites/cms/high-availability-wordpress/",[]],["title//docs/databases/mysql/configure-master-master-mysql-database-replication/",[4,1.344,5,1.505,35,0.351,209,4.773,1075,3.463]],["keywords//docs/databases/mysql/configure-master-master-mysql-database-replication/",[500,5.289,1075,3.95,1681,6.49,1685,7.049]],["toc//docs/databases/mysql/configure-master-master-mysql-database-replication/",[0,1.497,4,2.123,5,1.814,9,0.06,35,0.555,119,2.6,209,5.415,273,3.967,1075,6.106,1682,5.588]],["deprecated//docs/databases/mysql/configure-master-master-mysql-database-replication/",[]],["title//docs/development/nodejs/how-to-install-nodejs/",[9,0.07,197,6.067]],["keywords//docs/development/nodejs/how-to-install-nodejs/",[292,3.588,1667,5.628,1668,6.122,1686,6.49]],["toc//docs/development/nodejs/how-to-install-nodejs/",[9,0.056,65,2.835,90,3.184,140,4.162,171,3.597,208,5.313,345,3.08,554,6.083,620,4.998,686,5.81,728,5.81,1687,7.004,1688,7.004,1689,7.004]],["deprecated//docs/development/nodejs/how-to-install-nodejs/",[]],["title//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[9,0.05,129,1.736,207,2.589,275,3.542,1168,2.385,1177,3.146]],["keywords//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[31,1.084,129,1.565,139,1.737,259,1.43,1168,2.15,1177,2.836,1690,2.621]],["toc//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[3,3.61,9,0.07,29,0.957,31,2.111,35,0.572,41,4.546,42,2.112,47,2.244,80,2.638,201,1.641,259,2.257,379,1.752,412,1.567,1168,3.393,1691,4.78]],["deprecated//docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/",[]],["title//docs/platform/network-helper/",[662,3.64,931,6.939]],["keywords//docs/platform/network-helper/",[562,2.886,635,3.269,654,4.448,662,3.35,1692,5.571,1693,5.571]],["toc//docs/platform/network-helper/",[11,0.668,29,0.924,35,0.349,61,1.105,103,5.34,127,1.972,129,1.727,169,1.888,299,4.613,381,2.137,404,4.205,525,3.984,662,3.592,931,6.848,1272,6.269,1316,3.214,1414,5.661,1438,5.661,1511,3.805,1678,5.101,1694,5.34,1695,6.149]],["deprecated//docs/platform/network-helper/",[]],["title//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,2.876,61,0.97,207,2.262,262,2.421,562,2.798,679,3.295,1207,4.172,1696,4.312]],["keywords//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[61,0.936,543,2.918,679,3.177,680,3.135,681,3.806,1170,3.432,1696,4.157,1697,4.794]],["toc//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[2,5.061,9,0.076,20,4.194,45,3.183,46,3.142,89,2.186,262,3.204,544,3.806,679,4.361,706,2.144,1207,5.52,1696,9.085]],["deprecated//docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/",[]],["title//docs/websites/cms/drush-drupal/",[9,0.046,14,0.81,61,1.036,207,2.414,562,2.986,679,3.517,1696,4.602]],["keywords//docs/websites/cms/drush-drupal/",[61,0.936,543,2.918,562,2.698,679,3.177,680,3.135,681,3.806,1170,3.432,1697,4.794]],["toc//docs/websites/cms/drush-drupal/",[0,1.101,9,0.074,14,0.77,29,0.823,49,1.262,119,2.76,136,4.005,138,2.814,169,1.682,177,2.507,292,2.789,319,1.343,334,2.295,405,4.823,544,2.918,679,3.343,706,1.644,837,4.005,1015,6.311,1272,4.005,1480,3.825,1696,8.104,1698,5.48]],["deprecated//docs/websites/cms/drush-drupal/",[]],["title//docs/security/ssl/ssl-apache2-centos/",[129,1.871,207,2.79,258,0.918,687,2.495,776,2.507]],["keywords//docs/security/ssl/ssl-apache2-centos/",[127,1.67,258,0.717,687,1.95,1699,3.561,1700,4.794,1701,4.523,1702,5.207,1703,3.432]],["toc//docs/security/ssl/ssl-apache2-centos/",[14,1.199,17,1.98,18,1.993,35,0.605,60,2.579,258,1.175,687,3.194,776,3.21]],["deprecated//docs/security/ssl/ssl-apache2-centos/",[]],["title//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.672,61,1.111,258,0.851,562,3.202,687,2.314,776,2.326]],["keywords//docs/security/ssl/ssl-apache2-debian-ubuntu/",[11,0.566,61,0.936,258,0.717,687,1.95,711,2.606,1699,3.561,1704,4.794,1705,4.794]],["toc//docs/security/ssl/ssl-apache2-debian-ubuntu/",[14,1.199,17,1.98,18,1.993,35,0.605,60,2.579,258,1.175,687,3.194,776,3.21]],["deprecated//docs/security/ssl/ssl-apache2-debian-ubuntu/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.785,774,4.005,1033,3.502,1184,3.558]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[11,0.841,1033,3.749,1200,5.189]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[9,0.054,11,0.993,15,4.055,16,2.006,42,2.233,74,3.318,89,2.06,100,2.021,112,2.439,522,4.295,583,4.23,977,5.588,1016,3.459,1033,5.024,1184,3.318,1185,5.588,1706,2.907]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/",[839,0.476]],["title//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.046,31,1.121,61,1.036,207,2.414,776,2.169,1344,4.453,1563,3.47]],["keywords//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[31,0.896,1141,3.455,1143,3.558,1344,3.558,1563,2.773,1642,3.215,1671,4,1707,4.606,1708,4.241,1709,3.82]],["toc//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[9,0.059,16,1.493,31,1.441,60,1.515,61,0.901,65,1.515,89,1.533,169,1.539,176,2.063,177,2.293,220,3.944,251,2.309,261,1.859,282,2.309,345,2.204,391,2.376,531,3.058,561,4.158,625,4.158,685,2.411,706,1.504,761,2.509,776,3.661,796,4.523,896,2.941,1143,3.872,1344,7.516]],["deprecated//docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/",[1028,3.823]],["title//docs/websites/cms/cms-overview/",[90,2.176,339,1.993,712,3.558,887,5.28]],["keywords//docs/websites/cms/cms-overview/",[543,3.122,562,2.886,679,3.399,680,3.354,681,4.072,1170,3.672,1710,5.13]],["toc//docs/websites/cms/cms-overview/",[45,3.389,46,3.346,89,2.327,90,2.292,339,2.099,543,5.55,641,6.609,679,6.043,681,7.238,712,3.747,1207,5.878]],["deprecated//docs/websites/cms/cms-overview/",[]],["title//docs/security/security-patches/disabling-sslv3-for-poodle/",[410,5.031,1711,6.853,1712,7.265]],["keywords//docs/security/security-patches/disabling-sslv3-for-poodle/",[11,0.566,61,0.936,86,3.806,127,1.67,129,1.462,319,1.276,1711,4.523,1712,4.794]],["toc//docs/security/security-patches/disabling-sslv3-for-poodle/",[31,1.39,60,2.161,258,1.309,410,6.059,497,5.52,731,3.607,1055,2.689,1057,5.223,1584,3.77,1711,9.273,1713,7.146,1714,6.58,1715,7.146]],["deprecated//docs/security/security-patches/disabling-sslv3-for-poodle/",[]],["title//docs/tools-reference/file-transfer/filezilla/",[169,2.423,1032,5.396,1716,6.095]],["keywords//docs/tools-reference/file-transfer/filezilla/",[1716,4.627,1717,4.782,1718,5.515,1719,4.494,1720,5.515,1721,5.515]],["toc//docs/tools-reference/file-transfer/filezilla/",[9,0.076,14,1.328,706,2.834,1716,8.758]],["deprecated//docs/tools-reference/file-transfer/filezilla/",[]],["title//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.046,11,0.627,62,2.816,262,2.584,476,2.732,744,3.567,1722,5.006]],["keywords//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[476,3.341,744,4.362,1722,6.122,1723,7.049]],["toc//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[9,0.077,17,1.356,18,1.365,35,0.332,90,1.76,169,1.794,250,4.514,262,4.308,412,1.437,476,2.769,655,2.62,688,2.569,744,3.616,1016,3,1272,4.27,1665,4.665,1666,4.665,1722,9.949,1724,4.847]],["deprecated//docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/",[]],["title//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.046,11,0.627,49,0.92,191,3.799,345,2.535,767,2.443,1725,5.006]],["keywords//docs/email/iredmail/install-iredmail-on-ubuntu/",[766,2.762,767,3.277,1725,6.716]],["toc//docs/email/iredmail/install-iredmail-on-ubuntu/",[9,0.043,49,0.861,60,1.631,119,1.884,121,4.837,176,2.221,258,0.743,336,2.847,377,3.766,381,1.875,393,3.766,489,3.292,706,1.619,767,2.287,776,2.942,946,3.556,971,4.048,1261,7.1,1262,7.338,1489,8.463,1725,4.686,1726,4.476,1727,5.396,1728,5.396,1729,5.396]],["deprecated//docs/email/iredmail/install-iredmail-on-ubuntu/",[]],["title//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[73,5.42,866,5.42,1033,3.502,1730,6.651]],["keywords//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[11,0.531,61,0.878,86,3.572,127,1.568,129,1.373,319,1.198,866,3.667,1033,2.37,1730,4.501]],["toc//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[9,0.04,11,0.545,61,0.901,73,3.76,127,1.607,129,1.408,139,1.563,866,7.789,1016,2.573,1033,2.43,1316,2.62,1511,3.101,1678,4.158,1694,4.353,1731,10.381,1732,10.381,1733,5.012,1734,5.012,1735,5.012,1736,5.012,1737,5.012,1738,5.012,1739,5.012,1740,5.012,1741,5.012,1742,5.012]],["deprecated//docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/",[]],["title//docs/platform/linode-images/",[89,2.658,470,4.87]],["keywords//docs/platform/linode-images/",[470,4.799,1743,8.563]],["toc//docs/platform/linode-images/",[47,3.158,90,2.7,470,6.655,1478,7.157,1744,8.964]],["deprecated//docs/platform/linode-images/",[]],["title//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.344,31,1.202,61,1.111,207,2.589,1563,3.721,1745,5.368]],["keywords//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.533,31,1.371,1642,4.921,1745,6.122]],["toc//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[4,1.586,9,0.077,14,1.025,31,1.874,35,0.415,47,2.57,65,2.205,112,2.641,261,2.705,435,3.36,706,2.189,1745,9.367]],["deprecated//docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/",[]],["title//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[9,0.05,11,0.672,774,3.427,1210,4.774,1306,5.691,1307,5.368]],["keywords//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[4,1.132,30,2.247,31,1.013,138,2.674,464,2.722,1197,3.135,1210,4.022,1211,4.022]],["toc//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[5,1.447,9,0.078,16,1.769,29,0.893,30,2.564,31,1.156,47,2.093,65,1.796,112,2.152,191,3.916,201,1.53,261,2.203,297,2.646,319,1.456,339,2.31,379,1.633,429,4.744,464,3.106,659,3.329,1210,8.575]],["deprecated//docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/",[]],["title//docs/applications/messaging/using-weechat-for-irc/",[14,0.937,650,5.526,1060,5.526,1487,5.146,1746,5.786]],["keywords//docs/applications/messaging/using-weechat-for-irc/",[1487,5.003,1746,5.625,1747,4.521,1748,5.625,1749,5.625]],["toc//docs/applications/messaging/using-weechat-for-irc/",[9,0.047,11,0.406,14,0.831,17,0.867,18,0.873,29,0.889,35,0.212,43,2.166,49,0.596,61,0.671,107,2.117,127,1.198,129,1.049,139,1.165,141,3.429,143,3.44,144,3.44,145,1.902,153,1.612,351,3.56,368,1.593,381,1.299,445,2.346,468,3.898,520,2.094,531,2.28,562,1.936,630,3.515,651,1.449,673,3.1,684,1.99,685,1.798,718,2.983,742,2.463,1058,2.983,1271,2.141,1316,1.953,1746,8.801,1747,2.608,1750,2.556,1751,3.44,1752,3.737,1753,5.446,1754,3.737,1755,5.446,1756,3.737,1757,3.737]],["deprecated//docs/applications/messaging/using-weechat-for-irc/",[]],["title//docs/applications/messaging/install-znc-debian/",[9,0.058,61,1.298,345,3.176,1758,6.274]],["keywords//docs/applications/messaging/install-znc-debian/",[1758,5.625,1759,6.476,1760,6.476,1761,6.476,1762,6.476]],["toc//docs/applications/messaging/install-znc-debian/",[9,0.06,17,1.729,18,1.74,35,0.423,153,3.214,158,3.728,237,4.609,334,3.119,687,2.789,776,2.803,796,3.825,1758,8.482,1763,7.448,1764,7.448]],["deprecated//docs/applications/messaging/install-znc-debian/",[]],["title//docs/email/using-google-apps-for-email/",[14,1.016,200,4.093,762,4.761,766,2.58]],["keywords//docs/email/using-google-apps-for-email/",[1765,7.733,1766,7.733,1767,7.733]],["toc//docs/email/using-google-apps-for-email/",[0,1.849,391,4.36,489,5.613,896,5.398,1015,7.344,1726,7.63]],["deprecated//docs/email/using-google-apps-for-email/",[]],["title//docs/networking/linux-static-ip-configuration/",[35,0.411,139,2.253,635,4.239,1425,4.293]],["keywords//docs/networking/linux-static-ip-configuration/",[225,4.595,654,6.174,1425,4.595]],["toc//docs/networking/linux-static-ip-configuration/",[11,0.91,35,0.338,60,1.796,61,1.068,127,1.905,129,2.352,134,3.164,139,1.853,153,2.564,207,2.488,225,3.531,385,0.857,410,3.788,445,3.731,662,2.488,761,2.974,928,4.24,931,4.744,1023,2.503,1316,3.106,1363,5.16,1425,3.531,1511,3.677,1678,4.929,1768,5.941]],["deprecated//docs/networking/linux-static-ip-configuration/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[11,0.627,42,1.911,47,2.031,1325,4.602,1381,4.213,1706,2.488,1769,4.453]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[258,0.634,259,1.182,916,2.703,1325,3.677,1381,3.366,1385,4,1496,3.677,1769,3.558,1770,3.035,1771,4.606]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[0,1.686,9,0.084,16,1.375,29,0.694,35,0.57,64,1.791,65,1.396,74,2.274,100,1.386,119,1.612,249,3.295,261,1.713,262,2.07,273,2.459,275,2.646,339,1.274,370,3.687,525,2.992,535,3.687,706,1.386,759,2.044,762,3.043,790,2.256,896,2.71,916,2.71,1381,5.092,1769,6.48,1772,4.618,1773,4.252,1774,4.618]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[61,0.97,207,2.262,258,0.744,259,1.386,381,1.877,1245,4.48,1563,3.251,1775,4.48]],["keywords//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[258,0.892,259,1.663,1079,5.625,1168,2.499,1250,5.963]],["toc//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[9,0.064,35,0.579,258,1.096,259,2.886,334,3.331,508,6.143,1245,8.453,1775,6.597]],["deprecated//docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/",[]],["title//docs/databases/mariadb/mariadb-setup-debian/",[3,3.774,16,1.984,29,1.001,61,1.197,63,4.556]],["keywords//docs/databases/mariadb/mariadb-setup-debian/",[3,3.669,4,1.408,5,1.577,61,1.164,1514,5.963]],["toc//docs/databases/mariadb/mariadb-setup-debian/",[3,6.823,9,0.055,14,0.966,35,0.39,49,1.096,119,2.398,153,2.964,204,3.304,319,1.683,335,4.25,950,4.25,951,3.658,952,3.1,1776,6.868]],["deprecated//docs/databases/mariadb/mariadb-setup-debian/",[]],["title//docs/applications/cloud-storage/owncloud-debian-7/",[9,0.053,35,0.379,61,1.197,844,5.146,1777,6.662]],["keywords//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.533,61,1.267,844,5.445,1329,6.122]],["toc//docs/applications/cloud-storage/owncloud-debian-7/",[4,1.811,9,0.084,35,0.596,385,1.202,706,2.499,844,8.106,1352,1.237]],["deprecated//docs/applications/cloud-storage/owncloud-debian-7/",[]],["title//docs/email/postfix/postfix-smtp-debian7/",[14,0.759,35,0.307,43,3.131,49,0.862,767,2.289,1055,2.032,1057,3.947,1648,3.559]],["keywords//docs/email/postfix/postfix-smtp-debian7/",[766,2.313,767,2.744,1055,2.437,1057,4.733,1642,4.521]],["toc//docs/email/postfix/postfix-smtp-debian7/",[5,1.356,9,0.045,19,2.937,29,1.201,35,0.532,49,0.888,60,1.683,100,1.67,169,1.709,200,3.154,319,1.364,485,3.495,706,1.67,762,3.668,952,3.608,1055,3.52,1056,4.617,1057,4.068,1058,4.444,1059,5.125,1060,4.617,1161,4.176,1778,4.3,1779,5.566,1780,5.566]],["deprecated//docs/email/postfix/postfix-smtp-debian7/",[]],["title//docs/applications/cloud-storage/dropbox/",[9,0.063,35,0.448,1781,6.853]],["keywords//docs/applications/cloud-storage/dropbox/",[11,0.566,61,0.936,127,1.67,129,1.462,179,3.222,599,4.794,1329,4.523,1781,4.523]],["toc//docs/applications/cloud-storage/dropbox/",[9,0.076,35,0.537,60,2.856,683,6.903,1781,8.203]],["deprecated//docs/applications/cloud-storage/dropbox/",[]],["title//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[74,3.281,139,2.078,718,5.319,1782,5.786,1783,5.526]],["keywords//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[244,3.297,1524,4.859,1784,6.476,1785,6.476,1786,6.476]],["toc//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[11,0.865,61,1.429,74,3.917,127,2.55,129,2.233,139,2.48,718,6.349,1316,4.157,1511,4.921,1525,4.994,1782,6.907,1783,6.597]],["deprecated//docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/",[1028,3.823]],["title//docs/web-servers/lamp/lamp-server-on-fedora-20/",[49,1.153,127,2.317,759,3.197,1787,6.651]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-20/",[127,1.921,759,2.651,1788,5.99,1789,4.378,1790,4.494,1791,5.99]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-20/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-20/",[839,0.476]],["title//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.036,89,1.763,381,2.004,630,3.425,789,1.666,1097,3.47,1464,4.602]],["keywords//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[61,1.001,655,2.498,885,3.552,1792,4.621,1793,5.571,1794,5.13,1795,5.13]],["toc//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[9,0.083,60,2.46,89,2.489,139,2.537,141,4.717,145,4.142,153,3.511,158,4.073,1792,8.577]],["deprecated//docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/",[]],["title//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.587,89,1.652,381,1.877,630,3.209,789,1.561,1097,3.251,1464,4.312,1706,2.331]],["keywords//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[11,0.651,655,2.685,1770,3.948,1792,4.969,1794,5.515,1795,5.515]],["toc//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[9,0.083,60,2.46,89,2.489,139,2.537,141,4.717,145,4.142,153,3.511,158,4.073,1792,8.577]],["deprecated//docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/",[839,0.476]],["title//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.672,14,0.869,68,4.517,424,4.517,1101,4.637,1706,2.667]],["keywords//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[11,0.766,421,6.122,424,5.152,1706,3.042]],["toc//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[9,0.047,35,0.332,49,0.933,68,7.023,80,2.419,89,1.787,139,2.581,141,4.798,145,4.213,153,3.571,319,1.432,351,4.982,424,8.062,630,4.918,632,4.27,649,3.472]],["deprecated//docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.242,29,0.929,129,1.736,707,2.929,1075,3.463,1796,5.368]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.158,29,0.866,61,1.036,207,2.414,707,2.732,1075,3.23,1563,3.47]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/",[839,0.476]],["title//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.158,11,0.627,29,0.866,707,2.732,1075,3.23,1706,2.488,1801,2.96]],["keywords//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[5,1.577,328,2.848,707,3.07,893,3.269,1797,5.003]],["toc//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[0,1.007,5,1.221,9,0.04,24,2.218,29,1.462,35,0.285,38,1.774,42,1.661,49,0.8,96,2.509,169,2.274,201,1.291,273,2.669,318,2.722,368,3.157,605,3.872,616,3.663,662,3.102,684,2.669,707,4.175,896,2.941,1075,4.936,1076,4.158,1525,3.147,1797,3.872,1798,4.353,1799,4.158,1800,4.353]],["deprecated//docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[73,5.42,86,5.28,1288,5.155,1802,6.651]],["keywords//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[11,0.566,61,0.936,86,3.806,127,1.67,129,1.462,319,1.276,1288,3.716,1802,4.794]],["toc//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[9,0.064,11,0.865,46,3.497,61,1.429,86,5.812,127,2.55,129,2.233,140,4.726,177,3.638,319,1.949,776,2.993,1803,7.953]],["deprecated//docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/",[]],["title//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.053,11,0.724,767,2.823,981,4.248,1706,2.875]],["keywords//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[4,1.001,11,0.501,494,3.558,766,1.645,767,1.952,1055,1.733,1379,4,1584,2.43,1706,1.987,1804,2.85]],["toc//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[9,0.061,29,1.143,35,0.432,60,2.994,327,2.782,334,3.187,359,5.43,494,7.65,706,2.283,1379,6.609,1804,6.128]],["deprecated//docs/email/installing-mail-filtering-for-ubuntu-12-04/",[839,0.476]],["title//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[29,0.811,100,1.621,201,1.391,258,1.078,379,1.485,1305,4.973,1805,5.401]],["keywords//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[11,0.501,61,0.828,100,1.382,127,1.477,129,1.293,1033,2.233,1316,2.408,1505,4.241,1511,2.85,1806,4.606]],["toc//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[2,3.219,11,0.657,29,1.273,35,0.343,61,1.086,100,2.543,101,2.864,201,2.183,216,3.983,249,4.312,258,0.833,262,2.709,303,4.668,379,2.33,405,3.687,468,3.983,620,4.312,684,3.219,879,4.668,1033,2.93,1799,5.013,1807,5.564]],["deprecated//docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/",[]],["title//docs/networking/squid/squid-http-proxy-centos-6-4/",[0,1.158,14,0.81,33,2.414,129,1.619,217,2.655,1796,5.006,1808,4.453]],["keywords//docs/networking/squid/squid-http-proxy-centos-6-4/",[33,2.712,129,1.819,217,2.983,1796,5.625,1808,5.003]],["toc//docs/networking/squid/squid-http-proxy-centos-6-4/",[9,0.064,33,3.331,35,0.452,38,2.814,217,3.663,323,5.336,336,4.196,487,4.788,659,4.457,1808,7.871,1809,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-centos-6-4/",[]],["title//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[0,1.158,11,0.627,14,0.81,33,2.414,217,2.655,1706,2.488,1808,4.453]],["keywords//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[11,0.651,33,2.509,217,2.759,562,3.103,1706,2.585,1808,4.627]],["toc//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[9,0.064,33,3.331,35,0.452,38,2.814,217,3.663,323,5.336,336,4.196,487,4.788,659,4.457,1808,7.871,1809,7.322]],["deprecated//docs/networking/squid/squid-http-proxy-ubuntu-12-04/",[839,0.476]],["title//docs/platform/billing-and-payments/",[1035,6.352,1037,6.521]],["keywords//docs/platform/billing-and-payments/",[1035,6.258,1037,6.425]],["toc//docs/platform/billing-and-payments/",[2,2.366,22,2.711,42,2.243,84,3.334,89,2.506,100,1.333,155,3.686,177,2.033,201,1.144,256,2.749,385,0.976,390,2.675,411,2.413,435,2.047,477,2.517,498,3.334,620,3.171,651,1.723,758,5.876,1032,4.628,1034,3.859,1035,6.695,1037,5.076,1087,3.247,1120,3.859,1352,0.66,1724,3.686,1810,4.443,1811,4.443,1812,3.432,1813,4.091,1814,4.443,1815,3.432,1816,3.859,1817,5.876,1818,3.686]],["deprecated//docs/platform/billing-and-payments/",[]],["title//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[61,1.197,63,4.556,254,5.526,645,4.47,1819,5.786]],["keywords//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[1819,7.437,1820,8.563]],["toc//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[19,3.695,35,0.398,49,1.496,158,4.693,169,2.151,334,3.927,339,1.932,487,4.217,659,5.254,662,2.933,706,2.102,1819,9.18]],["deprecated//docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/",[]],["title//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,1.717,29,0.866,89,1.763,600,5.307,655,2.584,1096,3.303,1821,5.764]],["keywords//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[33,2.712,1096,5.095,1822,5.963,1823,6.476]],["toc//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[16,2.316,29,1.168,49,1.241,139,2.425,141,4.509,145,3.959,351,4.682,409,5.835,429,6.209,630,4.622,706,2.334,1525,4.884,1822,7.161]],["deprecated//docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/",[]],["title//docs/platform/package-mirrors/",[65,2.628,506,6.939]],["keywords//docs/platform/package-mirrors/",[11,0.531,61,0.878,65,1.478,89,1.495,129,1.373,281,3.776,282,2.252,506,3.903,1824,4.501]],["toc//docs/platform/package-mirrors/",[11,0.865,29,1.781,61,1.429,65,2.405,129,2.233,339,3.102,506,6.349]],["deprecated//docs/platform/package-mirrors/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[31,1.202,61,1.111,207,2.589,464,3.231,1196,3.292,1563,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[4,1.554,9,0.086,29,1.074,31,1.848,65,2.161,80,2.959,261,2.65,327,2.612,334,2.993,412,1.757,472,4.572,709,5.384]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/",[]],["title//docs/web-servers/lemp/lemp-stack-on-debian-8/",[3,2.878,9,0.041,31,0.988,61,0.913,139,1.584,259,1.304,275,2.911,280,2.706,1177,2.586]],["keywords//docs/web-servers/lemp/lemp-stack-on-debian-8/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-stack-on-debian-8/",[4,1.586,5,1.776,9,0.077,17,1.693,18,1.704,31,1.419,35,0.415,47,2.57,49,1.721,164,2.086,259,1.873,360,5.092,1168,2.815]],["deprecated//docs/web-servers/lemp/lemp-stack-on-debian-8/",[]],["title//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[49,1.063,61,1.197,207,2.79,1177,3.391,1563,4.01]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[4,1.493,5,1.673,9,0.084,29,1.032,31,1.8,35,0.39,47,2.419,49,1.477,164,1.964,201,1.769,259,1.763,379,1.888,412,1.689,706,2.061,1168,2.65]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/",[]],["title//docs/websites/varnish/getting-started-with-varnish-cache/",[80,2.991,481,4.761,829,4.536,1077,5.58]],["keywords//docs/websites/varnish/getting-started-with-varnish-cache/",[11,0.704,61,1.164,562,3.355,829,4.067,1077,5.003]],["toc//docs/websites/varnish/getting-started-with-varnish-cache/",[9,0.031,14,0.537,17,0.886,18,0.892,35,0.555,41,2.724,60,1.154,89,1.168,92,3.316,99,2.116,164,1.092,222,4.292,232,2.562,323,2.562,325,1.837,326,2.329,334,1.599,404,2.611,487,2.298,522,2.434,712,2.962,829,6.648,1077,8.415,1078,4.396,1087,2.79,1348,3.048,1827,3.817,1828,4.99,1829,3.167,1830,3.817,1831,3.817,1832,3.817,1833,4.396,1834,3.316,1835,3.817]],["deprecated//docs/websites/varnish/getting-started-with-varnish-cache/",[]],["title//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[129,1.871,203,1.926,1023,2.806,1055,2.507,1836,5.786]],["keywords//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[203,2.038,1055,2.653,1372,4.426,1836,6.122]],["toc//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[9,0.068,21,4.946,60,2.579,290,6.234,313,6.589,577,7.076,706,2.56,1836,7.409,1837,6.087]],["deprecated//docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/",[]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[11,0.627,31,1.121,464,3.013,1184,2.839,1196,3.07,1706,2.488,1801,2.96]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[4,1.654,9,0.079,17,1.766,18,1.777,31,1.926,80,3.15,327,2.782,334,3.187,472,4.765,709,5.611]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.053,35,0.379,129,1.871,1023,2.806,1838,3.482]],["keywords//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[4,1.533,129,1.98,233,5.03,1838,3.685]],["toc//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[9,0.083,17,1.889,18,1.901,35,0.462,60,2.46,322,5.68,687,3.047,1838,5.941]],["deprecated//docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/",[]],["title//docs/applications/containers/what-is-docker/",[132,4.2]],["keywords//docs/applications/containers/what-is-docker/",[11,0.704,129,1.819,132,2.812,134,3.449,1706,2.795]],["toc//docs/applications/containers/what-is-docker/",[9,0.06,11,0.81,31,1.449,129,2.092,132,3.234,198,5.315,199,5.199,307,4.909,385,1.075,840,5.444,1023,3.138,1352,1.106,1706,3.214,1839,9.766]],["deprecated//docs/applications/containers/what-is-docker/",[839,0.476]],["title//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[9,0.053,31,1.296,61,1.197,207,2.79,1563,4.01]],["keywords//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[31,1.013,61,0.936,217,2.399,711,2.606,1641,4.523,1642,3.635,1671,4.523,1840,5.207]],["toc//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[0,1.215,9,0.078,29,0.908,31,2.063,40,2.446,61,1.086,64,2.344,90,1.82,100,1.813,101,2.864,203,1.747,282,2.784,319,1.481,345,2.657,412,1.486,706,1.813,789,1.747,847,3.877,1038,2.286,1841,3.131]],["deprecated//docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,1787,5.691]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[1842,7.733,1843,5.973,1844,6.415]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[4,2.494,9,0.058,14,1.025,35,0.547,335,4.514,339,2.012,385,1.052,950,4.514,951,3.885,952,3.292,1352,1.083,1682,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/",[839,0.476]],["title//docs/platform/api/api-key/",[151,5.728,251,4.003]],["keywords//docs/platform/api/api-key/",[251,3.562,1845,7.733,1846,7.12]],["toc//docs/platform/api/api-key/",[390,6.183,761,5.141]],["deprecated//docs/platform/api/api-key/",[]],["title//docs/platform/linode-cli/",[89,2.658,482,6.202]],["keywords//docs/platform/linode-cli/",[1846,6.49,1847,7.049,1848,7.049,1849,7.049]],["toc//docs/platform/linode-cli/",[9,0.06,11,0.814,14,0.715,61,1.345,89,1.555,100,1.526,119,1.775,127,1.631,139,1.586,141,4.34,151,3.351,189,2.634,251,2.342,334,3.72,351,4.506,391,2.41,437,3.146,477,2.881,482,6.338,539,4.218,630,4.448,659,2.849,1159,3.412,1807,4.681,1850,5.084,1851,5.084,1852,5.084]],["deprecated//docs/platform/linode-cli/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[4,1.571,9,0.058,129,2.029,1023,3.043]],["keywords//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[3,2.467,4,0.947,5,1.06,129,1.223,139,1.358,256,2.694,1465,2.87,1466,3.476,1467,3.476,1468,3.612,1469,3.107]],["toc//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[0,1.703,4,2.518,5,1.472,9,0.048,14,0.85,17,1.403,18,1.412,49,0.965,80,2.502,96,3.025,119,2.11,213,3.916,335,3.74,946,3.983,950,3.74,951,4.513,952,2.727,987,4.219,1066,3.463]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-centos-6/",[]],["title//docs/networking/dns/previewing-websites-without-dns/",[250,5.58,292,3.677,490,2.556,1853,6.651]],["keywords//docs/networking/dns/previewing-websites-without-dns/",[292,3.936,490,2.736,1853,7.12]],["toc//docs/networking/dns/previewing-websites-without-dns/",[60,2.161,100,2.144,139,2.229,141,4.143,145,3.638,169,3.278,201,2.75,225,4.247,351,4.302,630,4.247,635,4.194,652,5.967]],["deprecated//docs/networking/dns/previewing-websites-without-dns/",[]],["title//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[4,1.571,9,0.058,61,1.298,207,3.025]],["keywords//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[3,2.224,4,0.853,5,0.956,61,0.705,139,1.224,256,2.429,1465,2.587,1466,3.134,1467,3.134,1468,3.256,1469,2.801,1641,3.409,1642,2.74]],["toc//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/how-to-install-mysql-on-debian-7/",[]],["title//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.05,11,0.672,61,1.111,62,3.02,280,3.292,1854,4.41]],["keywords//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[11,0.606,61,1.001,885,3.552,1854,3.975,1855,5.571,1856,4.839,1857,5.571]],["toc//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/",[]],["title//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.058,61,1.298,207,3.025,1854,5.155]],["keywords//docs/email/clients/installing-squirrelmail-on-debian-7/",[61,1.267,1642,4.921,1854,5.03,1856,6.122]],["toc//docs/email/clients/installing-squirrelmail-on-debian-7/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/installing-squirrelmail-on-debian-7/",[839,0.476]],["title//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.058,11,0.785,1706,3.117,1854,5.155]],["keywords//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[11,0.766,1706,3.042,1854,5.03,1856,6.122]],["toc//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[9,0.068,35,0.605,164,2.439,201,2.197,318,4.633,379,2.345,796,4.38,1854,6.087]],["deprecated//docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[129,1.736,258,0.851,259,1.587,381,2.148,1023,2.604,1248,3.427]],["keywords//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[217,2.399,258,0.717,259,1.337,1248,2.887,1690,2.45,1858,3.561,1859,3.561,1860,4.523]],["toc//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[9,0.068,17,1.98,18,1.993,35,0.485,258,1.467,259,2.734,1248,4.729]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-centos-6/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[61,1.036,207,2.414,258,0.794,259,1.48,381,2.004,1248,3.196,1563,3.47]],["keywords//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[258,0.767,259,1.43,1248,3.089,1690,2.621,1858,3.81,1859,3.81,1860,4.839]],["toc//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[9,0.064,17,1.846,18,1.858,35,0.452,258,1.404,259,2.616,327,2.907,1248,4.409,1861,5.967,1862,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apapache-debian-7/",[839,0.476]],["title//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.448,9,0.053,61,1.197,207,2.79,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[4,1.211,61,1.001,233,3.975,1838,2.912,1863,4.621,1864,4.621,1865,4.621]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-debian-7/",[]],["title//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.053,35,0.379,61,1.197,280,3.548,1838,3.482]],["keywords//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[4,1.001,61,0.828,233,3.286,259,1.182,885,2.937,1838,2.408,1863,3.82,1864,3.82,1865,3.82,1866,4.606]],["toc//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-19/",[49,1.153,127,2.317,759,3.197,1867,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-19/",[1789,5.152,1790,5.289,1868,7.049,1869,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-19/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-19/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-on-centos-6/",[49,1.063,129,1.871,164,1.905,258,0.918,1023,2.806]],["keywords//docs/web-servers/apache/apache-web-server-on-centos-6/",[129,1.682,258,0.825,1025,4.782,1703,3.948,1870,3.881,1871,5.515]],["toc//docs/web-servers/apache/apache-web-server-on-centos-6/",[9,0.086,17,1.659,18,1.669,35,0.406,40,3.847,201,1.841,258,1.568,262,3.204,379,1.965,472,3.438,1482,5.52]],["deprecated//docs/web-servers/apache/apache-web-server-on-centos-6/",[]],["title//docs/platform/longview/longview-app-for-mysql/",[4,1.715,200,4.47,920,5.396]],["keywords//docs/platform/longview/longview-app-for-mysql/",[4,1.681,51,4.595,920,5.289]],["toc//docs/platform/longview/longview-app-for-mysql/",[4,1.768,5,1.632,9,0.035,11,0.477,22,2.677,35,0.462,51,2.607,61,0.788,85,3.131,101,2.08,153,3.928,244,2.234,302,2.459,312,3.982,385,0.633,411,2.383,437,2.715,790,2.144,829,2.755,1043,3.503,1069,6.1,1283,3.503,1286,3.131,1434,3.64,1451,7.55,1872,4.04,1873,3.811,1874,4.388,1875,4.388,1876,3.503,1877,3.64,1878,4.04,1879,4.388,1880,3.64]],["deprecated//docs/platform/longview/longview-app-for-mysql/",[]],["title//docs/platform/longview/longview-app-for-nginx/",[31,1.535,200,4.47,920,5.396]],["keywords//docs/platform/longview/longview-app-for-nginx/",[31,1.371,51,4.189,920,4.821,1881,7.049]],["toc//docs/platform/longview/longview-app-for-nginx/",[9,0.042,11,0.569,22,3.194,31,1.757,35,0.435,49,0.836,51,3.111,61,0.941,85,5.457,101,2.481,153,2.259,220,2.788,244,2.665,302,2.934,312,3.111,398,4.18,411,2.843,437,3.24,638,5.457,651,2.031,790,2.558,1283,4.18,1434,4.343,1451,4.343,1876,4.18,1877,4.343,1880,4.343,1882,4.547,1883,4.547,1884,4.343]],["deprecated//docs/platform/longview/longview-app-for-nginx/",[]],["title//docs/platform/longview/longview-app-for-apache/",[200,4.47,258,1.087,920,5.396]],["keywords//docs/platform/longview/longview-app-for-apache/",[51,4.189,258,0.971,920,4.821,1885,7.049]],["toc//docs/platform/longview/longview-app-for-apache/",[9,0.037,11,0.509,22,2.855,35,0.4,49,0.747,51,2.781,61,0.841,85,5.021,101,2.218,215,2.492,220,2.492,244,2.382,258,1.165,302,2.622,312,2.781,327,1.711,398,3.736,411,2.541,437,2.895,638,3.339,651,1.815,790,2.286,1283,3.736,1434,5.837,1451,3.882,1612,4.308,1714,4.308,1872,4.308,1876,3.736,1877,3.882,1878,4.308,1880,3.882,1882,4.064,1883,4.064,1884,3.882,1886,4.679,1887,4.064,1888,4.679]],["deprecated//docs/platform/longview/longview-app-for-apache/",[]],["title//docs/web-servers/lamp/lamp-server-on-gentoo/",[49,1.259,759,3.492,1511,4.882]],["keywords//docs/web-servers/lamp/lamp-server-on-gentoo/",[759,3.422,1511,4.785,1889,7.12]],["toc//docs/web-servers/lamp/lamp-server-on-gentoo/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.655,49,1.336,164,1.699,201,1.53,258,0.819,259,1.525,379,1.633,412,1.461,1890,5.16]],["deprecated//docs/web-servers/lamp/lamp-server-on-gentoo/",[839,0.476]],["title//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[89,2.209,201,1.861,254,5.993,1524,5.42]],["keywords//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[1524,5.802,1891,7.733,1892,7.733]],["toc//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[9,0.05,15,3.767,16,1.864,17,1.453,18,1.462,38,2.215,45,2.787,46,2.752,49,0.999,89,1.914,112,2.266,164,1.789,275,3.586,292,4.42,391,4.116,586,7.203,685,3.011,759,2.769,766,2.235,1628,3.872,1828,5.191]],["deprecated//docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[49,1.063,61,1.197,207,2.79,759,2.948,1563,4.01]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[4,0.947,61,0.782,258,0.6,259,1.118,759,1.927,1504,3.612,1642,3.039,1789,3.182,1893,4.354,1894,3.782,1895,4.354]],["toc//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[0,1.436,4,2.066,5,1.74,9,0.076,17,1.659,18,1.669,35,0.607,201,1.841,210,3.315,258,0.985,259,1.835,379,1.965,685,3.438]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/",[]],["title//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[9,0.053,139,2.078,275,3.818,759,2.948,1316,3.482]],["keywords//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[4,0.898,258,0.569,259,1.06,759,1.827,1316,2.158,1496,3.296,1896,4.129,1897,4.129,1898,4.129,1899,4.129,1900,4.129,1901,3.586]],["toc//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[0,1.215,4,1.843,5,1.472,9,0.078,17,1.403,18,1.412,35,0.556,49,0.965,139,2.643,176,2.488,201,1.557,210,2.803,258,1.167,259,2.175,379,1.662,685,2.908,759,2.674,1316,3.159]],["deprecated//docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/",[]],["title//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.785,89,2.209,1281,4.293,1706,3.117]],["keywords//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[11,0.766,1281,4.189,1706,3.042,1902,6.49]],["toc//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[9,0.07,16,1.897,29,0.957,35,0.572,49,1.017,100,1.912,112,2.307,158,3.189,169,1.956,187,2.998,273,3.393,339,1.758,385,0.919,937,5.087,939,3.942,1281,5.982,1352,0.946,1903,6.371]],["deprecated//docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/",[839,0.476]],["title//docs/development/version-control/introduction-to-version-control/",[140,4.689,146,4.63,476,3.74]],["keywords//docs/development/version-control/introduction-to-version-control/",[138,3.619,1211,5.445,1904,7.049,1905,7.049]],["toc//docs/development/version-control/introduction-to-version-control/",[9,0.054,14,0.947,16,2.006,19,3.554,29,1.012,80,2.789,138,3.459,140,6.158,163,3.775,339,1.859,476,4.912,481,4.44,1906,6.737,1907,7.933,1908,6.737]],["deprecated//docs/development/version-control/introduction-to-version-control/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[61,1.111,207,2.589,258,0.851,464,3.231,1196,3.292,1563,3.721]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[1197,4.243,1513,4.362,1909,6.122,1910,5.289]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/",[]],["title//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,1.448,9,0.053,11,0.724,1706,2.875,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[4,0.947,11,0.473,233,3.107,1184,2.144,1770,2.87,1801,2.236,1838,2.276,1863,3.612,1864,3.612,1865,3.612,1911,4.009]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,1.448,9,0.053,11,0.724,774,3.693,1838,3.482]],["keywords//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[4,0.947,11,0.473,233,3.107,1184,2.144,1200,2.922,1801,2.236,1838,2.276,1863,3.612,1864,3.612,1865,3.612,1911,4.009]],["toc//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[9,0.061,16,2.266,17,1.766,18,1.777,29,1.143,60,2.301,169,2.336,319,1.865,322,5.312,633,4.778,687,2.85,1838,5.755]],["deprecated//docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/",[]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[11,0.672,49,0.986,164,1.767,1163,3.771,1706,2.667,1801,3.174]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[711,3.87,1163,4.718,1165,7.12]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[0,1.037,9,0.041,11,0.561,29,0.775,35,0.509,40,2.088,166,3.985,167,3.77,175,6.392,177,2.36,201,2.541,262,2.313,379,2.712,381,1.793,412,1.269,659,4.239,1163,4.616,1166,7.78,1167,4.48,1509,4.119,1775,4.279,1912,4.75]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-debian-7/",[49,0.986,61,1.111,164,1.767,207,2.589,258,0.851,1563,3.721]],["keywords//docs/web-servers/apache/apache-web-server-debian-7/",[61,1.076,258,0.825,1563,3.606,1642,4.181,1871,5.515,1913,5.202]],["toc//docs/web-servers/apache/apache-web-server-debian-7/",[9,0.086,17,1.659,18,1.669,35,0.406,40,3.847,201,1.841,258,1.568,262,4.26,379,1.965,472,3.438]],["deprecated//docs/web-servers/apache/apache-web-server-debian-7/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.587,61,0.97,207,2.262,319,1.324,731,2.726,894,3.444,1706,2.331,1801,2.773]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[11,0.566,61,0.936,459,2.698,662,2.181,731,2.628,1642,3.635,1706,2.247,1902,4.794]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[9,0.058,29,0.722,35,0.273,49,0.767,89,1.47,98,3.355,153,3.098,158,4.301,251,3.958,319,1.178,324,3.018,428,2.894,435,2.214,459,4.452,531,2.933,651,1.865,731,3.624,761,3.594,776,2.702,789,1.39,948,3.355,990,3.43,991,3.43,998,3.43,1094,3.115,1096,2.755,1287,4.426,1322,3.43,1914,3.513,1915,3.606]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/",[839,0.476]],["title//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.448,790,3.255,1055,2.507,1564,5.786,1584,3.515]],["keywords//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,1.681,1055,2.91,1584,4.08]],["toc//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[4,0.888,16,1.216,29,0.613,35,0.232,38,2.244,46,2.788,89,1.249,119,2.213,141,2.367,215,2.175,237,2.526,327,1.493,336,2.154,350,2.367,379,1.743,381,1.419,391,3.005,522,2.603,687,1.529,688,2.788,692,3.546,783,2.984,790,1.995,896,2.396,946,2.691,1016,4.871,1055,3.297,1057,2.984,1286,2.913,1584,4.623,1588,2.491,1916,3.546,1917,3.759,1918,4.083,1919,4.083,1920,4.083,1921,4.083,1922,4.083]],["deprecated//docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/",[]],["title//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.05,61,1.111,258,0.851,280,3.292,464,3.231,1196,3.292]],["keywords//docs/development/ror/ruby-on-rails-apache-debian-8/",[1197,4.243,1513,4.362,1909,6.122,1910,5.289]],["toc//docs/development/ror/ruby-on-rails-apache-debian-8/",[9,0.062,17,1.805,18,1.817,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-apache-debian-8/",[]],["title//docs/security/encryption/full-disk-encryption-xen/",[237,4.882,244,4.016,632,5.766]],["keywords//docs/security/encryption/full-disk-encryption-xen/",[61,1.001,237,3.447,244,2.836,319,1.366,632,4.072,1563,3.354,1923,5.571]],["toc//docs/security/encryption/full-disk-encryption-xen/",[0,1.38,9,0.055,16,2.045,35,0.526,61,1.663,80,2.843,237,4.25,244,4.71,327,2.511,481,4.526,525,4.45,632,5.019,645,4.608,1924,6.323,1925,6.323,1926,6.868]],["deprecated//docs/security/encryption/full-disk-encryption-xen/",[839,0.476]],["title//docs/platform/automating-server-builds/",[20,4.63,49,1.259,171,4.051]],["keywords//docs/platform/automating-server-builds/",[244,3.297,747,4.859,1531,4.621,1927,6.476,1928,6.476]],["toc//docs/platform/automating-server-builds/",[2,3.658,20,4.03,42,2.276,49,1.096,89,3.201,100,2.061,171,3.526,225,4.081,244,3.496,412,1.689,616,5.019,635,4.03,807,4.697,919,4.794,1665,5.483,1666,5.483,1929,6.868]],["deprecated//docs/platform/automating-server-builds/",[]],["title//docs/email/running-a-mail-server/",[49,1.259,381,2.742,767,3.344]],["keywords//docs/email/running-a-mail-server/",[1372,4.426,1667,5.628,1930,7.049,1931,7.049]],["toc//docs/email/running-a-mail-server/",[9,0.031,32,2.434,35,0.217,42,1.265,49,1.631,120,4.396,158,3.011,171,1.96,223,2.562,232,2.562,283,2.724,302,2.139,381,1.327,419,3.167,435,1.758,489,4.542,490,2.129,687,1.43,767,4.726,776,1.437,783,2.79,789,1.104,1032,2.611,1261,2.949,1275,3.515,1352,0.567,1552,4.292,1648,2.516,1726,3.167,1828,3.167,1829,3.167,1925,3.515,1932,2.864,1933,3.515,1934,6.015,1935,6.015,1936,3.817]],["deprecated//docs/email/running-a-mail-server/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.571,766,2.58,1055,2.719,1584,3.811]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.063,11,0.531,49,0.78,61,0.878,766,1.746,767,2.071,1055,1.839,1584,2.579,1937,4.888]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[4,1.292,9,0.067,17,1.379,18,1.388,24,2.629,35,0.338,60,2.532,65,1.796,96,2.974,225,4.976,391,3.969,490,2.103,684,4.46,687,2.225,766,3.463,776,2.236,1055,2.236,1584,3.135,1588,5.109]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql/",[]],["title//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[61,1.298,207,3.025,1033,3.502,1563,4.349]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[1563,4.243,1938,6.49,1939,6.49,1940,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[9,0.054,15,4.055,16,2.006,42,2.233,61,1.211,74,3.318,80,2.789,89,2.06,100,2.021,112,2.439,207,2.821,367,4.807,522,4.295,583,4.23,742,4.44,790,3.291,1016,3.459,1033,4.428,1564,5.851]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/",[839,0.476]],["title//docs/security/linode-manager-security-controls/",[89,2.209,90,2.176,319,1.771,476,3.424]],["keywords//docs/security/linode-manager-security-controls/",[319,1.587,944,4.733,952,2.923,1147,5.003,1941,6.476]],["toc//docs/security/linode-manager-security-controls/",[35,0.238,45,1.862,46,1.838,96,2.092,119,1.459,151,2.755,154,3.136,172,1.63,173,3.848,176,1.721,177,1.912,202,5.272,204,2.011,225,3.837,251,1.925,319,1.025,322,2.918,327,2.36,336,4.681,346,3.337,359,2.983,410,4.117,477,2.368,635,3.789,651,1.621,688,1.838,761,2.092,766,1.493,785,6.854,933,2.983,952,1.886,993,3.467,1017,3.055,1107,6.544,1147,3.229,1942,4.18,1943,4.18]],["deprecated//docs/security/linode-manager-security-controls/",[]],["title//docs/security/backups/backing-up-your-data/",[15,4.75,16,2.35,24,3.492]],["keywords//docs/security/backups/backing-up-your-data/",[2,4.735,21,3.755,1944,5.171,1945,6.476]],["toc//docs/security/backups/backing-up-your-data/",[2,5.935,4,0.772,8,2.477,15,3.417,16,2.414,21,2.057,29,0.853,42,1.176,49,0.906,68,2.593,69,2.833,139,1.77,141,2.057,142,2.299,145,1.806,223,2.381,244,1.806,253,1.908,312,3.373,332,2.339,345,1.56,351,2.136,368,1.513,437,2.196,523,5.48,540,2.943,603,2.833,630,2.109,815,2.741,1778,2.741,1884,2.943,1944,7.079,1946,3.267,1947,2.741,1948,4.93,1949,2.943,1950,3.267,1951,2.943,1952,3.548,1953,3.548,1954,3.548,1955,3.548]],["deprecated//docs/security/backups/backing-up-your-data/",[]],["title//docs/platform/longview/longview/",[14,1.222,920,5.944]],["keywords//docs/platform/longview/longview/",[920,5.289,1956,7.733,1957,7.733]],["toc//docs/platform/longview/longview/",[9,0.055,24,3.023,38,1.592,100,1.35,151,2.966,158,4.133,200,2.55,244,2.291,247,2.826,251,3.147,281,3.476,302,2.522,325,2.165,326,2.746,339,1.242,437,2.785,472,2.165,662,1.885,691,3.476,790,2.199,887,3.289,896,2.641,918,3.593,920,7.138,1084,3.289,1463,3.908,1887,3.908,1958,4.5,1959,4.5,1960,4.5,1961,4.5,1962,4.5,1963,4.5,1964,4.5,1965,3.733,1966,3.908]],["deprecated//docs/platform/longview/longview/",[]],["title//docs/platform/linode-managed/",[89,2.658,90,2.618]],["keywords//docs/platform/linode-managed/",[944,6.258,1967,8.563]],["toc//docs/platform/linode-managed/",[9,0.059,19,2.644,29,0.753,35,0.285,42,3.726,80,2.075,89,1.533,96,2.509,119,1.75,203,1.449,214,4.353,251,2.309,390,3.017,410,4.722,428,3.017,481,3.303,655,2.247,684,4.691,951,2.669,1094,3.248,1286,5.285,1834,4.353,1883,4.353,1916,4.353,1965,4.158,1968,5.012,1969,5.012]],["deprecated//docs/platform/linode-managed/",[]],["title//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.05,49,0.986,139,1.928,619,3.825,655,2.771,1970,5.368]],["keywords//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[562,4.006,655,3.467,1970,6.716]],["toc//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[9,0.07,11,0.68,61,1.125,68,4.574,89,1.914,101,2.966,112,2.266,139,2.708,141,3.628,145,3.186,153,2.701,325,3.011,351,3.767,419,5.191,540,5.191,630,3.719,655,2.806,1316,3.271,1970,9.354]],["deprecated//docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/",[]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[11,0.672,258,0.851,1172,3.463,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[12,3.297,1972,6.476,1973,6.476,1974,5.963,1975,5.171]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[9,0.072,14,1.26,60,2.71,258,1.235,706,2.69,1172,6.155]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.05,11,0.672,1271,3.542,1706,2.667,1976,3.673,1977,4.005]],["keywords//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[562,2.386,937,3.677,1770,3.035,1976,2.737,1978,3.366,1979,3.035,1980,3.035,1981,2.984,1982,2.984,1983,4.606]],["toc//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[9,0.07,29,1.313,35,0.497,57,5.263,325,4.206,706,2.623,1976,6.427]],["deprecated//docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/",[839,0.476]],["title//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.587,14,0.759,31,1.05,39,2.151,47,1.902,200,3.06,1304,2.798,1706,2.331]],["keywords//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[11,0.566,31,1.013,39,2.074,802,2.674,1304,2.698,1984,5.207,1985,5.207,1986,4.794]],["toc//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[9,0.064,31,1.547,35,0.579,49,1.269,172,3.101,177,3.638,385,1.147,706,2.386,1304,5.279,1352,1.181]],["deprecated//docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/",[839,0.476]],["title//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[11,0.627,43,3.342,47,2.031,49,0.92,767,2.443,1706,2.488,1987,3.425]],["keywords//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[1372,3.761,1770,3.948,1987,3.559,1988,5.99,1989,4.494,1990,4.494]],["toc//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[9,0.062,29,1.168,35,0.571,42,2.578,60,2.351,65,2.351,215,4.142,261,2.884,412,1.913,767,4.257,1987,4.622]],["deprecated//docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[11,0.587,409,4.052,1706,2.331,1801,2.773,1971,3.095,1991,3.77,1992,3.694,1993,3.295]],["keywords//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[259,1.538,1690,2.818,1770,3.948,1993,3.655,1994,4.378,1995,4.969]],["toc//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[9,0.079,35,0.349,64,2.385,65,1.859,100,1.845,140,3.654,203,1.778,319,1.507,345,2.704,573,4.388,651,2.385,706,1.845,789,1.778,847,2.813,1038,2.325,1993,7.105,1996,5.661,1997,6.149]],["deprecated//docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/",[839,0.476]],["title//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[11,0.627,47,2.031,49,0.92,164,1.648,189,2.986,1706,2.488,1998,3.196]],["keywords//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[258,0.892,1163,3.952,1998,3.591,1999,4.733,2000,4.621]],["toc//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[33,4.812,262,3.734,327,3.045,388,4.829,391,3.948,755,5.489,1163,6.403]],["deprecated//docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[11,0.724,42,2.208,203,1.926,1191,3.959,1706,2.875]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[217,2.006,359,3.107,562,2.256,655,1.952,1057,3.182,1191,2.587,1350,3.039,1770,2.87,1933,4.009,2001,4.354,2002,4.009]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[9,0.057,35,0.406,45,3.183,46,3.142,164,2.043,318,3.881,359,6.781,368,3.047,651,2.772,766,2.552,1191,5.647,1350,4.989,1648,4.71,1747,4.989,2003,6.58]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.627,766,2.059,1184,2.839,1706,2.488,1801,2.96,1971,3.303,2004,3.425]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[2004,3.849,2005,6.476,2006,6.476,2007,4.429,2008,4.859]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.056,29,1.052,327,2.56,381,3.259,385,1.011,412,1.722,706,2.102,933,4.998,952,3.161,981,4.466,1352,1.04,1628,4.334,1804,4.334,2004,6.281,2009,5.119]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[11,0.627,766,2.059,774,3.196,1184,2.839,1307,5.006,2004,3.425,2010,5.764]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[2004,3.849,2007,4.429,2008,4.859,2011,6.476,2012,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[9,0.058,29,1.096,327,2.666,381,3.348,412,1.794,706,2.189,933,5.205,952,3.292,981,4.651,1628,4.514,1804,4.514,2004,6.409,2009,5.331]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-14-04/",[1028,3.823]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.587,31,1.05,1168,2.084,1184,2.66,1706,2.331,1801,2.773,1826,2.66,1971,3.095]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[31,1.26,1527,3.801,2013,5.003,2014,5.625,2015,4.521]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[0,1.236,9,0.049,19,4.525,29,0.924,35,0.607,60,1.859,65,1.859,148,5.653,187,2.893,201,1.584,261,2.28,327,2.248,379,1.69,412,1.512,490,2.176,544,3.275,1168,2.373,1423,3.861,1529,3.805,1826,3.028]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[11,0.552,258,0.7,259,1.304,381,1.766,1184,2.502,1248,2.816,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[258,0.767,259,1.43,1248,3.089,1690,2.621,1858,3.81,1859,3.81,1860,4.839]],["toc//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[9,0.064,17,1.846,18,1.858,35,0.452,258,1.404,259,2.616,327,2.907,1248,4.409,1861,5.967,1862,7.322]],["deprecated//docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/",[839,0.476]],["title//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[11,0.627,14,0.81,263,3.567,1271,3.303,1977,3.735,2016,3.383,2017,5.764]],["keywords//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[1978,3.017,1980,2.721,1981,2.675,1982,2.675,2016,2.423,2018,4.129,2019,4.129,2020,3.098,2021,2.721,2022,2.22,2023,4.129,2024,4.129]],["toc//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[9,0.053,14,0.929,35,0.376,38,2.339,119,2.308,177,3.024,201,1.703,306,3.879,350,3.833,379,1.817,412,1.626,490,2.339,723,3.833,790,3.23,2016,6.022,2022,3.555,2025,4.959,2026,4.614,2027,4.283]],["deprecated//docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[11,0.724,162,3.515,1706,2.875,1801,3.421,1971,3.818]],["keywords//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[5,1.577,893,3.269,2028,6.476,2029,6.476,2030,4.621]],["toc//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[9,0.069,24,2.721,35,0.349,64,2.385,90,2.584,101,2.914,112,2.227,162,6.143,178,3.805,209,3.409,253,3.307,339,1.696,381,2.137,417,3.921,520,3.446,1075,3.446,2031,6.121]],["deprecated//docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1309,3.862,1706,2.875,1801,3.421,1971,3.818]],["keywords//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.046,11,0.627,31,1.121,1184,2.839,1706,2.488,1801,2.96,1971,3.303]],["keywords//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.606,31,1.084,217,2.566,711,2.789,2014,4.839,2034,5.571,2035,5.571]],["toc//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.094,17,1.626,18,1.636,31,2.196,60,2.118,101,3.32,282,4.319,345,3.08,2036,7.004,2037,7.004]],["deprecated//docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2038,3.818]],["keywords//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[0,0.964,11,0.521,14,0.674,407,3.347,1706,2.069,1801,2.462,1971,2.748,2042,3.16,2043,3.107,2044,4.415]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[11,0.587,203,1.561,339,1.49,688,2.375,1473,3.095,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[11,0.672,258,0.851,597,3.825,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[39,2.807,258,0.971,597,4.362,1303,3.247]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[9,0.054,17,1.564,18,1.574,35,0.66,38,2.384,198,4.807,199,4.702,258,0.928,297,3,387,4.923,802,5.705,1303,3.103,1309,3.906]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2045,3.655]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[11,0.606,138,2.861,466,3.354,1826,2.744,1995,4.621,2039,3.354,2045,3.057]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[11,0.552,14,0.714,33,2.128,42,1.684,258,0.7,328,2.234,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.627,14,0.81,203,1.666,753,4.113,1706,2.488,1947,4.453,2052,4.113]],["keywords//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[11,0.651,1770,3.948,2052,4.274,2053,5.202,2054,4.969,2055,5.99]],["toc//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[9,0.074,14,0.966,29,1.032,35,0.526,158,3.438,282,3.163,297,3.059,327,2.511,399,4.901,587,4.312,706,2.061,1348,5.483,2052,6.603,2054,5.697,2056,5.305,2057,4.608]],["deprecated//docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.587,49,0.862,164,1.544,258,0.744,1184,2.66,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[11,0.566,258,0.717,562,2.698,711,2.606,1770,3.432,1801,2.674,1913,4.523,2058,5.207]],["toc//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[9,0.086,17,1.693,18,1.704,35,0.415,40,3.899,201,1.879,258,1.486,262,3.27,379,2.005,472,3.509,1482,5.635]],["deprecated//docs/web-servers/apache/apache-web-server-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[11,0.627,47,2.031,49,0.92,164,1.648,292,2.934,1706,2.488,2059,3.163]],["keywords//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[1770,4.268,1870,4.196,1995,5.372,2059,3.553,2060,6.476]],["toc//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[9,0.055,29,1.032,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,412,1.689,651,3.589,744,5.726,803,6.329,1016,3.526,2059,5.077]],["deprecated//docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.724,1706,2.875,1801,3.421,1971,3.818,2061,3.774]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2063,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[11,0.672,14,0.869,49,0.986,164,1.767,1706,2.667,2059,3.391]],["keywords//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[655,2.191,1770,3.221,1870,3.167,1995,4.055,2059,2.682,2064,4.888,2065,3.903,2066,4.888,2067,3.572]],["toc//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[9,0.055,29,1.032,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,412,1.689,651,3.589,744,5.726,803,6.329,1016,3.526,2059,5.077]],["deprecated//docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/",[839,0.476]],["title//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[9,0.041,11,0.552,31,0.988,142,3.292,259,1.304,1168,1.96,1706,2.192,1801,2.608,1971,2.911]],["keywords//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[31,1.013,259,1.337,1168,2.009,1527,3.056,1528,3.494,2014,4.523,2068,5.207,2069,5.207]],["toc//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.672,49,0.986,1177,3.146,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.191,5,1.334,9,0.063,11,0.596,29,0.823,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,412,1.348,789,1.584,847,2.507,1038,2.072,1168,2.115]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[11,0.552,90,1.53,521,3.058,766,1.814,1706,2.192,1750,3.474,1801,2.608,1971,2.911,2070,3.1]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.627,42,1.911,485,3.62,490,2.04,1706,2.488,2072,4.113,2073,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[11,0.651,490,2.12,662,2.509,2073,3.286,2074,5.99,2075,5.99]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[0,1.328,9,0.053,29,0.993,35,0.512,42,2.191,57,3.979,169,2.03,201,1.703,261,2.451,411,3.59,412,1.626,789,1.911,1404,5.943,2073,6.048,2076,4.614,2077,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.587,14,0.759,24,2.39,179,3.342,210,2.505,1706,2.331,2078,2.904,2079,3.854]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[11,0.704,893,3.269,2078,3.483,2080,4.621,2081,5.372]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[9,0.078,14,1.364,2078,6.197]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[11,0.521,14,0.674,215,2.554,490,1.697,1184,2.362,1706,2.069,1801,2.462,1971,2.748,2082,2.554,2083,3.28]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/",[839,0.476]],["title//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.174,5,1.315,11,0.587,47,1.902,1063,2.933,1706,2.331,1801,2.773,1971,3.095]],["keywords//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[4,1.408,1465,4.268,1770,4.268,2087,5.003,2088,4.733]],["toc//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[0,1.745,4,2.546,5,1.524,9,0.05,47,2.205,49,0.999,96,3.132,119,2.185,213,4.055,335,3.872,706,1.878,946,4.124,950,3.872,951,4.625,952,2.824,987,4.368,1066,3.586]],["deprecated//docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,1.571,9,0.058,11,0.785,774,4.005]],["keywords//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[4,0.898,11,0.449,139,1.288,1200,2.77,1465,2.721,1467,3.296,1469,2.946,2089,4.129,2090,4.129,2091,4.129,2092,4.129,2093,4.129]],["toc//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[0,1.724,4,2.532,5,1.497,9,0.049,14,0.864,17,1.427,18,1.436,49,0.981,96,3.078,119,2.147,213,3.984,335,3.805,946,4.052,950,3.805,951,4.568,952,2.775,987,4.292,1066,3.524]],["deprecated//docs/databases/mysql/install-mysql-on-ubuntu-14-04/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,1706,2.331,1801,2.773]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[9,0.061,35,0.432,49,1.581,80,3.15,177,3.481,306,4.466,385,1.098,583,4.778,707,5.527,1352,1.13]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/",[839,0.476]],["title//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[5,1.505,11,0.672,14,0.869,30,2.667,1063,3.357,1706,2.667]],["keywords//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[30,2.795,1064,5.171,1065,3.952,1160,4.346,1770,4.268]],["toc//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[0,2.043,5,2.168,9,0.071,29,0.975,30,4.386,35,0.369,119,2.265,204,3.122,227,4.204,319,1.59,651,2.517,952,2.928,1066,3.718,1070,4.276,2094,5.012,2095,5.012]],["deprecated//docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.043,11,0.587,49,0.862,1706,2.331,1801,2.773,1971,3.095,2022,2.904,2096,3.169]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[2022,3.221,2096,3.515,2097,5.99,2098,4.494,2099,4.494,2100,4.494]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[9,0.06,14,1.047,35,0.423,49,1.189,282,3.431,283,5.315,327,2.723,490,2.636,684,3.967,789,2.153,2022,4.006,2027,4.826,2096,5.731,2101,5.588]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[11,0.672,49,0.986,759,2.735,1706,2.667,1801,3.174,1971,3.542]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[4,1.063,11,0.531,258,0.673,259,1.255,759,2.163,1496,3.903,2102,3.776,2103,4.888,2104,4.888]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[0,1.436,4,2.066,5,1.74,9,0.076,17,1.659,18,1.669,35,0.607,201,1.841,210,3.315,258,0.985,259,1.835,379,1.965,685,3.438]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/",[839,0.476]],["title//docs/uptime/monitoring-and-maintaining-your-server/",[49,1.259,203,2.281,1951,6.545]],["keywords//docs/uptime/monitoring-and-maintaining-your-server/",[77,5.372,203,2.57,882,5.372,1951,5.372]],["toc//docs/uptime/monitoring-and-maintaining-your-server/",[9,0.036,14,0.96,35,0.388,65,1.361,69,3.593,74,2.216,80,1.863,89,2.526,90,2.487,96,2.252,100,2.478,203,2.387,339,1.242,481,2.966,522,2.869,527,3.211,652,2.826,688,3.631,766,1.607,789,1.301,815,3.476,919,4.769,920,3.078,1033,2.182,1185,3.733,1342,4.143,1350,3.141,1363,3.908,1665,3.593,1666,3.593,1884,3.733,1946,4.143,2105,4.5]],["deprecated//docs/uptime/monitoring-and-maintaining-your-server/",[]],["title//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[49,1.259,203,2.281,2106,6.853]],["keywords//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[203,2.038,1623,7.518,2106,6.122]],["toc//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[0,1.189,4,1.286,9,0.084,14,0.525,29,0.561,35,0.517,49,0.596,64,1.449,65,1.13,80,3.039,88,2.666,96,2.96,119,2.065,120,4.322,164,1.068,169,1.816,201,0.962,203,1.08,258,0.515,259,1.518,312,2.22,318,2.029,345,1.643,385,0.539,573,2.666,649,2.22,684,1.99,688,1.643,706,1.121,847,3.358,895,2.421,1352,0.555,1887,3.245,1996,3.44,2106,8.401]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-zabbix/",[839,0.476]],["title//docs/applications/social-networking/dolphin/",[2107,8.402]],["keywords//docs/applications/social-networking/dolphin/",[2107,6.716,2108,6.174,2109,7.12]],["toc//docs/applications/social-networking/dolphin/",[4,1.074,5,1.203,9,0.087,16,1.472,29,0.742,35,0.417,40,2,49,0.789,64,1.917,100,1.483,119,1.725,249,3.526,259,2.242,262,2.215,381,1.718,405,4.472,684,2.632,688,2.173,706,1.483,744,3.058,766,1.765,803,3.38,905,3.612,937,3.945,2107,8.963,2110,4.942]],["deprecated//docs/applications/social-networking/dolphin/",[609,0.697,836,0.638,839,0.087,2109,2.146,2111,0.873,2112,0.873,2113,0.873]],["title//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[5,1.622,14,0.937,90,2.007,391,3.158,1129,4.065]],["keywords//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[4,1.001,5,1.122,491,3.455,1129,2.81,1838,2.408,2114,4.606,2115,4.606,2116,4.606,2117,4.606,2118,4.606]],["toc//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[0,1.563,4,1.691,5,2.446,90,3.025,119,2.715,176,3.201,391,5.273,491,5.835,2119,7.777]],["deprecated//docs/websites/cms/use-cpanel-to-manage-domains-and-databases/",[]],["title//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.053,49,1.063,139,2.078,2120,5.786,2121,6.134]],["keywords//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[2120,6.122,2122,7.049,2123,7.049,2124,7.049]],["toc//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[9,0.069,35,0.487,64,3.327,80,3.551,345,2.704,789,1.778,2120,10.754,2121,5.661,2125,10.689,2126,6.149]],["deprecated//docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/",[]],["title//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[244,3.677,655,3.239,895,4.681,948,5.043]],["keywords//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[244,3.936,655,3.467,895,5.011]],["toc//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[0,1.236,80,2.546,89,1.881,112,2.227,145,3.13,244,5.927,247,3.861,252,4.494,352,4.388,540,5.101,649,3.654,700,4.388,895,3.984,896,5.034,1110,5.661,1126,4.494,1751,5.661,2127,5.34,2128,5.101]],["deprecated//docs/platform/disk-images/copying-a-disk-image-over-ssh/",[]],["title//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[244,3.677,477,4.093,895,4.681,1778,5.58]],["keywords//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[244,3.936,1524,5.802,2129,7.733]],["toc//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[0,1.745,35,0.356,89,3.05,96,3.132,112,3.144,244,5.483,247,3.93,345,2.752,525,4.055,649,5.926,895,4.055,896,3.673,1126,4.574,2127,7.542]],["deprecated//docs/platform/disk-images/copying-a-disk-image-to-a-different-account/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.785,1033,3.502,1706,3.117,1801,3.709]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[11,0.841,1033,3.749,1801,3.971]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[9,0.048,11,1.064,15,3.638,16,1.8,42,2.003,74,2.976,80,2.502,89,1.848,100,1.813,112,2.188,367,4.312,522,3.853,583,3.795,742,3.983,977,5.013,1016,3.103,1033,5.143,1184,2.976,1185,5.013,2130,2.692,2131,5.013]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/",[839,0.476]],["title//docs/troubleshooting/rescue-and-rebuild/",[1126,6.352,2132,7.21]],["keywords//docs/troubleshooting/rescue-and-rebuild/",[1126,6.258,2132,7.104]],["toc//docs/troubleshooting/rescue-and-rebuild/",[2,2.964,8,3.885,9,0.045,65,1.683,80,3.309,89,1.702,153,2.402,169,1.709,244,2.833,247,5.02,339,2.206,381,1.935,445,3.495,527,3.972,645,3.735,649,3.308,655,2.495,948,3.885,951,2.964,1016,2.858,1126,6.836,1560,5.125,2132,4.617,2133,4.834,2134,5.125,2135,5.566]],["deprecated//docs/troubleshooting/rescue-and-rebuild/",[]],["title//docs/platform/disk-images/migrating-a-server-to-your-linode/",[49,1.259,89,2.413,1524,5.92]],["keywords//docs/platform/disk-images/migrating-a-server-to-your-linode/",[2136,7.733,2137,7.733,2138,7.733]],["toc//docs/platform/disk-images/migrating-a-server-to-your-linode/",[0,1.52,29,0.775,34,3.601,35,0.561,42,1.71,89,2.314,96,2.582,112,1.868,142,3.343,169,1.584,178,3.192,208,2.923,225,3.066,244,4.56,247,3.239,326,3.148,428,3.106,525,3.343,583,3.239,635,3.027,645,3.461,649,4.495,895,3.343,971,3.87,996,4.75,1032,3.528,1126,3.77,1335,4.75]],["deprecated//docs/platform/disk-images/migrating-a-server-to-your-linode/",[839,0.476]],["title//docs/platform/disk-images/disk-images-and-configuration-profiles/",[35,0.448,244,4.016,525,5.113]],["keywords//docs/platform/disk-images/disk-images-and-configuration-profiles/",[244,4.359,2139,8.563]],["toc//docs/platform/disk-images/disk-images-and-configuration-profiles/",[0,1.727,9,0.039,14,1.009,35,0.608,80,1.99,101,2.278,139,1.499,244,5.645,273,2.56,390,4.322,481,3.168,525,6.934,580,4.175,652,3.018,906,3.606,970,3.987,993,3.987,1084,3.513,1924,4.426,2140,4.426,2141,4.807]],["deprecated//docs/platform/disk-images/disk-images-and-configuration-profiles/",[]],["title//docs/platform/prepaid-billing-and-payments-legacy/",[1024,6.651,1035,5.28,1036,5.993,1037,5.42]],["keywords//docs/platform/prepaid-billing-and-payments-legacy/",[1035,4.378,1036,4.969,1037,4.494,1816,5.202,1817,5.202,2142,5.99]],["toc//docs/platform/prepaid-billing-and-payments-legacy/",[42,2.074,100,1.878,155,5.191,385,0.903,390,3.767,435,2.883,477,3.546,620,4.466,651,2.427,1035,6.346,1036,5.191,1037,6.515,1120,5.435,1813,5.762,1815,4.834,1816,5.435,1817,7.542,1818,5.191,2143,6.258,2144,6.258,2145,6.258]],["deprecated//docs/platform/prepaid-billing-and-payments-legacy/",[839,0.476]],["title//docs/troubleshooting/troubleshooting/",[790,4.726]],["keywords//docs/troubleshooting/troubleshooting/",[790,4.687]],["toc//docs/troubleshooting/troubleshooting/",[5,0.778,14,0.449,35,0.182,49,0.51,89,2.908,90,1.571,96,1.599,119,1.115,142,2.07,153,1.379,164,0.913,169,1.601,176,2.146,177,1.461,179,1.977,187,1.503,193,2.144,195,2.28,201,0.823,225,1.898,244,2.654,292,1.626,316,2.23,350,3.023,360,3.64,379,0.878,381,1.812,385,0.461,411,1.735,445,2.006,460,2.941,477,1.81,489,1.949,490,1.13,632,2.335,635,1.875,655,1.432,662,1.338,684,1.701,688,1.405,915,2.28,952,2.353,1058,2.551,1397,2.775,1452,2.775,1717,4.163,1812,2.468,1873,2.775,2146,3.195,2147,3.195,2148,2.775,2149,3.195,2150,3.195,2151,3.195,2152,3.195,2153,3.195,2154,3.195,2155,3.195,2156,2.941,2157,3.195,2158,3.195,2159,3.195,2160,3.195]],["deprecated//docs/troubleshooting/troubleshooting/",[]],["title//docs/platform/accounts-and-passwords/",[477,4.924,952,3.922]],["keywords//docs/platform/accounts-and-passwords/",[90,2.123,477,3.994,944,5.152,952,3.181]],["toc//docs/platform/accounts-and-passwords/",[29,0.787,45,2.332,46,2.302,89,2.339,90,2.303,100,1.571,119,3.154,225,4.544,385,1.103,390,3.152,405,4.666,445,4.802,684,2.788,766,2.731,950,4.732,951,2.788,952,4.484,1058,4.18,1965,6.343,2009,3.826,2133,4.547]],["deprecated//docs/platform/accounts-and-passwords/",[]],["title//docs/platform/support/",[472,4.654]],["keywords//docs/platform/support/",[472,3.391,2161,7.049,2162,7.049,2163,7.049]],["toc//docs/platform/support/",[89,2.813,313,7.105,472,4.425,706,2.76,1965,7.63,2164,9.198]],["deprecated//docs/platform/support/",[]],["title//docs/platform/linode-backup-service/",[2,3.07,14,0.81,24,2.551,42,1.911,89,1.763,319,1.413,1552,4.113]],["keywords//docs/platform/linode-backup-service/",[2165,4.888,2166,4.888,2167,4.888,2168,4.888,2169,4.888,2170,4.888,2171,4.888,2172,4.888,2173,4.888]],["toc//docs/platform/linode-backup-service/",[2,6.127,8,6.416,42,2.591,89,2.811,90,1.625,92,4.686,96,2.701,327,1.972,392,3.85,411,2.93,435,2.485,437,3.339,514,4.968,577,4.476,616,3.943,649,3.206,758,6.789,1087,3.943,1724,4.476,1818,4.476,2174,5.396]],["deprecated//docs/platform/linode-backup-service/",[]],["title//docs/websites/hosting-a-website/",[201,2.239,292,4.424]],["keywords//docs/websites/hosting-a-website/",[292,3.588,1667,5.628,1668,6.122,1686,6.49]],["toc//docs/websites/hosting-a-website/",[0,0.966,4,1.561,5,2.093,9,0.069,29,0.722,32,3.065,35,0.273,49,0.767,60,1.453,89,2.628,164,1.374,169,1.476,176,1.979,201,1.238,210,2.23,258,0.989,259,2.206,292,2.447,349,5.878,379,1.322,489,2.933,490,2.541,579,7.912,615,3.168,685,2.313,700,3.43]],["deprecated//docs/websites/hosting-a-website/",[]],["title//docs/security/securing-your-server/",[49,1.387,319,2.13]],["keywords//docs/security/securing-your-server/",[319,2.064,325,2.882,655,2.685,2175,5.99,2176,5.99]],["toc//docs/security/securing-your-server/",[0,0.871,11,0.471,14,0.609,35,0.246,42,2.997,45,1.93,46,1.906,61,0.779,100,1.992,119,1.513,127,1.39,129,1.217,176,1.784,251,1.996,312,2.575,319,1.062,325,2.085,334,1.815,336,2.287,381,1.506,390,3.996,392,3.093,399,3.093,477,2.456,562,2.245,572,3.595,651,1.681,655,3.617,662,1.815,946,2.856,987,3.025,1353,2.856,1423,2.721,1552,3.093,1679,3.99,1966,3.764,2026,3.025,2177,4.334,2178,3.99,2179,4.334,2180,5.507]],["deprecated//docs/security/securing-your-server/",[]],["title//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[16,1.984,29,1.001,49,1.063,759,2.948,1511,4.122]],["keywords//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[759,3.422,1511,4.785,1889,7.12]],["toc//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.655,49,1.336,164,1.699,201,1.53,258,0.819,259,1.525,379,1.633,412,1.461,1890,5.16]],["deprecated//docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.672,49,0.986,203,1.787,2181,4.41,2182,4.41,2183,4.314]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[11,0.651,203,1.732,2181,4.274,2183,4.181,2184,5.99,2185,5.515]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[258,1.197,2186,7.549]],["keywords//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[258,0.971,2186,6.122,2187,7.049,2188,7.049]],["toc//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[9,0.056,35,0.398,225,4.162,334,2.933,635,4.111,706,2.102,1107,5.81,2186,8.144,2189,7.004,2190,7.004,2191,7.004,2192,7.004,2193,7.004,2194,7.004,2195,7.004,2196,7.004,2197,7.004]],["deprecated//docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/",[]],["title//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[35,0.448,258,1.087,2198,7.265]],["keywords//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[258,1.18,2199,8.563]],["toc//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[9,0.061,29,1.143,45,3.389,46,3.346,60,2.301,129,2.137,146,4.466,326,4.643,947,6.075,2198,10.137,2200,7.609,2201,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/",[]],["title//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[61,1.197,766,2.379,1023,2.806,2004,3.959,2202,3.205]],["keywords//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[2007,4.429,2008,4.859,2203,6.476,2204,6.476,2205,5.963]],["toc//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[9,0.051,29,0.957,35,0.362,327,2.329,381,2.214,385,0.919,412,1.567,687,2.386,776,3.309,795,3.887,796,3.271,933,4.546,952,2.875,981,4.062,1140,4.001,1352,0.946,1804,3.942,2004,5.224,2009,4.656,2128,7.293]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-6-squeeze/",[839,0.476]],["title//docs/tools-reference/tools/use-nano-text-editor-commands/",[14,0.869,139,1.928,368,2.635,610,4.314,611,4.935,953,4.637]],["keywords//docs/tools-reference/tools/use-nano-text-editor-commands/",[611,6.837,953,6.425]],["toc//docs/tools-reference/tools/use-nano-text-editor-commands/",[0,1.458,2,2.596,16,1.451,29,0.732,35,0.277,38,1.725,54,3.016,109,5.063,169,3.15,191,5.71,273,2.596,368,2.078,389,4.367,610,6.699,647,3.656,652,3.06,953,3.656,979,6.3,1016,2.502,1362,4.487,1478,6.917,2206,4.873,2207,4.873,2208,4.233,2209,4.873]],["deprecated//docs/tools-reference/tools/use-nano-text-editor-commands/",[]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[11,0.724,49,1.063,1177,3.391,2131,5.526,2210,5.786]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/set-up-dns-services-on-cpanel/",[16,1.984,29,1.001,42,2.208,490,2.357,1129,4.065]],["keywords//docs/websites/cms/set-up-dns-services-on-cpanel/",[490,3.03,1129,5.225]],["toc//docs/websites/cms/set-up-dns-services-on-cpanel/",[14,1.199,90,2.569,417,5.439,489,5.205,490,3.019,993,7.076,1133,9.808,1948,7.409]],["deprecated//docs/websites/cms/set-up-dns-services-on-cpanel/",[]],["title//docs/websites/cms/kloxo-guides/",[1161,6.521,2211,7.21]],["keywords//docs/websites/cms/kloxo-guides/",[1129,4.301,2211,5.847,2212,5.03,2213,5.03]],["toc//docs/websites/cms/kloxo-guides/",[]],["deprecated//docs/websites/cms/kloxo-guides/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-centos-6/",[49,1.153,129,2.029,1023,3.043,1177,3.677]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-6/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-centos-6/",[4,1.21,5,1.356,9,0.064,29,0.836,31,1.819,35,0.316,47,3.295,49,1.276,65,1.683,100,1.67,112,2.016,164,1.592,201,1.434,203,1.609,259,1.429,319,1.364,339,1.536,345,2.447,379,1.53,412,1.369,789,1.609,847,2.546,1038,2.105,1168,2.148,1691,4.176]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-6/",[]],["title//docs/websites/cms/creating-accounts-on-directadmin/",[0,1.586,477,4.47,2214,6.545]],["keywords//docs/websites/cms/creating-accounts-on-directadmin/",[477,4.381,2214,6.415,2215,7.12]],["toc//docs/websites/cms/creating-accounts-on-directadmin/",[0,2.344,65,2.994,119,3.458,385,1.098,477,5.611,1352,1.13,2215,9.119]],["deprecated//docs/websites/cms/creating-accounts-on-directadmin/",[839,0.476]],["title//docs/websites/cms/directadmin/",[2214,8.025]],["keywords//docs/websites/cms/directadmin/",[2214,7.958]],["toc//docs/websites/cms/directadmin/",[]],["deprecated//docs/websites/cms/directadmin/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[11,0.724,49,1.063,759,2.948,2131,5.526,2210,5.786]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[1656,5.003,2102,5.003,2216,6.476,2217,6.476,2218,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.058,129,2.029,2211,5.993,2219,2.533]],["keywords//docs/websites/cms/install-kloxo-on-centos-5/",[1129,4.301,2211,5.847,2212,5.03,2213,5.03]],["toc//docs/websites/cms/install-kloxo-on-centos-5/",[9,0.08,428,6.008,659,5.592]],["deprecated//docs/websites/cms/install-kloxo-on-centos-5/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[11,0.785,1033,3.502,2131,5.993,2210,6.274]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[2220,7.049,2221,7.049,2222,5.847,2223,5.847]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[112,3.614,1033,5.679]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/",[839,0.476]],["title//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[9,0.05,14,0.869,687,2.314,776,2.326,1129,3.771,1140,3.881]],["keywords//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[635,4.538,687,2.896,1129,4.718]],["toc//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[0,1.635,9,0.065,17,1.889,18,1.901,220,4.333,687,3.047,776,3.891,790,3.975,796,4.178,1140,5.109]],["deprecated//docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/",[]],["title//docs/websites/ecommerce/opencart-on-fedora-15/",[127,2.53,964,5.294,2224,6.545]],["keywords//docs/websites/ecommerce/opencart-on-fedora-15/",[127,2.077,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/opencart-on-fedora-15/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-fedora-15/",[839,0.476]],["title//docs/websites/ecommerce/opencart-on-centos-6/",[129,2.216,964,5.294,1023,3.324]],["keywords//docs/websites/ecommerce/opencart-on-centos-6/",[129,1.819,253,3.483,779,4.521,964,4.346,965,5.372]],["toc//docs/websites/ecommerce/opencart-on-centos-6/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-centos-6/",[]],["title//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.298,964,4.847,1023,3.043,2202,3.476]],["keywords//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[61,1.076,253,3.221,779,4.181,964,4.019,965,4.969,2202,2.882]],["toc//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[4,2,9,0.074,29,1.382,259,2.361,964,6.172,1286,6.564]],["deprecated//docs/websites/ecommerce/opencart-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-15/",[49,1.153,127,2.317,759,3.197,2224,5.993]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-15/",[1789,5.152,1790,5.289,2225,7.049,2226,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-15/",[4,2.239,5,1.969,9,0.082,16,1.684,29,1.215,35,0.619,49,1.29,164,1.617,201,1.457,210,2.623,258,1.114,259,1.452,379,1.555,412,1.391,537,3.665,685,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-15/",[839,0.476]],["title//docs/web-servers/lamp/lamp-on-centos-6/",[129,2.216,759,3.492,1023,3.324]],["keywords//docs/web-servers/lamp/lamp-on-centos-6/",[4,1.211,129,1.565,258,0.767,259,1.43,759,2.465,1025,4.448,1301,5.13]],["toc//docs/web-servers/lamp/lamp-on-centos-6/",[0,1.38,4,2.012,5,1.673,9,0.084,17,1.594,18,1.604,35,0.636,164,1.964,201,1.769,258,1.275,259,1.763,379,1.888]],["deprecated//docs/web-servers/lamp/lamp-on-centos-6/",[]],["title//docs/platform/nodebalancer/nodebalancer-reference-guide/",[1159,5.294,1161,5.92,1518,6.545]],["keywords//docs/platform/nodebalancer/nodebalancer-reference-guide/",[499,6.837,1159,5.746]],["toc//docs/platform/nodebalancer/nodebalancer-reference-guide/",[29,0.811,31,1.05,35,0.307,85,3.85,208,5.208,218,4.686,221,4.476,225,3.206,247,3.388,251,2.485,258,0.743,321,3.943,350,3.128,367,3.85,531,3.292,630,3.206,635,3.166,684,2.874,776,2.031,837,3.943,992,4.968,1016,2.771,1097,3.248,1159,5.245,2227,5.396,2228,5.396,2229,5.396,2230,5.396,2231,5.396,2232,4.968]],["deprecated//docs/platform/nodebalancer/nodebalancer-reference-guide/",[]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[4,1.253,61,1.036,766,2.059,1023,2.428,1055,2.169,1584,3.041,2202,2.773]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[61,1.001,766,1.99,1584,2.939,2202,2.68,2205,5.13,2233,5.571,2234,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.344,129,1.736,766,2.207,1055,2.326,1584,3.261,2219,2.167]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[766,2.313,1587,4.621,2236,6.476,2237,6.476,2238,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[4,1.778,9,0.046,16,2.436,29,1.229,35,0.541,60,2.879,65,1.738,119,2.856,261,2.131,379,1.58,391,3.877,435,2.648,688,2.527,767,2.436,1016,2.951,1055,3.078,1584,3.032,1588,3.507,1589,4.201]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-fedora-15/",[49,1.153,127,2.317,1177,3.677,2224,5.993]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-15/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-15/",[4,1.23,5,1.377,9,0.076,29,0.85,31,1.573,35,0.536,49,1.29,65,1.71,100,1.697,164,1.617,201,1.457,203,1.635,259,1.452,319,1.982,379,1.555,385,0.816,412,1.391,615,3.727,789,1.635,1038,2.139,1168,2.182,1352,0.84,1525,3.551]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-15/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[49,1.063,61,1.197,1023,2.806,1177,3.391,2202,3.205]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[4,1.155,5,1.294,9,0.062,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,61,0.955,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,385,0.767,412,1.307,789,1.536,847,2.431,1013,4.616,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2182,4.113,2183,4.024]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2239,5.571,2240,4.839,2241,4.621]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[29,1.195,35,0.579,42,2.636,60,2.405,215,4.236,385,1.147,412,1.956,767,4.318,1352,1.181,1987,4.726]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[11,0.724,49,1.063,759,2.948,2182,4.754,2183,4.65]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[1656,5.003,2102,5.003,2185,5.963,2242,6.476,2243,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[42,1.79,61,0.97,485,3.391,490,1.911,1023,2.275,2072,3.854,2073,2.963,2202,2.598]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[61,1.164,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2182,3.854,2183,3.77]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2224,4.782]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[9,0.053,14,0.929,29,0.993,35,0.583,318,3.59,339,1.824,385,0.954,412,1.626,476,3.133,490,2.339,520,3.704,651,2.564,1352,0.982,2082,6.144,2086,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2182,3.854,2183,3.77]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[11,0.672,90,1.862,380,4.005,708,3.771,2182,4.41,2183,4.314]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[708,3.952,2245,6.476,2246,5.171,2247,5.171,2248,5.171]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[61,1.111,90,1.862,380,4.005,708,3.771,1023,2.604,2202,2.974]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2250,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.202,61,1.111,259,1.587,1023,2.604,1168,2.385,2202,2.974]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[31,1.371,1527,4.137,1528,4.73,2251,7.049]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[11,0.672,31,1.202,259,1.587,1168,2.385,2182,4.41,2183,4.314]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[31,1.371,1527,4.137,1528,4.73,2252,7.049]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/an-overview-of-ipv6-on-linode/",[89,2.413,887,5.766,1098,5.92]],["keywords//docs/networking/an-overview-of-ipv6-on-linode/",[2253,8.563,2254,8.563]],["toc//docs/networking/an-overview-of-ipv6-on-linode/",[35,0.423,177,3.407,225,5.804,468,4.909,508,5.754,652,4.677,1097,4.484,1098,9.009,2255,7.448,2256,7.448]],["deprecated//docs/networking/an-overview-of-ipv6-on-linode/",[]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2182,4.41,2183,4.314]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[2013,5.003,2257,6.476,2258,5.963,2259,6.476,2260,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/",[839,0.476]],["title//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[16,1.984,29,1.001,89,2.038,1096,3.818,1098,4.998]],["keywords//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[662,2.952,1096,4.039,1098,5.289,2261,7.049]],["toc//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[11,0.761,17,1.626,18,1.636,35,0.398,61,1.259,127,2.246,129,2.633,139,2.924,207,2.933,437,4.334,659,3.925,761,3.506,1023,2.951,1316,3.661,1511,4.334,2156,6.449]],["deprecated//docs/networking/set-up-an-ipv6-tunnel-on-your-linode/",[]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[11,0.785,1033,3.502,2182,5.155,2183,5.043]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[2222,5.847,2223,5.847,2262,7.049,2263,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[112,3.614,1033,5.679]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/",[839,0.476]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[49,0.92,61,1.036,164,1.648,189,2.986,1023,2.428,1998,3.196,2202,2.773]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[258,0.971,1500,5.628,1998,3.908,2000,5.03]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[61,1.197,258,0.918,597,4.122,1023,2.806,2202,3.205]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[127,2.317,258,0.995,597,4.47,2264,3.964]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.724,258,0.918,597,4.122,2130,2.967,2265,2.875]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/platform/stackscripts/",[20,4.63,47,2.779,539,6.545]],["keywords//docs/platform/stackscripts/",[20,3.801,108,4.733,256,4.008,2266,6.476,2267,6.476]],["toc//docs/platform/stackscripts/",[0,1.084,14,1.292,47,2.754,59,3.69,89,1.65,96,2.701,101,2.557,146,3.166,151,3.556,265,3.166,328,2.372,519,4.686,520,3.024,539,9.773,789,1.56,894,3.44,2047,3.62,2268,5.396,2269,4.968,2270,5.396,2271,5.396,2272,5.396,2273,5.396]],["deprecated//docs/platform/stackscripts/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[61,1.111,1023,2.604,1991,4.314,1992,4.227,1993,3.771,2202,2.974]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[127,2.136,1991,4.65,1992,4.556,1993,4.065,2264,3.655]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[127,2.136,258,0.918,597,4.122,1303,3.069,2264,3.655]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[39,2.807,258,0.971,597,4.362,1303,3.247]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[9,0.076,29,1.074,35,0.54,47,2.517,172,3.705,258,1.309,297,3.183,385,1.031,412,1.757,802,3.669,1303,4.377,1352,1.061]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,1.298,1023,3.043,2045,3.964,2202,3.476]],["keywords//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[61,0.936,138,2.674,466,3.135,1826,2.564,2039,3.135,2045,2.857,2274,5.207,2275,5.207]],["toc//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.785,2045,3.964,2130,3.218,2265,3.117]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.785,2045,3.964,2276,3.53,2277,3.502]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[61,1.036,90,1.736,466,3.47,712,2.839,1023,2.428,2202,2.773,2278,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[90,1.862,127,1.982,466,3.721,712,3.044,2264,3.391,2278,4.517]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[11,0.627,90,1.736,466,3.47,712,2.839,2276,2.816,2277,2.795,2278,4.213]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[90,1.736,129,1.619,265,3.383,2219,2.021,2280,4.113,2281,4.453,2282,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[265,3.801,2280,4.621,2283,5.963,2284,5.625,2285,5.171]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[9,0.083,35,0.462,100,2.441,203,2.352,319,1.994,706,2.441,789,2.352,1038,3.077,2280,7.378]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[90,1.736,127,1.849,265,3.383,2264,3.163,2280,4.113,2281,4.453,2282,5.006]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[265,3.801,2280,4.621,2283,5.963,2284,5.625,2285,5.171]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[9,0.08,35,0.442,100,2.334,203,2.248,319,1.906,385,1.122,706,2.334,789,2.248,1038,2.941,1352,1.155,2280,7.168]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[61,0.97,90,1.627,521,3.251,766,1.929,1023,2.275,1750,3.694,2070,3.295,2202,2.598]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[9,0.057,29,1.074,35,0.607,385,1.031,389,4.302,404,4.888,412,1.757,616,5.223,619,4.422,767,3.028,1352,1.061,2070,6.514,2286,6.207]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[61,1.111,89,1.89,90,1.862,1023,2.604,2202,2.974,2287,3.627]],["keywords//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[89,2.038,90,2.007,127,2.136,2264,3.655,2287,3.909]],["keywords//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,1.619,112,1.954,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[127,1.982,203,1.787,339,1.705,688,2.718,1473,3.542,2264,3.391]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[11,0.627,203,1.666,339,1.59,688,2.535,1473,3.303,2276,2.816,2277,2.795]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[49,0.986,61,1.111,203,1.787,1023,2.604,2181,4.41,2202,2.974]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[203,2.476,2181,6.111]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[11,0.627,273,3.07,939,3.567,2276,2.816,2277,2.795,2297,4.602,2298,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[1065,2.982,2299,4.888,2300,4.888,2301,4.888,2302,4.245,2303,3.903,2304,3.903,2305,3.776,2306,3.903]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/redis/redis-on-debian-6-squeeze/",[61,1.298,162,3.811,1023,3.043,2202,3.476]],["keywords//docs/databases/redis/redis-on-debian-6-squeeze/",[5,1.717,162,3.719,893,3.558,2030,5.03]],["toc//docs/databases/redis/redis-on-debian-6-squeeze/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[61,1.111,258,0.851,464,3.231,1023,2.604,1196,3.292,2202,2.974]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[127,1.982,258,0.851,320,3.146,687,2.314,776,2.326,2264,3.391]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[711,3.528,1699,4.821,1701,6.122,2309,5.847]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[61,1.111,319,1.515,731,3.12,894,3.941,1023,2.604,2202,2.974]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[2310,7.733,2311,7.733,2312,7.733]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,4.312,531,4.209,662,2.889,731,3.482,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[31,1.296,127,2.136,2264,3.655,2313,4.754,2314,5.526]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/",[839,0.476]],["title//docs/websites/wikis/twiki-on-centos-5/",[129,2.216,2038,4.521,2219,2.767]],["keywords//docs/websites/wikis/twiki-on-centos-5/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-centos-5/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-centos-5/",[839,0.476]],["title//docs/websites/wikis/twiki-on-debian-6-squeeze/",[61,1.298,1023,3.043,2038,4.14,2202,3.476]],["keywords//docs/websites/wikis/twiki-on-debian-6-squeeze/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-debian-6-squeeze/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/twiki-on-fedora-14/",[127,2.53,2038,4.521,2264,4.329]],["keywords//docs/websites/wikis/twiki-on-fedora-14/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-fedora-14/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-fedora-14/",[839,0.476]],["title//docs/security/authentication/use-public-key-authentication-with-ssh/",[14,0.937,251,3.069,336,3.515,655,2.987,1094,4.317]],["keywords//docs/security/authentication/use-public-key-authentication-with-ssh/",[459,3.103,655,2.685,988,5.515,1096,3.432,1117,5.515,1914,4.378]],["toc//docs/security/authentication/use-public-key-authentication-with-ssh/",[49,1.336,139,1.853,145,3.024,153,3.614,204,4.029,215,3.164,237,3.677,251,4.85,336,3.135,339,2.31,655,2.664,700,4.24,761,4.191,1101,6.283,1529,3.677,2067,4.342,2316,8.374]],["deprecated//docs/security/authentication/use-public-key-authentication-with-ssh/",[]],["title//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,1.344,5,1.505,14,0.869,139,1.928,1063,3.357,1316,3.231]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[1843,5.973,1901,6.716,2317,7.733]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[4,2.494,9,0.058,14,1.025,35,0.547,335,4.514,339,2.012,385,1.052,950,4.514,951,3.885,952,3.292,1352,1.083,1682,5.473]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/",[839,0.476]],["title//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[11,0.724,258,0.918,597,4.122,2276,3.255,2277,3.23]],["keywords//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[42,1.911,61,1.036,1023,2.428,1271,3.303,1976,3.425,1977,3.735,2202,2.773]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[1978,3.572,1979,3.221,1981,3.167,1982,3.167,2021,3.221,2318,4.888,2319,4.888,2320,4.055,2321,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[9,0.08,29,1.509,35,0.442,57,4.682,325,3.742,385,1.122,412,1.913,706,2.334,1352,1.155,1976,5.969]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[49,0.92,61,1.036,164,1.648,258,0.794,320,2.934,1023,2.428,2202,2.773]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[690,5.171,1500,5.171,2322,6.476,2323,6.476,2324,6.476]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[9,0.078,17,1.403,18,1.412,35,0.482,40,2.446,201,1.557,210,2.803,258,1.348,262,3.799,302,3.387,320,3.076,334,3.549,379,1.662,385,0.872,472,2.908,685,2.908,1352,0.898,1480,4.219,2325,5.249]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-arch-linux/",[139,2.461,1316,4.124,2045,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-arch-linux/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2265,2.404]],["toc//docs/websites/wikis/ikiwiki-on-arch-linux/",[9,0.093,31,1.449,35,0.423,49,1.189,164,2.13,258,1.026,385,1.075,723,4.319,1352,1.106,1628,4.609,2045,5.358]],["deprecated//docs/websites/wikis/ikiwiki-on-arch-linux/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2276,2.816,2277,2.795]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2326,5.515]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[49,1.063,61,1.197,759,2.948,1023,2.806,2202,3.205]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[1504,6.415,1894,6.716,2327,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[49,0.986,127,1.982,164,1.767,189,3.202,1998,3.427,2264,3.391]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[258,0.971,1998,3.908,2000,5.03,2328,6.49]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[61,1.036,273,3.07,939,3.567,1023,2.428,2202,2.773,2297,4.602,2298,4.325]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[1065,2.982,2303,3.903,2304,3.903,2305,3.776,2306,3.903,2329,4.888,2330,4.888,2331,4.888,2332,4.501]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[14,0.714,24,2.248,61,0.913,179,3.143,210,2.356,1023,2.14,2078,2.732,2079,3.625,2202,2.444]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[61,1.267,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.81,33,2.414,42,1.911,127,1.849,258,0.794,328,2.535,2264,3.163]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[14,0.81,31,1.121,61,1.036,802,2.96,1023,2.428,1304,2.986,2202,2.773]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.296,61,1.197,292,3.391,1023,2.806,2202,3.205]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[31,1.165,61,1.076,217,2.759,711,2.998,2333,5.515,2334,5.99]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,61,1.068,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/databases/postgresql/debian-6-squeeze/",[5,1.404,14,0.81,30,2.488,61,1.036,1023,2.428,1063,3.131,2202,2.773]],["keywords//docs/databases/postgresql/debian-6-squeeze/",[1065,4.301,1160,4.73,2335,7.049,2336,7.049]],["toc//docs/databases/postgresql/debian-6-squeeze/",[0,2.083,5,1.641,9,0.073,29,1.012,30,4.472,35,0.383,119,2.352,227,4.365,385,0.972,952,3.04,1066,3.86,1070,4.44,1352,1,2094,5.204,2095,5.204]],["deprecated//docs/databases/postgresql/debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[61,1.197,258,0.918,1023,2.806,1172,3.733,2202,3.205]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[12,3.588,2337,5.847,2338,6.49,2339,6.49]],["toc//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[61,1.197,258,0.918,597,4.122,2219,2.336,2341,2.682]],["keywords//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[39,3.079,258,1.065,1308,5.189]],["toc//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[9,0.052,29,0.975,35,0.651,38,2.296,198,4.63,199,4.529,258,0.894,297,2.89,385,0.936,387,4.742,412,1.596,802,5.616,1303,2.989,1309,3.762,1352,0.964]],["deprecated//docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[38,2.04,61,1.036,730,4.325,766,2.059,1023,2.428,1055,2.169,2202,2.773]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[61,1.111,258,0.851,597,3.825,1023,2.604,1303,2.847,2202,2.974]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[31,1.202,61,1.111,1023,2.604,1168,2.385,1826,3.044,2202,2.974]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[2013,5.003,2258,5.963,2344,6.476,2345,6.476,2346,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[61,0.97,119,1.885,339,1.49,477,3.06,1055,2.032,1584,2.849,2219,1.894,2341,2.174]],["keywords//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[766,2.517,1055,2.653,1584,3.719,2347,7.049]],["toc//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[9,0.048,29,0.908,35,0.603,42,2.809,204,2.908,336,3.188,385,0.872,412,1.486,651,2.344,687,2.263,767,4.496,783,4.417,789,1.747,961,4.825,1055,2.274,1352,0.898,1584,3.188,2348,6.043,2349,6.043]],["deprecated//docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[11,0.672,258,0.851,464,3.231,1196,3.292,2276,3.02,2277,2.996]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[31,1.202,61,1.111,1023,2.604,2202,2.974,2313,4.41,2314,5.127]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[9,0.056,29,1.052,31,1.824,35,0.533,49,1.496,172,2.731,177,3.204,385,1.011,412,1.722,472,3.37,847,3.204,1304,5.476,1352,1.04]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/webpy-on-debian-6-squeeze/",[61,1.298,1023,3.043,1309,4.188,2202,3.476]],["keywords//docs/development/frameworks/webpy-on-debian-6-squeeze/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-debian-6-squeeze/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-6-squeeze/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[61,1.036,766,2.059,1023,3.453,1370,3.799,2202,2.773,2350,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[1587,4.274,2351,5.99,2352,5.99,2353,5.515,2354,4.782,2355,4.782]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[9,0.078,35,0.423,38,2.636,65,2.252,100,2.235,203,2.153,319,1.826,339,2.055,385,1.075,706,2.235,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[61,1.036,90,1.736,466,3.47,712,2.839,2219,2.021,2278,4.213,2341,2.321]],["keywords//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[466,4.243,680,4.243,1170,4.646,2279,5.847]],["toc//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[9,0.056,29,1.052,35,0.533,112,2.536,258,0.965,307,4.616,339,1.932,385,1.011,412,1.722,544,3.73,712,3.449,799,4.998,1352,1.04,1833,5.119,2278,7.725]],["deprecated//docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[43,3.342,49,0.92,61,1.036,767,2.443,1023,2.428,1987,3.425,2202,2.773]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[1372,3.498,1989,4.18,1990,4.18,2333,5.13,2356,5.571,2357,5.571,2358,5.13]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[11,0.785,2038,4.14,2130,3.218,2265,3.117]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[11,0.785,2038,4.14,2276,3.53,2277,3.502]],["keywords//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[14,0.759,61,0.97,215,2.876,490,1.911,1023,2.275,2082,2.876,2083,3.694,2202,2.598]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[61,0.936,490,1.843,829,3.27,2082,2.773,2086,2.8,2359,5.207,2360,5.207,2361,5.207]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.724,31,1.296,292,3.391,2276,3.255,2277,3.23]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[11,0.651,31,1.165,217,2.759,711,2.998,2362,5.202,2363,4.969]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[0,1.194,9,0.078,11,0.646,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[61,1.298,1023,3.043,1033,3.502,2202,3.476]],["keywords//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[1938,6.49,1939,6.49,2202,3.391,2364,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[112,3.42,303,7.296,339,2.606,1033,5.496]],["deprecated//docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[31,1.296,139,2.078,1168,2.571,1316,3.482,1826,3.281]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[1168,2.499,2015,4.521,2365,6.476,2366,5.625,2367,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[9,0.058,29,1.096,35,0.547,60,2.205,65,2.205,201,1.879,261,2.705,379,2.005,385,1.052,412,1.794,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[31,1.296,139,2.078,259,1.71,1168,2.571,1316,3.482]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[1527,4.137,1528,4.73,2366,6.122,2367,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[9,0.064,29,1.195,35,0.452,60,2.405,201,2.048,259,2.042,379,2.186,385,1.147,412,1.956,789,2.299,1168,3.069,1352,1.181]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2264,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[9,0.053,14,0.929,29,0.993,35,0.583,318,3.59,339,1.824,385,0.954,412,1.626,476,3.133,490,2.339,520,3.704,651,2.564,1352,0.982,2082,6.144,2086,3.555]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2276,2.639,2277,2.618]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.405,139,2.253,292,3.677,1316,3.776]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[31,1.26,711,3.242,2366,5.625,2367,5.625,2368,6.476]],["toc//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[9,0.074,29,1.382,31,1.789,385,1.327,412,2.262,1352,1.366]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-arch-linux/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,1.298,2045,3.964,2219,2.533,2341,2.908]],["keywords//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[61,0.936,138,2.674,466,3.135,1826,2.564,2039,3.135,2045,2.857,2369,5.207,2370,5.207]],["toc//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[9,0.09,31,1.336,35,0.595,38,2.43,49,1.096,164,1.964,258,0.946,339,1.895,385,0.991,723,3.982,1352,1.02,1628,4.25,2045,5.077]],["deprecated//docs/websites/wikis/ikiwiki-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/social-networking/phpfox/",[2371,7.723]],["keywords//docs/applications/social-networking/phpfox/",[894,4.931,2108,6.174,2371,6.174]],["toc//docs/applications/social-networking/phpfox/",[]],["deprecated//docs/applications/social-networking/phpfox/",[839,0.476]],["title//docs/websites/wikis/twiki-on-debian-5-lenny/",[61,1.298,2038,4.14,2219,2.533,2341,2.908]],["keywords//docs/websites/wikis/twiki-on-debian-5-lenny/",[2038,4.039,2039,4.243,2040,5.289,2041,5.289]],["toc//docs/websites/wikis/twiki-on-debian-5-lenny/",[9,0.089,35,0.589,49,1.075,112,2.439,164,1.926,258,0.928,339,1.859,385,0.972,706,2.021,789,1.947,1352,1,2038,6.367]],["deprecated//docs/websites/wikis/twiki-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,1.253,5,1.404,14,0.81,61,1.036,1023,2.428,1063,3.131,2202,2.773]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[1843,5.003,2372,6.476,2373,5.963,2374,6.476,2375,6.476]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.785,2061,4.093,2276,3.53,2277,3.502]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2376,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[42,1.911,127,1.849,485,3.62,490,2.04,2072,4.113,2073,3.163,2264,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2309,5.372]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2276,2.639,2277,2.618]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[11,0.785,1309,4.188,2276,3.53,2277,3.502]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[31,1.202,61,1.111,2219,2.167,2313,4.41,2314,5.127,2341,2.488]],["keywords//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[47,2.281,265,3.801,464,3.385,1690,3.047,2313,4.621]],["toc//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[0,1.38,9,0.074,29,1.032,31,1.336,35,0.39,38,2.43,47,2.419,49,1.096,164,1.964,172,3.608,385,0.991,412,1.689,789,1.985,1352,1.02,2313,6.603,2315,5.965]],["deprecated//docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.448,5,1.622,14,0.937,1063,3.618,1511,4.122]],["keywords//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,1.533,5,1.717,1511,4.362,2305,5.445]],["toc//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[4,2.622,9,0.067,14,1.171,35,0.473,335,5.154,385,1.202,1352,1.237]],["deprecated//docs/databases/mysql/using-mysql-relational-databases-on-gentoo/",[839,0.476]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.344,11,0.672,90,1.862,1838,3.231,2276,3.02,2277,2.996]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[4,1.533,11,0.766,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[9,0.077,35,0.547,60,2.205,112,2.641,169,2.24,258,1.005,319,1.788,322,5.092,633,4.58,687,2.732,1838,5.997]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.296,127,2.136,259,1.71,1168,2.571,2264,3.655]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[31,1.371,1527,4.137,1528,4.73,2377,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[9,0.06,29,1.119,35,0.555,60,2.252,65,2.252,259,1.912,261,2.762,385,1.075,412,1.832,544,3.967,1168,2.874,1352,1.106,2291,4.826,2378,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.296,127,2.136,1168,2.571,1826,3.281,2264,3.655]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[31,1.371,1527,4.137,2015,4.921,2377,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[9,0.06,29,1.119,35,0.555,60,2.252,65,2.252,261,2.762,385,1.075,412,1.832,544,3.967,1168,3.769,1352,1.106,1553,5.444,1826,3.668]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[11,0.785,1309,4.188,2130,3.218,2265,3.117]],["keywords//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-fedora-13/",[127,2.53,2061,4.47,2379,4.329]],["keywords//docs/uptime/analytics/piwik-on-fedora-13/",[51,3.311,110,3.311,129,1.565,356,3.61,2061,3.157,2062,4.072,2380,5.571]],["toc//docs/uptime/analytics/piwik-on-fedora-13/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[14,0.869,31,1.202,139,1.928,802,3.174,1304,3.202,1316,3.231]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[31,1.26,39,2.579,802,3.325,1304,3.355,1901,5.625]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[0,1.466,9,0.058,29,1.096,31,1.419,35,0.415,40,2.953,49,1.537,172,2.844,177,3.337,385,1.052,412,1.794,1304,4.99,1352,1.083,1841,3.779]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[14,0.869,31,1.202,127,1.982,802,3.174,1304,3.202,2264,3.391]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[9,0.078,29,1.119,31,1.9,35,0.555,49,1.189,172,2.904,177,3.407,385,1.075,412,1.832,1304,5.059,1352,1.106]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[49,0.986,127,1.982,164,1.767,258,0.851,320,3.146,2264,3.391]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[690,6.174,2381,7.733,2382,7.12]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[9,0.074,29,0.823,35,0.577,40,2.218,49,0.875,187,2.578,201,1.411,210,2.542,217,2.524,258,1.277,262,2.457,332,3.611,334,2.295,379,1.506,385,0.791,388,3.177,412,1.348,472,2.636,633,3.441,685,2.636,913,4.111,952,2.473,1352,0.814,1552,3.91,2383,4.111]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-14/",[127,2.317,258,0.995,1172,4.048,2264,3.964]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-14/",[12,3.297,2384,6.476,2385,6.476,2386,6.476,2387,5.625]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-14/",[9,0.067,14,1.171,29,1.251,60,2.518,258,1.147,385,1.202,412,2.048,1172,5.88,1352,1.237]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[11,0.724,258,0.918,1172,3.733,2276,3.255,2277,3.23]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[12,3.297,1975,5.171,2388,6.476,2389,6.476,2390,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2276,2.816,2277,2.795]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[11,0.651,1699,4.097,1870,3.881,2363,4.969,2391,5.515,2392,5.515]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,2264,3.391]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[1843,5.973,1844,6.415,2393,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[4,2.394,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13,1682,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.405,127,2.317,292,3.677,2264,3.964]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[31,1.165,217,2.759,711,2.998,2309,4.969,2377,5.202,2394,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[0,1.215,9,0.068,29,0.908,31,2.063,40,2.446,64,2.344,65,1.827,90,1.82,100,1.813,101,2.864,203,1.747,319,1.481,345,2.657,385,0.872,412,1.486,706,1.813,789,1.747,847,2.765,1038,2.286,1352,0.898,1691,4.534,1841,3.131]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-14/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[11,0.627,49,0.92,164,1.648,258,0.794,320,2.934,2276,2.816,2277,2.795]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[258,0.825,711,2.998,1999,4.378,2395,5.99,2396,5.99,2397,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2130,2.567,2265,2.488]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2326,5.515]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2276,2.639,2277,2.618]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.785,2061,4.093,2130,3.218,2265,3.117]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2398,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[9,0.07,35,0.497,201,2.252,379,2.403,706,2.623,807,5.979,2061,6.128]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2130,2.405,2265,2.331]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[11,0.704,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/redis/redis-on-fedora-14/",[127,2.53,162,4.163,2264,4.329]],["keywords//docs/databases/redis/redis-on-fedora-14/",[5,1.577,162,3.417,893,3.269,2030,4.621,2399,6.476]],["toc//docs/databases/redis/redis-on-fedora-14/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-14/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,464,3.231,1196,3.292,2276,3.02,2277,2.996]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2276,2.482,2277,2.463,2400,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[1690,2.621,1858,3.81,1859,3.81,2401,5.571,2402,5.571,2403,4.072,2404,4.072]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[9,0.058,29,1.096,35,0.415,219,5.635,258,1.327,259,2.473,262,3.27,327,2.666,385,1.052,412,1.794,1248,4.044,1271,4.18,1352,1.083,1861,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2276,2.816,2277,2.795]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2240,4.839,2241,4.621,2405,5.571]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[14,0.759,24,2.39,127,1.732,179,3.342,210,2.505,2078,2.904,2079,3.854,2264,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2276,2.482,2277,2.463]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[9,0.085,14,1.199,385,1.231,789,2.466,1352,1.267,2078,6.246]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2276,2.639,2277,2.618]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-fedora-14/",[49,1.153,127,2.317,1177,3.677,2264,3.964]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-14/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-14/",[4,1.155,5,1.294,9,0.062,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,127,1.704,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-14/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[11,0.724,49,1.063,1177,3.391,2406,3.135,2407,3.09]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[4,1.191,5,1.334,9,0.063,11,0.596,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,385,0.791,789,1.584,847,2.507,1038,2.072,1168,2.115,1352,0.814]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-14/",[49,1.153,127,2.317,759,3.197,2264,3.964]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-14/",[1789,5.152,1790,5.289,2408,7.049,2409,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-14/",[4,2.239,5,1.969,9,0.082,16,1.684,29,1.215,35,0.619,49,1.29,164,1.617,201,1.457,210,2.623,258,1.114,259,1.452,379,1.555,412,1.391,537,3.665,685,2.721]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-14/",[839,0.476]],["title//docs/uptime/monitoring/nagios-server-monitoring/",[49,1.259,203,2.281,1191,4.689]],["keywords//docs/uptime/monitoring/nagios-server-monitoring/",[1191,4.595,1623,6.174,2410,7.733]],["toc//docs/uptime/monitoring/nagios-server-monitoring/",[]],["deprecated//docs/uptime/monitoring/nagios-server-monitoring/",[839,0.476]],["title//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[521,4.349,2411,5.42,2412,6.274,2413,6.274]],["keywords//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[139,1.868,382,3.881,866,4.494,2412,5.202,2413,5.202,2414,4.969]],["toc//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[19,2.762,168,3.826,389,5.981,390,4.604,521,4.604,580,8.629,1476,4.547,1639,7.041,1778,4.044,1877,4.343,2047,5.131,2208,4.547,2325,4.547,2412,8.629,2413,9.178,2415,7.647,2416,5.235]],["deprecated//docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/",[]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.672,319,1.515,731,3.12,894,3.941,2276,3.02,2277,2.996]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[11,0.651,459,3.103,662,2.509,731,3.023,2363,4.969,2392,5.515]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[14,0.81,139,1.798,302,3.23,368,2.457,583,3.62,2417,5.006,2418,5.006]],["keywords//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[139,2.198,2417,6.122,2418,6.122,2419,7.049]],["toc//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[168,5.946,302,5.794,339,2.245,363,5.46,381,2.828,386,7.491,652,5.109,896,4.775,2417,7.067,2418,7.067]],["deprecated//docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/",[]],["title//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[22,3.771,169,1.898,610,4.314,984,4.935,2286,5.368,2420,4.774]],["keywords//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[139,1.868,482,4.274,984,4.782,1529,3.706,2414,4.969,2421,5.515]],["toc//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[14,1.07,389,4.581,476,3.607,688,4.355,902,5.43,981,4.852,984,8.79,1837,5.43,2286,8.601,2422,7.006]],["deprecated//docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,707,2.732,2264,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[11,0.724,49,1.063,1177,3.391,2276,3.255,2277,3.23]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[42,2.208,139,2.078,203,1.926,1191,3.959,1511,4.122]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[9,0.079,35,0.607,38,2.176,43,3.565,112,2.227,258,0.847,359,4.388,381,2.137,385,0.887,706,1.845,767,2.606,1191,6.681,1350,5.988,1352,0.913,1747,4.292]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[11,0.672,42,2.049,203,1.787,1191,3.673,2276,3.02,2277,2.996]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[0,0.979,9,0.086,35,0.492,38,1.725,43,2.826,64,1.89,107,2.761,112,1.765,119,1.701,171,3.724,297,2.171,359,3.478,381,1.694,385,0.703,706,1.462,767,2.065,789,1.409,947,5.791,1071,3.333,1191,6.802,1350,5.063,1352,0.724,1747,3.402]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[14,0.869,31,1.202,129,1.736,802,3.174,1304,3.202,2219,2.167]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[9,0.077,29,1.096,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,412,1.794,1304,4.99,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[14,0.869,31,1.202,127,1.982,802,3.174,1304,3.202,2379,3.391]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[9,0.058,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,472,3.509,847,3.337,1304,5.587,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2406,2.712,2407,2.674]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[9,0.058,31,1.874,35,0.547,49,1.537,172,2.844,177,3.337,385,1.052,472,3.509,847,3.337,1304,5.587,1352,1.083]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[11,0.627,38,2.04,730,4.325,766,2.059,1055,2.169,2130,2.567,2265,2.488]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[11,0.627,38,2.04,730,4.325,766,2.059,1055,2.169,2276,2.816,2277,2.795]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.296,35,0.379,217,3.069,327,2.435,687,2.495]],["keywords//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[31,1.013,217,2.399,321,3.806,687,1.95,1708,4.794,2423,5.207,2424,5.207,2425,5.207]],["toc//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[0,0.871,9,0.035,14,0.933,31,1.759,35,0.377,38,1.534,90,1.305,140,3.945,189,2.245,201,1.71,217,3.058,220,2.308,235,3.025,349,2.964,379,1.825,472,2.085,544,2.308,636,2.908,687,4.135,761,3.323,776,3.669,795,2.644,796,3.409,1140,2.721,2426,4.334,2427,6.639]],["deprecated//docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/",[]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[14,0.81,31,1.121,61,1.036,802,2.96,1304,2.986,2219,2.021,2341,2.321]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[11,0.627,14,0.81,31,1.121,802,2.96,1304,2.986,2276,2.816,2277,2.795]],["keywords//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[31,1.371,39,2.807,802,3.619,1304,3.652]],["toc//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[9,0.057,29,1.074,31,1.848,35,0.54,49,1.141,172,2.786,177,3.269,385,1.031,412,1.757,472,3.438,847,3.269,1304,5.531,1352,1.061]],["deprecated//docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2276,3.02,2277,2.996,2287,3.627]],["keywords//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[11,0.785,162,3.811,2276,3.53,2277,3.502]],["keywords//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[5,1.577,893,3.269,2030,4.621,2428,6.476,2429,6.476]],["toc//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[0,0.916,9,0.037,24,2.017,35,0.473,40,1.845,64,3.228,90,2.078,100,1.368,101,2.16,112,1.651,162,5.747,178,2.821,203,1.318,209,2.527,253,2.451,319,1.117,339,1.258,381,1.584,385,0.658,417,2.906,520,2.554,789,2.683,847,3.807,1038,1.724,1075,2.554,1352,0.677,1841,2.361,2031,4.923]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[11,0.672,258,0.851,597,3.825,1303,2.847,2276,3.02,2277,2.996]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[64,2.584,368,2.84,389,4.01,753,4.754,900,5.146]],["keywords//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[900,5.973,954,6.174,2430,7.733]],["toc//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[14,0.759,19,2.847,22,3.292,64,4.149,97,4.968,102,4.048,169,1.657,217,3.601,221,4.476,392,3.85,504,4.308,712,2.657,753,5.578,776,2.031,795,3.292,796,2.771,900,6.038,1101,4.048,1286,3.85,1724,4.476,1837,3.85,2003,4.968,2269,4.968,2431,4.968,2432,4.968,2433,4.968]],["deprecated//docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/",[]],["title//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,0.869,139,1.928,169,1.898,368,2.635,389,3.721,652,3.881]],["keywords//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[139,2.412,954,6.174,2434,7.733]],["toc//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[14,1.052,19,2.682,38,1.799,139,2.77,169,3.206,170,3.549,193,3.412,194,3.549,210,2.358,232,3.412,249,3.628,302,2.849,334,2.129,349,3.477,368,3.787,389,3.061,652,7.276,685,2.446,712,2.504,902,3.628,1422,4.416]],["deprecated//docs/tools-reference/tools/find-files-in-linux-using-the-command-line/",[]],["title//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[89,2.038,90,2.007,127,2.136,2287,3.909,2379,3.655]],["keywords//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[127,1.982,203,1.787,339,1.705,688,2.718,1473,3.542,2379,3.391]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-10-10-maverick/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2276,2.816,2277,2.795]],["keywords//docs/databases/postgresql/ubuntu-10-10-maverick/",[30,2.585,1064,4.782,1065,3.655,1160,4.019,2435,5.99,2436,5.99]],["toc//docs/databases/postgresql/ubuntu-10-10-maverick/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[18,1.556,22,4.065,169,2.045,610,4.65,982,5.319]],["keywords//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[139,2.198,482,5.03,982,5.628,2414,5.847]],["toc//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[14,1.07,18,1.777,22,4.643,169,2.336,189,3.942,368,3.244,476,3.607,982,9.31,1093,6.609,1837,5.43,2422,7.006]],["deprecated//docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/",[]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2276,2.816,2277,2.795]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2276,2.816,2277,2.795]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[1465,4.268,2087,5.003,2088,4.733,2437,6.476,2438,6.476]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[4,2.471,9,0.065,14,1.144,35,0.588,38,2.879,339,2.245,385,1.174,1352,1.208]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2276,3.02,2277,2.996]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2362,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[0,1.194,9,0.048,19,4.418,29,0.893,35,0.598,60,1.796,65,1.796,148,5.519,187,2.796,201,1.53,261,2.203,327,2.172,379,1.633,385,0.857,412,1.461,490,2.103,544,3.164,1168,2.293,1352,0.882,1423,3.731,1529,3.677,1826,2.926]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[11,0.785,1033,3.502,2276,3.53,2277,3.502]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[2222,5.847,2223,5.847,2439,7.049,2440,7.049]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[339,2.606,971,7.086,1033,4.579,2128,7.835,2441,8.203]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[11,0.724,49,1.063,759,2.948,2276,3.255,2277,3.23]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[1656,5.003,2102,5.003,2363,5.372,2442,6.476,2443,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[4,2.108,5,2.039,9,0.084,16,1.769,29,1.258,35,0.631,49,1.336,164,1.699,201,1.53,210,2.756,258,0.819,259,1.525,379,1.633,412,1.461,685,2.859]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[14,0.869,437,3.825,490,2.187,527,4.41,1069,4.637,2444,5.368]],["keywords//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[490,2.494,790,3.444,1709,5.847,2444,6.122]],["toc//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[9,0.048,14,1.561,49,0.948,300,4.744,489,3.625,490,2.963,603,4.744,755,3.916,761,2.974,1069,4.458,1238,4.59,1778,4.59,1837,4.24,2444,10.279,2445,5.941,2446,5.941]],["deprecated//docs/networking/dns/use-dig-to-perform-manual-dns-queries/",[]],["title//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,0.937,203,1.926,339,1.838,527,4.754,2447,5.786]],["keywords//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[139,1.868,168,4.378,411,3.253,790,2.927,2448,5.99,2449,5.99]],["toc//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[14,1.07,252,5.561,339,2.099,368,3.244,411,4.133,1837,5.43,1876,6.075,2148,6.609,2447,10.128,2450,7.609,2451,7.609]],["deprecated//docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/",[]],["title//docs/websites/ecommerce/oscommerce-on-fedora-13/",[127,2.53,2379,4.329,2452,6.095]],["keywords//docs/websites/ecommerce/oscommerce-on-fedora-13/",[127,2.261,253,3.791,779,4.921,2452,5.445]],["toc//docs/websites/ecommerce/oscommerce-on-fedora-13/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-fedora-13/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[4,1.253,11,0.627,766,2.059,1055,2.169,1584,3.041,2276,2.816,2277,2.795]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[11,0.606,766,1.99,1584,2.939,2277,2.701,2453,5.571,2454,5.571,2455,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[11,0.672,31,1.202,259,1.587,1168,2.385,2276,3.02,2277,2.996]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[31,1.371,1527,4.137,1528,4.73,2362,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2276,2.639,2277,2.618]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/",[839,0.476]],["title//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.339,169,2.045,339,1.838,683,4.869,2457,6.134]],["keywords//docs/tools-reference/tools/create-file-system-links-with-ln/",[139,2.02,502,5.963,954,5.171,1529,4.008,2414,5.372]],["toc//docs/tools-reference/tools/create-file-system-links-with-ln/",[0,1.931,14,0.821,19,3.083,58,7.188,169,1.794,319,1.432,339,1.612,368,2.491,683,8.372,2047,3.921,2457,5.38,2458,9.077,2459,8.276,2460,5.843,2461,5.843,2462,5.843]],["deprecated//docs/tools-reference/tools/create-file-system-links-with-ln/",[]],["title//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.937,90,2.007,169,2.045,688,2.929,2463,5.786]],["keywords//docs/uptime/logs/use-logrotate-to-manage-log-files/",[2463,6.716,2464,7.733,2465,7.733]],["toc//docs/uptime/logs/use-logrotate-to-manage-log-files/",[14,0.795,35,0.536,169,2.898,249,4.036,332,3.727,368,2.411,381,2.81,405,3.451,476,2.681,688,4.79,815,6.246,1001,5.207,1099,6.456,1951,4.691,2463,8.197,2466,5.655,2467,5.655]],["deprecated//docs/uptime/logs/use-logrotate-to-manage-log-files/",[]],["title//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.759,171,3.709,328,3.176,707,3.424]],["keywords//docs/databases/mongodb/build-database-clusters-with-mongodb/",[5,1.717,328,3.099,707,3.341,893,3.558]],["toc//docs/databases/mongodb/build-database-clusters-with-mongodb/",[0,0.953,5,1.155,16,1.412,17,1.101,18,1.108,29,0.712,35,0.484,45,2.112,46,2.085,49,0.757,60,1.434,119,1.656,169,2.182,176,1.952,201,1.221,251,2.184,327,2.598,328,3.748,336,2.502,428,2.855,486,4.119,581,3.934,707,2.248,723,2.749,761,2.374,830,8.809,932,4.119,1043,3.786,1069,3.558,2468,4.366,2469,7.107]],["deprecated//docs/databases/mongodb/build-database-clusters-with-mongodb/",[]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[11,0.672,1991,4.314,1992,4.227,1993,3.771,2130,2.753,2265,2.667]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,385,1.147,573,5.675,706,2.386,789,2.299,1038,3.008,1352,1.181,1993,4.853]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[127,1.849,164,1.648,200,3.266,259,1.48,1168,2.224,2059,3.163,2379,3.163]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[2059,3.553,2470,5.963,2471,5.963,2472,5.963,2473,6.476]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[9,0.068,35,0.605,60,2.579,65,2.579,261,3.163,385,1.231,544,4.543,1352,1.267]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[127,1.982,1593,4.774,1812,4.774,2379,3.391,2474,4.41,2475,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[127,2.261,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-fedora-13/",[127,2.53,2045,4.329,2379,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-13/",[127,1.787,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2476,4.448]],["toc//docs/websites/wikis/ikiwiki-on-fedora-13/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-13/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[42,2.049,127,1.982,1271,3.542,1977,4.005,2016,3.627,2379,3.391]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[9,0.049,14,0.864,29,0.924,35,0.349,38,2.176,119,2.147,177,2.813,201,1.584,306,3.608,350,3.565,379,1.69,385,0.887,412,2.109,490,2.176,723,3.565,790,3.004,1352,0.913,2016,5.797,2022,3.307,2025,4.613,2026,4.292,2027,3.984]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[61,1.036,203,1.666,339,1.59,688,2.535,1473,3.303,2219,2.021,2341,2.321]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/",[839,0.476]],["title//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[11,0.627,203,1.666,339,1.59,688,2.535,1473,3.303,2130,2.567,2265,2.488]],["keywords//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[9,0.065,21,4.717,35,0.462,65,2.46,100,2.441,339,2.245,576,5.362,684,4.333,1473,6.513]],["deprecated//docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/uptime/monitoring/logwatch-log-monitoring/",[203,2.281,688,3.469,1473,4.521]],["keywords//docs/uptime/monitoring/logwatch-log-monitoring/",[319,1.728,688,3.099,1473,4.039,1474,5.03]],["toc//docs/uptime/monitoring/logwatch-log-monitoring/",[]],["deprecated//docs/uptime/monitoring/logwatch-log-monitoring/",[839,0.476]],["title//docs/websites/wikis/confluence-on-centos-5/",[129,2.216,2219,2.767,2478,5.031]],["keywords//docs/websites/wikis/confluence-on-centos-5/",[2478,4.495,2479,7.049,2480,5.628,2481,5.628]],["toc//docs/websites/wikis/confluence-on-centos-5/",[0,1.91,5,1.74,9,0.076,10,5.1,12,3.638,29,1.074,35,0.406,201,1.841,379,1.965,412,1.757,1023,3.011,2478,7.256]],["deprecated//docs/websites/wikis/confluence-on-centos-5/",[839,0.476]],["title//docs/websites/wikis/confluence-on-fedora-13/",[127,2.53,2379,4.329,2478,5.031]],["keywords//docs/websites/wikis/confluence-on-fedora-13/",[2478,4.495,2480,5.628,2481,5.628,2482,7.049]],["toc//docs/websites/wikis/confluence-on-fedora-13/",[0,1.86,5,1.673,9,0.074,10,4.901,12,3.496,29,1.032,35,0.39,201,1.769,379,1.888,385,0.991,412,1.689,1023,2.893,1352,1.02,2478,7.14]],["deprecated//docs/websites/wikis/confluence-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[42,1.911,127,1.849,485,3.62,490,2.04,2072,4.113,2073,3.163,2379,3.163]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2483,5.625]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[0,1.328,9,0.053,35,0.512,42,2.191,57,3.979,169,2.03,201,1.703,261,2.451,385,0.954,411,3.59,789,1.911,1352,0.982,1404,5.943,2073,6.048,2076,4.614,2077,4.717]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[14,0.81,127,1.849,215,3.07,490,2.04,2082,3.07,2083,3.942,2379,3.163]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[490,2.12,829,3.761,2082,3.19,2085,4.378,2086,3.221,2244,5.202]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[9,0.055,14,0.966,35,0.595,318,3.73,339,1.895,385,0.991,476,3.255,490,2.43,520,3.849,651,2.664,1352,1.02,2082,6.226,2086,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,215,2.876,490,1.911,2082,2.876,2083,3.694,2406,2.541,2407,2.505]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[9,0.055,14,0.966,35,0.595,318,3.73,339,1.895,385,0.991,476,3.255,490,2.43,520,3.849,651,2.664,1352,1.02,2082,6.226,2086,3.693]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/confluence-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-debian-5-lenny/",[2478,4.495,2480,5.628,2481,5.628,2484,7.049]],["toc//docs/websites/wikis/confluence-on-debian-5-lenny/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[11,0.785,2406,3.399,2407,3.351,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[2478,4.495,2480,5.628,2481,5.628,2485,7.049]],["toc//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[11,0.785,2130,3.218,2265,3.117,2478,4.606]],["keywords//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[2478,4.495,2480,5.628,2481,5.628,2486,7.049]],["toc//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[0,1.963,5,1.814,9,0.06,29,1.119,35,0.423,201,1.919,379,2.048,385,1.075,412,1.832,1352,1.106,2478,7.375]],["deprecated//docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[11,0.587,42,1.79,485,3.391,490,1.911,2072,3.854,2073,2.963,2406,2.541,2407,2.505]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[490,2.292,662,2.712,2073,3.553,2086,3.483,2487,5.171]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[0,1.304,9,0.052,35,0.369,57,3.906,169,1.992,201,1.671,261,2.406,282,2.989,327,2.372,385,0.936,399,4.63,411,3.524,789,1.876,1352,0.964,1404,5.867,2057,4.354,2073,5.576,2076,4.529,2077,4.63]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.016,139,2.253,368,3.08,879,5.58]],["keywords//docs/tools-reference/tools/use-the-date-command-in-linux/",[232,4.346,382,4.196,879,5.003,2421,5.963,2488,6.476]],["toc//docs/tools-reference/tools/use-the-date-command-in-linux/",[14,1.111,19,2.891,29,0.823,40,2.218,139,2.465,334,2.295,363,3.677,368,3.37,437,3.391,485,3.441,582,4.545,879,8.313,1597,5.045,2056,4.233,2180,4.545,2489,5.48,2490,7.278,2491,9.272,2492,5.48,2493,5.48,2494,5.48,2495,5.48]],["deprecated//docs/tools-reference/tools/use-the-date-command-in-linux/",[]],["title//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[61,1.111,662,2.589,2219,2.167,2341,2.488,2371,4.935,2496,5.691]],["keywords//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[894,4.931,2108,6.174,2371,6.174]],["toc//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[9,0.074,64,3.568,385,1.327,706,2.76,1352,1.366,2371,7.344]],["deprecated//docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[0,1.021,11,0.552,14,0.714,407,3.546,2042,3.348,2043,3.292,2044,4.677,2130,2.263,2265,2.192]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[0,1.085,11,0.587,14,0.759,407,3.77,2042,3.559,2043,3.499,2406,2.541,2407,2.505]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[9,0.06,35,0.619,38,2.636,282,3.431,327,2.723,381,2.589,789,2.153,2042,4.909,2043,7.494,2057,4.998]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2130,2.567,2265,2.488]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[11,0.651,1699,4.097,1870,3.881,2391,5.515,2497,4.627,2498,5.515]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[61,0.97,171,2.773,172,2.106,258,0.744,2219,1.894,2341,2.174,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[0,1.703,4,1.843,5,1.472,9,0.085,29,0.908,35,0.343,60,1.827,172,2.356,175,4.312,258,1.167,261,2.241,385,0.872,412,1.486,789,1.747,1352,0.898,2500,4.668,2503,6.546,2505,5.249,2506,5.249]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[11,0.587,171,2.773,172,2.106,258,0.744,2130,2.405,2265,2.331,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[0,1.644,4,1.778,5,1.4,9,0.083,29,0.863,35,0.327,60,1.738,172,2.241,175,4.101,258,1.127,261,2.131,282,2.648,327,2.101,385,0.829,412,1.413,789,1.662,1352,0.854,2057,3.857,2500,4.44,2503,6.318,2505,4.992,2506,4.992]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[42,2.049,129,1.736,1271,3.542,1976,3.673,1977,4.005,2219,2.167]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2507,4.888,2508,4.501]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[9,0.085,29,1.282,35,0.485,57,5.135,325,4.104,706,2.56,1976,6.33]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2130,2.405,2265,2.331]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/applications/social-networking/planet-feed-aggregator/",[1022,6.095,2042,5.2,2043,5.113]],["keywords//docs/applications/social-networking/planet-feed-aggregator/",[2043,5.549,2108,6.837]],["toc//docs/applications/social-networking/planet-feed-aggregator/",[]],["deprecated//docs/applications/social-networking/planet-feed-aggregator/",[839,0.476]],["title//docs/databases/redis/redis-on-centos-5/",[129,2.216,162,4.163,2219,2.767]],["keywords//docs/databases/redis/redis-on-centos-5/",[5,1.577,162,3.417,893,3.269,2030,4.621,2509,6.476]],["toc//docs/databases/redis/redis-on-centos-5/",[9,0.043,24,2.388,35,0.307,40,2.184,47,1.901,64,2.093,90,2.354,100,1.619,101,2.557,112,1.954,162,5.643,178,3.339,203,1.56,209,2.991,253,2.902,319,1.323,339,1.489,381,1.875,417,3.44,520,3.024,789,2.26,847,2.468,1038,2.041,1075,3.024,1841,2.795,2031,5.578]],["deprecated//docs/databases/redis/redis-on-centos-5/",[839,0.476]],["title//docs/databases/redis/redis-on-fedora-13/",[127,2.53,162,4.163,2379,4.329]],["keywords//docs/databases/redis/redis-on-fedora-13/",[5,1.577,162,3.417,893,3.269,2030,4.621,2510,6.476]],["toc//docs/databases/redis/redis-on-fedora-13/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-fedora-13/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[11,0.785,162,3.811,2406,3.399,2407,3.351]],["keywords//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[5,1.577,893,3.269,2030,4.621,2511,6.476,2512,5.963]],["toc//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[127,1.732,172,2.106,258,0.744,259,1.386,381,1.877,1248,2.994,2379,2.963,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[9,0.065,29,1.222,35,0.462,258,1.424,259,2.654,385,1.174,412,2.001,1248,4.511,1352,1.208]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,464,3.231,1196,3.292,2130,2.753,2265,2.667]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[9,0.062,29,1.168,35,0.442,47,2.74,189,4.029,200,4.406,258,1.071,297,3.464,412,1.913,435,3.582,709,5.691,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[11,0.587,171,2.773,172,2.106,258,0.744,2406,2.541,2407,2.505,2499,4.691,2500,4.172]],["keywords//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[258,0.892,2501,5.625,2502,5.625,2503,5.003,2504,5.625]],["toc//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[0,1.644,4,1.778,5,1.4,9,0.083,29,0.863,35,0.327,60,1.738,172,2.241,175,4.101,258,1.127,261,2.131,282,2.648,327,2.101,385,0.829,412,1.413,789,1.662,1352,0.854,2057,3.857,2500,4.44,2503,6.318,2505,4.992,2506,4.992]],["deprecated//docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/firewalls/control-network-traffic-with-iptables/",[323,4.847,476,3.424,623,4.761,662,3.025]],["keywords//docs/security/firewalls/control-network-traffic-with-iptables/",[325,3.391,623,4.646,662,2.952,981,4.495]],["toc//docs/security/firewalls/control-network-traffic-with-iptables/",[0,0.508,9,0.02,11,0.275,14,0.786,15,1.523,16,0.753,22,1.543,35,0.244,38,1.979,47,0.891,61,0.455,84,1.898,90,1.293,95,3.138,127,0.811,129,0.71,139,1.339,146,1.484,170,1.766,178,4.964,193,1.697,216,1.667,225,1.503,261,0.938,323,5.383,324,1.588,325,1.217,326,4.895,334,1.059,350,2.489,360,2.997,368,1.078,468,1.667,555,2.197,558,1.766,562,2.224,623,7.256,635,1.484,647,1.898,662,1.059,790,1.236,896,1.484,1066,1.45,1098,4.945,1289,3.953,1316,1.322,1322,1.805,1397,2.197,1408,5.15,1425,1.503,1432,2.329,1478,2.02,1882,2.197,2208,2.197,2513,2.329,2514,2.53,2515,2.53,2516,2.53,2517,2.53,2518,2.53]],["deprecated//docs/security/firewalls/control-network-traffic-with-iptables/",[]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,464,3.231,1196,3.292,2406,2.908,2407,2.867]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[9,0.058,35,0.415,47,2.57,172,2.844,189,3.779,200,4.133,258,1.005,297,3.249,404,4.989,435,4.437,709,6.111,1196,5.13]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[11,0.672,31,1.202,464,3.231,1196,3.292,2130,2.753,2265,2.667]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[11,0.785,162,3.811,2130,3.218,2265,3.117]],["keywords//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[5,1.577,893,3.269,2030,4.621,2512,5.963,2519,6.476]],["toc//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[169,1.77,1099,4.602,1750,5.606,1949,4.782,2520,5.307,2521,5.764]],["keywords//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[1427,5.202,1949,4.969,2522,5.99,2523,5.99,2524,5.99,2525,5.99]],["toc//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[0,1.022,14,1.249,169,2.727,210,2.358,249,3.628,312,3.021,368,3.191,370,4.059,688,2.236,712,2.504,1099,8.72,1427,7.715,1949,7.368,2180,4.218,2520,10.056,2526,5.084,2527,5.084,2528,5.084]],["deprecated//docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/",[]],["title//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.063,35,0.448,543,4.421]],["keywords//docs/websites/cms/how-to-install-and-configure-wordpress/",[545,5.625,546,5.625,548,5.625,2529,6.476,2530,6.476]],["toc//docs/websites/cms/how-to-install-and-configure-wordpress/",[9,0.074,17,2.135,18,2.149,35,0.523,543,6.253]],["deprecated//docs/websites/cms/how-to-install-and-configure-wordpress/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-centos-5/",[49,1.153,129,2.029,1177,3.677,2219,2.533]],["keywords//docs/web-servers/lemp/lemp-server-on-centos-5/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-centos-5/",[4,1.173,5,1.314,9,0.063,29,0.811,31,1.788,35,0.307,47,3.238,49,1.248,65,1.631,100,1.619,112,1.954,164,1.543,201,1.39,203,1.56,259,1.385,319,1.323,339,1.489,345,2.372,379,1.483,385,0.779,412,1.327,789,1.56,847,2.468,1038,2.041,1168,2.082,1352,0.801,1691,4.048]],["deprecated//docs/web-servers/lemp/lemp-server-on-centos-5/",[839,0.476]],["title//docs/databases/redis/redis-on-debian-5-lenny/",[61,1.298,162,3.811,2219,2.533,2341,2.908]],["keywords//docs/databases/redis/redis-on-debian-5-lenny/",[5,1.577,893,3.269,2030,4.621,2531,6.476,2532,6.476]],["toc//docs/databases/redis/redis-on-debian-5-lenny/",[9,0.042,24,2.317,35,0.298,40,2.119,47,1.844,64,2.031,90,2.303,100,1.571,101,2.481,112,1.896,162,5.575,178,3.24,203,1.513,209,2.903,253,2.815,319,1.283,339,1.444,381,1.82,385,0.755,417,3.338,520,2.934,789,2.211,847,2.395,1038,1.98,1075,2.934,1352,0.778,1841,2.712,2031,5.457]],["deprecated//docs/databases/redis/redis-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-12/",[127,2.317,258,0.995,263,4.47,1172,4.048]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-12/",[12,3.297,2387,5.625,2533,6.476,2534,6.476,2535,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-12/",[9,0.07,14,1.229,60,2.643,258,1.204,385,1.261,1172,6.061,1352,1.298]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-12/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-fedora-13/",[127,2.317,258,0.995,1172,4.048,2379,3.964]],["keywords//docs/development/frameworks/apache-tomcat-on-fedora-13/",[12,3.297,2387,5.625,2536,6.476,2537,6.476,2538,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-fedora-13/",[9,0.07,14,1.229,60,2.643,258,1.204,385,1.261,1172,6.061,1352,1.298]],["deprecated//docs/development/frameworks/apache-tomcat-on-fedora-13/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[11,0.724,258,0.918,1172,3.733,2130,2.967,2265,2.875]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[12,3.297,1974,5.963,1975,5.171,2539,6.476,2540,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[9,0.079,12,3.873,14,1.07,29,1.143,60,2.301,223,5.106,258,1.048,385,1.098,412,1.871,1172,5.55,1352,1.13,2340,5.709]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[11,0.724,258,0.918,1172,3.733,2406,3.135,2407,3.09]],["keywords//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[12,3.297,1975,5.171,2541,6.476,2542,6.476,2543,6.476]],["toc//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[9,0.082,12,4.048,14,1.118,60,2.405,223,5.336,258,1.096,385,1.147,1172,5.71,1352,1.181,2340,5.967]],["deprecated//docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[74,2.839,99,3.196,139,1.798,847,2.637,916,3.383,1316,3.013,1573,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[848,4.304,849,4.304,850,4.18,851,3.975,1316,2.912,1574,4.448,1575,4.448]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[74,2.839,99,3.196,129,1.619,207,2.414,847,2.637,916,3.383,1573,4.113]],["keywords//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[129,1.565,848,4.304,849,4.304,850,4.18,851,3.975,1574,4.448,1575,4.448]],["toc//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[74,3.044,99,3.427,381,2.148,847,2.827,916,3.627,1573,4.41]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[848,4.627,849,4.627,850,4.494,851,4.274,1574,4.782,1575,4.782]],["toc//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[9,0.058,35,0.547,64,2.829,74,5.649,112,2.641,171,3.745,339,2.012,345,3.207,468,4.807,847,3.337,916,4.281,1573,5.205]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-arch-linux/",[49,1.153,139,2.253,1177,3.677,1316,3.776]],["keywords//docs/web-servers/lemp/lemp-server-on-arch-linux/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-arch-linux/",[4,1.493,5,1.673,9,0.074,29,1.032,31,1.8,35,0.39,47,2.419,49,1.477,164,1.964,201,1.769,259,1.763,379,1.888,385,0.991,412,1.689,1168,2.65,1352,1.02]],["deprecated//docs/web-servers/lemp/lemp-server-on-arch-linux/",[839,0.476]],["title//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[368,2.84,389,4.01,610,4.65,2411,4.998,2544,5.786]],["keywords//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[1529,4.362,2544,6.122,2545,7.049,2546,6.49]],["toc//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[14,1.429,169,3.121,193,4.354,249,4.63,368,2.766,389,3.906,445,4.074,647,4.868,652,4.074,813,5.382,2544,10.283,2547,6.488,2548,5.974]],["deprecated//docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/",[]],["title//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[169,2.218,404,4.941,405,4.408,2549,5.993]],["keywords//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[368,3.005,1518,5.847,2550,7.049,2551,7.049]],["toc//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[8,3.601,14,1.064,38,1.826,139,2.359,169,3.225,170,3.601,199,3.601,290,3.77,307,3.4,334,2.161,368,2.199,390,3.106,405,6.41,445,3.239,468,3.4,620,3.681,634,4.48,651,2.001,854,4.48,1071,3.528,2549,7.431,2552,5.159,2553,4.75,2554,5.159]],["deprecated//docs/tools-reference/tools/modify-file-permissions-with-chmod/",[]],["title//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[169,2.423,610,5.508,902,5.63]],["keywords//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[109,4.521,169,1.988,902,4.621,981,4.129,2546,5.963]],["toc//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[14,1.005,169,2.194,368,4.051,688,3.142,887,5.223,902,8.454,981,6.059,1099,5.706,2298,5.362,2555,6.207,2556,7.146]],["deprecated//docs/tools-reference/tools/how-to-grep-for-text-in-files/",[]],["title//docs/web-servers/lemp/lemp-server-on-fedora-13/",[49,1.153,127,2.317,1177,3.677,2379,3.964]],["keywords//docs/web-servers/lemp/lemp-server-on-fedora-13/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-fedora-13/",[4,1.191,5,1.334,9,0.063,31,1.803,35,0.311,47,3.266,49,1.262,65,1.657,100,1.644,112,1.984,127,1.757,164,1.567,201,1.411,203,1.584,259,1.407,319,1.343,339,1.512,345,2.409,379,1.506,380,3.551,385,0.791,789,1.584,847,2.507,1038,2.072,1168,2.115,1352,0.814]],["deprecated//docs/web-servers/lemp/lemp-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[11,0.724,49,1.063,1177,3.391,2130,2.967,2265,2.875]],["keywords//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[31,1.26,139,2.02,259,1.663,1177,3.297,1690,3.047]],["toc//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[4,1.155,5,1.294,9,0.062,11,0.578,29,0.798,31,1.772,35,0.302,47,3.21,49,1.234,65,1.607,100,1.595,112,1.924,164,1.52,201,1.369,203,1.536,259,1.364,319,1.303,339,1.466,345,2.337,379,1.461,380,3.444,385,0.767,412,1.307,789,1.536,847,2.431,1038,2.01,1168,2.051,1352,0.789]],["deprecated//docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[38,2.04,61,1.036,730,4.325,766,2.059,1055,2.169,2219,2.021,2341,2.321]],["keywords//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[562,3.355,766,2.313,1055,2.437,1097,3.899,2342,5.372]],["toc//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[0,1.328,9,0.053,29,0.993,35,0.512,43,3.833,187,3.11,201,1.703,319,1.62,379,1.817,385,0.954,412,1.626,766,3.22,767,3.821,783,4.831,1055,3.393,1352,0.982,2343,5.483]],["deprecated//docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[61,0.97,138,2.773,210,2.505,265,3.169,662,2.262,2219,1.894,2341,2.174,2557,4.691]],["keywords//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[138,3.325,1633,5.372,2557,5.625,2558,6.476,2559,6.476]],["toc//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[9,0.078,35,0.603,40,2.446,49,0.965,164,1.728,169,1.856,171,3.103,236,4.312,339,1.667,381,2.1,385,0.872,477,3.424,706,1.813,931,4.825,1033,2.93,1352,0.898,2555,5.249,2557,9.214]],["deprecated//docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[49,1.063,61,1.197,1177,3.391,2219,2.336,2341,2.682]],["keywords//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[31,1.013,39,2.074,139,1.624,259,1.337,1177,2.651,1690,2.45,1825,4.32,1826,2.564]],["toc//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[4,1.09,5,1.221,9,0.059,29,0.753,31,1.713,35,0.285,47,3.427,49,1.182,61,1.331,65,2.239,100,1.504,112,1.815,164,1.433,201,1.291,203,1.449,259,1.287,319,1.229,339,1.383,345,2.204,379,1.378,385,0.723,412,1.233,789,1.449,847,2.293,1013,4.353,1038,1.895,1168,1.934,1352,0.744,2560,5.012]],["deprecated//docs/web-servers/lemp/lemp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.552,164,1.453,200,2.878,259,1.304,1168,1.96,1184,2.502,2059,2.787,2130,2.263,2265,2.192]],["keywords//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[1870,3.881,2470,5.515,2471,5.515,2497,4.627,2561,5.515,2562,5.515]],["toc//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[9,0.067,35,0.596,60,2.518,65,2.518,261,3.089,385,1.202,544,4.436,706,2.499,1352,1.237]],["deprecated//docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[4,1.344,127,1.982,766,2.207,1055,2.326,2289,3.463,2379,3.391]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2563,4.888,2564,3.776,2565,3.776,2566,3.776,2567,3.776]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[0,0.993,4,2.101,9,0.059,14,1.03,16,2.183,29,1.101,35,0.549,60,1.494,65,1.494,119,2.559,171,2.537,261,1.833,379,1.359,385,0.713,391,3.474,435,2.276,687,1.851,767,2.094,776,1.86,1055,3.287,1352,0.734,1588,3.015,2235,3.38,2289,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[49,0.986,127,1.982,164,1.767,258,0.851,320,3.146,2379,3.391]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[690,6.174,2382,7.12,2568,7.733]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[9,0.077,35,0.594,40,2.365,49,0.933,187,2.749,201,1.505,217,2.691,258,1.324,262,2.62,332,3.851,334,2.447,379,1.606,385,0.843,388,3.388,472,2.811,633,3.669,913,4.384,952,2.637,1352,0.868,1552,4.169,2383,4.384]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-13/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,1.344,5,1.505,14,0.869,127,1.982,1063,3.357,2379,3.391]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[1843,5.973,1844,6.415,2569,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[4,2.394,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13,1682,5.709]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/",[839,0.476]],["title//docs/databases/postgresql/fedora-13/",[5,1.505,14,0.869,30,2.667,127,1.982,1063,3.357,2379,3.391]],["keywords//docs/databases/postgresql/fedora-13/",[1065,4.718,1160,5.189,2570,7.733]],["toc//docs/databases/postgresql/fedora-13/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.296,127,2.136,259,1.71,1168,2.571,2379,3.655]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[31,1.371,1527,4.137,1528,4.73,2571,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,259,1.873,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.296,127,2.136,1168,2.571,1826,3.281,2379,3.655]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[31,1.371,1527,4.137,2015,4.921,2571,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,261,2.705,339,2.012,385,1.052,544,3.885,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[14,0.759,24,2.39,127,1.732,179,3.342,210,2.505,2078,2.904,2079,3.854,2379,2.963]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,707,2.732,2379,3.163]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[49,0.986,127,1.982,164,1.767,292,3.146,2059,3.391,2379,3.391]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[2059,3.867,2472,6.49,2483,6.122,2572,6.49]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[9,0.056,29,1.052,35,0.398,121,4.334,145,3.565,319,2.298,385,1.011,412,1.722,651,3.637,744,5.802,803,6.413,1352,1.04,2059,5.145]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[49,0.986,127,1.982,164,1.767,292,3.146,2059,3.391,2264,3.391]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[2059,3.867,2309,5.847,2572,6.49,2573,7.049]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[9,0.056,29,1.052,35,0.398,121,4.334,145,3.565,319,2.298,385,1.011,412,1.722,651,3.637,744,5.802,803,6.413,1352,1.04,2059,5.145]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/",[839,0.476]],["title//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2574,6.274]],["keywords//docs/development/frameworks/cakephp-on-debian-5-lenny/",[61,1.164,2574,5.625,2575,6.476,2576,6.476,2577,6.476]],["toc//docs/development/frameworks/cakephp-on-debian-5-lenny/",[9,0.074,60,2.781,165,7.105,385,1.327,1352,1.366,2574,7.989]],["deprecated//docs/development/frameworks/cakephp-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[4,1.344,127,1.982,263,3.825,766,2.207,1055,2.326,2289,3.463]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2578,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[0,0.993,4,2.101,9,0.059,14,1.03,16,2.183,29,1.101,35,0.549,60,1.494,65,1.494,119,2.559,171,2.537,261,1.833,379,1.359,385,0.713,391,3.474,435,2.276,687,1.851,767,2.094,776,1.86,1055,3.287,1352,0.734,1588,3.015,2235,3.38,2289,4.107]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[11,0.672,42,2.049,203,1.787,1191,3.673,2130,2.753,2265,2.667]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[0,0.979,9,0.086,35,0.492,38,1.725,43,2.826,64,1.89,107,2.761,112,1.765,119,1.701,171,3.724,297,2.171,359,3.478,381,1.694,385,0.703,706,1.462,767,2.065,789,1.409,947,5.791,1071,3.333,1191,6.802,1350,5.063,1352,0.724,1747,3.402]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-13/",[49,1.153,127,2.317,759,3.197,2379,3.964]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-13/",[1789,5.152,1790,5.289,2579,7.049,2580,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-13/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-13/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.405,127,2.317,292,3.677,2379,3.964]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[31,1.165,217,2.759,711,2.998,2394,5.202,2483,5.202,2571,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[0,1.236,9,0.079,31,2.079,40,2.489,64,2.385,65,1.859,90,1.852,100,1.845,101,2.914,203,1.778,319,1.507,345,2.704,385,0.887,706,1.845,789,1.778,847,2.813,1038,2.325,1352,0.913,1691,4.613,1841,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-13/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[11,0.672,49,0.986,203,1.787,2130,2.753,2181,4.41,2265,2.667]],["keywords//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[203,2.476,2181,6.111]],["toc//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[9,0.06,35,0.657,164,2.13,208,4.22,209,4.13,318,4.045,385,1.075,1352,1.106,2181,8.253]],["deprecated//docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2130,2.753,2265,2.667,2287,3.627]],["keywords//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[129,1.871,258,0.918,597,4.122,1303,3.069,2219,2.336]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[9,0.078,29,1.119,35,0.555,47,2.624,172,3.808,258,1.345,297,3.318,412,1.832,802,3.825,1303,4.499]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,597,3.825,1303,2.847,2130,2.753,2265,2.667]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,597,3.825,1303,2.847,2406,2.908,2407,2.867]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[9,0.082,35,0.579,172,3.101,258,1.096,297,3.542,385,1.147,802,4.084,1303,4.694,1352,1.181]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.627,203,1.666,753,4.113,1947,4.453,2052,4.113,2130,2.567,2265,2.488]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[11,0.704,2052,4.621,2053,5.625,2265,2.795,2497,5.003]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[9,0.07,14,0.896,29,0.957,35,0.572,158,3.189,282,2.935,297,2.838,327,2.329,385,0.919,399,4.546,587,4.001,706,1.912,1348,5.087,1352,0.946,2052,6.274,2054,5.285,2056,4.922,2057,4.275,2581,5.866]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.672,258,0.851,1303,2.847,2130,2.753,2265,2.667,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[11,0.606,39,2.219,258,0.767,1303,2.566,2265,2.404,2498,5.13,2583,4.448]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[9,0.053,14,0.929,29,0.993,35,0.376,39,2.632,112,2.394,172,2.577,189,3.424,201,2.322,258,0.911,297,2.944,339,1.824,385,0.954,412,1.626,712,3.255,1303,4.727,1352,0.982,1425,3.928]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[61,1.111,258,0.851,597,3.825,1303,2.847,2219,2.167,2341,2.488]],["keywords//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[39,2.807,258,0.971,1303,3.247,1308,4.73]],["toc//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[9,0.079,29,1.143,35,0.563,172,2.967,258,1.048,297,3.389,385,1.098,412,1.871,802,3.907,1303,4.562,1352,1.13]],["deprecated//docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/",[839,0.476]],["title//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[14,0.759,31,1.05,33,2.262,316,3.77,498,4.052,789,1.561,2420,4.172,2584,4.691]],["keywords//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,0.847,33,1.824,217,2.006,258,0.6,328,1.914,499,5.319,711,2.179,2585,4.354,2586,4.354,2587,4.354]],["toc//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[31,1.31,33,2.821,35,0.383,38,2.384,42,2.233,217,3.103,258,0.928,316,6.376,328,2.962,350,3.906,435,3.103,487,4.055,498,6.853,706,2.021,789,1.947,2026,4.702,2420,5.204,2584,5.851]],["deprecated//docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/",[]],["title//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[61,1.036,894,3.675,2219,2.021,2341,2.321,2588,5.764,2589,5.764,2590,5.307]],["keywords//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[2591,7.049,2592,7.049,2593,7.049,2594,5.445]],["toc//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[9,0.076,35,0.406,47,2.517,64,2.772,100,2.144,172,2.786,203,2.066,319,1.752,385,1.031,706,2.144,789,2.747,1038,2.703,1352,1.061,2590,8.75]],["deprecated//docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.672,319,1.515,731,3.12,894,3.941,2130,2.753,2265,2.667]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[11,0.651,459,3.103,662,2.509,731,3.023,2497,4.627,2595,5.99]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[11,0.672,766,2.207,1184,3.044,2004,3.673,2130,2.753,2265,2.667]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[2004,3.849,2007,4.429,2008,4.859,2596,6.476,2597,5.963]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[9,0.057,29,1.074,327,2.612,381,3.303,385,1.031,412,1.757,933,5.1,952,3.225,981,4.557,1352,1.061,1628,4.422,1804,4.422,2004,6.344,2009,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[4,1.174,11,0.587,766,1.929,1055,2.032,1184,2.66,1584,2.849,2130,2.405,2265,2.331]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[11,0.606,766,1.99,1584,2.939,2265,2.404,2597,5.13,2598,5.571,2599,5.571]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[11,0.627,273,3.07,939,3.567,2297,4.602,2298,4.325,2406,2.712,2407,2.674]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[1065,3.399,2302,4.839,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2600,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[11,0.587,273,2.876,939,3.342,1184,2.66,2130,2.405,2265,2.331,2297,4.312,2298,4.052]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[1065,3.399,2302,4.839,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2601,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2130,2.405,2265,2.331]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-fluxbb/",[1991,5.508,1992,5.396,2602,6.853]],["keywords//docs/websites/forums/discussion-forums-with-fluxbb/",[1992,4.821,2602,6.122,2603,7.049,2604,6.49]],["toc//docs/websites/forums/discussion-forums-with-fluxbb/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2602,7.067]],["deprecated//docs/websites/forums/discussion-forums-with-fluxbb/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-vanilla-forums/",[1394,5.993,1991,5.043,1992,6.546]],["keywords//docs/websites/forums/discussion-forums-with-vanilla-forums/",[759,2.866,1394,5.372,2604,5.963,2605,6.476,2606,6.476]],["toc//docs/websites/forums/discussion-forums-with-vanilla-forums/",[9,0.089,385,1.327,706,2.76,1352,1.366,1394,7.63]],["deprecated//docs/websites/forums/discussion-forums-with-vanilla-forums/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[11,0.587,766,1.929,1023,2.275,1184,2.66,1370,3.559,2130,2.405,2265,2.331,2350,4.312]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[1587,4.274,2354,4.782,2355,4.782,2607,5.99,2608,5.99,2609,5.515]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[11,0.587,42,1.79,1184,2.66,1271,3.095,1976,3.209,1977,3.499,2130,2.405,2265,2.331]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2610,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-flatpress/",[90,2.176,164,2.066,712,3.558,2611,6.274]],["keywords//docs/websites/cms/manage-web-content-with-flatpress/",[259,1.663,677,5.625,680,3.899,1170,4.268,2611,5.625]],["toc//docs/websites/cms/manage-web-content-with-flatpress/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2611,7.067]],["deprecated//docs/websites/cms/manage-web-content-with-flatpress/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2130,2.567,2265,2.488]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.627,31,1.121,1168,2.224,1184,2.839,1826,2.839,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2612,5.625]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[0,0.966,9,0.076,11,0.78,19,3.788,29,0.722,31,0.935,35,0.542,60,1.453,65,1.453,148,4.732,187,2.262,201,1.238,261,1.783,327,1.757,379,1.322,385,0.694,412,1.182,490,1.701,544,2.56,1168,1.855,1352,0.714,1423,3.018,1529,2.974,1782,4.175,1783,5.956,1826,2.367,2291,3.115,2378,3.606,2613,7.18,2614,4.807]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[11,0.521,172,1.87,258,0.661,259,1.231,381,1.667,1184,2.362,1248,2.659,2130,2.136,2265,2.069,2400,3.422]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[1690,2.621,1858,3.81,1859,3.81,2403,4.072,2404,4.072,2615,5.571,2616,5.571]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[9,0.055,29,1.032,35,0.39,219,5.305,258,1.275,259,2.375,262,3.079,282,3.163,327,3.383,385,0.991,412,1.689,1248,3.808,1271,3.936,1352,1.02,1861,5.153,2057,4.608]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[11,0.587,43,3.131,49,0.862,767,2.289,1184,2.66,1987,3.209,2130,2.405,2265,2.331]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[1372,3.498,1987,3.311,1989,4.18,1990,4.18,2240,4.839,2241,4.621,2617,5.571]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[90,1.862,265,3.627,356,4.005,2281,6.65,2618,5.691]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[2285,5.171,2619,6.476,2620,5.963,2621,6.476,2622,6.476]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[9,0.082,100,2.386,203,2.299,319,1.949,385,1.147,706,2.386,789,2.299,1038,3.008,1352,1.181,2281,6.143,2618,7.322]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/",[839,0.476]],["title//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[90,2.007,265,3.909,356,4.317,2281,5.146,2623,5.786]],["keywords//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[2285,5.628,2620,6.49,2623,6.122,2624,7.049]],["toc//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[9,0.083,100,2.441,203,2.352,319,1.994,385,1.174,706,2.441,789,2.352,1038,3.077,1352,1.208,2623,7.067]],["deprecated//docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2130,2.263,2265,2.192]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2130,2.405,2265,2.331]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[11,0.552,14,0.714,215,2.706,490,1.798,1184,2.502,2082,2.706,2083,3.474,2130,2.263,2265,2.192]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[490,2.12,829,3.761,2082,3.19,2084,4.782,2085,4.378,2086,3.221]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.587,49,0.862,164,1.544,292,2.749,1184,2.66,2059,2.963,2130,2.405,2265,2.331]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[1870,4.196,2059,3.553,2497,5.003,2561,5.963,2562,5.963]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.053,29,0.993,35,0.376,65,1.999,121,4.09,145,3.365,319,2.21,345,2.907,385,0.954,412,1.626,651,3.497,744,5.579,803,6.167,1016,3.394,1352,0.982,2059,4.947]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[30,2.192,49,0.811,90,1.53,141,2.945,204,2.444,319,1.245,351,3.058,630,3.019,2625,3.924]],["keywords//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[2065,5.171,2625,5.003,2626,6.476,2627,5.963,2628,5.963]],["toc//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[9,0.072,14,1.26,35,0.509,655,4.019,1096,5.137,2625,8.485]],["deprecated//docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/",[]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,1.174,5,1.315,11,0.587,14,0.759,1063,2.933,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[1465,4.646,2087,5.445,2088,5.152,2629,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[4,2.471,9,0.065,14,1.144,35,0.588,38,2.879,339,2.245,385,1.174,1352,1.208]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[11,0.587,49,0.862,164,1.544,258,0.744,320,2.749,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[258,0.825,711,2.998,1999,4.378,2630,5.99,2631,5.99,2632,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[11,0.724,1033,3.23,1184,3.281,2130,2.967,2265,2.875]],["keywords//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[2222,6.415,2223,6.415,2633,7.733]],["toc//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[339,2.606,971,7.086,1033,4.579,2128,7.835,2441,8.203]],["deprecated//docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[11,0.627,90,1.736,380,3.735,708,3.517,1184,2.839,2130,2.567,2265,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2634,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[0,1.084,5,1.314,9,0.063,29,0.811,31,1.05,33,2.26,35,0.573,42,1.788,60,1.631,65,1.631,100,1.619,203,1.56,258,0.743,319,1.323,334,2.26,385,0.779,393,3.766,412,1.327,708,5.608,709,3.057,766,1.927,789,1.56,1038,2.041,1139,3.766,1196,2.874,1352,0.801,2249,4.686]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-10-04-lucid/",[5,1.315,11,0.587,14,0.759,30,2.331,1063,2.933,1184,2.66,2130,2.405,2265,2.331]],["keywords//docs/databases/postgresql/ubuntu-10-04-lucid/",[30,2.585,1064,4.782,1065,3.655,1160,4.019,2635,5.99,2636,5.99]],["toc//docs/databases/postgresql/ubuntu-10-04-lucid/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-10-04-lucid/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.672,31,1.202,292,3.146,1184,3.044,2130,2.753,2265,2.667]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[11,0.606,31,1.084,217,2.566,711,2.789,2497,4.304,2612,4.839,2637,5.571]],["toc//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[0,1.194,9,0.078,11,0.646,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[195,5.155,662,3.025,1676,6.274,2638,5.993]],["keywords//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[2638,5.847,2639,6.49,2640,6.49,2641,6.49]],["toc//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[9,0.065,14,0.804,35,0.325,139,1.118,141,2.078,145,2.913,194,2.502,195,2.558,201,0.923,210,1.663,290,2.62,313,6.884,332,2.362,339,1.579,351,2.158,392,2.558,487,2.158,630,2.13,662,3.415,692,3.113,761,1.794,896,2.104,914,3.3,918,2.862,1000,3.113,1431,3.3,1529,2.218,1664,3.3,2002,3.3,2086,1.928,2432,3.3,2433,3.3,2468,5.269,2638,8.854,2640,3.3,2641,3.3,2642,3.584,2643,3.584,2644,3.584,2645,3.584,2646,3.584,2647,3.584,2648,3.584]],["deprecated//docs/networking/diagnostics/diagnosing-network-issues-with-mtr/",[]],["title//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[5,1.404,14,0.81,30,2.488,145,2.934,204,2.773,651,2.236,2625,4.453]],["keywords//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[2065,4.782,2625,4.627,2627,5.515,2628,5.515,2649,5.99,2650,5.99]],["toc//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[9,0.072,14,1.26,35,0.509,655,4.019,1096,5.137,2625,8.485]],["deprecated//docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/",[]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[61,1.036,766,2.059,1023,2.428,1370,3.799,2219,2.021,2341,2.321,2350,4.602]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[1587,4.274,2353,5.515,2354,4.782,2355,4.782,2651,5.99,2652,5.99]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[90,2.007,101,3.158,140,3.959,476,3.158,2653,5.786]],["keywords//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[1211,4.022,1631,4.157,1632,4.157,2653,4.523,2654,5.207,2655,4.794,2656,4.794,2657,5.207]],["toc//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[0,1.88,9,0.045,22,3.396,86,4.068,101,2.638,169,2.454,204,2.678,215,2.964,282,3.682,300,4.444,444,4.617,684,2.964,712,3.937,1422,4.834,1815,6.175,1907,6.943,2411,4.176,2474,3.972,2513,5.125,2653,8.879,2658,5.125]],["deprecated//docs/development/version-control/manage-distributed-version-control-with-mercurial/",[]],["title//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[11,0.587,42,1.79,47,1.902,1325,4.312,1381,3.947,1769,4.172,2406,2.541,2407,2.505]],["keywords//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[1325,4.448,1381,4.072,1385,4.839,1769,4.304,2659,5.571,2660,5.571,2661,5.571]],["toc//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[0,1.537,9,0.08,16,1.559,29,0.787,35,0.565,64,2.031,74,2.578,119,1.828,262,2.347,273,4.073,275,3,345,2.302,370,4.18,385,0.755,521,3.152,525,3.392,706,1.571,759,2.317,790,2.558,916,3.072,1352,0.778,1381,5.589,1393,4.82,1769,5.907,1773,4.82]],["deprecated//docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[42,2.049,61,1.111,203,1.787,1191,3.673,2219,2.167,2341,2.488]],["keywords//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[203,2.476,1191,5.089]],["toc//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[9,0.085,35,0.513,38,1.853,43,3.035,64,2.031,107,2.966,112,1.896,171,3.927,359,3.736,381,1.82,385,0.755,706,1.571,767,2.219,789,1.513,947,6.105,1191,6.943,1350,5.338,1352,0.778,1747,3.655]],["deprecated//docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[11,0.627,31,1.121,259,1.48,1168,2.224,1184,2.839,2130,2.567,2265,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[31,1.371,1527,4.137,1528,4.73,2612,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[0,1.155,9,0.046,19,4.315,29,0.863,35,0.541,42,1.905,60,1.738,65,1.738,80,2.38,148,5.391,187,2.704,201,1.48,259,1.475,261,2.131,319,1.409,327,2.101,379,1.58,385,0.829,412,1.413,615,3.788,1168,2.218,1352,0.854,1423,3.609,1525,3.609,1529,3.557]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/",[839,0.476]],["title//docs/tools-reference/tools/synchronize-files-with-unison/",[169,2.423,2662,7.265,2663,6.853]],["keywords//docs/tools-reference/tools/synchronize-files-with-unison/",[2,3.449,61,1.164,2594,5.003,2663,5.625,2664,6.476]],["toc//docs/tools-reference/tools/synchronize-files-with-unison/",[9,0.075,11,0.761,61,1.259,89,2.142,127,2.246,129,1.967,139,2.184,215,3.73,587,4.398,1316,3.661,2130,3.12,2219,3.288,2265,3.023,2341,2.82,2663,8.144]],["deprecated//docs/tools-reference/tools/synchronize-files-with-unison/",[839,0.476]],["title//docs/databases/mysql/back-up-your-mysql-databases/",[4,1.571,5,1.759,15,4.349,16,2.151]],["keywords//docs/databases/mysql/back-up-your-mysql-databases/",[2,4.118,4,1.681,7,6.174]],["toc//docs/databases/mysql/back-up-your-mysql-databases/",[0,1.869,2,5.594,4,1.644,5,1.493,7,4.896,8,5.656,14,1.204,24,2.282,90,1.178,158,2.581,169,0.697,187,1.841,235,5.976,320,3.121,334,3.586,339,1.079,443,6.963,895,2.535,932,1.971,1066,4.334,1525,1.425,1682,1.702,1947,3.022,2665,2.269,2666,6.917,2667,6.132,2668,3.912,2669,3.912,2670,2.269,2671,2.089,2672,2.269]],["deprecated//docs/databases/mysql/back-up-your-mysql-databases/",[839,0.476]],["title//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[61,1.111,89,1.89,90,1.862,2219,2.167,2287,3.627,2341,2.488]],["keywords//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[11,0.672,89,1.89,90,1.862,2287,3.627,2406,2.908,2407,2.867]],["keywords//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[1129,3.952,2212,4.621,2213,4.621,2287,3.801,2288,4.859]],["toc//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[4,1.173,9,0.089,96,2.701,100,2.345,203,1.56,258,0.743,259,1.385,297,2.403,319,1.323,339,1.489,385,0.779,789,1.56,1038,2.041,1055,2.031,1352,0.801,1353,3.556,1804,3.339,1838,2.821,2287,3.166,2289,3.024,2290,4.048,2291,3.496,2292,4.048,2293,4.048,2294,4.048,2295,4.048,2296,3.556]],["deprecated//docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/",[839,0.476]],["title//docs/websites/wikis/dokuwiki-engine/",[408,8.002,2673,8.002]],["keywords//docs/websites/wikis/dokuwiki-engine/",[259,1.985,2039,4.655,2674,7.733]],["toc//docs/websites/wikis/dokuwiki-engine/",[9,0.085,100,2.56,203,2.466,319,2.091,706,2.56,789,2.466,1038,3.226,2673,7.854]],["deprecated//docs/websites/wikis/dokuwiki-engine/",[]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.344,11,0.672,90,1.862,1838,3.231,2406,2.908,2407,2.867]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[4,1.533,11,0.766,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[9,0.074,35,0.526,60,2.077,112,2.487,169,2.109,258,0.946,282,3.163,319,1.683,322,4.794,327,2.511,633,4.312,687,2.572,1838,5.854,2675,6.323]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-phpfusion/",[90,2.007,164,1.905,259,1.71,712,3.281,2676,6.134]],["keywords//docs/websites/cms/manage-web-content-with-phpfusion/",[680,4.243,759,3.119,2677,7.049,2678,7.049]],["toc//docs/websites/cms/manage-web-content-with-phpfusion/",[9,0.082,100,2.386,203,2.299,259,2.042,319,1.949,385,1.147,706,2.386,789,2.299,1038,3.008,1352,1.181,2676,7.322]],["deprecated//docs/websites/cms/manage-web-content-with-phpfusion/",[839,0.476]],["title//docs/uptime/analytics/webalizer-on-centos-5/",[129,2.216,2219,2.767,2296,5.2]],["keywords//docs/uptime/analytics/webalizer-on-centos-5/",[51,3.559,110,3.559,129,1.682,1623,4.782,2296,3.948,2679,5.515]],["toc//docs/uptime/analytics/webalizer-on-centos-5/",[0,1.174,9,0.077,21,3.388,29,0.878,35,0.47,40,2.365,60,1.767,187,2.749,201,1.505,258,0.805,261,2.167,319,1.432,379,1.606,393,4.079,412,1.437,576,3.851,789,1.689,1525,3.669,1837,4.169,2296,7.549]],["deprecated//docs/uptime/analytics/webalizer-on-centos-5/",[839,0.476]],["title//docs/development/frameworks/webpy-on-debian-5-lenny/",[61,1.298,1309,4.188,2219,2.533,2341,2.908]],["keywords//docs/development/frameworks/webpy-on-debian-5-lenny/",[39,2.807,1309,4.087,1690,3.317,2032,5.289]],["toc//docs/development/frameworks/webpy-on-debian-5-lenny/",[0,1.304,5,1.58,9,0.081,29,0.975,38,2.296,47,2.286,171,3.332,172,3.963,385,0.936,412,1.596,706,1.947,1309,6.645,1352,0.964,2033,5.18]],["deprecated//docs/development/frameworks/webpy-on-debian-5-lenny/",[839,0.476]],["title//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[90,2.176,262,3.239,2680,6.651,2681,6.651]],["keywords//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[1826,3.808,2680,7.12,2682,7.733]],["toc//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[9,0.093,14,1.047,38,2.636,65,2.252,168,5.444,204,3.584,297,3.318,385,1.075,388,4.319,2681,8.992,2683,7.448]],["deprecated//docs/development/perl/manage-cpan-modules-with-cpan-minus/",[]],["title//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[0,1.085,14,0.759,61,0.97,407,3.77,2042,3.559,2043,3.499,2219,1.894,2341,2.174]],["keywords//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[407,4.521,1017,4.733,1022,5.003,2042,4.268,2043,4.196]],["toc//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[9,0.065,35,0.646,38,2.879,381,2.828,789,2.352,2042,5.362,2043,7.364]],["deprecated//docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[129,1.871,1991,4.65,1992,4.556,1993,4.065,2219,2.336]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[35,0.473,64,3.231,100,2.499,203,2.408,319,2.041,573,5.943,706,2.499,789,2.408,1038,3.15,1993,5.082]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/",[839,0.476]],["title//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[14,0.81,90,1.736,178,3.567,363,3.868,367,4.113,742,3.799,1750,3.942]],["keywords//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[139,2.02,363,4.346,742,4.268,926,4.521,2684,6.476]],["toc//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[9,0.053,14,0.929,38,2.339,90,1.991,99,3.665,114,5.278,367,4.717,368,2.818,445,4.151,468,4.357,655,2.964,742,8.031,1750,4.521,2411,4.959,2685,6.61]],["deprecated//docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/",[]],["title//docs/websites/wikis/twiki/",[2038,5.543]],["keywords//docs/websites/wikis/twiki/",[466,4.243,1826,3.471,2038,4.039,2039,4.243]],["toc//docs/websites/wikis/twiki/",[]],["deprecated//docs/websites/wikis/twiki/",[839,0.476]],["title//docs/applications/messaging/advanced-irssi-usage/",[168,5.766,487,4.75,2686,6.299]],["keywords//docs/applications/messaging/advanced-irssi-usage/",[1487,4.627,1747,4.181,1748,5.202,1749,5.202,2686,4.782,2687,5.515]],["toc//docs/applications/messaging/advanced-irssi-usage/",[14,1.199,107,4.833,224,7.076,251,3.929,385,1.231,1352,1.267,1478,6.811,1494,6.811,1588,5.205]],["deprecated//docs/applications/messaging/advanced-irssi-usage/",[]],["title//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[14,0.937,650,5.526,1060,5.526,1487,5.146,2686,5.319]],["keywords//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[1487,4.627,1747,4.181,1748,5.202,1749,5.202,2686,4.782,2687,5.515]],["toc//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[9,0.039,35,0.488,38,1.701,43,2.787,80,1.99,90,2.163,107,2.723,119,1.678,145,3.655,168,3.513,181,3.987,368,2.049,468,4.732,662,3.007,673,5.956,684,2.56,706,1.442,979,4.175,1271,2.755,1747,5.012,1753,4.426,1755,6.611,2411,3.606,2686,8.144,2688,4.807,2689,4.807,2690,4.807,2691,4.807]],["deprecated//docs/applications/messaging/using-irssi-for-internet-relay-chat/",[]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[14,0.81,24,2.551,129,1.619,172,2.248,253,3.1,707,2.732,2219,2.021]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[5,1.717,707,3.341,893,3.558,1041,4.821]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,24,2.39,172,2.106,253,2.904,707,2.56,2406,2.541,2407,2.505]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.759,33,2.262,42,1.79,61,0.97,258,0.744,328,2.375,2219,1.894,2341,2.174]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[14,0.715,15,3.061,33,3.135,42,1.685,47,1.791,49,0.811,202,3.021,216,3.351,220,2.708,231,3.294,258,0.7,328,2.236,385,0.734,587,3.193,619,3.146,640,3.549,665,3.628,712,4.374,1097,3.061,1352,0.755,1425,4.448,1648,3.351,1998,2.819,2047,7.007,2048,3.628,2049,3.716,2050,3.716,2051,3.716,2420,3.927]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[11,0.587,14,0.759,33,2.262,42,1.79,258,0.744,328,2.375,2406,2.541,2407,2.505]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-fedora-12/",[127,2.53,263,4.882,2045,4.329]],["keywords//docs/websites/wikis/ikiwiki-on-fedora-12/",[127,1.787,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2476,4.448]],["toc//docs/websites/wikis/ikiwiki-on-fedora-12/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-fedora-12/",[839,0.476]],["title//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.785,2045,3.964,2406,3.399,2407,3.351]],["keywords//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[11,0.606,138,2.861,466,3.354,1826,2.744,2039,3.354,2045,3.057,2407,2.584]],["toc//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[9,0.055,14,1.301,35,0.526,312,4.081,385,0.991,437,4.25,487,4.134,659,3.849,1352,1.02,1628,4.25,2045,6.607,2477,5.965]],["deprecated//docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[14,0.81,24,2.551,127,1.849,172,2.248,253,3.1,263,3.567,707,2.732]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[0,1.258,9,0.08,14,0.88,38,3.073,40,3.515,100,1.878,177,2.863,203,1.809,306,3.673,319,1.534,385,0.903,476,2.966,706,1.878,707,4.726,789,1.809,1038,2.367,1352,0.929,1841,3.242]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.81,33,2.414,42,1.911,129,1.619,258,0.794,328,2.535,2219,2.021]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[14,0.736,15,3.152,33,3.203,42,1.735,47,1.844,49,0.836,202,3.111,216,3.45,220,2.788,231,3.392,258,0.721,328,2.302,587,3.287,619,3.24,640,3.655,665,3.736,712,4.449,1097,3.152,1425,4.544,1648,3.45,1998,2.903,2047,7.091,2048,3.736,2049,3.826,2050,3.826,2051,3.826,2420,4.044]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[11,0.587,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2406,2.541,2407,2.505]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[9,0.061,35,0.663,201,1.96,379,2.092,385,1.098,619,4.709,767,3.225,1352,1.13,2070,6.718]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-mybb/",[1991,5.508,1992,5.396,2692,6.853]],["keywords//docs/websites/forums/discussion-forums-with-mybb/",[259,1.81,1690,3.317,1994,5.152,2692,6.122]],["toc//docs/websites/forums/discussion-forums-with-mybb/",[9,0.067,100,2.499,203,2.408,319,2.041,385,1.202,706,2.499,789,2.408,1038,3.15,1352,1.237,2692,7.234]],["deprecated//docs/websites/forums/discussion-forums-with-mybb/",[839,0.476]],["title//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.046,139,1.798,175,4.113,587,3.62,1991,4.024,1992,3.942,2693,5.006]],["keywords//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[259,1.81,1690,3.317,1994,5.152,2693,6.122]],["toc//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[9,0.08,706,2.995,2693,8.668]],["deprecated//docs/websites/forums/install-a-simple-machines-forum-on-your-website/",[1028,3.823]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.296,127,2.136,259,1.71,263,4.122,1168,2.571]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[31,1.371,1527,4.137,1528,4.73,2694,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,259,1.873,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.296,127,2.136,263,4.122,1168,2.571,1826,3.281]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[31,1.371,1527,4.137,2015,4.921,2694,6.122]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[9,0.057,35,0.607,38,2.529,60,2.161,65,2.161,201,1.841,261,2.65,339,1.972,379,1.965,385,1.031,1168,3.667,1352,1.061,1553,5.223,1826,3.519]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/",[839,0.476]],["title//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.81,33,2.414,42,1.911,127,1.849,258,0.794,263,3.567,328,2.535]],["keywords//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[33,2.712,258,0.892,328,2.848,1703,4.268,2046,4.733]],["toc//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[14,0.725,33,3.168,42,1.71,47,1.817,49,0.823,202,3.066,216,3.4,220,2.747,222,3.681,231,3.343,258,0.711,328,2.268,385,0.744,587,3.239,619,3.192,640,3.601,665,3.681,712,4.411,1097,3.106,1352,0.766,1425,4.495,1648,3.4,1998,2.86,2047,7.049,2048,3.681,2049,3.77,2050,3.77,2051,3.77]],["deprecated//docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[4,1.253,11,0.627,766,2.059,1055,2.169,1584,3.041,2406,2.712,2407,2.674]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[1587,4.621,2695,5.963,2696,6.476,2697,6.476,2698,6.476]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[0,0.966,4,1.868,9,0.039,14,0.676,16,2.138,29,1.079,35,0.58,38,1.701,60,2.171,65,1.453,119,2.507,261,1.783,339,1.326,379,1.322,385,0.694,391,3.403,435,2.214,687,1.8,688,2.114,767,2.037,776,1.809,1016,2.468,1055,3.234,1352,0.714,1584,2.536,1588,2.933,1589,3.513,2235,3.288]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[129,1.871,258,0.918,320,3.391,687,2.495,776,2.507]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[711,2.998,891,4.181,1025,4.782,1699,4.097,1700,5.515,2699,4.969]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-centos/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[127,1.982,258,0.851,263,3.825,320,3.146,687,2.314,776,2.326]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[711,3.528,1699,4.821,1701,6.122,2476,5.628]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/",[839,0.476]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.627,258,0.794,320,2.934,687,2.159,776,2.169,2406,2.712,2407,2.674]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[11,0.606,687,2.086,1699,3.81,1705,5.13,1870,3.61,2487,4.448,2700,4.621]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[129,1.871,319,1.633,731,3.362,894,4.248,1023,2.806]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[129,1.98,459,3.652,662,2.952,731,3.558]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[9,0.037,14,0.658,35,0.4,59,3.2,98,4.912,153,3.649,158,2.342,204,2.251,251,4.332,319,1.725,324,2.938,379,1.286,428,2.817,459,3.645,531,4.293,662,2.947,731,4.268,761,3.522,776,2.648,990,3.339,991,3.339,998,3.339,1094,4.559,1096,2.681,1322,3.339,1914,3.42,1915,3.511]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/",[]],["title//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.405,129,2.029,292,3.677,2219,2.533]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[31,1.165,129,2.365,217,2.759,711,2.998,2699,4.969]],["toc//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1691,4.458,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.448,258,1.087,442,6.095]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[35,0.439,258,1.065,1703,5.096]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[169,2.336,187,3.58,334,4.884,523,5.878,633,4.778,1410,5.878,2298,5.709,2325,6.609,2555,6.609,2701,7.609,2702,7.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/",[]],["title//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,2.176,258,0.995,753,5.155,2703,6.274]],["keywords//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[90,1.678,169,1.711,217,2.566,258,0.767,716,5.13,753,3.975,2703,4.839]],["toc//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[0,2.064,1588,6.267]],["deprecated//docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.111,319,1.515,731,3.12,894,3.941,2219,2.167,2341,2.488]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[61,1.164,459,3.355,662,2.712,731,3.269,2341,2.607]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,4.312,531,4.209,662,2.889,731,3.482,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/",[839,0.476]],["title//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.672,319,1.515,731,3.12,894,3.941,2406,2.908,2407,2.867]],["keywords//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[11,0.651,459,3.103,662,2.509,731,3.023,2487,4.782,2700,4.969]],["toc//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[9,0.037,14,0.641,35,0.392,59,3.118,98,4.816,153,3.592,158,2.282,204,2.193,251,4.275,319,1.691,324,2.862,379,1.253,385,0.658,428,2.744,459,3.574,531,4.209,662,2.889,731,4.201,761,3.453,776,2.596,990,3.253,991,3.253,998,3.253,1094,4.47,1096,2.612,1322,3.253,1352,0.677,1914,3.331,1915,3.42]],["deprecated//docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.296,61,1.197,292,3.391,2219,2.336,2341,2.682]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[31,1.165,61,1.076,217,2.759,711,2.998,2594,4.627,2704,5.515]],["toc//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[0,1.194,9,0.078,29,0.893,31,2.048,40,2.405,61,1.068,64,2.305,65,1.796,90,1.79,100,1.783,101,2.816,203,1.718,319,1.456,345,2.612,385,0.857,412,1.461,706,1.783,789,1.718,847,2.718,1038,2.247,1352,0.882,1841,3.078]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.405,127,2.317,263,4.47,292,3.677]],["keywords//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[31,1.165,217,2.759,711,2.998,2394,5.202,2476,4.782,2694,5.202]],["toc//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[0,1.236,9,0.079,31,2.079,40,2.489,64,2.385,65,1.859,90,1.852,100,1.845,101,2.914,203,1.778,319,1.507,345,2.704,385,0.887,706,1.845,789,1.778,847,2.813,1038,2.325,1352,0.913,1691,4.613,1841,3.185]],["deprecated//docs/web-servers/nginx/websites-with-nginx-on-fedora-12/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-centos-5/",[129,2.216,2061,4.47,2219,2.767]],["keywords//docs/uptime/analytics/piwik-on-centos-5/",[51,3.311,110,3.311,129,1.565,356,3.61,2061,3.157,2062,4.072,2705,5.571]],["toc//docs/uptime/analytics/piwik-on-centos-5/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-centos-5/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[11,0.672,31,1.202,464,3.231,1196,3.292,2406,2.908,2407,2.867]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2400,3.625,2706,3.409,2707,3.348]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[9,0.061,35,0.432,219,5.878,258,1.364,259,2.542,262,3.411,327,2.782,385,1.098,1248,4.219,1271,4.361,1352,1.13,1861,5.709]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[14,0.759,24,2.39,129,1.517,179,3.342,210,2.505,2078,2.904,2079,3.854,2219,1.894]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[129,1.98,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[9,0.078,14,1.364,2078,6.197]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.552,14,0.714,24,2.248,179,3.143,210,2.356,2078,2.732,2079,3.625,2406,2.39,2407,2.356]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[11,0.766,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[9,0.082,14,1.118,282,3.663,327,2.907,385,1.147,789,2.299,1352,1.181,2057,5.336,2078,6.047]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[11,0.552,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2400,3.625,2406,2.39,2407,2.356]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[9,0.057,35,0.406,219,5.52,258,1.309,259,2.439,262,3.204,282,3.292,327,3.474,385,1.031,1248,3.962,1271,4.095,1352,1.061,1861,5.362,2057,4.795]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[61,0.97,90,1.627,265,3.169,2219,1.894,2280,3.854,2281,4.172,2282,4.691,2341,2.174]],["keywords//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[265,3.801,2280,4.621,2284,5.625,2285,5.171,2708,6.476]],["toc//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[9,0.08,35,0.442,100,2.334,203,2.248,319,1.906,385,1.122,706,2.334,789,2.248,1038,2.941,1352,1.155,2280,7.168]],["deprecated//docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/",[839,0.476]],["title//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[61,0.97,90,1.627,521,3.251,766,1.929,1750,3.694,2070,3.295,2219,1.894,2341,2.174]],["keywords//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[766,2.517,1055,2.653,2070,4.301,2071,5.445]],["toc//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.652,201,1.879,379,2.005,385,1.052,412,1.794,619,4.514,767,3.091,1352,1.083,2070,6.581]],["deprecated//docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[4,1.253,61,1.036,766,2.059,1055,2.169,1584,3.041,2219,2.021,2341,2.321]],["keywords//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[61,1.164,766,2.313,1055,2.437,1584,3.417,2341,2.607]],["toc//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[0,0.979,4,1.884,9,0.039,14,0.685,16,2.16,29,1.302,35,0.545,60,2.193,65,1.473,119,2.532,261,1.807,379,1.34,385,0.703,391,3.438,412,1.198,435,2.245,687,1.825,688,2.143,767,2.065,776,1.834,1016,2.502,1055,3.26,1352,0.724,1584,2.571,1588,2.974,1589,3.562,2235,3.333]],["deprecated//docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[14,0.714,24,2.248,61,0.913,179,3.143,210,2.356,2078,2.732,2079,3.625,2219,1.782,2341,2.045]],["keywords//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[61,1.267,893,3.558,2078,3.791,2080,5.03]],["toc//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[9,0.074,14,1.293,385,1.327,1352,1.366,2078,6]],["deprecated//docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[11,0.785,2406,3.399,2407,3.351,2452,5.58]],["keywords//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[253,3.221,779,4.181,2452,4.627,2709,5.515,2710,7.754]],["toc//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.672,258,0.851,1303,2.847,2406,2.908,2407,2.867,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[11,0.606,39,2.219,258,0.767,1303,2.566,2407,2.584,2487,4.448,2583,4.448]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[9,0.055,14,0.966,35,0.39,39,2.735,172,2.678,189,3.558,201,2.383,258,0.946,282,3.163,297,3.059,327,2.511,385,0.991,712,3.382,1303,4.262,1352,1.02,1425,4.081,2675,6.323]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[11,0.785,1050,4.847,2406,3.399,2407,3.351]],["keywords//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[253,3.221,779,4.181,1050,4.019,2709,5.515,2710,7.754]],["toc//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[9,0.091,164,2.327,210,3.774,385,1.174,687,3.047,706,2.441,776,3.062,1050,5.46,1352,1.208]],["deprecated//docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[651,2.397,655,2.771,948,4.314,2078,3.324,2081,5.127,2711,5.691]],["keywords//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[145,2.651,258,0.717,655,2.335,1284,4.794,2067,3.806,2078,2.8,2081,4.32,2712,5.207]],["toc//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[153,3.868,164,2.563,429,7.157,651,3.477,655,4.019,2081,7.436,2713,8.964]],["deprecated//docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/",[]],["title//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[49,0.986,129,1.736,164,1.767,189,3.202,1998,3.427,2219,2.167]],["keywords//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[258,0.971,1998,3.908,2000,5.03,2714,7.049]],["toc//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[33,4.812,262,3.734,327,3.045,388,4.829,391,3.948,755,5.489,1163,6.403]],["deprecated//docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[49,0.986,127,1.982,164,1.767,189,3.202,263,3.825,1998,3.427]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[258,0.971,1998,3.908,2000,5.03,2328,6.49]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,189,2.986,1998,3.196,2406,2.712,2407,2.674]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[258,0.971,1998,3.908,1999,5.152,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[129,1.871,258,0.918,1303,3.069,2219,2.336,2582,5.319]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[39,2.579,129,1.819,258,0.892,1303,2.983,2583,5.171]],["toc//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[5,1.641,9,0.073,14,0.947,29,1.012,35,0.383,172,2.627,189,3.49,201,2.353,258,0.928,385,0.972,412,1.657,472,3.241,712,3.318,1303,4.773,1352,1,1425,4.003]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-centos-5/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[129,1.736,1593,4.774,1812,4.774,2219,2.167,2474,4.41,2475,4.517]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[129,1.98,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[9,0.072,35,0.624,651,3.477,2475,8.679]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[129,1.517,172,2.106,258,0.744,259,1.386,381,1.877,1248,2.994,2219,1.894,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[9,0.065,29,1.222,35,0.462,258,1.424,259,2.654,385,1.174,412,2.001,1248,4.511,1352,1.208]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[127,1.732,172,2.106,258,0.744,259,1.386,263,3.342,381,1.877,1248,2.994,2400,3.854]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[9,0.068,35,0.485,258,1.467,259,2.734,385,1.231,1248,4.729,1352,1.267]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/",[839,0.476]],["title//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[14,0.759,24,2.39,61,0.97,172,2.106,253,2.904,707,2.56,2219,1.894,2341,2.174]],["keywords//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[5,1.717,893,3.558,1041,4.821,2456,5.628]],["toc//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[0,1.354,9,0.054,14,0.947,38,3.232,40,3.697,100,2.021,177,3.082,203,1.947,306,3.953,319,1.651,385,0.972,476,3.193,707,4.329,789,1.947,1038,2.548,1352,1,1841,3.49]],["deprecated//docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.627,1593,4.453,1812,4.453,2406,2.712,2407,2.674,2474,4.113,2475,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[11,0.704,766,2.313,2007,4.429,2407,3.004,2474,4.621]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/clients/retrieve-email-using-getmail/",[14,1.016,300,5.768,766,2.58,2715,6.274]],["keywords//docs/email/clients/retrieve-email-using-getmail/",[766,2.762,2715,6.716,2716,7.12]],["toc//docs/email/clients/retrieve-email-using-getmail/",[9,0.053,14,1.268,21,3.833,35,0.512,38,2.339,189,3.424,477,3.745,487,3.979,766,3.22,981,4.215,997,6.086,1016,4.63,1648,4.357,1947,5.106,2715,8.913]],["deprecated//docs/email/clients/retrieve-email-using-getmail/",[]],["title//docs/development/frameworks/catalyst-and-modperl/",[2717,7.549,2718,8.002]],["keywords//docs/development/frameworks/catalyst-and-modperl/",[1690,3.638,2717,6.716,2719,7.733]],["toc//docs/development/frameworks/catalyst-and-modperl/",[9,0.065,16,1.684,29,0.85,35,0.46,47,1.992,49,0.903,112,2.048,172,2.205,177,2.587,201,1.457,258,1.419,297,2.519,339,1.56,379,1.555,385,0.816,712,2.785,1078,4.133,1352,0.84,1425,3.361,2671,5.207,2717,8.197,2718,7.445]],["deprecated//docs/development/frameworks/catalyst-and-modperl/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[61,1.036,90,1.736,164,1.648,712,2.839,2219,2.021,2341,2.321,2720,5.006]],["keywords//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[39,2.219,61,1.001,680,3.354,1170,3.672,2032,4.18,2720,4.839,2721,5.571]],["toc//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[9,0.056,14,0.985,31,1.362,33,3.927,35,0.533,163,3.925,165,5.411,258,0.965,385,1.011,1352,1.04,2420,7.243,2584,8.144,2720,8.144]],["deprecated//docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.344,61,1.111,90,1.862,1838,3.231,2219,2.167,2341,2.488]],["keywords//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[4,1.533,61,1.267,233,5.03,1838,3.685]],["toc//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[9,0.077,35,0.547,60,2.205,112,2.641,169,2.24,258,1.005,319,1.788,322,5.092,633,4.58,687,2.732,1838,5.997]],["deprecated//docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[61,1.036,273,3.07,939,3.567,2219,2.021,2297,4.602,2298,4.325,2341,2.321]],["keywords//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[1065,3.399,2303,4.448,2304,4.448,2305,4.304,2306,4.448,2332,5.13,2722,5.571]],["toc//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[9,0.067,29,0.893,35,0.338,90,1.79,100,1.783,153,2.564,176,2.446,251,2.737,261,2.203,282,2.737,368,2.533,385,0.857,389,3.577,412,1.461,638,4.24,662,2.488,789,1.718,836,4.342,924,4.24,939,6.515,1352,0.882,2307,6.469]],["deprecated//docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/",[839,0.476]],["title//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[319,1.515,655,2.771,939,3.825,1096,3.542,2307,4.774,2711,5.691]],["keywords//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[2065,6.174,2723,7.733,2724,7.733]],["toc//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[0,1.91,16,2.128,29,1.074,89,2.186,139,2.229,141,4.143,145,3.638,153,3.084,351,4.302,630,4.247,939,4.422,1096,6.521,2067,5.223]],["deprecated//docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/",[839,0.476]],["title//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[61,1.298,2219,2.533,2296,4.761,2341,2.908]],["keywords//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[51,3.559,61,1.076,110,3.559,1623,4.782,2296,3.948,2679,5.515]],["toc//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[0,1.068,9,0.073,21,3.081,29,0.798,35,0.439,40,2.151,60,1.607,187,2.501,201,1.369,258,1.065,319,1.303,379,1.461,385,0.767,393,3.71,410,3.389,412,1.307,544,2.83,576,3.502,789,1.536,1352,0.789,1525,3.337,1837,3.792,2178,4.893,2296,7.546]],["deprecated//docs/uptime/analytics/webalizer-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.036,1593,4.453,1812,4.453,2219,2.021,2341,2.321,2474,4.113,2475,4.213]],["keywords//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[61,1.267,766,2.517,2007,4.821,2474,5.03]],["toc//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[9,0.068,35,0.605,385,1.231,651,3.309,1352,1.267,2475,8.489]],["deprecated//docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/",[2725,4.789]],["title//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[42,1.79,61,0.97,485,3.391,490,1.911,2072,3.854,2073,2.963,2219,1.894,2341,2.174]],["keywords//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[61,1.164,490,2.292,662,2.712,2073,3.553,2086,3.483]],["toc//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[0,1.28,9,0.051,29,0.957,35,0.5,42,2.112,57,3.835,169,1.956,201,1.641,261,2.363,385,0.919,411,3.46,412,1.567,789,1.842,1352,0.946,1404,5.794,2073,5.955,2076,4.447,2077,4.546]],["deprecated//docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-joomla/",[90,2.176,164,2.066,681,5.28,712,3.558]],["keywords//docs/websites/cms/manage-web-content-with-joomla/",[680,4.655,681,5.651,1170,5.096]],["toc//docs/websites/cms/manage-web-content-with-joomla/",[9,0.082,35,0.452,64,3.085,100,2.386,203,2.299,319,1.949,681,7.447,706,2.386,789,2.299,1038,3.008]],["deprecated//docs/websites/cms/manage-web-content-with-joomla/",[839,0.476]],["title//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[14,0.759,61,0.97,215,2.876,490,1.911,2082,2.876,2083,3.694,2219,1.894,2341,2.174]],["keywords//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[61,1.164,490,2.292,829,4.067,2082,3.449,2086,3.483]],["toc//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[9,0.052,14,0.912,29,0.975,35,0.578,318,3.524,339,1.79,385,0.936,412,1.596,476,3.075,490,2.296,520,4.989,651,2.517,1352,0.964,2082,6.104,2086,3.489]],["deprecated//docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.298,2219,2.533,2341,2.908,2452,5.58]],["keywords//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[61,1.267,253,3.791,779,4.921,2452,5.445]],["toc//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[9,0.078,35,0.423,100,2.235,164,2.13,203,2.153,319,1.826,385,1.075,687,2.789,706,2.235,776,2.803,789,2.153,1038,2.817,1352,1.106,1833,5.444]],["deprecated//docs/websites/ecommerce/oscommerce-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/how-to-configure-nginx/",[31,1.691,35,0.494]],["keywords//docs/web-servers/nginx/how-to-configure-nginx/",[9,0.056,31,1.371,711,3.528,1441,6.49]],["toc//docs/web-servers/nginx/how-to-configure-nginx/",[17,1.131,31,0.948,35,0.545,49,0.778,80,3.003,113,4.233,146,2.86,166,3.764,167,3.562,169,1.496,170,3.402,174,4.233,201,1.255,210,2.261,217,2.245,332,3.212,350,2.826,379,1.994,391,2.31,435,3.341,523,5.603,583,3.06,651,1.89,685,2.345,688,2.143,706,1.462,951,2.596,1410,3.764,1683,4.233,2026,3.402,2057,3.27,2726,4.487,2727,4.487]],["deprecated//docs/web-servers/nginx/how-to-configure-nginx/",[]],["title//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.298,1050,4.847,2219,2.533,2341,2.908]],["keywords//docs/websites/ecommerce/magento-on-debian-5-lenny/",[61,1.267,253,3.791,779,4.921,1050,4.73]],["toc//docs/websites/ecommerce/magento-on-debian-5-lenny/",[9,0.091,164,2.327,210,3.774,385,1.174,687,3.047,706,2.441,776,3.062,1050,5.46,1352,1.208]],["deprecated//docs/websites/ecommerce/magento-on-debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[90,2.007,101,3.158,345,2.929,449,5.526,2728,5.786]],["keywords//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[1631,5.171,1632,5.171,2655,5.963,2728,5.625,2729,6.476]],["toc//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[0,1.497,9,0.06,14,1.047,90,2.244,194,5.199,368,3.175,380,6.328,428,4.484,444,6.179,449,6.179,2658,6.858,2728,9.464]],["deprecated//docs/development/version-control/manage-distributed-source-branches-with-bazaar/",[]],["title//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.036,203,1.666,753,4.113,1947,4.453,2052,4.113,2219,2.021,2341,2.321]],["keywords//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[61,1.267,2052,5.03,2053,6.122,2341,2.838]],["toc//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[9,0.082,14,0.929,29,0.993,35,0.583,158,3.309,297,2.944,385,0.954,399,4.717,587,4.151,706,1.983,1348,5.278,1352,0.982,2052,6.434,2054,5.483,2056,5.106,2581,6.086]],["deprecated//docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[47,2.545,172,2.817,2730,6.274,2731,6.274]],["keywords//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[258,0.825,2314,4.969,2730,5.202,2731,5.202,2732,5.99,2733,5.99]],["toc//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[9,0.041,33,3.168,35,0.561,163,2.891,201,1.948,202,3.066,220,2.747,231,4.902,258,1.359,328,2.268,379,2.08,385,0.744,712,3.726,1078,5.529,1352,0.766,1425,4.495,2047,5.076,2048,5.398,2730,4.48,2731,4.48,2734,5.159]],["deprecated//docs/development/frameworks/deploy-smalltalk-applications-with-seaside/",[839,0.476]],["title//docs/email/clients/using-fetchmail-to-retrieve-email/",[14,1.016,300,5.768,766,2.58,2735,6.274]],["keywords//docs/email/clients/using-fetchmail-to-retrieve-email/",[767,2.744,1529,4.008,2716,5.963,2735,5.625,2736,6.476]],["toc//docs/email/clients/using-fetchmail-to-retrieve-email/",[9,0.045,14,0.783,29,0.836,119,1.943,146,3.266,155,4.617,170,5.58,177,3.657,218,4.834,231,3.607,247,3.495,299,4.176,306,3.266,336,2.937,381,1.935,399,3.972,619,4.947,688,2.447,767,2.359,1907,4.834,2735,8.879,2737,5.566,2738,5.125,2739,5.566,2740,5.566]],["deprecated//docs/email/clients/using-fetchmail-to-retrieve-email/",[839,0.476]],["title//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.242,4,1.344,204,2.974,651,2.397,655,2.771,1096,3.542]],["keywords//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[2065,6.174,2741,7.733,2742,7.733]],["toc//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[0,1.789,4,1.936,16,1.932,29,0.975,139,2.024,141,3.762,153,2.8,178,4.015,204,3.122,351,3.906,630,3.856,651,2.517,655,3.991,706,1.947,1096,6.268,2067,4.742]],["deprecated//docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/",[]],["title//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[11,0.672,61,1.111,392,4.41,651,2.397,1360,5.691,1719,4.637]],["keywords//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[986,6.122,1719,5.289,2743,7.049,2744,7.049]],["toc//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[14,1.26,35,0.509,119,3.13,404,6.131,477,5.079,986,7.786,1719,6.726]],["deprecated//docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/",[]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.785,2061,4.093,2745,4.761,2746,4.761]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2747,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.785,2061,4.093,2406,3.399,2407,3.351]],["keywords//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[11,0.606,51,3.311,110,3.311,356,3.61,2061,3.157,2062,4.072,2748,5.571]],["toc//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[9,0.06,29,1.119,35,0.555,49,1.189,164,2.13,201,1.919,259,1.912,379,2.048,411,4.045,537,4.826,706,2.235,807,5.094,2061,5.533]],["deprecated//docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[61,0.913,172,1.981,258,0.7,259,1.304,381,1.766,1248,2.816,2219,1.782,2341,2.045,2400,3.625]],["keywords//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[1690,3.047,1858,4.429,1859,4.429,2403,4.733,2404,4.733]],["toc//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.415,219,5.635,258,1.327,259,2.473,262,3.27,327,2.666,385,1.052,412,1.794,1248,4.044,1271,4.18,1352,1.083,1861,5.473]],["deprecated//docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[43,3.342,49,0.92,61,1.036,767,2.443,1987,3.425,2219,2.021,2341,2.321]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[1372,3.761,1987,3.559,1989,4.494,1990,4.494,2358,5.515,2594,4.627]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[9,0.06,29,1.119,35,0.555,42,2.469,60,2.252,65,2.252,215,3.967,261,2.762,385,1.075,412,1.832,767,4.139,1352,1.106,1987,4.426]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/",[839,0.476]],["title//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[11,0.627,43,3.342,49,0.92,767,2.443,1987,3.425,2406,2.712,2407,2.674]],["keywords//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[1372,3.761,1987,3.559,1989,4.494,1990,4.494,2241,4.969,2487,4.782]],["toc//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[9,0.062,35,0.571,42,2.578,60,2.351,65,2.351,215,4.142,261,2.884,385,1.122,767,4.257,1352,1.155,1987,4.622]],["deprecated//docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.296,129,1.871,1168,2.571,1826,3.281,2219,2.336]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[31,1.371,1527,4.137,2015,4.921,2749,6.49]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[9,0.061,29,1.143,35,0.563,60,2.301,65,2.301,201,1.96,261,2.822,379,2.092,412,1.871,1168,3.822,1553,5.561,1826,3.747]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.202,61,1.111,1168,2.385,1826,3.044,2219,2.167,2341,2.488]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[31,1.26,1527,3.801,2015,4.521,2346,5.625,2750,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[9,0.058,29,1.096,35,0.547,60,2.205,65,2.205,201,1.879,261,2.705,379,2.005,385,1.052,412,1.794,1168,3.717,1352,1.083,1553,5.331,1826,3.592]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[11,0.672,31,1.202,1168,2.385,1826,3.044,2406,2.908,2407,2.867]],["keywords//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[31,1.26,1527,3.801,2013,5.003,2015,4.521,2751,6.476]],["toc//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[9,0.058,35,0.613,38,2.581,60,2.205,65,2.205,261,2.705,339,2.012,385,1.052,544,3.885,1168,2.815,1352,1.083,1826,3.592,2291,4.727,2378,5.473]],["deprecated//docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/development/version-control/manage-source-code-versions-with-subversion/",[90,2.007,140,3.959,345,2.929,346,5.319,2752,5.786]],["keywords//docs/development/version-control/manage-source-code-versions-with-subversion/",[1211,5.445,2656,6.49,2752,6.122,2753,7.049]],["toc//docs/development/version-control/manage-source-code-versions-with-subversion/",[0,0.85,9,0.052,14,0.595,15,2.546,16,1.26,17,0.982,18,0.988,35,0.37,49,0.675,90,2.394,119,1.477,140,2.514,164,1.21,176,1.741,189,2.191,194,2.953,217,1.948,235,2.953,258,0.898,282,4.888,290,3.091,368,1.803,405,2.581,476,2.005,485,2.656,535,3.377,651,2.527,896,2.482,948,2.953,1033,2.051,1071,2.893,1296,3.895,2752,8.846,2754,4.23]],["deprecated//docs/development/version-control/manage-source-code-versions-with-subversion/",[839,0.476]],["title//docs/tools-reference/tools/schedule-tasks-with-cron/",[21,4.575,236,5.63,577,6.545]],["keywords//docs/tools-reference/tools/schedule-tasks-with-cron/",[20,3.056,21,3.019,139,1.624,339,1.437,723,3.019,2755,5.207,2756,4.794,2757,5.207]],["toc//docs/tools-reference/tools/schedule-tasks-with-cron/",[14,1.376,19,3.188,21,6.477,38,2.139,119,2.11,170,4.219,214,5.249,381,2.1,487,3.638,576,5.585,636,4.055,717,5.564,879,4.668,1101,4.534,1837,4.312,2738,7.803,2756,7.803]],["deprecated//docs/tools-reference/tools/schedule-tasks-with-cron/",[]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.296,129,1.871,259,1.71,1168,2.571,2219,2.336]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[31,1.371,1527,4.137,1528,4.73,2749,6.49]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[9,0.061,35,0.626,38,2.693,60,2.301,65,2.301,259,1.953,261,2.822,339,2.099,544,4.053,1168,2.936,2291,4.931,2378,5.709]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/",[839,0.476]],["title//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.202,61,1.111,259,1.587,1168,2.385,2219,2.167,2341,2.488]],["keywords//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[31,1.371,1527,4.137,1528,4.73,2346,6.122]],["toc//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[9,0.078,29,1.119,35,0.423,60,2.252,65,2.252,259,1.912,261,2.762,385,1.075,412,1.832,544,3.967,1168,2.874,1352,1.106,2291,4.826,2378,5.588]],["deprecated//docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/",[839,0.476]],["title//docs/tools-reference/linux-system-administration-basics/",[38,2.556,139,2.253,339,1.993,723,4.188]],["keywords//docs/tools-reference/linux-system-administration-basics/",[139,1.624,217,2.399,767,2.207,790,2.544,803,3.561,2758,5.207,2759,4.794,2760,5.207]],["toc//docs/tools-reference/linux-system-administration-basics/",[9,0.018,11,0.247,16,0.676,29,1.136,35,0.222,38,0.803,43,1.316,49,1.293,61,0.408,65,1.559,84,1.702,90,1.553,109,2.731,129,0.637,139,1.608,164,1.119,168,3.769,169,2.488,195,2.791,203,1.131,204,1.882,207,0.95,217,1.045,223,2.625,232,4.115,258,0.313,273,1.208,292,1.155,302,1.271,339,1.908,368,2.198,385,0.327,391,1.075,411,2.125,412,0.558,437,1.404,490,1.384,491,1.702,610,2.731,636,1.522,647,1.702,652,2.456,662,0.95,683,1.658,685,1.882,688,0.998,700,1.619,766,1.841,902,1.619,918,3.123,1016,1.165,1057,1.658,1069,1.702,1071,1.552,1078,1.658,1316,1.186,1404,4.041,1452,1.971,1552,1.619,1621,1.971,1876,1.812,1890,1.971,2148,1.971,2411,1.702,2447,1.971,2458,1.971,2548,2.089,2638,1.882,2639,2.089,2761,2.089,2762,2.269]],["deprecated//docs/tools-reference/linux-system-administration-basics/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[49,0.986,127,1.982,164,1.767,258,0.851,263,3.825,320,3.146]],["keywords//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[258,1.065,1870,5.011,2476,6.174]],["toc//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[9,0.077,35,0.594,40,2.365,49,0.933,187,2.749,201,1.505,217,2.691,258,1.324,262,2.62,332,3.851,334,2.447,379,1.606,385,0.843,388,3.388,472,2.811,633,3.669,913,4.384,952,2.637,1352,0.868,1552,4.169,2383,4.384]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-fedora-12/",[839,0.476]],["title//docs/uptime/analytics/piwik-on-debian-5-lenny/",[61,1.298,2061,4.093,2219,2.533,2341,2.908]],["keywords//docs/uptime/analytics/piwik-on-debian-5-lenny/",[51,3.559,110,3.559,2061,3.394,2062,4.378,2763,5.99,2764,5.99]],["toc//docs/uptime/analytics/piwik-on-debian-5-lenny/",[9,0.054,29,1.012,35,0.519,49,1.075,100,2.021,164,1.926,201,1.735,203,1.947,259,1.729,319,1.651,379,1.852,411,3.659,537,4.365,706,2.021,789,1.947,807,4.607,1038,2.548,2061,5.175]],["deprecated//docs/uptime/analytics/piwik-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[42,2.049,129,1.736,1271,3.542,1977,4.005,2016,3.627,2219,2.167]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[9,0.051,14,0.896,29,0.957,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,412,2.162,490,2.255,723,3.694,790,3.113,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/",[839,0.476]],["title//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[61,1.111,662,2.589,2219,2.167,2341,2.488,2496,5.691,2765,5.368]],["keywords//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[759,3.119,2108,5.628,2765,6.122,2766,7.049]],["toc//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[9,0.085,14,0.985,35,0.398,100,2.102,203,2.025,302,3.925,319,1.717,385,1.011,706,2.102,789,2.025,1038,2.649,1352,1.04,2765,9.804]],["deprecated//docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/apache/apache-access-control/",[258,1.087,476,3.74,651,3.06]],["keywords//docs/web-servers/apache/apache-access-control/",[217,2.566,258,0.767,319,1.366,711,2.789,1556,4.839,2767,5.571,2768,5.571]],["toc//docs/web-servers/apache/apache-access-control/",[17,1.693,18,1.704,217,4.437,258,1.005,336,3.848,476,4.566,521,4.391,651,3.737,761,3.651,952,3.292,1071,4.989,1509,5.824,2431,6.716]],["deprecated//docs/web-servers/apache/apache-access-control/",[]],["title//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[210,3.09,258,0.918,326,4.065,476,3.158,651,2.584]],["keywords//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[217,2.983,258,0.892,319,1.587,711,3.242,1556,5.625]],["toc//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[19,3.848,177,3.337,210,3.384,326,5.878,476,5.437,487,4.391,635,4.281,651,4.45,2232,6.716]],["deprecated//docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/",[]],["title//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[61,1.111,90,1.862,380,4.005,708,3.771,2219,2.167,2341,2.488]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[708,3.655,2246,6.724,2247,4.782,2248,4.782,2769,5.99]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[0,1.007,5,1.221,9,0.078,31,1.713,33,2.099,35,0.639,38,1.774,42,1.661,60,1.515,65,1.515,100,1.504,203,1.449,258,0.69,319,1.229,339,1.383,385,0.723,393,3.499,706,1.504,708,5.375,709,2.84,766,1.79,789,1.449,1038,1.895,1139,3.499,1352,0.744]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,189,2.986,1998,3.196,2219,2.021,2341,2.321]],["keywords//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[258,0.971,1500,5.628,1998,3.908,2000,5.03]],["toc//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[33,4.709,262,3.565,327,2.907,385,1.147,388,4.611,391,3.769,755,5.241,1163,6.218,1352,1.181]],["deprecated//docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[11,0.672,90,1.862,380,4.005,708,3.771,2406,2.908,2407,2.867]],["keywords//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[708,3.952,2246,5.171,2247,5.171,2248,5.171,2770,6.476]],["toc//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[0,0.979,5,1.187,9,0.077,29,0.732,31,1.685,33,2.041,35,0.611,42,1.615,60,1.473,65,2.193,100,1.462,203,1.409,258,0.671,282,2.245,319,1.195,327,1.781,385,0.703,393,3.402,412,1.198,706,1.462,708,5.287,709,2.761,766,1.74,789,1.409,1038,1.843,1139,3.402,1352,0.724]],["deprecated//docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.242,127,1.982,129,1.736,776,2.326,795,3.771,796,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[127,2.077,129,1.819,1141,4.859,1142,5.171,2771,5.963]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[0,1.849,17,2.135,18,2.149,776,3.462,795,5.613,796,4.723]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/",[]],["title//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.242,11,0.672,61,1.111,776,2.326,795,3.771,796,3.174]],["keywords//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[11,0.704,61,1.164,1141,4.859,1142,5.171,2771,5.963]],["toc//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[0,1.849,17,2.135,18,2.149,776,3.462,795,5.613,796,4.723]],["deprecated//docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/",[]],["title//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[620,4.754,687,2.495,776,2.507,795,4.065,796,3.421]],["keywords//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[1141,4.859,1142,5.171,2772,6.476,2773,5.625,2774,6.476]],["toc//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[0,1.757,9,0.07,45,3.894,46,3.844,776,3.29,795,5.334,796,4.489,1288,6.238]],["deprecated//docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/",[839,0.476]],["title//docs/platform/linode-beginners-guide/",[89,2.413,1161,5.92,1530,7.265]],["keywords//docs/platform/linode-beginners-guide/",[1667,5.628,2759,6.49,2775,7.049,2776,7.049]],["toc//docs/platform/linode-beginners-guide/",[2,2.125,9,0.032,29,0.599,32,2.544,38,1.412,43,2.314,60,1.207,64,2.416,89,3.52,139,1.244,153,1.722,169,1.225,176,1.643,201,1.028,225,3.701,264,2.729,292,2.031,317,3.186,476,1.891,490,1.412,530,2.994,588,3.186,635,3.655,688,1.755,700,2.847,744,2.469,766,1.425,789,1.154,955,3.466,1032,2.729,1033,1.935,1778,3.082,1834,5.409,1873,3.466,2127,3.466,2441,3.466,2777,3.99,2778,3.99,2779,6.228,2780,3.99,2781,3.99]],["deprecated//docs/platform/linode-beginners-guide/",[]],["title//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[687,2.705,776,2.719,1139,5.043,1140,4.536]],["keywords//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[1288,5.03,1699,4.821,2773,6.122,2782,7.049]],["toc//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[0,1.714,9,0.068,220,4.543,776,4.009,796,4.38,951,4.543,1144,5.955,1288,6.087]],["deprecated//docs/security/ssl/obtaining-a-commercial-ssl-certificate/",[839,0.476]],["title//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[14,0.869,189,3.202,391,2.929,544,3.292,2783,6.181,2784,5.691]],["keywords//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[1288,5.03,1699,4.821,2773,6.122,2784,6.49]],["toc//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[9,0.078,761,4.858,776,3.652,1288,6.925]],["deprecated//docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/",[]],["title//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[141,3.584,169,1.898,351,3.721,630,3.673,1032,4.227,2785,5.368]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[1717,4.782,1719,4.494,2785,5.202,2786,5.99,2787,5.99,2788,5.99]],["toc//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[9,0.061,14,1.07,153,4.274,250,5.878,251,3.505,385,1.098,655,3.411,952,3.434,1139,5.312,1352,1.13,2785,8.601,2789,7.609]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/",[839,0.476]],["title//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[11,0.672,68,4.517,169,1.898,1032,4.227,1716,4.774,2406,2.908]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[1716,4.627,1717,4.782,1718,5.515,1719,4.494,1720,5.515,1721,5.515]],["toc//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[9,0.065,14,1.144,153,3.511,250,6.285,251,3.748,385,1.174,655,3.648,952,3.672,1352,1.208,1716,7.987]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[61,1.197,766,2.379,2004,3.959,2219,2.336,2341,2.682]],["keywords//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[2004,3.849,2007,4.429,2008,4.859,2790,6.476,2791,5.625]],["toc//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[9,0.057,29,1.074,327,2.612,381,3.303,385,1.031,412,1.757,933,5.1,952,3.225,981,4.557,1352,1.061,1628,4.422,1804,4.422,2004,6.344,2009,5.223]],["deprecated//docs/email/citadel/email-with-citadel-on-debian-5-lenny/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[11,0.724,766,2.379,2004,3.959,2745,4.39,2746,4.39]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[2004,3.849,2007,4.429,2008,4.859,2791,5.625,2792,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[9,0.051,29,1.321,35,0.362,65,1.926,327,2.329,345,2.801,381,3.056,385,0.919,412,1.567,706,1.912,933,4.546,952,2.875,981,4.062,1352,0.946,1628,3.942,1804,3.942,2004,5.982,2009,4.656,2056,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[11,0.724,766,2.379,2004,3.959,2406,3.135,2407,3.09]],["keywords//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[2004,3.849,2007,4.429,2008,4.859,2791,5.625,2793,6.476]],["toc//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[9,0.051,29,1.321,35,0.362,65,1.926,327,2.329,345,2.801,381,3.056,385,0.919,412,1.567,706,1.912,933,4.546,952,2.875,981,4.062,1352,0.946,1628,3.942,1804,3.942,2004,5.982,2009,4.656,2056,4.922]],["deprecated//docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2794,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[1979,3.221,1980,3.221,1981,3.167,1982,3.167,2016,2.869,2020,3.667,2021,3.221,2795,4.888,2796,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[9,0.048,14,0.85,35,0.343,38,2.139,119,2.11,177,2.765,201,1.557,282,2.784,306,3.547,327,2.209,350,3.504,379,1.662,385,0.872,412,1.486,490,2.139,723,3.504,790,2.953,1352,0.898,2016,5.743,2022,3.25,2025,4.534,2026,4.219,2027,3.916,2057,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.448,38,2.792,258,1.087]],["keywords//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[35,0.368,217,2.983,258,0.892,711,3.242,1986,5.963]],["toc//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[0,1.529,35,0.432,38,2.693,61,1.367,169,3.041,201,1.96,235,5.312,258,1.048,379,2.092,683,5.561,961,6.075,970,6.312,2458,6.609]],["deprecated//docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/",[]],["title//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[258,0.995,388,4.188,913,5.42,2383,5.42]],["keywords//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[258,0.825,388,3.473,636,4.019,1703,3.948,2383,4.494,2797,5.515]],["toc//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[17,1.846,18,1.858,346,6.349,388,5.908,636,5.336,755,5.241,913,7.645,1437,7.322,2383,5.967,2400,5.675]],["deprecated//docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/",[]],["title//docs/troubleshooting/troubleshooting-common-apache-issues/",[194,5.043,195,5.155,258,0.995,790,3.53]],["keywords//docs/troubleshooting/troubleshooting-common-apache-issues/",[258,0.971,790,3.444,1703,4.646,2798,7.049]],["toc//docs/troubleshooting/troubleshooting-common-apache-issues/",[35,0.356,170,4.368,201,1.612,258,1.484,289,4.996,327,2.288,379,1.721,381,2.175,537,4.055,688,3.818,790,4.243,1016,5.12,1410,4.834,1917,5.762,2727,5.762,2799,6.258,2800,6.258]],["deprecated//docs/troubleshooting/troubleshooting-common-apache-issues/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,258,0.794,320,2.934,2406,2.712,2407,2.674]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[258,0.825,711,2.998,1999,4.378,2801,5.99,2802,5.99,2803,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[9,0.079,35,0.561,38,2.176,40,2.489,201,1.584,210,2.852,258,1.361,262,3.846,302,3.446,320,3.13,334,2.575,339,1.696,379,1.69,385,0.887,472,2.958,685,2.958,1352,0.913,1480,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2406,2.712,2407,2.674]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[1055,1.639,1372,2.734,1932,3.267,2289,2.44,2564,3.363,2565,3.363,2566,3.363,2567,3.363,2695,4.009,2804,4.354,2805,4.009]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[11,0.627,42,1.911,1271,3.303,1976,3.425,1977,3.735,2406,2.712,2407,2.674]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2806,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[11,0.724,49,1.063,759,2.948,2406,3.135,2407,3.09]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[1656,5.003,2102,5.003,2700,5.372,2807,6.476,2808,6.476]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,210,2.582,258,0.767,259,1.429,339,1.536,379,2.198,685,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2406,2.712,2407,2.674]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[1465,4.646,2087,5.445,2088,5.152,2809,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-9-10-karmic/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2406,2.712,2407,2.674]],["keywords//docs/databases/postgresql/ubuntu-9-10-karmic/",[30,2.585,1065,3.655,1160,4.019,2810,5.99,2811,5.99,2812,5.99]],["toc//docs/databases/postgresql/ubuntu-9-10-karmic/",[0,2.004,5,2.115,9,0.07,29,0.94,30,4.303,35,0.356,119,2.185,204,3.011,227,4.055,319,1.534,385,0.903,651,2.427,952,2.824,1066,3.586,1070,4.124,1352,0.929,2094,4.834,2095,4.834]],["deprecated//docs/databases/postgresql/ubuntu-9-10-karmic/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[11,0.627,49,0.92,164,1.648,292,2.934,2059,3.163,2406,2.712,2407,2.674]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[1870,4.196,2059,3.553,2700,5.372,2813,6.476,2814,6.476]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[9,0.053,29,0.993,35,0.376,65,1.999,121,4.09,145,3.365,319,2.21,345,2.907,385,0.954,412,1.626,651,3.497,744,5.579,803,6.167,1016,3.394,1352,0.982,2059,4.947]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/",[839,0.476]],["title//docs/networking/ssh/using-sshfs-on-linux/",[14,0.937,187,3.135,204,3.205,645,4.47,2815,5.146]],["keywords//docs/networking/ssh/using-sshfs-on-linux/",[2815,5.445,2816,7.049,2817,7.049,2818,7.049]],["toc//docs/networking/ssh/using-sshfs-on-linux/",[9,0.052,14,0.912,16,1.932,29,0.975,45,2.89,46,2.853,65,1.962,139,2.024,158,3.248,169,1.992,178,4.015,187,3.053,204,4.283,251,2.989,339,1.79,645,6.82,655,2.909,706,1.947,2815,5.012]],["deprecated//docs/networking/ssh/using-sshfs-on-linux/",[]],["title//docs/web-servers/lamp/lamp-server-on-centos-5/",[49,1.153,129,2.029,759,3.197,2219,2.533]],["keywords//docs/web-servers/lamp/lamp-server-on-centos-5/",[129,2.172,759,3.422,2699,6.415]],["toc//docs/web-servers/lamp/lamp-server-on-centos-5/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-centos-5/",[839,0.476]],["title//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[145,3.677,169,2.218,1032,4.941,2819,6.274]],["keywords//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[1717,5.171,1719,4.859,2819,5.625,2820,6.476,2821,6.476]],["toc//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[9,0.072,14,1.26,385,1.293,1139,6.258,1352,1.331,2819,9.54]],["deprecated//docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.046,49,0.92,61,1.036,2022,3.1,2096,3.383,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2822,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2706,3.868,2707,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2823,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.046,11,0.627,49,0.92,2022,3.1,2096,3.383,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[2022,3.221,2096,3.515,2098,4.494,2099,4.494,2100,4.494,2824,5.99]],["toc//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[9,0.057,14,1.005,35,0.406,49,1.141,282,3.292,283,5.1,327,2.612,385,1.031,490,2.529,684,3.806,789,2.066,1352,1.061,2022,3.843,2027,4.631,2096,5.577,2101,5.362]],["deprecated//docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2706,3.868,2707,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[1979,3.432,1980,3.432,1981,3.374,1982,3.374,2016,3.056,2020,3.907,2021,3.432,2825,5.207]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[9,0.051,14,0.896,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,385,0.919,412,1.567,490,2.255,723,3.694,790,3.113,1352,0.946,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[11,0.627,42,1.911,1271,3.303,1977,3.735,2016,3.383,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[1979,3.432,1980,3.432,1981,3.374,1982,3.374,2016,3.056,2020,3.907,2021,3.432,2826,5.207]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[9,0.048,14,0.85,35,0.343,38,2.139,119,2.11,177,2.765,201,1.557,282,2.784,306,3.547,327,2.209,350,3.504,379,1.662,385,0.872,412,1.486,490,2.139,723,3.504,790,2.953,1352,0.898,2016,5.743,2022,3.25,2025,4.534,2026,4.219,2027,3.916,2057,4.055]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[49,1.063,164,1.905,258,0.918,388,3.862,636,4.47]],["keywords//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[258,0.892,388,3.755,636,4.346,2703,5.625,2797,5.963]],["toc//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[17,2.081,18,2.094,388,5.197,636,7.37,1410,6.925,2827,8.964]],["deprecated//docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/",[]],["title//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[42,1.911,61,1.036,1271,3.303,1977,3.735,2016,3.383,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[1979,3.672,1980,3.672,1981,3.61,1982,3.61,2016,3.269,2020,4.18,2021,3.672]],["toc//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[9,0.051,14,0.896,35,0.362,38,2.255,119,2.224,177,2.915,201,1.641,306,3.739,350,3.694,379,1.752,385,0.919,412,1.567,490,2.255,723,3.694,790,3.113,1352,0.946,2016,5.908,2022,3.426,2025,4.78,2026,4.447,2027,4.128]],["deprecated//docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[61,1.111,1991,4.314,1992,4.227,1993,3.771,2219,2.167,2341,2.488]],["keywords//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[259,1.81,1690,3.317,1993,4.301,1994,5.152]],["toc//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[35,0.462,64,3.156,100,2.441,203,2.352,319,1.994,385,1.174,573,5.806,789,2.352,1038,3.077,1352,1.208,1993,4.965]],["deprecated//docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[9,0.058,11,0.785,62,3.53,2828,6.274]],["keywords//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[2039,4.655,2828,6.716,2829,7.733]],["toc//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[4,1.855,35,0.605,64,3.309,573,6.087,1033,4.136,2828,10.088]],["deprecated//docs/websites/wikis/install-mediawiki-on-ubuntu-1604/",[]],["title//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.063,207,3.304,679,4.814]],["keywords//docs/websites/cms/managing-web-content-with-drupal-7/",[259,1.43,679,3.399,680,3.354,1170,3.672,1690,2.621,1710,5.13,2032,4.18]],["toc//docs/websites/cms/managing-web-content-with-drupal-7/",[9,0.067,14,1.171,29,1.251,35,0.473,64,3.231,207,3.488,679,7.01,706,2.499]],["deprecated//docs/websites/cms/managing-web-content-with-drupal-7/",[]],["title//docs/web-servers/lamp/lamp-server-on-fedora-11/",[49,1.153,127,2.317,759,3.197,2830,7.224]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-11/",[1789,5.152,1790,5.289,2831,7.049,2832,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-11/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-11/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-fedora-12/",[49,1.153,127,2.317,263,4.47,759,3.197]],["keywords//docs/web-servers/lamp/lamp-server-on-fedora-12/",[1789,5.152,1790,5.289,2833,7.049,2834,7.049]],["toc//docs/web-servers/lamp/lamp-server-on-fedora-12/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,258,1.101,259,1.429,339,1.536,379,2.198,537,3.607]],["deprecated//docs/web-servers/lamp/lamp-server-on-fedora-12/",[839,0.476]],["title//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[61,1.197,258,0.918,1172,3.733,2219,2.336,2341,2.682]],["keywords//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[12,3.588,2337,5.847,2338,6.49,2339,6.49]],["toc//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[9,0.075,12,3.565,14,0.985,29,1.052,60,2.118,80,2.9,223,4.7,258,0.965,312,4.162,327,2.56,385,1.011,412,1.722,1172,5.923,1352,1.04,2340,5.255]],["deprecated//docs/development/frameworks/apache-tomcat-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.046,11,0.627,258,0.794,1172,3.23,1184,2.839,2706,3.868,2707,3.799]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[12,3.588,1975,5.628,2337,5.847,2835,7.049]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[9,0.077,12,3.713,14,1.025,60,2.205,80,3.02,223,4.895,258,1.005,312,4.335,327,2.666,385,1.052,1172,6.044,1352,1.083,2340,5.473]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2706,3.868,2707,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2836,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[14,0.937,145,3.391,153,2.875,655,2.987,2067,4.869]],["keywords//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[2067,5.651,2837,7.733,2838,7.733]],["toc//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[9,0.058,153,3.148,172,2.844,201,1.879,204,4.634,350,4.229,381,2.535,655,4.319,948,5.092,1096,4.18,1097,4.391,1464,5.824,2067,7.04]],["deprecated//docs/networking/ssh/ssh-connections-using-putty-on-windows/",[]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[11,0.627,42,1.911,1271,3.303,1976,3.425,1977,3.735,2745,3.799,2746,3.799]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[1976,2.905,1978,3.572,1979,3.221,1980,3.221,1981,3.167,1982,3.167,2021,3.221,2320,4.055,2839,4.888]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[42,1.911,61,1.036,1271,3.303,1976,3.425,1977,3.735,2219,2.021,2341,2.321]],["keywords//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[1976,3.094,1978,3.806,1979,3.432,1980,3.432,1981,3.374,1982,3.374,2021,3.432,2508,4.794]],["toc//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[9,0.083,29,1.222,35,0.462,57,4.898,325,3.915,385,1.174,706,2.441,1352,1.208,1976,6.144]],["deprecated//docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[11,0.627,766,2.059,1023,2.428,1370,3.799,2350,4.602,2706,3.868,2707,3.799]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[1587,5.03,2354,5.628,2355,5.628,2609,6.49]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[9,0.078,65,2.252,100,2.235,169,2.287,203,2.153,319,1.826,339,2.055,385,1.075,706,2.93,789,2.153,1038,2.817,1352,1.106,1370,4.909]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[4,1.253,11,0.627,766,2.059,1055,2.169,2289,3.23,2745,3.799,2746,3.799]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2805,4.501]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[0,1.037,4,2.145,9,0.041,14,1.064,16,2.253,29,1.136,35,0.561,60,1.56,65,1.56,119,2.641,261,1.913,379,1.418,385,0.744,391,3.586,435,2.376,687,1.932,767,2.186,776,1.941,1055,3.371,1352,0.766,1588,3.148,2235,3.528,2289,2.891]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,3.847,14,1.016,1950,6.651,2815,5.58]],["keywords//docs/security/backups/using-rdiff-backup-with-sshfs/",[2815,5.445,2840,7.049,2841,7.049,2842,7.049]],["toc//docs/security/backups/using-rdiff-backup-with-sshfs/",[2,5.803,8,5.199,20,4.371,35,0.619,49,1.189,352,5.315,645,4.998,651,2.889,655,3.339,2815,5.754,2843,7.448]],["deprecated//docs/security/backups/using-rdiff-backup-with-sshfs/",[]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[11,0.627,49,0.92,164,1.648,292,2.934,2059,3.163,2745,3.799,2746,3.799]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[1870,4.568,2059,3.867,2844,7.049,2845,6.122]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[9,0.055,35,0.39,65,2.077,121,4.25,145,3.496,319,2.268,345,3.02,385,0.991,651,3.589,744,5.726,803,6.329,1016,3.526,1352,1.02,2059,5.077]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[129,1.736,766,2.207,1023,2.604,1370,4.073,2219,2.167,2350,4.935]],["keywords//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[1587,5.03,2354,5.628,2355,5.628,2846,7.049]],["toc//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[9,0.08,65,2.351,100,2.334,169,2.388,203,2.248,319,1.906,339,2.146,706,3.014,789,2.248,1038,2.941,1370,5.126]],["deprecated//docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/",[839,0.476]],["title//docs/databases/postgresql/centos-5/",[5,1.505,14,0.869,30,2.667,129,1.736,1063,3.357,2219,2.167]],["keywords//docs/databases/postgresql/centos-5/",[30,3.042,1065,4.301,1160,4.73,2847,7.049]],["toc//docs/databases/postgresql/centos-5/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/centos-5/",[839,0.476]],["title//docs/databases/postgresql/fedora-12/",[5,1.505,14,0.869,30,2.667,127,1.982,263,3.825,1063,3.357]],["keywords//docs/databases/postgresql/fedora-12/",[1065,4.718,1160,5.189,2848,7.733]],["toc//docs/databases/postgresql/fedora-12/",[0,2.062,5,2.196,9,0.053,29,0.993,30,4.428,35,0.376,119,2.308,204,3.18,227,4.283,319,1.62,385,0.954,651,2.564,952,2.983,1066,3.788,1070,4.357,1352,0.982]],["deprecated//docs/databases/postgresql/fedora-12/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-8-04-hardy/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2706,3.868,2707,3.799]],["keywords//docs/databases/postgresql/ubuntu-8-04-hardy/",[30,3.042,1065,4.301,1160,4.73,2849,6.49]],["toc//docs/databases/postgresql/ubuntu-8-04-hardy/",[0,2.168,5,1.776,9,0.058,30,4.654,35,0.415,119,2.547,385,1.39,1066,4.18,1070,4.807,1352,1.431]],["deprecated//docs/databases/postgresql/ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/postgresql/ubuntu-9-04-jaunty/",[5,1.404,11,0.627,14,0.81,30,2.488,1063,3.131,2745,3.799,2746,3.799]],["keywords//docs/databases/postgresql/ubuntu-9-04-jaunty/",[30,3.042,1065,4.301,1160,4.73,2849,6.49]],["toc//docs/databases/postgresql/ubuntu-9-04-jaunty/",[0,2.213,5,1.853,9,0.061,30,4.751,35,0.432,119,2.657,385,1.098,1066,4.361,1070,5.015,1352,1.13]],["deprecated//docs/databases/postgresql/ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[4,1.253,61,1.036,766,2.059,1055,2.169,2219,2.021,2289,3.23,2341,2.321]],["keywords//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[1055,1.839,1372,3.069,1932,3.667,2289,2.739,2564,3.776,2565,3.776,2566,3.776,2567,3.776,2850,4.888]],["toc//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[0,1.007,4,2.115,9,0.04,14,1.041,16,2.206,29,1.323,35,0.553,60,1.515,65,1.515,119,2.586,261,1.859,379,1.378,385,0.723,391,3.51,412,1.233,435,2.309,687,1.877,767,2.124,776,1.886,1055,3.315,1352,0.744,1588,3.058,2235,3.428,2289,2.809]],["deprecated//docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[61,1.111,258,0.851,1303,2.847,2219,2.167,2341,2.488,2582,4.935]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[39,2.807,258,0.971,1303,3.247,2583,5.628]],["toc//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[9,0.056,14,0.985,29,1.052,35,0.398,39,2.789,172,2.731,189,3.629,201,2.415,258,0.965,297,3.12,385,1.011,412,1.722,712,3.449,1303,4.319,1352,1.04,1425,4.162]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.672,258,0.851,1303,2.847,2582,4.935,2706,4.147,2707,4.073]],["keywords//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[11,0.606,39,2.219,258,0.767,1303,2.566,2583,4.448,2707,3.672,2851,5.571]],["toc//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[9,0.074,14,0.966,35,0.39,39,2.735,64,2.664,172,2.678,189,3.558,201,2.383,258,0.946,297,3.059,385,0.991,712,3.382,1303,4.82,1352,1.02,1425,4.081]],["deprecated//docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,292,2.934,2059,3.163,2219,2.021,2341,2.321]],["keywords//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[1870,4.568,2059,3.867,2594,5.445,2704,6.49]],["toc//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[9,0.058,35,0.415,121,4.514,145,3.713,319,2.361,385,1.052,651,3.737,744,5.961,803,6.588,1352,1.083,2059,5.285]],["deprecated//docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[74,3.044,101,2.929,102,4.637,381,2.148,916,3.627,1573,4.41]],["keywords//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[850,5.289,851,5.03,1574,5.628,1575,5.628]],["toc//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[11,1.054,61,1.743,127,1.905,129,2.352,207,2.488,280,3.164,562,3.078,1023,3.528,1184,2.926,1246,4.342,1563,3.577,1706,2.564,1801,3.051,2130,2.646,2202,2.859,2219,2.084,2265,2.564,2852,5.941,2853,5.941,2854,5.941,2855,5.941]],["deprecated//docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/",[839,0.476]],["title//docs/tools-reference/tools/introduction-to-rsync/",[146,5.1,1944,6.939]],["keywords//docs/tools-reference/tools/introduction-to-rsync/",[2,2.967,6,4.839,895,3.61,1517,4.839,1944,4.448,2662,5.13,2856,5.571]],["toc//docs/tools-reference/tools/introduction-to-rsync/",[435,3.929,948,5.955,1944,9.273,2857,8.53,2858,8.53,2859,8.53,2860,8.53]],["deprecated//docs/tools-reference/tools/introduction-to-rsync/",[]],["title//docs/databases/postgresql/debian-5-lenny/",[5,1.404,14,0.81,30,2.488,61,1.036,1063,3.131,2219,2.021,2341,2.321]],["keywords//docs/databases/postgresql/debian-5-lenny/",[30,3.042,1065,4.301,1160,4.73,2861,7.049]],["toc//docs/databases/postgresql/debian-5-lenny/",[0,2.083,5,1.641,9,0.073,29,1.012,30,4.472,35,0.383,119,2.352,227,4.365,385,0.972,952,3.04,1066,3.86,1070,4.44,1352,1,2094,5.204,2095,5.204]],["deprecated//docs/databases/postgresql/debian-5-lenny/",[839,0.476]],["title//docs/development/version-control/how-to-configure-git/",[80,3.266,138,4.051,481,5.2]],["keywords//docs/development/version-control/how-to-configure-git/",[11,0.501,61,0.828,138,2.365,1316,2.408,1511,2.85,1630,4,1631,3.677,1632,3.677,1633,3.82,2862,4.606]],["toc//docs/development/version-control/how-to-configure-git/",[35,0.423,38,2.636,138,5.595,204,3.584,215,3.967,282,4.499,368,3.175,435,4.499,449,6.179,616,5.444,1538,6.469]],["deprecated//docs/development/version-control/how-to-configure-git/",[]],["title//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.053,138,3.421,139,2.078,141,3.862,145,3.391]],["keywords//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[138,3.325,1630,5.625,1631,5.171,1632,5.171,1633,5.372]],["toc//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[9,0.074,80,3.808,138,6.167,146,5.398]],["deprecated//docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/",[]],["title//docs/tools-reference/introduction-to-linux-concepts/",[139,2.461,146,4.63,605,6.095]],["keywords//docs/tools-reference/introduction-to-linux-concepts/",[139,2.412,1815,5.973,2863,7.733]],["toc//docs/tools-reference/introduction-to-linux-concepts/",[9,0.067,22,2.28,49,0.596,80,2.449,84,2.803,89,1.809,100,1.121,101,1.771,119,1.304,139,2.836,153,1.612,169,1.816,181,3.1,187,4.279,281,2.886,319,0.916,381,1.299,382,2.421,405,3.609,435,1.721,445,2.346,481,2.463,521,2.249,588,2.983,652,2.346,691,2.886,700,2.666,789,2.629,970,3.1,1352,0.555,1463,3.245,1476,3.245,1683,3.245,1783,4.906,1815,2.886,1966,3.245,2140,3.44,2864,5.914,2865,3.737,2866,3.737,2867,3.737]],["deprecated//docs/tools-reference/introduction-to-linux-concepts/",[]],["title//docs/tools-reference/linux-users-and-groups/",[119,2.755,139,2.461,1071,5.396]],["keywords//docs/tools-reference/linux-users-and-groups/",[119,2.091,139,1.868,405,3.655,2549,4.969,2868,5.99,2869,5.99]],["toc//docs/tools-reference/linux-users-and-groups/",[0,1.4,22,2.818,119,3.262,169,2.869,177,2.112,187,3.947,193,3.099,290,3.375,307,3.043,332,3.043,368,1.969,390,2.78,405,6.118,435,3.209,445,4.375,477,2.616,582,3.831,854,4.011,978,4.252,1015,3.687,1071,6.39,1272,3.375,2549,5.779,2553,4.252,2870,4.618]],["deprecated//docs/tools-reference/linux-users-and-groups/",[]],["title//docs/security/recovering-from-a-system-compromise/",[339,2.177,2133,6.853,2134,7.265]],["keywords//docs/security/recovering-from-a-system-compromise/",[2871,7.049,2872,8.67,2873,6.49]],["toc//docs/security/recovering-from-a-system-compromise/",[14,0.929,24,4.541,35,0.376,89,2.758,225,3.928,252,4.831,635,3.879,895,5.843,1474,4.717,1818,5.483,2132,7.48,2490,6.086,2726,6.086,2874,6.61,2875,6.61,2876,6.61]],["deprecated//docs/security/recovering-from-a-system-compromise/",[]],["title//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[61,1.036,258,0.794,320,2.934,687,2.159,776,2.169,2219,2.021,2341,2.321]],["keywords//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[1699,4.821,1704,6.49,1870,4.568,2594,5.445]],["toc//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[0,1.052,9,0.042,14,1.27,35,0.435,220,2.788,258,1.245,385,0.755,687,3.383,761,2.62,776,4.289,795,5.512,796,5.426,951,2.788,1140,3.287,1144,3.655,1352,0.778]],["deprecated//docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[31,1.296,129,1.871,464,3.482,1196,3.548,2219,2.336]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[1197,4.243,1512,4.921,1513,4.362,2877,7.049]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[31,1.202,61,1.111,464,3.231,1196,3.292,2219,2.167,2341,2.488]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[1197,4.243,1512,4.921,1513,4.362,1909,6.122]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[4,1.493,9,0.084,16,2.045,29,1.39,31,1.8,40,2.78,65,2.077,261,2.547,334,2.876,385,0.991,412,1.689,472,3.304,709,3.891,1352,1.02,1841,3.558]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[11,0.627,31,1.121,464,3.013,1184,2.839,1196,3.07,2706,3.868,2707,3.799]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[1197,4.243,1512,4.921,1513,4.362,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[11,0.672,31,1.202,464,3.231,1196,3.292,2745,4.073,2746,4.073]],["keywords//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[1197,4.655,1512,5.398,1513,4.785]],["toc//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[4,1.554,9,0.086,16,2.128,29,1.074,31,1.848,40,2.893,65,2.161,261,2.65,334,2.993,385,1.031,472,3.438,709,4.049,1352,1.061,1841,3.702]],["deprecated//docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[9,0.053,89,2.038,99,3.693,101,3.158,1522,5.786]],["keywords//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[909,6.415,910,6.716,1029,7.12]],["toc//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[0,1.304,16,1.932,29,0.975,35,0.369,80,2.686,89,2.723,244,3.303,379,2.794,525,4.204,587,6.382,649,3.856,655,2.909,895,4.204,1277,8.197,1524,4.868,2878,6.488]],["deprecated//docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/",[839,0.476]],["title//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[11,0.672,258,0.851,464,3.231,1196,3.292,2745,4.073,2746,4.073]],["keywords//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[1197,4.243,1513,4.362,1910,5.289,2308,5.445]],["toc//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[9,0.062,35,0.442,47,2.74,177,3.558,189,4.029,200,4.406,258,1.071,297,3.464,435,3.582,709,5.691,919,5.429,1196,4.142]],["deprecated//docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[11,0.587,49,0.862,164,1.544,258,0.744,320,2.749,1184,2.66,2706,3.624,2707,3.559]],["keywords//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[258,0.825,711,2.998,1999,4.378,2879,5.99,2880,5.99,2881,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[9,0.079,35,0.561,38,2.176,40,2.489,201,1.584,210,2.852,258,1.361,262,3.846,302,3.446,320,3.13,334,2.575,339,1.696,379,1.69,385,0.887,472,2.958,685,2.958,1352,0.913,1480,4.292]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,1.344,5,1.505,14,0.869,129,1.736,1063,3.357,2219,2.167]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[1465,5.096,2088,5.651,2882,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[4,2.536,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-centos-5/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,1.344,5,1.505,14,0.869,127,1.982,263,3.825,1063,3.357]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[1843,5.973,1844,6.415,2883,7.733]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[4,2.536,9,0.061,14,1.07,35,0.563,339,2.099,385,1.098,950,4.709,951,4.053,952,3.434,1352,1.13]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2706,3.868,2707,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[1465,4.646,2087,5.445,2088,5.152,2884,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,1.253,5,1.404,11,0.627,14,0.81,1063,3.131,2745,3.799,2746,3.799]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[1465,4.646,2087,5.445,2088,5.152,2885,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,1.253,5,1.404,14,0.81,61,1.036,1063,3.131,2219,2.021,2341,2.321]],["keywords//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[1465,4.646,2088,5.152,2373,6.49,2886,7.049]],["toc//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[4,2.553,9,0.07,14,1.229,35,0.497,385,1.261,1352,1.298]],["deprecated//docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/",[839,0.476]],["title//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[35,0.328,61,1.036,325,2.773,623,3.799,2219,2.021,2341,2.321,2887,5.764]],["keywords//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[662,2.952,2888,7.049,2889,7.049,2890,7.049]],["toc//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[9,0.074,35,0.523,325,5.368,385,1.327,1352,1.366]],["deprecated//docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/",[839,0.476]],["title//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.05,11,0.672,258,0.851,1172,3.463,2745,4.073,2746,4.073]],["keywords//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[12,3.049,1172,3.357,2337,4.969,2845,5.202,2891,5.99,2892,5.99]],["toc//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[9,0.082,12,4.048,14,1.118,60,2.405,223,5.336,258,1.096,385,1.147,1172,5.71,1352,1.181,2340,5.967]],["deprecated//docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[49,0.986,61,1.111,164,1.767,1163,3.771,2219,2.167,2341,2.488]],["keywords//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[711,3.242,2893,6.476,2894,6.476,2895,6.476,2896,6.476]],["toc//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[9,0.045,29,0.85,35,0.46,40,2.289,61,1.016,166,4.369,167,4.133,175,4.036,177,2.587,201,2.431,379,2.595,381,1.966,385,0.816,412,1.391,659,4.531,1163,4.934,1166,7.023,1167,4.912,1352,0.84,1509,4.515,1775,4.691,1912,5.207]],["deprecated//docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[195,5.155,411,3.923,662,3.025,790,3.53]],["keywords//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[2872,9.214,2873,7.12]],["toc//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[4,1.337,29,1.289,195,6.121,252,4.494,258,0.847,320,3.13,411,6.106,662,2.575,790,3.004,837,4.494,971,4.613,999,5.661,1676,5.34,1804,3.805,2076,5.988,2180,5.101,2897,6.149,2898,6.149]],["deprecated//docs/troubleshooting/troubleshooting-memory-and-networking-issues/",[]],["title//docs/networking/using-the-linode-shell-lish/",[14,1.016,89,2.209,382,4.681,915,5.155]],["keywords//docs/networking/using-the-linode-shell-lish/",[382,4.568,915,5.03,926,4.921,1126,5.152]],["toc//docs/networking/using-the-linode-shell-lish/",[14,1.137,153,2.441,164,1.617,172,2.205,176,2.328,251,2.605,320,2.879,332,3.727,363,3.795,368,2.411,429,4.515,487,3.405,730,4.243,746,4.912,915,7.349,1094,3.665,2899,5.655,2900,5.655,2901,5.655,2902,5.655,2903,5.655,2904,5.655,2905,5.655,2906,5.655,2907,8.086]],["deprecated//docs/networking/using-the-linode-shell-lish/",[]],["title//docs/networking/ssh/using-the-terminal/",[14,1.222,363,5.832]],["keywords//docs/networking/ssh/using-the-terminal/",[2908,7.733,2909,7.733,2910,7.733]],["toc//docs/networking/ssh/using-the-terminal/",[0,1.322,22,2.612,88,3.055,90,1.29,109,2.989,163,2.399,169,2.759,181,5.456,187,4.228,203,1.238,224,3.551,236,3.055,251,1.972,339,1.814,363,2.873,368,3.414,390,3.959,442,3.307,521,2.577,586,3.551,610,6.272,611,3.418,636,2.873,742,2.822,895,2.774,927,3.942,953,3.212,1103,3.718,1750,2.928,1815,3.307,1880,3.551,2411,3.212,2911,4.281,2912,4.281,2913,4.281]],["deprecated//docs/networking/ssh/using-the-terminal/",[]],["title//docs/networking/dns/dns-records-an-introduction/",[146,4.63,489,4.814,490,2.792]],["keywords//docs/networking/dns/dns-records-an-introduction/",[1709,5.847,2914,7.049,2915,7.049,2916,7.049]],["toc//docs/networking/dns/dns-records-an-introduction/",[49,0.948,169,1.824,391,2.816,435,2.737,488,4.929,489,5.109,490,3.726,685,4.029,777,5.471,1238,4.59,1261,4.59,1262,4.744,1404,3.916,1726,4.929,2083,4.064,2761,5.471,2917,5.941,2918,5.471,2919,5.941,2920,5.941,2921,5.941,2922,5.941]],["deprecated//docs/networking/dns/dns-records-an-introduction/",[]],["title//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[49,0.986,129,1.736,164,1.767,258,0.851,320,3.146,2219,2.167]],["keywords//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[258,1.065,1870,5.011,2699,6.415]],["toc//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[9,0.074,29,0.823,35,0.577,40,2.218,49,0.875,187,2.578,201,1.411,210,2.542,217,2.524,258,1.277,262,2.457,332,3.611,334,2.295,379,1.506,385,0.791,388,3.177,412,1.348,472,2.636,633,3.441,685,2.636,913,4.111,952,2.473,1352,0.814,1552,3.91,2383,4.111]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-centos-5/",[839,0.476]],["title//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[49,0.92,61,1.036,164,1.648,258,0.794,320,2.934,2219,2.021,2341,2.321]],["keywords//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[711,2.998,1500,4.782,1913,5.202,2923,5.99,2924,5.99,2925,5.99]],["toc//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[9,0.081,29,0.957,35,0.5,40,2.579,201,1.641,210,2.955,258,1.211,262,3.942,302,3.57,320,3.243,334,2.668,379,1.752,385,0.919,412,1.567,472,3.065,685,3.065,1352,0.946,1480,4.447]],["deprecated//docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/",[839,0.476]],["title//docs/websites/cms/manage-web-content-with-movable-type/",[90,2.007,164,1.905,712,3.281,1238,5.146,2926,6.134]],["keywords//docs/websites/cms/manage-web-content-with-movable-type/",[2927,8.563,2928,8.563]],["toc//docs/websites/cms/manage-web-content-with-movable-type/",[0,1.304,5,1.58,9,0.071,64,2.517,100,1.947,203,1.876,262,2.909,319,1.59,435,2.989,472,3.122,620,4.63,789,1.876,1038,2.454,1238,7.851,2926,9.358,2929,6.488,2930,6.488]],["deprecated//docs/websites/cms/manage-web-content-with-movable-type/",[839,0.476]],["title//docs/networking/dns/dns-manager-overview/",[90,2.376,490,2.792,887,5.766]],["keywords//docs/networking/dns/dns-manager-overview/",[1491,5.13,1492,4.839,1662,5.13,1663,5.13,1709,4.621,1829,4.621,2931,5.571]],["toc//docs/networking/dns/dns-manager-overview/",[14,0.567,16,1.202,22,2.463,29,1.159,45,1.798,46,1.775,49,0.644,80,1.671,84,3.028,90,1.216,176,2.587,232,2.708,273,2.15,385,0.582,390,2.43,391,5.114,481,2.66,489,3.834,490,2.73,491,3.028,615,2.66,652,2.534,685,3.023,790,1.972,1016,2.072,1084,2.95,1404,6.876,1562,3.505,1828,3.348,1829,3.348,1916,3.505,1948,3.505,2918,3.716,2932,4.036,2933,4.036]],["deprecated//docs/networking/dns/dns-manager-overview/",[]],["title//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[49,1.063,61,1.197,759,2.948,2219,2.336,2341,2.682]],["keywords//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[1504,6.415,1894,6.716,2934,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[4,2.272,5,2.015,9,0.084,16,1.74,29,1.243,35,0.627,49,1.321,164,1.671,201,1.505,210,2.71,258,0.805,259,1.5,379,1.606,412,1.437,685,2.811]],["deprecated//docs/web-servers/lamp/lamp-server-on-debian-5-lenny/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[11,0.672,49,0.986,759,2.735,1184,3.044,2706,4.147,2707,4.073]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[1653,7.12,2935,7.733,2936,7.733]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[4,2.256,5,1.992,9,0.083,16,1.712,29,0.863,35,0.666,49,1.305,164,1.644,201,2.107,258,0.792,259,1.475,339,1.586,379,2.249]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/",[839,0.476]],["title//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[11,0.724,49,1.063,759,2.948,2745,4.39,2746,4.39]],["keywords//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[1656,5.973,2102,5.973,2845,6.716]],["toc//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[4,2.223,5,1.947,9,0.082,16,1.658,29,0.836,35,0.66,49,1.276,164,1.592,201,2.059,210,2.582,258,0.767,259,1.429,339,1.536,379,2.198,685,2.678]],["deprecated//docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/",[839,0.476]],["title//docs/tools-reference/linux-package-management/",[65,2.386,90,2.376,139,2.461]],["keywords//docs/tools-reference/linux-package-management/",[281,4.022,691,4.022,1824,4.794,2937,5.207,2938,4.794,2939,4.794,2940,5.207,2941,4.794]],["toc//docs/tools-reference/linux-package-management/",[11,0.371,14,0.773,35,0.194,61,0.613,65,3.331,90,2.943,100,1.024,127,1.094,129,0.958,139,1.715,171,1.751,204,1.641,215,1.817,281,4.248,334,1.429,339,0.941,368,1.454,385,0.492,404,2.333,435,2.533,487,2.053,605,2.635,691,2.635,919,2.381,1316,2.875,1352,0.507,1511,2.111,1665,2.723,1666,2.723,1694,2.963,2938,5.063,2939,3.141,2941,6.361,2942,3.411,2943,3.411,2944,3.411,2945,3.411,2946,3.411,2947,3.411,2948,3.411,2949,3.411,2950,3.411,2951,3.411,2952,5.499,2953,3.411,2954,3.411]],["deprecated//docs/tools-reference/linux-package-management/",[]]],"invertedIndex":[["",{"_index":562,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{}},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["0.7.14",{"_index":2427,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["04",{"_index":2017,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["1",{"_index":2667,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["10",{"_index":1006,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10.04",{"_index":2130,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["10.10",{"_index":2276,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{},"toc":{},"deprecated":{}}],["10g",{"_index":2297,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11",{"_index":2830,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.04",{"_index":2182,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["11.10",{"_index":2131,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["12",{"_index":263,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["12.04",{"_index":1706,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["13",{"_index":2379,"title":{"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"keywords":{},"toc":{},"deprecated":{}}],["13.04",{"_index":2852,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["14",{"_index":2264,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"keywords":{},"toc":{},"deprecated":{}}],["14.04",{"_index":774,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["14.10",{"_index":1565,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["15",{"_index":2224,"title":{"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{}},"keywords":{},"toc":{},"deprecated":{}}],["16.04",{"_index":62,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{}},"deprecated":{}}],["16.10",{"_index":834,"title":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17",{"_index":2855,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["17.04",{"_index":921,"title":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{},"toc":{},"deprecated":{}}],["17.10",{"_index":1768,"title":{},"keywords":{},"toc":{"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["19",{"_index":1867,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2",{"_index":320,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["2 factor authent",{"_index":787,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["2.2",{"_index":1805,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2.4",{"_index":1305,"title":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{}},"deprecated":{}}],["20",{"_index":1787,"title":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"keywords":{},"toc":{},"deprecated":{}}],["2014",{"_index":1732,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["22",{"_index":2156,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"deprecated":{}}],["25565",{"_index":1445,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["2fa",{"_index":786,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{}},"toc":{},"deprecated":{}}],["2gb",{"_index":579,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/hosting-a-website/":{}},"deprecated":{}}],["3",{"_index":122,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["3.1",{"_index":1738,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["3.2",{"_index":1739,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["32",{"_index":2614,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["4",{"_index":1192,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["4.0",{"_index":1740,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.1",{"_index":1741,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["4.2",{"_index":1742,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["404",{"_index":637,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"deprecated":{}}],["443",{"_index":2151,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["5",{"_index":2219,"title":{"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6",{"_index":1023,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["6.4",{"_index":1796,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{}},"toc":{},"deprecated":{}}],["6271",{"_index":1733,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["6277",{"_index":1737,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["64",{"_index":1782,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["64-bit",{"_index":1785,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["64bit",{"_index":1839,"title":{},"keywords":{},"toc":{"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["7",{"_index":207,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["7,linux",{"_index":276,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["7.0",{"_index":1183,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["7.1",{"_index":260,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["7.4",{"_index":1777,"title":{"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["7169",{"_index":1734,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7186",{"_index":1735,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["7187",{"_index":1736,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["8",{"_index":280,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["8.04",{"_index":2706,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["8.2",{"_index":1419,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["80",{"_index":2150,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["9",{"_index":63,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["9.04",{"_index":2745,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["9.10",{"_index":2406,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["aaaa",{"_index":2917,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ab",{"_index":2952,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["abort",{"_index":1874,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["absolut",{"_index":2462,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["abus",{"_index":2164,"title":{},"keywords":{},"toc":{"/docs/platform/support/":{}},"deprecated":{}}],["accept",{"_index":2003,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["access",{"_index":651,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["access control",{"_index":1556,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{},"deprecated":{}}],["access control list",{"_index":2868,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["access log",{"_index":2465,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["account",{"_index":477,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"keywords":{"/docs/platform/accounts-and-passwords/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["account’",{"_index":907,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["acl",{"_index":1555,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["acme,https,let'",{"_index":1223,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["action",{"_index":528,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["activ",{"_index":837,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["ad",{"_index":684,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["add",{"_index":176,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["add us",{"_index":2175,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["add-on domain",{"_index":2115,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["addit",{"_index":177,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["addon",{"_index":1661,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["address",{"_index":225,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["adjust",{"_index":57,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["admin",{"_index":803,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["admin panel",{"_index":1723,"title":{},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{},"deprecated":{}}],["administ",{"_index":2711,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{},"deprecated":{}}],["administer databas",{"_index":1292,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["administr",{"_index":723,"title":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["adminpack",{"_index":2094,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["adsp",{"_index":1270,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["advanc",{"_index":487,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["advanced linux",{"_index":910,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["advantag",{"_index":1030,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["affect",{"_index":103,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["against",{"_index":1635,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["agent",{"_index":120,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["aggreg",{"_index":2042,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["agricultur",{"_index":757,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["ahead",{"_index":457,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ahvz",{"_index":1952,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["alert",{"_index":1350,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["algorithm",{"_index":992,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["alia",{"_index":716,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{},"deprecated":{}}],["alias",{"_index":1588,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["aliv",{"_index":1424,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["alloc",{"_index":555,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["allow",{"_index":558,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["alpin",{"_index":1122,"title":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["alpine linux",{"_index":1123,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alpine linux packag",{"_index":1125,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["alter",{"_index":1072,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["altern",{"_index":619,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["amavi",{"_index":1379,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["amavisd",{"_index":2290,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["ami",{"_index":2266,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["amount",{"_index":1359,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["amp",{"_index":1272,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["anaconda",{"_index":794,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["analysi",{"_index":116,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["analyt",{"_index":110,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["analytics,owa,centos,mysql,debian,ubuntu",{"_index":1279,"title":{},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{},"deprecated":{}}],["analyz",{"_index":692,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["android",{"_index":1285,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"deprecated":{}}],["anonym",{"_index":1809,"title":{},"keywords":{},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["anoth",{"_index":1834,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-managed/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["ansibl",{"_index":735,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["ansible autom",{"_index":1457,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configur",{"_index":1454,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible configuration change manag",{"_index":1458,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible infrastructur",{"_index":1456,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible provis",{"_index":1455,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible server autom",{"_index":1459,"title":{},"keywords":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"toc":{},"deprecated":{}}],["ansible’",{"_index":1461,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["answer",{"_index":2589,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["antiviru",{"_index":496,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["anyth",{"_index":94,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["apach",{"_index":258,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apache 2",{"_index":1871,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{}},"toc":{},"deprecated":{}}],["apache 2.2",{"_index":1806,"title":{},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache 2.4",{"_index":1505,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{},"deprecated":{}}],["apache cassandra",{"_index":922,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["apache debian 5",{"_index":2923,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian 6",{"_index":2322,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache debian 8",{"_index":689,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian jessi",{"_index":1499,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache debian lenni",{"_index":2924,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache debian squeez",{"_index":2323,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache fedora 13",{"_index":2568,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache fedora 14",{"_index":2381,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache guacamol",{"_index":422,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["apache hardi",{"_index":2881,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache instal",{"_index":1179,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache jessi",{"_index":1501,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{}},"toc":{},"deprecated":{}}],["apache karm",{"_index":2803,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache lenni",{"_index":2925,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache lucid",{"_index":2632,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache maverick",{"_index":2397,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache on cento",{"_index":2714,"title":{},"keywords":{"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{}},"toc":{},"deprecated":{}}],["apache on debian",{"_index":1500,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache on fedora",{"_index":2328,"title":{},"keywords":{"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache on ubuntu",{"_index":1999,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache squeez",{"_index":2324,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["apache ssl",{"_index":1699,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache tomcat",{"_index":2337,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 12",{"_index":2533,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 13",{"_index":2536,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["apache tomcat fedora 14",{"_index":2384,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.04",{"_index":2539,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 10.10",{"_index":2388,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 12.04",{"_index":1972,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 16.04",{"_index":1173,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["apache tomcat ubuntu 9.10",{"_index":2541,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.04",{"_index":2630,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 10.10",{"_index":2395,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 8.04",{"_index":2879,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu 9.10",{"_index":2801,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu hardi",{"_index":2880,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["apache ubuntu karm",{"_index":2802,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["apache ubuntu lucid",{"_index":2631,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["apache ubuntu maverick",{"_index":2396,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["apache web serv",{"_index":1913,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["apache-cassandra",{"_index":890,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"toc":{},"deprecated":{}}],["apache2",{"_index":792,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["apache2buddi",{"_index":1613,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["api",{"_index":151,"title":{"/docs/platform/api/api-key/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/platform/linode-cli/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["api key",{"_index":1846,"title":{},"keywords":{"/docs/platform/api/api-key/":{},"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["apk",{"_index":1128,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"deprecated":{}}],["app",{"_index":200,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["apparmor",{"_index":880,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["append",{"_index":1291,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"deprecated":{}}],["appimag",{"_index":614,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["appl",{"_index":629,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["appli",{"_index":1363,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["applianc",{"_index":2272,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["applic",{"_index":172,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["approach",{"_index":268,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["apps&rdquo",{"_index":1062,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["apt",{"_index":691,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["apt-cach",{"_index":2940,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["apt-get",{"_index":1824,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["aptitud",{"_index":2942,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arbitrari",{"_index":1405,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["arch",{"_index":1316,"title":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["arch lamp",{"_index":1896,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch lamp stack",{"_index":1897,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linod",{"_index":1899,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux",{"_index":1901,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["arch linux lamp",{"_index":1900,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["architectur",{"_index":486,"title":{},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["archiv",{"_index":2520,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["argument",{"_index":190,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["ark",{"_index":1044,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["ark survival evolv",{"_index":1047,"title":{},"keywords":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["arno",{"_index":2887,"title":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["arno-iptables-firewal",{"_index":2888,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["around",{"_index":2140,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["asdf",{"_index":826,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["askbot",{"_index":800,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["asp.net",{"_index":2503,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asp.net/mono",{"_index":2499,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{},"deprecated":{}}],["assess",{"_index":1946,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["asset",{"_index":1426,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["assign",{"_index":877,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["assumpt",{"_index":434,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["asterisk",{"_index":1381,"title":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["asterisk 13",{"_index":1382,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk linux",{"_index":2660,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["asterisk pbx",{"_index":1386,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["asterisk ubuntu 9.10",{"_index":2659,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["async",{"_index":355,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["asynchron",{"_index":397,"title":{},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{},"deprecated":{}}],["atlanta",{"_index":2900,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["attach",{"_index":114,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["attribut",{"_index":157,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["audienc",{"_index":1417,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["audio",{"_index":1646,"title":{},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["audit",{"_index":1474,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["auth",{"_index":2431,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["authent",{"_index":336,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/web-servers/apache/apache-access-control/":{}},"deprecated":{}}],["author",{"_index":1269,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["authorit",{"_index":2072,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["autoconfigur",{"_index":1886,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["autojump",{"_index":182,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["autologin",{"_index":1551,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["autom",{"_index":20,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/stackscripts/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["automat",{"_index":312,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/security/securing-your-server/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["autostart",{"_index":814,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["avail",{"_index":522,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["avoid",{"_index":97,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["awstat",{"_index":1728,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["axfr",{"_index":2918,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["back",{"_index":15,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["back up",{"_index":6,"title":{},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["back-end request",{"_index":1673,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["backend",{"_index":222,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["background",{"_index":2432,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["backlog",{"_index":1430,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["backport",{"_index":2560,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["backup",{"_index":2,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["backup servic",{"_index":2165,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["balanc",{"_index":498,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/platform/billing-and-payments/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["ban",{"_index":1357,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["bandwidth",{"_index":2145,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["banner",{"_index":1004,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["base",{"_index":210,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["bash",{"_index":866,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["bash complet",{"_index":1205,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["basic",{"_index":38,"title":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["bazaar",{"_index":2728,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["bb",{"_index":2605,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["beauti",{"_index":293,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["beautiful soup",{"_index":295,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["befor",{"_index":17,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["begin",{"_index":18,"title":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["beginn",{"_index":1536,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["beginner'",{"_index":1530,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["behavior",{"_index":2685,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["behind",{"_index":791,"title":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["benchmark",{"_index":1626,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["benefit",{"_index":419,"title":{},"keywords":{},"toc":{"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["best",{"_index":166,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["between",{"_index":1449,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["beyond",{"_index":2827,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["bidirect",{"_index":1680,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["big",{"_index":1102,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{},"toc":{},"deprecated":{}}],["big data",{"_index":591,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{},"deprecated":{}}],["bill",{"_index":1035,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["binari",{"_index":554,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["bind",{"_index":224,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["bit",{"_index":1783,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["black",{"_index":1214,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["black mesa",{"_index":1216,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["blacklist",{"_index":1936,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["blank",{"_index":2141,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["block",{"_index":360,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["block storag",{"_index":904,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{},"deprecated":{}}],["blog",{"_index":407,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["blue",{"_index":438,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["bookmark",{"_index":2789,"title":{},"keywords":{},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["bookshelf",{"_index":1537,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["boolean",{"_index":861,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["boonex",{"_index":2109,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["boot",{"_index":649,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["boot from a backup",{"_index":2173,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["bootstrap",{"_index":519,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["bootup",{"_index":943,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["bottleneck",{"_index":2149,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["box",{"_index":768,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["box’",{"_index":1334,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["box.com",{"_index":1328,"title":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["branch",{"_index":449,"title":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["breakdown",{"_index":348,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["broken",{"_index":2441,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["broker",{"_index":2261,"title":{},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{},"deprecated":{}}],["brows",{"_index":600,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["browser",{"_index":429,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["bsd",{"_index":1202,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{},"deprecated":{}}],["buffer",{"_index":226,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["bug",{"_index":2281,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["bug geni",{"_index":2621,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["bug track",{"_index":2285,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["build",{"_index":171,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["built",{"_index":831,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["bukkit",{"_index":1444,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["bulletin board",{"_index":2603,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["bundl",{"_index":1145,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["bungeecord",{"_index":1442,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["busi",{"_index":2645,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["button",{"_index":2874,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["bzip2",{"_index":2526,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["bzr",{"_index":2729,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["ca",{"_index":1144,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["caa",{"_index":488,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["cach",{"_index":829,"title":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["cacti",{"_index":2052,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["caddi",{"_index":710,"title":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["caddyfil",{"_index":713,"title":{},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{}},"deprecated":{}}],["cakephp",{"_index":2574,"title":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"deprecated":{}}],["cakephp debian",{"_index":2575,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["caldav",{"_index":771,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["calendar",{"_index":2350,"title":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{},"toc":{},"deprecated":{}}],["call",{"_index":2268,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["can’t",{"_index":2154,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["cancel",{"_index":1818,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["capabl",{"_index":2271,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["captur",{"_index":1744,"title":{},"keywords":{},"toc":{"/docs/platform/linode-images/":{}},"deprecated":{}}],["carbon",{"_index":1300,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["card",{"_index":1120,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["cardav",{"_index":772,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["cart",{"_index":2709,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["case",{"_index":2047,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cassandra",{"_index":889,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"deprecated":{}}],["catalyst",{"_index":2717,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["caus",{"_index":1364,"title":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["caveat",{"_index":1509,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cdn",{"_index":471,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["ce",{"_index":133,"title":{"/docs/applications/containers/install_docker_ce/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["celeri",{"_index":395,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["cento",{"_index":129,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["centos 5",{"_index":2699,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["centos 6",{"_index":1025,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos 7",{"_index":891,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["centos configure firewal",{"_index":1403,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewal",{"_index":1400,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall config",{"_index":1401,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos firewall gui",{"_index":1402,"title":{},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{},"deprecated":{}}],["centos lamp",{"_index":1301,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{}},"toc":{},"deprecated":{}}],["centos/fedora",{"_index":1460,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["centos5",{"_index":2238,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["central",{"_index":667,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["certif",{"_index":776,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["certificate signing request",{"_index":1708,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["cgi",{"_index":1248,"title":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["chain",{"_index":1146,"title":{},"keywords":{},"toc":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"deprecated":{}}],["chang",{"_index":445,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/platform/kvm-reference/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["channel",{"_index":1753,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["channels/buff",{"_index":1754,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["charg",{"_index":1629,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["chat",{"_index":1487,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["chat softwar",{"_index":1981,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["cheat",{"_index":1580,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["cheat sheet",{"_index":1583,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["check",{"_index":1016,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["checklist",{"_index":1916,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["chef",{"_index":1531,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["chef development kit",{"_index":1534,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["chef instal",{"_index":1545,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef serv",{"_index":1533,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef workst",{"_index":1546,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chef-client",{"_index":1547,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["chefdk",{"_index":1532,"title":{},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["cheroke",{"_index":2059,"title":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["cherokee admin",{"_index":2066,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["cherokee fastcgi",{"_index":2471,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 13",{"_index":2472,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["cherokee fedora 14",{"_index":2573,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee on ubuntu",{"_index":2844,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["cherokee php-fastcgi",{"_index":2470,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 10.04",{"_index":2561,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu 9.10",{"_index":2813,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu karm",{"_index":2814,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["cherokee ubuntu lucid",{"_index":2562,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["cherokee web sev",{"_index":2572,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["cherokee-admin",{"_index":2060,"title":{},"keywords":{"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["child",{"_index":188,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["chmod",{"_index":2549,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["choos",{"_index":223,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["chown",{"_index":2869,"title":{},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{},"deprecated":{}}],["chrome o",{"_index":425,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["chroot",{"_index":996,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["ci",{"_index":432,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["cipher",{"_index":2228,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["citadel",{"_index":2004,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["citadel debian 6",{"_index":2203,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel debian squeez",{"_index":2204,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 10.04",{"_index":2596,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 12.04",{"_index":2005,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["citadel ubuntu 14.04",{"_index":2011,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clamav",{"_index":494,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"deprecated":{}}],["clariti",{"_index":2739,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["class",{"_index":1321,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"deprecated":{}}],["classif",{"_index":1800,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["clean",{"_index":305,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["cleanup",{"_index":448,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["cli",{"_index":482,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["client",{"_index":158,"title":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["client machin",{"_index":2055,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["client.ovpn",{"_index":626,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["clojur",{"_index":1251,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["clone",{"_index":1084,"title":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/disk-images/clone-your-linode/":{}},"toc":{"/docs/platform/disk-images/clone-your-linode/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["close",{"_index":1433,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["cloud",{"_index":256,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["cloud host",{"_index":1466,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["cloud storag",{"_index":1329,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["cloud storage ubuntu",{"_index":846,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["cloud-based storag",{"_index":819,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["clozur",{"_index":823,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["cluebring",{"_index":1727,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["cluster",{"_index":328,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["cm",{"_index":680,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["cname",{"_index":2761,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["code",{"_index":346,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["collabor",{"_index":2474,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["collaboration softwar",{"_index":1980,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["collect",{"_index":1043,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["column",{"_index":1067,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["combin",{"_index":1093,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["come",{"_index":2518,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["command",{"_index":368,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["command lin",{"_index":954,"title":{},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["command line interfac",{"_index":1848,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["command line shel",{"_index":867,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["command-lin",{"_index":183,"title":{},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"toc":{},"deprecated":{}}],["commerc",{"_index":965,"title":{},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["commerci",{"_index":1140,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["commercial ssl cert",{"_index":2782,"title":{},"keywords":{"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["commit",{"_index":444,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["common",{"_index":194,"title":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["common command",{"_index":2414,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["common linux command",{"_index":2419,"title":{},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{},"deprecated":{}}],["commun",{"_index":894,"title":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["compat",{"_index":646,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["compil",{"_index":847,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["compile kernel",{"_index":848,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["complet",{"_index":88,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["complex",{"_index":529,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"deprecated":{}}],["compon",{"_index":283,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["compos",{"_index":136,"title":{"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/how-to-use-docker-compose/":{}},"keywords":{"/docs/applications/containers/how-to-use-docker-compose/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["compress",{"_index":1099,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["compromis",{"_index":2134,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["comput",{"_index":540,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["concept",{"_index":605,"title":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["concern",{"_index":2460,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["conclus",{"_index":121,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["condens",{"_index":2446,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["condit",{"_index":1437,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["conf",{"_index":1799,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"deprecated":{}}],["confidenti",{"_index":534,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{},"deprecated":{}}],["config",{"_index":581,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["config profil",{"_index":2139,"title":{},"keywords":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{},"deprecated":{}}],["config_deathmatch.cfg",{"_index":1220,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["configur",{"_index":35,"title":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["configuration change manag",{"_index":750,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["configuration manag",{"_index":1320,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{}},"toc":{},"deprecated":{}}],["configure ghost",{"_index":726,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["configure openfir",{"_index":1983,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{},"deprecated":{}}],["configure postgr",{"_index":331,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["configure znc",{"_index":1762,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["confirm",{"_index":413,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["conflict",{"_index":2800,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["confluenc",{"_index":2478,"title":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["confluence centos 5",{"_index":2479,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{}},"toc":{},"deprecated":{}}],["confluence debian 5",{"_index":2484,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["confluence fedora 13",{"_index":2482,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["confluence linux",{"_index":2481,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 10.04",{"_index":2486,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["confluence ubuntu 9.10",{"_index":2485,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["confluence wiki",{"_index":2480,"title":{},"keywords":{"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["conform",{"_index":1273,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["connect",{"_index":153,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["connector",{"_index":2506,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["connector/net",{"_index":2505,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["consid",{"_index":2858,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["consider",{"_index":1525,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["consol",{"_index":926,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/remote-access/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["console access",{"_index":1137,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["construct",{"_index":1407,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["consumpt",{"_index":2898,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["contact",{"_index":1965,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{}},"deprecated":{}}],["contain",{"_index":134,"title":{"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["container commun",{"_index":196,"title":{},"keywords":{"/docs/applications/containers/docker-container-communication/":{}},"toc":{},"deprecated":{}}],["container linux",{"_index":945,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{},"deprecated":{}}],["content",{"_index":712,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["content manag",{"_index":677,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{},"deprecated":{}}],["content management framework",{"_index":1697,"title":{},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"toc":{},"deprecated":{}}],["content management framwork",{"_index":1710,"title":{},"keywords":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content management system",{"_index":1170,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["content mangement system",{"_index":2678,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["context",{"_index":860,"title":{},"keywords":{},"toc":{"/docs/security/getting-started-with-selinux/":{}},"deprecated":{}}],["continuum",{"_index":125,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["conto",{"_index":1702,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{}},"toc":{},"deprecated":{}}],["control",{"_index":476,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["control panel",{"_index":2212,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["convent",{"_index":1106,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["convert",{"_index":2493,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["cookbook",{"_index":1535,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["cooki",{"_index":1832,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["copi",{"_index":895,"title":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["core",{"_index":947,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["coreo",{"_index":928,"title":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["correct",{"_index":2152,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correctli",{"_index":2153,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["correspond",{"_index":1341,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["corrupt",{"_index":510,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["couchdb",{"_index":2078,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"deprecated":{}}],["count",{"_index":1877,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["counter",{"_index":1227,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["counter strik",{"_index":1231,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["counter strike global offens",{"_index":1232,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["courier",{"_index":2289,"title":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["cover",{"_index":2781,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["cp",{"_index":2859,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["cpan",{"_index":2680,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanel",{"_index":1129,"title":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"deprecated":{}}],["cpanel cento",{"_index":1132,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["cpanel/whm",{"_index":1714,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["cpanm",{"_index":2682,"title":{},"keywords":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"toc":{},"deprecated":{}}],["cpanminu",{"_index":2681,"title":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["cpu",{"_index":1876,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["cran",{"_index":66,"title":{},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["crash",{"_index":2777,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["crawl",{"_index":373,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["creat",{"_index":0,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/introduction-to-websockets/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["create databas",{"_index":2117,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["create git repo",{"_index":899,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["creation",{"_index":676,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["credenti",{"_index":1286,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/linode-managed/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["credit",{"_index":1817,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["crm",{"_index":1008,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["cron",{"_index":21,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["cron linux",{"_index":2757,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["cron tutori",{"_index":2755,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{},"deprecated":{}}],["crontab",{"_index":2756,"title":{},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["crypt",{"_index":239,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["cryptsetup",{"_index":1923,"title":{},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{},"deprecated":{}}],["cs:go",{"_index":1230,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo",{"_index":1233,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo serv",{"_index":1234,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csgo server host",{"_index":1235,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["csr",{"_index":1143,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["css",{"_index":1012,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["curl",{"_index":44,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["current",{"_index":84,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/billing-and-payments/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["custom",{"_index":99,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/kvm-reference/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["custom distribut",{"_index":1029,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom distro",{"_index":909,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"toc":{},"deprecated":{}}],["custom inst",{"_index":2267,"title":{},"keywords":{"/docs/platform/stackscripts/":{}},"toc":{},"deprecated":{}}],["custom kernel",{"_index":1026,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["custom linod",{"_index":851,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["custom linux",{"_index":1507,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["custom linux kernel",{"_index":850,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["cut",{"_index":2206,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["cve",{"_index":1731,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["cyberduck",{"_index":2785,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"deprecated":{}}],["cygwin",{"_index":1751,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["daemon",{"_index":399,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["dahdi",{"_index":1393,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["daili",{"_index":2843,"title":{},"keywords":{},"toc":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["dalla",{"_index":2901,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["dandifi",{"_index":2947,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dashboard",{"_index":28,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["data",{"_index":24,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-backup-service/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["data stor",{"_index":828,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["data visu",{"_index":53,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["databas",{"_index":5,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["database configur",{"_index":329,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["database tun",{"_index":330,"title":{},"keywords":{"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{},"deprecated":{}}],["datacent",{"_index":2779,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["dataset",{"_index":513,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["datasourc",{"_index":1420,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["datastor",{"_index":2031,"title":{},"keywords":{},"toc":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["date",{"_index":879,"title":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["date/tim",{"_index":2492,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["davf",{"_index":1332,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["davfs2",{"_index":1333,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["day",{"_index":1597,"title":{},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["dbm",{"_index":2666,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["dcv",{"_index":2655,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"toc":{},"deprecated":{}}],["deactiv",{"_index":838,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["dead",{"_index":1241,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["deathmatch",{"_index":806,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["debain 7",{"_index":1793,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{}},"toc":{},"deprecated":{}}],["debian",{"_index":61,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["debian 5",{"_index":2704,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian 6",{"_index":2334,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 exim",{"_index":2357,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 lamp serv",{"_index":2327,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 mail serv",{"_index":2205,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 6 send email",{"_index":2356,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian 7",{"_index":1642,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["debian 7 lamp serv",{"_index":1893,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["debian 8",{"_index":885,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["debian 8 lamp serv",{"_index":1502,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian 9",{"_index":1514,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"toc":{},"deprecated":{}}],["debian exim",{"_index":2358,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian firewal",{"_index":2889,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian jessi",{"_index":886,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{},"deprecated":{}}],["debian lamp",{"_index":1503,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["debian lamp guid",{"_index":1894,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lamp serv",{"_index":2934,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian lenni",{"_index":2594,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian mail serv",{"_index":2790,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian squeez",{"_index":2333,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian upgrad",{"_index":1938,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian vpn",{"_index":2312,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["debian wheezi",{"_index":1641,"title":{},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["debian. track",{"_index":2764,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["debian/ubuntu",{"_index":184,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["debug",{"_index":1964,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["decid",{"_index":1996,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["decis",{"_index":1688,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["declar",{"_index":440,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["dedic",{"_index":807,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["deep",{"_index":596,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["deep learn",{"_index":590,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["default",{"_index":468,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["default.rb",{"_index":1544,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["defin",{"_index":174,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["definit",{"_index":2799,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["delay",{"_index":2467,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["deleg",{"_index":2049,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["delet",{"_index":193,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["deliveri",{"_index":783,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["demo",{"_index":475,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["demonstr",{"_index":2270,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["deni",{"_index":994,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["depend",{"_index":297,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy",{"_index":47,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/stackscripts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/linode-images/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["deploy ghost on ubuntu 16.04",{"_index":727,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["deploy python applications with nginx",{"_index":1985,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["describ",{"_index":1111,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["descript",{"_index":1903,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["descriptor",{"_index":1436,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["desktop",{"_index":68,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["dest",{"_index":1955,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["destin",{"_index":2642,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["destroy",{"_index":526,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["detach",{"_index":365,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["determin",{"_index":2180,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["develop",{"_index":265,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["develop php",{"_index":2577,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["devic",{"_index":34,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["diagnos",{"_index":1676,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["diagnost",{"_index":918,"title":{},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["differ",{"_index":1778,"title":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["diffi",{"_index":990,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["dig",{"_index":2444,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["digest",{"_index":1477,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["direct",{"_index":1410,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"deprecated":{}}],["directadmin",{"_index":2214,"title":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{}},"toc":{},"deprecated":{}}],["directli",{"_index":2671,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["directori",{"_index":187,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["disabl",{"_index":410,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["disable a backup",{"_index":2171,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["disconnect",{"_index":2689,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["discount",{"_index":2143,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["discov",{"_index":2528,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["discoveri",{"_index":2256,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["discuss",{"_index":1991,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["discussion forum",{"_index":2604,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["disk",{"_index":244,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["display",{"_index":460,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["distribut",{"_index":101,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["distributed version control",{"_index":2657,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["distributions/vers",{"_index":1651,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["distro",{"_index":1807,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/linode-cli/":{}},"deprecated":{}}],["distro upgrad",{"_index":2222,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["django",{"_index":1303,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["dkim",{"_index":1262,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["dlna",{"_index":962,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["dm",{"_index":238,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["dm-crypt",{"_index":240,"title":{},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"toc":{},"deprecated":{}}],["dmarc",{"_index":1264,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["dn",{"_index":490,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["dna",{"_index":2121,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["dnf",{"_index":2948,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["dns configur",{"_index":1492,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns debian",{"_index":2361,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dns manag",{"_index":1491,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["dns record",{"_index":2914,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns record typ",{"_index":2915,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["dns resolut",{"_index":2916,"title":{},"keywords":{"/docs/networking/dns/dns-records-an-introduction/":{}},"toc":{},"deprecated":{}}],["docker",{"_index":132,"title":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"keywords":{"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["docker c",{"_index":135,"title":{},"keywords":{"/docs/applications/containers/install_docker_ce/":{}},"toc":{},"deprecated":{}}],["docker compos",{"_index":137,"title":{},"keywords":{"/docs/applications/containers/install_docker_compose/":{}},"toc":{},"deprecated":{}}],["docker hub",{"_index":418,"title":{},"keywords":{"/docs/applications/containers/when-and-why-to-use-docker/":{}},"toc":{},"deprecated":{}}],["docker swarm",{"_index":670,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["docker,container,dockerfile,dock",{"_index":763,"title":{},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"toc":{},"deprecated":{}}],["dockerfil",{"_index":840,"title":{"/docs/applications/containers/how-to-use-dockerfiles/":{}},"keywords":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{}},"toc":{"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/applications/containers/what-is-docker/":{}},"deprecated":{}}],["document",{"_index":2079,"title":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["doesn’t",{"_index":1882,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dog",{"_index":2945,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["doku wiki",{"_index":2674,"title":{},"keywords":{"/docs/websites/wikis/dokuwiki-engine/":{}},"toc":{},"deprecated":{}}],["dokuwiki",{"_index":2673,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/websites/wikis/dokuwiki-engine/":{}},"deprecated":{}}],["dolphin",{"_index":2107,"title":{"/docs/applications/social-networking/dolphin/":{}},"keywords":{"/docs/applications/social-networking/dolphin/":{}},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["domain",{"_index":391,"title":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["domain nam",{"_index":1709,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["domain zon",{"_index":2931,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["don’t",{"_index":1571,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["don''t starv",{"_index":1569,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don''t starve togeth",{"_index":1570,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["don't",{"_index":1567,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{},"deprecated":{}}],["don’t",{"_index":1572,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["dosblockingperiod",{"_index":2194,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dosemailnotifi",{"_index":2195,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doshashtables",{"_index":2189,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["doslogdir",{"_index":2197,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospagecount",{"_index":2190,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dospageinterv",{"_index":2192,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossitecount",{"_index":2191,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossiteinterv",{"_index":2193,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dossystemcommand",{"_index":2196,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["dovecot",{"_index":1584,"title":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["dovecot 2",{"_index":1937,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{},"deprecated":{}}],["dovecot centos 5",{"_index":2237,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["dovecot centos 6",{"_index":1591,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["dovecot centos 7",{"_index":1586,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["dovecot debian 6",{"_index":2234,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.04",{"_index":2599,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["dovecot ubuntu 10.10",{"_index":2454,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["dovecot’",{"_index":1920,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["downgrad",{"_index":2778,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["download",{"_index":64,"title":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["downtim",{"_index":1607,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["dpkg",{"_index":2939,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["drawback",{"_index":1925,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["drive",{"_index":1127,"title":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["driven",{"_index":2033,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["driver",{"_index":559,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["drop",{"_index":1432,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["dropbox",{"_index":1781,"title":{"/docs/applications/cloud-storage/dropbox/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/cloud-storage/dropbox/":{}},"deprecated":{}}],["drupal",{"_index":679,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"deprecated":{}}],["drupal 8",{"_index":1171,"title":{},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{}},"toc":{},"deprecated":{}}],["drush",{"_index":1696,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"keywords":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"toc":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["dsp",{"_index":2126,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["due",{"_index":878,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["dump",{"_index":234,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["duplic",{"_index":580,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["durat",{"_index":1961,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["dvc",{"_index":1630,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["dynam",{"_index":2048,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["dynamic apach",{"_index":2404,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["dynamic cont",{"_index":2719,"title":{},"keywords":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"toc":{},"deprecated":{}}],["e-commerc",{"_index":1051,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["each",{"_index":571,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"deprecated":{}}],["earli",{"_index":81,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["easi",{"_index":969,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["easy linux",{"_index":966,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{},"deprecated":{}}],["easyrsa",{"_index":1290,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"deprecated":{}}],["echo",{"_index":2911,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ecommerc",{"_index":779,"title":{},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["edit",{"_index":273,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["editor",{"_index":611,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["effect",{"_index":2670,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["egroupwar",{"_index":2475,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd",{"_index":2016,"title":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["ejabberd on linux",{"_index":2020,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu",{"_index":2018,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 12.04",{"_index":2019,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu 9.10",{"_index":2796,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu hardi",{"_index":2825,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu jaunti",{"_index":2826,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ejabberd ubuntu karm",{"_index":2795,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["elast",{"_index":108,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/platform/stackscripts/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["elastic stack",{"_index":126,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elasticsearch",{"_index":106,"title":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["element",{"_index":743,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["elgg",{"_index":2765,"title":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"deprecated":{}}],["elgg debian lenni",{"_index":2766,"title":{},"keywords":{"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["elk",{"_index":567,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["elk stack",{"_index":565,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{},"deprecated":{}}],["elk,ossec-hid",{"_index":566,"title":{},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{},"deprecated":{}}],["emac",{"_index":2913,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["email",{"_index":766,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["email howto",{"_index":2791,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["email serv",{"_index":2008,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["embed",{"_index":1155,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["emerge/portag",{"_index":2953,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["enabl",{"_index":327,"title":{"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"deprecated":{}}],["enable a backup",{"_index":2168,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["encrypt",{"_index":237,"title":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["encrypt,ssl,ssl",{"_index":1224,"title":{},"keywords":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"toc":{},"deprecated":{}}],["encryption for http",{"_index":2424,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["end",{"_index":2420,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["engin",{"_index":408,"title":{"/docs/websites/wikis/dokuwiki-engine/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["enhanc",{"_index":1167,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["enter",{"_index":975,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["enterprise search",{"_index":720,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["enterprise wiki",{"_index":2041,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["entir",{"_index":443,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["entri",{"_index":717,"title":{},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["environ",{"_index":163,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["environment",{"_index":446,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["epel",{"_index":1691,"title":{},"keywords":{},"toc":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"deprecated":{}}],["ephemer",{"_index":1428,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["epoch",{"_index":2491,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["eras",{"_index":2135,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["erlang",{"_index":2024,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["erp",{"_index":1340,"title":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["error",{"_index":303,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"deprecated":{}}],["esr",{"_index":2736,"title":{},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["establish",{"_index":2713,"title":{},"keywords":{},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["etc/apt/sources.list",{"_index":2943,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/dnf/dnf.conf",{"_index":2949,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etc/host",{"_index":1890,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["etc/yum.conf",{"_index":2946,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["etcd",{"_index":658,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["evalu",{"_index":1906,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["evas",{"_index":2188,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["event",{"_index":154,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["everyth",{"_index":1560,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["everything’",{"_index":1267,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["evolv",{"_index":1046,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["exampl",{"_index":19,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["excel",{"_index":308,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["except",{"_index":1561,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["exchang",{"_index":1156,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["exclud",{"_index":1830,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["execut",{"_index":854,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["executors&rsquo",{"_index":560,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["exim",{"_index":1987,"title":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["exim ubuntu 10.04",{"_index":2617,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 10.10",{"_index":2405,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["exim ubuntu 11.04",{"_index":2239,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["exist",{"_index":616,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/automating-server-builds/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["exit",{"_index":979,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["expand",{"_index":1110,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{}},"deprecated":{}}],["expect",{"_index":613,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["experienc",{"_index":2147,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["expir",{"_index":1943,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["explain",{"_index":1960,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["explor",{"_index":1463,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["export",{"_index":465,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["express",{"_index":2298,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ext4",{"_index":644,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["extend",{"_index":467,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["extendedstatu",{"_index":1888,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["extens",{"_index":249,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["extern",{"_index":1648,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/email/running-a-mail-server/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["extra",{"_index":1221,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["extract",{"_index":370,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["face",{"_index":2179,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["factor",{"_index":785,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["fail",{"_index":451,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["fail2ban",{"_index":1353,"title":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["fail2ban.loc",{"_index":1356,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failov",{"_index":1138,"title":{},"keywords":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{}},"deprecated":{}}],["failregex",{"_index":1361,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["failur",{"_index":1695,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{}},"deprecated":{}}],["fals",{"_index":1028,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}}}],["faq",{"_index":76,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["far.vim",{"_index":617,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["farmo",{"_index":756,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["fastcgi",{"_index":1168,"title":{"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fastcgi perl",{"_index":2750,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["faster",{"_index":180,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{},"deprecated":{}}],["fastscgi perl",{"_index":2013,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fault",{"_index":1610,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["fault toler",{"_index":1608,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["favorit",{"_index":1049,"title":{},"keywords":{},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["fcgi",{"_index":2291,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["fcgiwrap",{"_index":2613,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["featur",{"_index":643,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["feature develop",{"_index":2620,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["feder",{"_index":2027,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fedora",{"_index":127,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["fedora 11 apach",{"_index":2832,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 11 lamp",{"_index":2831,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{}},"toc":{},"deprecated":{}}],["fedora 12",{"_index":2476,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 apach",{"_index":2834,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 12 lamp",{"_index":2833,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["fedora 13",{"_index":2483,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 apach",{"_index":2580,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 lamp",{"_index":2579,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 13 web serv",{"_index":2473,"title":{},"keywords":{"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora 14",{"_index":2309,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 apach",{"_index":2409,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 14 lamp",{"_index":2408,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["fedora 15 apach",{"_index":2226,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 15 lamp",{"_index":2225,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{}},"toc":{},"deprecated":{}}],["fedora 19 apach",{"_index":1869,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 19 lamp",{"_index":1868,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{}},"toc":{},"deprecated":{}}],["fedora 20 apach",{"_index":1791,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora 20 lamp",{"_index":1788,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["fedora dn",{"_index":2244,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora web serv",{"_index":2382,"title":{},"keywords":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["fedora/cento",{"_index":1677,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["feed",{"_index":1022,"title":{"/docs/applications/social-networking/planet-feed-aggregator/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["fetch",{"_index":1488,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["fetchmail",{"_index":2735,"title":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["fetchmailrc",{"_index":2737,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["file",{"_index":169,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["file arch",{"_index":2525,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["file manag",{"_index":738,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["file permiss",{"_index":2551,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["file serv",{"_index":941,"title":{},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["file storag",{"_index":1330,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{},"deprecated":{}}],["file system",{"_index":502,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"toc":{},"deprecated":{}}],["file transf",{"_index":2856,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["filebeat",{"_index":284,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["filesystem",{"_index":352,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["filesystem/boot",{"_index":930,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"deprecated":{}}],["filezilla",{"_index":1716,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["filter",{"_index":981,"title":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["final",{"_index":393,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["find",{"_index":652,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["find and replac",{"_index":2545,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{},"deprecated":{}}],["find command",{"_index":2434,"title":{},"keywords":{"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"toc":{},"deprecated":{}}],["fingerprint",{"_index":2899,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["finnix",{"_index":1277,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["firewal",{"_index":325,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/securing-your-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"deprecated":{}}],["firewall setup",{"_index":1315,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["firewalld",{"_index":1085,"title":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"keywords":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["first",{"_index":799,"title":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["first lin",{"_index":983,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{}},"toc":{},"deprecated":{}}],["fish",{"_index":863,"title":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["fish script",{"_index":865,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["fish shel",{"_index":864,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["five",{"_index":2051,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fix",{"_index":971,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["flag",{"_index":2954,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["flask",{"_index":160,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["flatpress",{"_index":2611,"title":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-flatpress/":{}},"deprecated":{}}],["flower",{"_index":400,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["fluxbb",{"_index":2602,"title":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"deprecated":{}}],["flyspray",{"_index":2623,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"deprecated":{}}],["folder",{"_index":1683,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["follow",{"_index":2286,"title":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["forc",{"_index":322,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["forens",{"_index":2876,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["forg",{"_index":675,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["forgot",{"_index":2157,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["fork",{"_index":1634,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["format",{"_index":582,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["formula",{"_index":1415,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"deprecated":{}}],["fortress",{"_index":1594,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["forum",{"_index":1992,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-fluxbb/":{}},"toc":{},"deprecated":{}}],["forum softwar",{"_index":1994,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["forums](http://www.boonex.com/forum",{"_index":2113,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["forward",{"_index":1097,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["found",{"_index":1879,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["four",{"_index":2050,"title":{},"keywords":{},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["fourm",{"_index":2606,"title":{},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{},"deprecated":{}}],["fpm",{"_index":1245,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"deprecated":{}}],["frame",{"_index":1053,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"deprecated":{}}],["framework",{"_index":2314,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["frankfurt",{"_index":2902,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["free",{"_index":2897,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["freebsd",{"_index":1201,"title":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["freenod",{"_index":2687,"title":{},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["freepbx",{"_index":1769,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["freepbx ubuntu",{"_index":2661,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["fremont",{"_index":2903,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["frequenc",{"_index":1349,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["friendli",{"_index":2691,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["front",{"_index":2584,"title":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["front-end proxi",{"_index":2587,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["front-end request",{"_index":1672,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["frontend",{"_index":1343,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["fstab",{"_index":1031,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{}},"deprecated":{}}],["ftp",{"_index":1717,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full",{"_index":632,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/encryption/full-disk-encryption-xen/":{}},"keywords":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["full disk encrypt",{"_index":1100,"title":{},"keywords":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{},"deprecated":{}}],["full duplex",{"_index":150,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["fulli",{"_index":1268,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["function",{"_index":306,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["fundament",{"_index":2343,"title":{},"keywords":{},"toc":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"deprecated":{}}],["further",{"_index":289,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["fuse",{"_index":1398,"title":{},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{},"deprecated":{}}],["fusion",{"_index":2676,"title":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"deprecated":{}}],["futon",{"_index":2081,"title":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"deprecated":{}}],["futur",{"_index":622,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["galera",{"_index":1088,"title":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{}},"deprecated":{}}],["game",{"_index":1048,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["game serv",{"_index":1237,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["garry’",{"_index":1659,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["garry'",{"_index":1657,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["garry''s mod",{"_index":1658,"title":{},"keywords":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["gateway",{"_index":730,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["gather",{"_index":625,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["gcc",{"_index":1652,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["gener",{"_index":761,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/api/api-key/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["generate csr",{"_index":1345,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["geni",{"_index":2618,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"keywords":{},"toc":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"deprecated":{}}],["gentoo",{"_index":1511,"title":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{}},"keywords":{"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["gentoo linux",{"_index":1889,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{}},"toc":{},"deprecated":{}}],["geoip",{"_index":117,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["get",{"_index":481,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/linode-managed/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["getmail",{"_index":2715,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"toc":{"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["getting start",{"_index":1945,"title":{},"keywords":{"/docs/security/backups/backing-up-your-data/":{}},"toc":{},"deprecated":{}}],["getting-start",{"_index":859,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["ghost",{"_index":406,"title":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"deprecated":{}}],["ghost on linod",{"_index":725,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["girocco",{"_index":2557,"title":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["git",{"_index":138,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["github",{"_index":898,"title":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["gitlab",{"_index":1210,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["gitolit",{"_index":2862,"title":{},"keywords":{"/docs/development/version-control/how-to-configure-git/":{}},"toc":{},"deprecated":{}}],["gitosi",{"_index":2477,"title":{},"keywords":{},"toc":{"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["gitweb",{"_index":1633,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["give",{"_index":556,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["given",{"_index":2495,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["glibc",{"_index":1650,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"keywords":{},"toc":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{}},"deprecated":{}}],["glish",{"_index":949,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"deprecated":{}}],["global",{"_index":299,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/network-helper/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["gluster",{"_index":1157,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["glusterf",{"_index":1086,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["gmail",{"_index":1056,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gnu",{"_index":1750,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["gnu screen",{"_index":2684,"title":{},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{},"deprecated":{}}],["gnu tar",{"_index":2522,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu zip",{"_index":2523,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["gnu/linux",{"_index":627,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"deprecated":{}}],["go",{"_index":54,"title":{"/docs/development/go/install-go-on-ubuntu/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["go program",{"_index":55,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["gog",{"_index":1369,"title":{"/docs/development/version-control/install-gogs-on-debian/":{}},"keywords":{"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/version-control/install-gogs-on-debian/":{}},"deprecated":{}}],["golang",{"_index":56,"title":{},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["golden",{"_index":1929,"title":{},"keywords":{},"toc":{"/docs/platform/automating-server-builds/":{}},"deprecated":{}}],["golden disk",{"_index":1928,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["googl",{"_index":762,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/email/using-google-apps-for-email/":{}},"keywords":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"toc":{"/docs/applications/project-management/install-farmos/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["google analyt",{"_index":1647,"title":{},"keywords":{"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"toc":{},"deprecated":{}}],["google app",{"_index":1766,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google apps linod",{"_index":1767,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google authent",{"_index":1095,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["google email",{"_index":1765,"title":{},"keywords":{"/docs/email/using-google-apps-for-email/":{}},"toc":{},"deprecated":{}}],["google voic",{"_index":1771,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{},"deprecated":{}}],["gpg",{"_index":924,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["gpg-agent",{"_index":1115,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["grace",{"_index":1002,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["grafana",{"_index":1298,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graph",{"_index":1887,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["graphic",{"_index":1464,"title":{"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"keywords":{"/docs/networking/using-the-linode-graphical-shell-glish/":{}},"toc":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["graphit",{"_index":1297,"title":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"deprecated":{}}],["graylog",{"_index":703,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"deprecated":{}}],["graylog debian",{"_index":705,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["graylog2",{"_index":702,"title":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"keywords":{},"toc":{},"deprecated":{}}],["grep",{"_index":902,"title":{"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["greylist",{"_index":1729,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["grid",{"_index":538,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["group",{"_index":1071,"title":{"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["groupwar",{"_index":2007,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["grub",{"_index":916,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["grub 2",{"_index":1508,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{},"deprecated":{}}],["grub legaci",{"_index":1027,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{}},"toc":{},"deprecated":{}}],["guacamol",{"_index":420,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"deprecated":{}}],["gui",{"_index":2288,"title":{},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["guid",{"_index":1161,"title":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/platform/linode-beginners-guide/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["gunicorn",{"_index":161,"title":{},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["gzip",{"_index":1427,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["ha",{"_index":1627,"title":{},"keywords":{"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"toc":{},"deprecated":{}}],["hadoop",{"_index":551,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["half",{"_index":804,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["half-life 2",{"_index":808,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["hand",{"_index":1922,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["handl",{"_index":304,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["handler",{"_index":387,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["handshak",{"_index":152,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["haproxi",{"_index":497,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{}},"toc":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hard",{"_index":2459,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["harden",{"_index":987,"title":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{}},"keywords":{},"toc":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["harden mysql",{"_index":2091,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["hardi",{"_index":2707,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["hash",{"_index":1059,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["hat",{"_index":131,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hdf",{"_index":553,"title":{},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["head",{"_index":982,"title":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"toc":{"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["header",{"_index":221,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["headless",{"_index":599,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/applications/cloud-storage/dropbox/":{}},"toc":{},"deprecated":{}}],["headless brows",{"_index":601,"title":{},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{},"deprecated":{}}],["health",{"_index":2230,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["heartble",{"_index":1802,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{},"deprecated":{}}],["hellman",{"_index":991,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["hello",{"_index":198,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["hello.go",{"_index":480,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["help",{"_index":955,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["help desk",{"_index":2163,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["helper",{"_index":931,"title":{"/docs/platform/network-helper/":{}},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"deprecated":{}}],["here",{"_index":264,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["hexchat",{"_index":1763,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["hg",{"_index":2654,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{},"deprecated":{}}],["hiawatha",{"_index":1715,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["hiera",{"_index":748,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"deprecated":{}}],["hierarchi",{"_index":754,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["high",{"_index":1087,"title":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["high avail",{"_index":500,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["highli",{"_index":656,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["hilight",{"_index":2690,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["histori",{"_index":1815,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["hl2",{"_index":810,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["home",{"_index":836,"title":{},"keywords":{},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["homebrew",{"_index":143,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["hook",{"_index":1266,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["host",{"_index":201,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/websites/hosting-a-website/":{}},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["hosting a websit",{"_index":1668,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["hostnam",{"_index":412,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["hosts fil",{"_index":715,"title":{},"keywords":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"toc":{},"deprecated":{}}],["hosts.allow",{"_index":1558,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hosts.deni",{"_index":1559,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["hourli",{"_index":1034,"title":{"/docs/platform/upgrade-to-hourly-billing/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{}},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["how to",{"_index":901,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["how to configure wordpress",{"_index":548,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to install wordpress",{"_index":2530,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["how to manage repositories with gitlab",{"_index":1213,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["how to set up bungeecord",{"_index":1448,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["how to use git",{"_index":897,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-git/":{}},"toc":{},"deprecated":{}}],["hst",{"_index":1153,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["htaccess",{"_index":633,"title":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"keywords":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["html",{"_index":371,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["htop",{"_index":1621,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["http",{"_index":217,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["http auth",{"_index":2767,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["http localhost phpmyadmin",{"_index":1865,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["http server",{"_index":2368,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["http/2",{"_index":1148,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["httpd",{"_index":1703,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["httpstubstatusmodul",{"_index":1881,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-nginx/":{}},"toc":{},"deprecated":{}}],["hub",{"_index":765,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"deprecated":{}}],["hybrid",{"_index":267,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["i/o",{"_index":2148,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["icinga",{"_index":205,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icinga2",{"_index":206,"title":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["icmp",{"_index":2002,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["id",{"_index":67,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["identifi",{"_index":914,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ignor",{"_index":1639,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["ikiwiki",{"_index":2045,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ikiwiki debian 5",{"_index":2370,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian 6",{"_index":2275,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian lenni",{"_index":2369,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ikiwiki debian squeez",{"_index":2274,"title":{},"keywords":{"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["imag",{"_index":470,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/platform/linode-images/":{}},"keywords":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/linode-images/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/platform/linode-images/":{}},"deprecated":{}}],["imap",{"_index":1932,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["immut",{"_index":1252,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["impact",{"_index":1713,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["implement",{"_index":2340,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["import",{"_index":615,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["improperli",{"_index":2643,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["in",{"_index":798,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["increas",{"_index":315,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{}},"deprecated":{}}],["independ",{"_index":2734,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["index",{"_index":113,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["individu",{"_index":1414,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["infil",{"_index":2672,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["inform",{"_index":385,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["infrastructur",{"_index":98,"title":{},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["init",{"_index":1841,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["initi",{"_index":428,"title":{},"keywords":{},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["inotifi",{"_index":354,"title":{},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{},"deprecated":{}}],["insert",{"_index":2513,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["insid",{"_index":378,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["instal",{"_index":9,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/python/install_python_miniconda/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{},"/docs/applications/containers/install_docker_ce/":{},"/docs/applications/containers/install_docker_compose/":{},"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["install alpine linux",{"_index":1124,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{}},"toc":{},"deprecated":{}}],["install cpanel",{"_index":1131,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["install dock",{"_index":870,"title":{},"keywords":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"toc":{},"deprecated":{}}],["install ghost",{"_index":724,"title":{},"keywords":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install gitlab on ubuntu",{"_index":1212,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"toc":{},"deprecated":{}}],["install graylog",{"_index":704,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{}},"toc":{},"deprecated":{}}],["install java",{"_index":13,"title":{},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install lamp ubuntu 16.04",{"_index":1178,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install mail-in-a-box",{"_index":769,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["install mariadb",{"_index":1471,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["install mysql",{"_index":1467,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install mysql on ubuntu",{"_index":2089,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install nagio",{"_index":1193,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["install nginx",{"_index":1671,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install nginx on debian 7",{"_index":1840,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["install node.j",{"_index":1670,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["install openva",{"_index":1040,"title":{},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install owncloud",{"_index":845,"title":{},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install plex",{"_index":959,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["install salt",{"_index":1411,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["install taskwarrior",{"_index":874,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["install turtl",{"_index":818,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["install uwsgi",{"_index":1984,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["install wordpress",{"_index":545,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["install wp-cli",{"_index":1204,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install zimbra",{"_index":1371,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["install znc",{"_index":1759,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["installing monit for server monitor",{"_index":1347,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"toc":{},"deprecated":{}}],["instanc",{"_index":520,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["instant",{"_index":1977,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["instant messag",{"_index":1978,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["instead",{"_index":1121,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["instruct",{"_index":2128,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["integr",{"_index":535,"title":{},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["interact",{"_index":741,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["interchang",{"_index":664,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interconnect",{"_index":668,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["interfac",{"_index":318,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["internet",{"_index":650,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["internet of th",{"_index":27,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["internet radio",{"_index":2122,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["interpret",{"_index":2450,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["interv",{"_index":1001,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["intro",{"_index":2316,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"deprecated":{}}],["introduc",{"_index":536,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["introduct",{"_index":146,"title":{"/docs/development/introduction-to-websockets/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/platform/stackscripts/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"deprecated":{}}],["introduction to git",{"_index":1905,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to version control",{"_index":1904,"title":{},"keywords":{"/docs/development/version-control/introduction-to-version-control/":{}},"toc":{},"deprecated":{}}],["introduction to websocket",{"_index":149,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{},"deprecated":{}}],["intrusion detection system",{"_index":1638,"title":{},"keywords":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"toc":{},"deprecated":{}}],["inventori",{"_index":1462,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["invoic",{"_index":2142,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{},"deprecated":{}}],["io",{"_index":1283,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["iot",{"_index":23,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["iotop",{"_index":1622,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["ip",{"_index":635,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/platform/network-helper/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["ip address",{"_index":654,"title":{},"keywords":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/networking/remote-access/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{}},"toc":{},"deprecated":{}}],["ip configur",{"_index":2254,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["ip failov",{"_index":1135,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["ip pbx system",{"_index":1390,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ip whitelist",{"_index":1354,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{},"deprecated":{}}],["ip6tabl",{"_index":2515,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["iperf",{"_index":1675,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"deprecated":{}}],["iptabl",{"_index":623,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv4",{"_index":1289,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6",{"_index":1098,"title":{"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["ipv6 network",{"_index":2253,"title":{},"keywords":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"toc":{},"deprecated":{}}],["irc",{"_index":1747,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["irc bounc",{"_index":1760,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["iredmail",{"_index":1725,"title":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["irssi",{"_index":2686,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["isp",{"_index":2646,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["ispconfig",{"_index":2287,"title":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"keywords":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["issu",{"_index":195,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["issue manag",{"_index":2624,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"toc":{},"deprecated":{}}],["issue track",{"_index":2619,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["jabber daemon",{"_index":2023,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["jail",{"_index":1360,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jail.loc",{"_index":1355,"title":{},"keywords":{"/docs/security/using-fail2ban-for-security/":{}},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["jaunti",{"_index":2746,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{},"deprecated":{}}],["java",{"_index":12,"title":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["java debian",{"_index":2338,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java fedora",{"_index":2387,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 12",{"_index":2534,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java fedora 13",{"_index":2537,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java fedora 14",{"_index":2385,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java hardi",{"_index":2835,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java jdk",{"_index":935,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"toc":{},"deprecated":{}}],["java jr",{"_index":934,"title":{},"keywords":{"/docs/development/java/install-java-on-centos/":{}},"toc":{},"deprecated":{}}],["java lenni",{"_index":2339,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 12",{"_index":2535,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 13",{"_index":2538,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["java servlets fedora 14",{"_index":2386,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu karm",{"_index":2543,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu lucid",{"_index":1974,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java servlets ubuntu maverick",{"_index":2390,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu",{"_index":1975,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.04",{"_index":2540,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["java ubuntu 10.10",{"_index":2389,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["java ubuntu 12.04",{"_index":1973,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["java ubuntu 16.04",{"_index":1175,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["java ubuntu 9.10",{"_index":2542,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["java_hom",{"_index":574,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["javascript",{"_index":1592,"title":{},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/analytics/google-analytics-for-websites/":{}},"deprecated":{}}],["jboss",{"_index":1257,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["jboss a",{"_index":1416,"title":{},"keywords":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{},"deprecated":{}}],["jc2",{"_index":1367,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["jclock",{"_index":483,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jclocksgmt",{"_index":479,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["jdk",{"_index":10,"title":{"/docs/development/java/install-java-jdk/":{}},"keywords":{"/docs/development/java/install-java-jdk/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{}},"deprecated":{}}],["jekyl",{"_index":463,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["jenkin",{"_index":430,"title":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jenkinsfil",{"_index":441,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["jessi",{"_index":1246,"title":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["job",{"_index":576,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["join",{"_index":673,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["joomla",{"_index":681,"title":{"/docs/websites/cms/manage-web-content-with-joomla/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"toc":{"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{}},"deprecated":{}}],["jre",{"_index":937,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{}},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["json",{"_index":2080,"title":{},"keywords":{"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["juicessh",{"_index":272,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["jump",{"_index":186,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["jupyt",{"_index":461,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["jupyter notebook",{"_index":793,"title":{},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{},"deprecated":{}}],["just cause 2",{"_index":1365,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["jvm",{"_index":1256,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["karmic",{"_index":2407,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["karmic lamp",{"_index":2808,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["keep",{"_index":530,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["keepal",{"_index":1620,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["keepaliv",{"_index":1158,"title":{},"keywords":{},"toc":{"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["kera",{"_index":592,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["kernel",{"_index":74,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["kernel compil",{"_index":849,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["key",{"_index":251,"title":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/api/api-key/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-managed/":{},"/docs/security/securing-your-server/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["key stor",{"_index":1041,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key-value stor",{"_index":2030,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["key_buff",{"_index":1600,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["keypair",{"_index":1118,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["kibana",{"_index":286,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["kill",{"_index":2418,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killal",{"_index":2417,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"toc":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["killswitch",{"_index":624,"title":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{}},"keywords":{},"toc":{},"deprecated":{}}],["kit",{"_index":938,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["kloxo",{"_index":2211,"title":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{}},"toc":{},"deprecated":{}}],["knife",{"_index":1539,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["knife.rb",{"_index":1548,"title":{},"keywords":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["know",{"_index":968,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"deprecated":{}}],["knowledge exchang",{"_index":2591,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["konvers",{"_index":1764,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["kubeadm",{"_index":414,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubectl",{"_index":415,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubelet",{"_index":416,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kubernet",{"_index":403,"title":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{}},"deprecated":{}}],["kvm",{"_index":911,"title":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["kvm linod",{"_index":1521,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["kvm refer",{"_index":1519,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["l2tp/ipsec",{"_index":733,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["l4d2",{"_index":1244,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["label",{"_index":1958,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["laf",{"_index":533,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lafs’",{"_index":541,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["lamp",{"_index":759,"title":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{}},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["lamp debian",{"_index":1506,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{}},"toc":{},"deprecated":{}}],["lamp guid",{"_index":2936,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["lamp howto",{"_index":1504,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lamp instal",{"_index":1655,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["lamp linux",{"_index":1898,"title":{},"keywords":{"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["lamp serv",{"_index":1789,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["lamp stack",{"_index":1496,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["languag",{"_index":401,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["laravel",{"_index":674,"title":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"deprecated":{}}],["laravel forg",{"_index":682,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["larger",{"_index":1113,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["lassi",{"_index":882,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{},"deprecated":{}}],["last",{"_index":974,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["last lin",{"_index":985,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{}},"toc":{},"deprecated":{}}],["latenc",{"_index":2640,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["latest",{"_index":1997,"title":{},"keywords":{},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"deprecated":{}}],["launch",{"_index":409,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["ldquo;incorrect&rdquo",{"_index":2159,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["ldquo;itk&rdquo",{"_index":1861,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["ldquo;less",{"_index":1061,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{}},"deprecated":{}}],["ldquo;match&rdquo",{"_index":2701,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["ldquo;universe&rdquo",{"_index":2675,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["ldquo;varnish",{"_index":1082,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["learn",{"_index":588,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["left",{"_index":1240,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"keywords":{},"toc":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"deprecated":{}}],["left 4 dead",{"_index":1243,"title":{},"keywords":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{}},"toc":{},"deprecated":{}}],["legaci",{"_index":1024,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["leiningen",{"_index":1255,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"deprecated":{}}],["lemp",{"_index":1177,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["length",{"_index":2422,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"deprecated":{}}],["lenni",{"_index":2341,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["lepp",{"_index":1825,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["less",{"_index":1011,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["let",{"_index":2552,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["let’",{"_index":1225,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["let'",{"_index":1222,"title":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"keywords":{},"toc":{},"deprecated":{}}],["letsencrypt",{"_index":801,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{}},"deprecated":{}}],["level",{"_index":2469,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["leverag",{"_index":2870,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["librari",{"_index":1542,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"deprecated":{}}],["libuv",{"_index":821,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["life",{"_index":805,"title":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["lighthttpd",{"_index":1912,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd",{"_index":1163,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{}},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["lighttpd linod",{"_index":2894,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["lighttpd serv",{"_index":2893,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["limit",{"_index":392,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["limits.conf",{"_index":1440,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["line",{"_index":389,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["link",{"_index":683,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["linking minecraft serv",{"_index":1447,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["linod",{"_index":89,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/platform/linode-images/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/websites/cms/cms-overview/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/platform/billing-and-payments/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-cli/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/support/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["linode api",{"_index":1845,"title":{},"keywords":{"/docs/platform/api/api-key/":{}},"toc":{},"deprecated":{}}],["linode backup servic",{"_index":2167,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode beginn",{"_index":2776,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode beginners guid",{"_index":2775,"title":{},"keywords":{"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode cli",{"_index":1847,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["linode control panel",{"_index":1130,"title":{},"keywords":{"/docs/websites/cms/install-cpanel-on-centos/":{}},"toc":{},"deprecated":{}}],["linode dn",{"_index":1662,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode guid",{"_index":1667,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linode host",{"_index":2896,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode imag",{"_index":1743,"title":{},"keywords":{"/docs/platform/linode-images/":{}},"toc":{},"deprecated":{}}],["linode manag",{"_index":944,"title":{},"keywords":{"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/clone-your-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{},"deprecated":{}}],["linode manager dn",{"_index":1663,"title":{},"keywords":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"toc":{},"deprecated":{}}],["linode migr",{"_index":2137,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["linode platform",{"_index":2166,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["linode quickstart guid",{"_index":1686,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/hosting-a-website/":{}},"toc":{},"deprecated":{}}],["linode setup",{"_index":1669,"title":{},"keywords":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"toc":{},"deprecated":{}}],["linode terminal tutori",{"_index":2910,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linode troubleshoot",{"_index":2872,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linode web serv",{"_index":2895,"title":{},"keywords":{"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linode’",{"_index":1948,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["linode'",{"_index":653,"title":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{}},"keywords":{},"toc":{},"deprecated":{}}],["linode’",{"_index":83,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["linux",{"_index":139,"title":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/quick-answers/linode-platform/deploy-an-image-to-a-linode/":{},"/docs/quick-answers/linode-platform/enable-backups-on-a-linode/":{},"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/platform/kvm-reference/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["linux backup",{"_index":2842,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["linux beginn",{"_index":2759,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"toc":{},"deprecated":{}}],["linux command",{"_index":2421,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["linux common command",{"_index":2430,"title":{},"keywords":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{},"deprecated":{}}],["linux configur",{"_index":2873,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"toc":{},"deprecated":{}}],["linux contain",{"_index":929,"title":{},"keywords":{"/docs/platform/use-coreos-container-linux-on-linode/":{}},"toc":{},"deprecated":{}}],["linux firewal",{"_index":2890,"title":{},"keywords":{"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux ftp",{"_index":1721,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux jabber serv",{"_index":1982,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["linux kernel",{"_index":1784,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["linux lamp",{"_index":1790,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["linux mail",{"_index":1989,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["linux mail serv",{"_index":1587,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["linux package manag",{"_index":2937,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{},"deprecated":{}}],["linux scp",{"_index":1718,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux sftp program",{"_index":1720,"title":{},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"toc":{},"deprecated":{}}],["linux termin",{"_index":2908,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["linux tip",{"_index":2758,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["linux ufw",{"_index":1312,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["linux upgrade howto",{"_index":2223,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["linux web",{"_index":1895,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["linux web serv",{"_index":690,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["linux xmpp",{"_index":2321,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["lish",{"_index":915,"title":{"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/networking/remote-access/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["lisp",{"_index":824,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["list",{"_index":521,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["listen",{"_index":2026,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["listserv",{"_index":2071,"title":{},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["littl",{"_index":2864,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["live",{"_index":1828,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["lmtp",{"_index":1921,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["ln",{"_index":2457,"title":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["load",{"_index":316,"title":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"deprecated":{}}],["load balanc",{"_index":499,"title":{},"keywords":{"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["load test",{"_index":1625,"title":{},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{},"deprecated":{}}],["local",{"_index":215,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["localhost phpmyadmin",{"_index":1863,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["locat",{"_index":523,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["lock",{"_index":2516,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["log",{"_index":688,"title":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["log fil",{"_index":2464,"title":{},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{},"deprecated":{}}],["logic",{"_index":383,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["login",{"_index":946,"title":{},"keywords":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["logrot",{"_index":2463,"title":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"keywords":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logrotate.conf",{"_index":2466,"title":{},"keywords":{},"toc":{"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["logstash",{"_index":570,"title":{},"keywords":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{}},"deprecated":{}}],["logwatch",{"_index":1473,"title":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"keywords":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{}},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["london",{"_index":2904,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["longview",{"_index":920,"title":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"keywords":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/longview/longview/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/longview/longview/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["longview’",{"_index":1959,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["look",{"_index":1883,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/linode-managed/":{}},"deprecated":{}}],["loop",{"_index":361,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["loss",{"_index":2641,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["lost",{"_index":2009,"title":{},"keywords":{},"toc":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["low",{"_index":2076,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["lsyncd",{"_index":1684,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["lt",{"_index":1184,"title":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["lua",{"_index":2100,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["lucen",{"_index":721,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["lucid",{"_index":2265,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["luk",{"_index":241,"title":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"keywords":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{}},"deprecated":{}}],["luminu",{"_index":1254,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mac",{"_index":141,"title":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["mac os ftp",{"_index":2788,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os scp",{"_index":2786,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os sftp program",{"_index":2787,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"toc":{},"deprecated":{}}],["mac os x",{"_index":2626,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{}},"toc":{},"deprecated":{}}],["machin",{"_index":587,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["machine learn",{"_index":593,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["maco",{"_index":185,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["macport",{"_index":144,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["magento",{"_index":1050,"title":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"deprecated":{}}],["magento cento",{"_index":1052,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{}},"toc":{},"deprecated":{}}],["magento ubuntu",{"_index":1054,"title":{},"keywords":{"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mail",{"_index":767,"title":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mail client",{"_index":1856,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["mail serv",{"_index":1372,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mail zimbra",{"_index":1375,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mailbox",{"_index":1589,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["mailman",{"_index":2070,"title":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"keywords":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"toc":{"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{}},"deprecated":{}}],["main",{"_index":310,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"deprecated":{}}],["maintain",{"_index":1951,"title":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["mainten",{"_index":77,"title":{},"keywords":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["make",{"_index":620,"title":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["malwar",{"_index":495,"title":{},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{},"deprecated":{}}],["man pag",{"_index":1849,"title":{},"keywords":{"/docs/platform/linode-cli/":{}},"toc":{},"deprecated":{}}],["manag",{"_index":90,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-images/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["manage a backup",{"_index":2169,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["manage databas",{"_index":2118,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["manage postgresql databas",{"_index":2628,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["managing domain",{"_index":2114,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["mandatory access control system",{"_index":881,"title":{},"keywords":{"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mandril",{"_index":1779,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["mango",{"_index":2278,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"deprecated":{}}],["manifest",{"_index":752,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{}},"deprecated":{}}],["manipul",{"_index":2411,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["manti",{"_index":2280,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"deprecated":{}}],["mantis debian",{"_index":2708,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mantis fedora",{"_index":2283,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mantis linux",{"_index":2284,"title":{},"keywords":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["manual",{"_index":437,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/longview/longview/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["map",{"_index":242,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["mapreduc",{"_index":585,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["mariadb",{"_index":3,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["mariadb on linux",{"_index":1470,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["mariadb’",{"_index":1776,"title":{},"keywords":{},"toc":{"/docs/databases/mariadb/mariadb-setup-debian/":{}},"deprecated":{}}],["markdown",{"_index":466,"title":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["market](http://www.boonex.com/market",{"_index":2112,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["master",{"_index":209,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["master-mast",{"_index":1681,"title":{},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["master/slav",{"_index":1190,"title":{},"keywords":{},"toc":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"deprecated":{}}],["match",{"_index":338,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["mathjax",{"_index":473,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["maverick",{"_index":2277,"title":{"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["maverick lamp",{"_index":2443,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["max",{"_index":1875,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{}},"deprecated":{}}],["max_allowed_packet",{"_index":1601,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["max_connect",{"_index":1604,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["maxclient",{"_index":1617,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maximum",{"_index":557,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["maxrequestsperchild",{"_index":1618,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["maxspareserv",{"_index":1616,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mcmyadmin",{"_index":1640,"title":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"keywords":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"toc":{"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{}},"deprecated":{}}],["mcrypt",{"_index":2294,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["mda",{"_index":2716,"title":{},"keywords":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{},"deprecated":{}}],["mean",{"_index":91,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["media",{"_index":905,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["mediawiki",{"_index":2828,"title":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["meltdown",{"_index":71,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["member",{"_index":1076,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["memori",{"_index":411,"title":{"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["mercuri",{"_index":2653,"title":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["merg",{"_index":453,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["mesa",{"_index":1215,"title":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["mesh",{"_index":666,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["messag",{"_index":1271,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["meta",{"_index":384,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["metadata_csum",{"_index":642,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["metamod",{"_index":1218,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["method",{"_index":155,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["methodolog",{"_index":2665,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["metric",{"_index":1957,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["metricbeat",{"_index":285,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["microservic",{"_index":159,"title":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{}},"deprecated":{}}],["mid",{"_index":1810,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["midnight",{"_index":736,"title":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"deprecated":{}}],["midnight command",{"_index":737,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["migrat",{"_index":1524,"title":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{"/docs/platform/kvm-reference/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["migrate linux",{"_index":2138,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["migrate to linod",{"_index":2136,"title":{},"keywords":{"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"toc":{},"deprecated":{}}],["mind",{"_index":1169,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["minecraft",{"_index":1281,"title":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{}},"deprecated":{}}],["minecraft serv",{"_index":1446,"title":{},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"toc":{},"deprecated":{}}],["miniconda",{"_index":123,"title":{"/docs/development/python/install_python_miniconda/":{}},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["minimalist",{"_index":697,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["minion",{"_index":855,"title":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["minspareserv",{"_index":1615,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["mirror",{"_index":506,"title":{"/docs/platform/package-mirrors/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/package-mirrors/":{}},"deprecated":{}}],["miss",{"_index":1434,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mitig",{"_index":70,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mnist",{"_index":595,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mod",{"_index":1482,"title":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"deprecated":{}}],["mod\\_mono",{"_index":2504,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mod\\_python",{"_index":2583,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mod\\_statu",{"_index":1885,"title":{},"keywords":{"/docs/platform/longview/longview-app-for-apache/":{}},"toc":{},"deprecated":{}}],["mod\\_wsgi",{"_index":1308,"title":{},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mod_alia",{"_index":2703,"title":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["mod_auth",{"_index":2768,"title":{},"keywords":{"/docs/web-servers/apache/apache-access-control/":{}},"toc":{},"deprecated":{}}],["mod_dav_svn",{"_index":2754,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["mod_evas",{"_index":2186,"title":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["mod_fastcgi",{"_index":1775,"title":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["mod_jk",{"_index":1421,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["mod_mono",{"_index":2500,"title":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["mod_perl",{"_index":2718,"title":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"keywords":{},"toc":{"/docs/development/frameworks/catalyst-and-modperl/":{}},"deprecated":{}}],["mod_php",{"_index":1249,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"deprecated":{}}],["mod_python",{"_index":2582,"title":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"keywords":{},"toc":{},"deprecated":{}}],["mod_rewrit",{"_index":2383,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["mod_secur",{"_index":2199,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"toc":{},"deprecated":{}}],["mod_statu",{"_index":1612,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["mod_wsgi",{"_index":597,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{}},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["mode",{"_index":247,"title":{"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/platform/kvm-reference/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["model",{"_index":589,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"deprecated":{}}],["modevas",{"_index":2187,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"toc":{},"deprecated":{}}],["modif",{"_index":1422,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["modifi",{"_index":404,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/platform/network-helper/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["modsecur",{"_index":2198,"title":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["modul",{"_index":262,"title":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["mognodb",{"_index":2456,"title":{},"keywords":{"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mongo",{"_index":1798,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["mongodb",{"_index":707,"title":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{}},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"deprecated":{}}],["mongodb tutori",{"_index":1042,"title":{},"keywords":{"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["monit",{"_index":1346,"title":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monit’",{"_index":1351,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{}},"deprecated":{}}],["monitor",{"_index":203,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["monitor servic",{"_index":2001,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["monitor system secur",{"_index":820,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["monitoring tool",{"_index":1299,"title":{},"keywords":{"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mono",{"_index":2501,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["month",{"_index":1811,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["more",{"_index":1352,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["mosh",{"_index":1970,"title":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"keywords":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"toc":{"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{}},"deprecated":{}}],["mount",{"_index":645,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["movabl",{"_index":2926,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["movable typ",{"_index":2927,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["move",{"_index":586,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["moving to different account",{"_index":2129,"title":{},"keywords":{"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{}},"toc":{},"deprecated":{}}],["mp",{"_index":1368,"title":{},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["mp3",{"_index":1395,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["mpm",{"_index":1862,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"deprecated":{}}],["mt howto",{"_index":2928,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"toc":{},"deprecated":{}}],["mta",{"_index":2342,"title":{},"keywords":{"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mtr",{"_index":2638,"title":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["multi",{"_index":1480,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["multicraft",{"_index":1643,"title":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"keywords":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"toc":{"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{}},"deprecated":{}}],["multipl",{"_index":189,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/platform/linode-cli/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["multiplay",{"_index":1242,"title":{"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"deprecated":{}}],["multiplayer first-person shooter video gam",{"_index":811,"title":{},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiplayer game serv",{"_index":1366,"title":{},"keywords":{"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["multiple web serv",{"_index":2000,"title":{},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["multiple wordpress",{"_index":547,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"toc":{},"deprecated":{}}],["multiplex",{"_index":364,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{},"deprecated":{}}],["mumbl",{"_index":1323,"title":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["munin",{"_index":2181,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["murmur",{"_index":1324,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["music",{"_index":1645,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{},"deprecated":{}}],["mx",{"_index":1726,"title":{},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["mybb",{"_index":2692,"title":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"toc":{"/docs/websites/forums/discussion-forums-with-mybb/":{}},"deprecated":{}}],["mysql",{"_index":4,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["mysql arch linux",{"_index":2317,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["mysql cento",{"_index":2882,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{}},"toc":{},"deprecated":{}}],["mysql debian",{"_index":2373,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql debian 6",{"_index":2372,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql debian squeez",{"_index":2374,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql fedora",{"_index":1844,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 12",{"_index":2883,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql fedora 13",{"_index":2569,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["mysql fedora 14",{"_index":2393,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["mysql fedora 20",{"_index":1842,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{}},"toc":{},"deprecated":{}}],["mysql hardi",{"_index":2884,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["mysql instal",{"_index":1180,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["mysql jaunti",{"_index":2885,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql karm",{"_index":2809,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["mysql lenni",{"_index":2886,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linod",{"_index":2088,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql linux",{"_index":1843,"title":{},"keywords":{"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["mysql linux linod",{"_index":2375,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["mysql manag",{"_index":1866,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{}},"toc":{},"deprecated":{}}],["mysql maverick",{"_index":2438,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql on linux",{"_index":1465,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql over ssh",{"_index":2742,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql sample databas",{"_index":843,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["mysql tun",{"_index":2090,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["mysql tunnel",{"_index":2741,"title":{},"keywords":{"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu",{"_index":2087,"title":{},"keywords":{"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.04",{"_index":2629,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["mysql ubuntu 10.10",{"_index":2437,"title":{},"keywords":{"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["mysql virtual domain",{"_index":2567,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["mysql workbench",{"_index":842,"title":{},"keywords":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{},"deprecated":{}}],["mysql’",{"_index":1682,"title":{},"keywords":{},"toc":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysql/mariadb",{"_index":1302,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/lamp-on-centos-7/":{}},"deprecated":{}}],["mysqldump",{"_index":7,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{}},"keywords":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["mysqltun",{"_index":1469,"title":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["nagio",{"_index":1191,"title":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["nagios 4 ubuntu",{"_index":1194,"title":{},"keywords":{"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{}},"toc":{},"deprecated":{}}],["nagios linux",{"_index":2410,"title":{},"keywords":{"/docs/uptime/monitoring/nagios-server-monitoring/":{}},"toc":{},"deprecated":{}}],["name",{"_index":685,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["name server daemon",{"_index":2075,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["namenod",{"_index":575,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["nameserv",{"_index":1133,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["nano",{"_index":953,"title":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["natti",{"_index":2183,"title":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["natty lamp",{"_index":2243,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["navig",{"_index":181,"title":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["ndash;delet",{"_index":1953,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;distribut",{"_index":1852,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;link",{"_index":1954,"title":{},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["ndash;loc",{"_index":1851,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["ndash;plan",{"_index":1850,"title":{},"keywords":{},"toc":{"/docs/platform/linode-cli/":{}},"deprecated":{}}],["need",{"_index":69,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["neighbor",{"_index":2255,"title":{},"keywords":{},"toc":{"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["neomak",{"_index":618,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["neovim",{"_index":607,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["net",{"_index":2502,"title":{},"keywords":{"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["netfilt",{"_index":2517,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["network",{"_index":662,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/platform/network-helper/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/longview/longview/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["network backup",{"_index":2841,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["network file system",{"_index":1820,"title":{},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{},"deprecated":{}}],["network help",{"_index":1692,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["network monitor",{"_index":884,"title":{},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{},"deprecated":{}}],["neural network",{"_index":594,"title":{},"keywords":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{}},"toc":{},"deprecated":{}}],["new",{"_index":96,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-backup-service/":{},"/docs/platform/stackscripts/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["newark",{"_index":2905,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["newer",{"_index":2854,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["next",{"_index":45,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/platform/meltdown_statement/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["nextcloud",{"_index":255,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"deprecated":{}}],["nf",{"_index":1819,"title":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"keywords":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"toc":{"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{}},"deprecated":{}}],["nginx",{"_index":31,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["nginx arch",{"_index":2367,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx arch linux",{"_index":2366,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["nginx centos 5",{"_index":2749,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{}},"toc":{},"deprecated":{}}],["nginx contain",{"_index":862,"title":{},"keywords":{"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{}},"toc":{},"deprecated":{}}],["nginx debian",{"_index":2346,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx debian 6",{"_index":2251,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx debian squeez",{"_index":2345,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx fastcgi",{"_index":1527,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx fedora",{"_index":2394,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 12",{"_index":2694,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["nginx fedora 13",{"_index":2571,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["nginx fedora 14",{"_index":2377,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["nginx perl",{"_index":2015,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx perl debian 6",{"_index":2344,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl fastcgi",{"_index":2258,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["nginx perl ubuntu 11.04",{"_index":2257,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx php",{"_index":1528,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["nginx repositori",{"_index":1707,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu",{"_index":2260,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.04",{"_index":2612,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 10.10",{"_index":2362,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 11.04",{"_index":2252,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 12.04",{"_index":2014,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 14.04",{"_index":1526,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu 9.10",{"_index":2751,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["nginx ubuntu natti",{"_index":2259,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["nginx.conf",{"_index":1441,"title":{},"keywords":{"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["ngx_pagespe",{"_index":1338,"title":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{}},"keywords":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["nick",{"_index":2688,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nicknam",{"_index":1755,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["nightmare.j",{"_index":598,"title":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"toc":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{}},"deprecated":{}}],["nix",{"_index":912,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["nixo",{"_index":908,"title":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"keywords":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["node",{"_index":208,"title":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{}},"deprecated":{}}],["node.j",{"_index":197,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"keywords":{"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["nodebalanc",{"_index":1159,"title":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"toc":{"/docs/websites/host-a-website-with-high-availability/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/platform/linode-cli/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["nodej",{"_index":436,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["non",{"_index":216,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["normal",{"_index":1327,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["nosql",{"_index":893,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["notat",{"_index":2554,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["note",{"_index":1628,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["notebook",{"_index":462,"title":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"deprecated":{}}],["notic",{"_index":1038,"title":{},"keywords":{},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["notif",{"_index":359,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{}},"deprecated":{}}],["notifi",{"_index":358,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["npm",{"_index":728,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["ns",{"_index":2919,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["nsd",{"_index":2073,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["ntopng",{"_index":883,"title":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"keywords":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["ntopng’",{"_index":888,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{}},"deprecated":{}}],["number",{"_index":2208,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["nvim",{"_index":612,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["oath",{"_index":1092,"title":{},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"deprecated":{}}],["object",{"_index":156,"title":{},"keywords":{},"toc":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["obtain",{"_index":1139,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["ocamlfus",{"_index":1399,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-google-drive-linode/":{}},"deprecated":{}}],["ocean",{"_index":439,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["ocsp",{"_index":1149,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["octal",{"_index":2553,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["odoo",{"_index":1005,"title":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["odoo 10",{"_index":1010,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["odoo erp",{"_index":1007,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["offcial",{"_index":2037,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["offens",{"_index":1229,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["offici",{"_index":1687,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["offsit",{"_index":2875,"title":{},"keywords":{},"toc":{"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["oftc",{"_index":1748,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["ohai",{"_index":1540,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["older",{"_index":1510,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{}},"deprecated":{}}],["omnibu",{"_index":1209,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["on",{"_index":231,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["oneir",{"_index":2210,"title":{"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"keywords":{},"toc":{},"deprecated":{}}],["oneiric lamp",{"_index":2217,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["opcach",{"_index":314,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["open",{"_index":191,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"keywords":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["open sourc",{"_index":1383,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["open source analyt",{"_index":2062,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["open source databas",{"_index":1064,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["open source dn",{"_index":2085,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["open source guid",{"_index":1376,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["open source host",{"_index":257,"title":{},"keywords":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{}},"toc":{},"deprecated":{}}],["opencart",{"_index":964,"title":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"toc":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{}},"deprecated":{}}],["openconnect",{"_index":734,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["opendkim",{"_index":1263,"title":{},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["openerp",{"_index":1009,"title":{},"keywords":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["openfir",{"_index":1976,"title":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"deprecated":{}}],["openfire cento",{"_index":2507,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{}},"toc":{},"deprecated":{}}],["openfire debian 6",{"_index":2318,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire debian squeez",{"_index":2319,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openfire linux",{"_index":2320,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire on linux",{"_index":2508,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 10.04",{"_index":2610,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.04",{"_index":2839,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["openfire ubuntu 9.10",{"_index":2806,"title":{},"keywords":{"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["openjdk",{"_index":279,"title":{},"keywords":{"/docs/development/java/install-java-on-debian/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"deprecated":{}}],["openssh",{"_index":986,"title":{"/docs/security/advanced-ssh-server-security/":{}},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["openssl",{"_index":1288,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"deprecated":{}}],["openssl'",{"_index":2783,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{},"deprecated":{}}],["opensus",{"_index":1678,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/networking/linux-static-ip-configuration/":{}},"deprecated":{}}],["openva",{"_index":1039,"title":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"keywords":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"toc":{"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["openvpn",{"_index":731,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["openvpn debian",{"_index":2311,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvpn debian 6",{"_index":2310,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["openvz",{"_index":639,"title":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["oper",{"_index":1101,"title":{"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{},"toc":{"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["opscod",{"_index":1543,"title":{},"keywords":{"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{}},"toc":{},"deprecated":{}}],["optim",{"_index":349,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{}},"deprecated":{}}],["option",{"_index":334,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/platform/linode-cli/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["oracl",{"_index":939,"title":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/development/java/install-java-on-ubuntu-16-04/":{}},"toc":{"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"deprecated":{}}],["oracle 10g",{"_index":2306,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle 10g debian 6",{"_index":2330,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle 10g ubuntu 10.10",{"_index":2300,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle debian",{"_index":2332,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian 6",{"_index":2331,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle debian lenni",{"_index":2722,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle debian squeez",{"_index":2329,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["oracle jdk 8",{"_index":1258,"title":{},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["oracle linux",{"_index":2303,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["oracle over ssh",{"_index":2724,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle tunnel",{"_index":2723,"title":{},"keywords":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu",{"_index":2302,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.04",{"_index":2601,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 10.10",{"_index":2301,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu 9.10",{"_index":2600,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["oracle ubuntu maverick",{"_index":2299,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["order",{"_index":2325,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["organ",{"_index":961,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["origin",{"_index":1636,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["os",{"_index":351,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["os x",{"_index":1284,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["oscommerc",{"_index":2452,"title":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["osqa",{"_index":2590,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"deprecated":{}}],["ossec",{"_index":564,"title":{"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"keywords":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["osx",{"_index":2712,"title":{},"keywords":{"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["otp",{"_index":788,"title":{},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["out",{"_index":1397,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["outbound",{"_index":2349,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["outfil",{"_index":2668,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["output",{"_index":1837,"title":{},"keywords":{},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["outsid",{"_index":455,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["over",{"_index":948,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"keywords":{},"toc":{"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["overag",{"_index":1813,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["overrid",{"_index":2489,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["overview",{"_index":887,"title":{"/docs/websites/cms/cms-overview/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"keywords":{},"toc":{"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["owa",{"_index":1278,"title":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"keywords":{},"toc":{"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"deprecated":{}}],["owasp",{"_index":2201,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["owncloud",{"_index":844,"title":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"keywords":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"toc":{"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{}},"deprecated":{}}],["ownership",{"_index":1015,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["packag",{"_index":65,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["package manag",{"_index":696,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["packet",{"_index":1431,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["pacman",{"_index":2941,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["page",{"_index":638,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["page](http://www.boonex.com",{"_index":2111,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["pager",{"_index":2912,"title":{},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["pagespe",{"_index":1339,"title":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"toc":{"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{}},"deprecated":{}}],["pair",{"_index":572,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["pane",{"_index":366,"title":{},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["panel",{"_index":744,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pangolin",{"_index":1971,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{},"deprecated":{}}],["paramet",{"_index":1322,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["park",{"_index":2119,"title":{},"keywords":{},"toc":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"deprecated":{}}],["parked domain",{"_index":2116,"title":{},"keywords":{"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{},"deprecated":{}}],["part",{"_index":1752,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["parti",{"_index":1666,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["partit",{"_index":245,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["pass",{"_index":219,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"deprecated":{}}],["passeng",{"_index":709,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["passiv",{"_index":2231,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["passlib",{"_index":699,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["passphras",{"_index":1609,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["password",{"_index":952,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/platform/accounts-and-passwords/":{}},"keywords":{"/docs/security/linode-manager-security-controls/":{},"/docs/platform/accounts-and-passwords/":{}},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["past",{"_index":2207,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["patch",{"_index":86,"title":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["path",{"_index":58,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["patroni",{"_index":657,"title":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{}},"deprecated":{}}],["payment",{"_index":1037,"title":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["pbx",{"_index":1385,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pc",{"_index":1918,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["pear",{"_index":2293,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["peer",{"_index":661,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["pengolin",{"_index":2058,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["perfect",{"_index":1908,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{}},"deprecated":{}}],["perform",{"_index":527,"title":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{}},"deprecated":{}}],["perl",{"_index":1826,"title":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["perl fastcgi arch linux",{"_index":2365,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{}},"toc":{},"deprecated":{}}],["perl/cgi",{"_index":2930,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["permalink",{"_index":1112,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{}},"deprecated":{}}],["permiss",{"_index":405,"title":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["permit",{"_index":1550,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{}},"deprecated":{}}],["persist",{"_index":178,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"deprecated":{}}],["pflogsumm",{"_index":1836,"title":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"keywords":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"toc":{"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{}},"deprecated":{}}],["pg_dump",{"_index":229,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["pg_hba.conf",{"_index":337,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pg_ident.conf",{"_index":340,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["pgadmin",{"_index":2625,"title":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"deprecated":{}}],["pgadmin window",{"_index":2649,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["pharo",{"_index":2732,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["phase",{"_index":87,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["phonet",{"_index":115,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"deprecated":{}}],["php",{"_index":259,"title":{"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["php 7.0",{"_index":1181,"title":{},"keywords":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["php apach",{"_index":2403,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php cgi",{"_index":1858,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php framework",{"_index":2576,"title":{},"keywords":{"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php fusion",{"_index":2677,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-phpfusion/":{}},"toc":{},"deprecated":{}}],["php mysql",{"_index":1864,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["php pool",{"_index":1250,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php script",{"_index":1859,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.04",{"_index":2615,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu 10.10",{"_index":2401,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php ubuntu lucid",{"_index":2616,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["php ubuntu maverick",{"_index":2402,"title":{},"keywords":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["php-fpm",{"_index":1079,"title":{},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{}},"toc":{},"deprecated":{}}],["php5",{"_index":1577,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["php5-mysql",{"_index":1247,"title":{},"keywords":{"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{}},"toc":{},"deprecated":{}}],["phpbb",{"_index":1993,"title":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"toc":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{}},"deprecated":{}}],["phpfox",{"_index":2371,"title":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{}},"deprecated":{}}],["phpmyadmin",{"_index":1838,"title":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["phusion",{"_index":2249,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["physic",{"_index":1,"title":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{}},"keywords":{},"toc":{},"deprecated":{}}],["pi",{"_index":37,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["ping",{"_index":1452,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["pip",{"_index":693,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pipelin",{"_index":431,"title":{},"keywords":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["piwik",{"_index":2061,"title":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"deprecated":{}}],["piwik centos 5",{"_index":2705,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-centos-5/":{}},"toc":{},"deprecated":{}}],["piwik debian",{"_index":2763,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["piwik fedora 13",{"_index":2380,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.04",{"_index":2398,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 10.10",{"_index":2376,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 12.04",{"_index":2063,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.04",{"_index":2747,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["piwik ubuntu 9.10",{"_index":2748,"title":{},"keywords":{"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["pjproject",{"_index":1392,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["pki",{"_index":1914,"title":{},"keywords":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["place",{"_index":93,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["plain",{"_index":246,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["plain text",{"_index":2279,"title":{},"keywords":{"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["plan",{"_index":758,"title":{"/docs/applications/project-management/install-farmos/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["planet",{"_index":2043,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"deprecated":{}}],["play",{"_index":816,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{}},"deprecated":{}}],["playbook",{"_index":1453,"title":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{}},"deprecated":{}}],["plesk",{"_index":2213,"title":{},"keywords":{"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"toc":{},"deprecated":{}}],["plex",{"_index":957,"title":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["plex cento",{"_index":960,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{}},"toc":{},"deprecated":{}}],["plex media serv",{"_index":958,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plex ubuntu",{"_index":963,"title":{},"keywords":{"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["plone",{"_index":2720,"title":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["plug",{"_index":609,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{"/docs/applications/social-networking/dolphin/":{}}}],["plugin",{"_index":107,"title":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"deprecated":{}}],["pocketmin",{"_index":1579,"title":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"keywords":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"toc":{"/docs/game-servers/pocketmine-server-on-debian-7/":{}},"deprecated":{}}],["point",{"_index":1335,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["polici",{"_index":1265,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"deprecated":{}}],["poll",{"_index":1348,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["poodl",{"_index":1712,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{},"deprecated":{}}],["pool",{"_index":508,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-php-fpm-and-apache-on-debian-8/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/networking/an-overview-of-ipv6-on-linode/":{}},"deprecated":{}}],["pop3",{"_index":1933,"title":{},"keywords":{"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["popul",{"_index":1295,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["popup",{"_index":1878,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["port",{"_index":350,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["port/protocol",{"_index":1406,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["portain",{"_index":266,"title":{},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["posix",{"_index":2064,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["possibl",{"_index":542,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/platform/upgrade-to-hourly-billing/":{}},"deprecated":{}}],["post",{"_index":1833,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix",{"_index":1055,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["postfix centos 5",{"_index":2236,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{}},"toc":{},"deprecated":{}}],["postfix centos 6",{"_index":1590,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{}},"toc":{},"deprecated":{}}],["postfix centos 7",{"_index":1585,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["postfix debian 6",{"_index":2233,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postfix dovecot",{"_index":2697,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix karm",{"_index":2696,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix on debian",{"_index":2850,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 12",{"_index":2578,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["postfix on fedora 13",{"_index":2563,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["postfix on linux",{"_index":2564,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix on ubuntu",{"_index":2805,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.04",{"_index":2598,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 10.10",{"_index":2453,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 8.04",{"_index":2836,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu 9.10",{"_index":2695,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix ubuntu karm",{"_index":2804,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postfix with couri",{"_index":2565,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postfix with mysql",{"_index":2566,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgr",{"_index":227,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgreql lucid",{"_index":2636,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgreql maverick",{"_index":2436,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql",{"_index":30,"title":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["postgresql databas",{"_index":1160,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql debian 6",{"_index":2335,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 12",{"_index":2848,"title":{},"keywords":{"/docs/databases/postgresql/fedora-12/":{}},"toc":{},"deprecated":{}}],["postgresql fedora 13",{"_index":2570,"title":{},"keywords":{"/docs/databases/postgresql/fedora-13/":{}},"toc":{},"deprecated":{}}],["postgresql gui",{"_index":2627,"title":{},"keywords":{"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql on cento",{"_index":2847,"title":{},"keywords":{"/docs/databases/postgresql/centos-5/":{}},"toc":{},"deprecated":{}}],["postgresql on debian",{"_index":2861,"title":{},"keywords":{"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["postgresql on ubuntu",{"_index":2849,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["postgresql squeez",{"_index":2336,"title":{},"keywords":{"/docs/databases/postgresql/debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu",{"_index":2810,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.04",{"_index":2635,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 10.10",{"_index":2435,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu 9.10",{"_index":2811,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql ubuntu karm",{"_index":2812,"title":{},"keywords":{"/docs/databases/postgresql/ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["postgresql window",{"_index":2650,"title":{},"keywords":{"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{}},"toc":{},"deprecated":{}}],["postgresql.conf",{"_index":333,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{}},"deprecated":{}}],["postmast",{"_index":2740,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["postpon",{"_index":78,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["potenti",{"_index":1924,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["power",{"_index":1812,"title":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["practic",{"_index":167,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["pre",{"_index":568,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["preced",{"_index":2702,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["precis",{"_index":1801,"title":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["precise pangolin",{"_index":1995,"title":{},"keywords":{"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["predict",{"_index":917,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{}},"deprecated":{}}],["prefer",{"_index":1294,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["prefork",{"_index":1481,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["preliminari",{"_index":433,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["prepaid",{"_index":1036,"title":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"keywords":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prepar",{"_index":112,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"deprecated":{}}],["prepay",{"_index":2144,"title":{},"keywords":{},"toc":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["prerequisit",{"_index":706,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/cloud-storage/owncloud-debian-7/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/support/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["preserv",{"_index":2726,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["prestashop",{"_index":778,"title":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"keywords":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["prestashop’",{"_index":781,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["preview",{"_index":1853,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"toc":{},"deprecated":{}}],["previou",{"_index":977,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["previous",{"_index":1637,"title":{},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["price",{"_index":2174,"title":{},"keywords":{},"toc":{"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["print",{"_index":1476,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["prior",{"_index":2426,"title":{},"keywords":{},"toc":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"deprecated":{}}],["pritunl",{"_index":1483,"title":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"deprecated":{}}],["privat",{"_index":531,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/networking/remote-access/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["private branch exchang",{"_index":1384,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["privileg",{"_index":1293,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["pro",{"_index":1963,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["problem",{"_index":1564,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"deprecated":{}}],["proc",{"_index":2451,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"deprecated":{}}],["procedur",{"_index":1942,"title":{},"keywords":{},"toc":{"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["process",{"_index":302,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["processor",{"_index":118,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"deprecated":{}}],["product",{"_index":165,"title":{"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"deprecated":{}}],["profil",{"_index":525,"title":{"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/platform/network-helper/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["program",{"_index":1557,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["progress",{"_index":105,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["project",{"_index":380,"title":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["project host",{"_index":2558,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["project management softwar",{"_index":2247,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["promot",{"_index":833,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"deprecated":{}}],["prompt",{"_index":2867,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["propag",{"_index":2933,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["properli",{"_index":2647,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["properti",{"_index":578,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["prorat",{"_index":1814,"title":{},"keywords":{},"toc":{"/docs/platform/billing-and-payments/":{}},"deprecated":{}}],["prosodi",{"_index":2096,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["prosody debian lenni",{"_index":2822,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu",{"_index":2097,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu hardi",{"_index":2823,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu jaunti",{"_index":2824,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu karm",{"_index":2794,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["prosody ubuntu lucid",{"_index":2326,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["prosody.im",{"_index":2098,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["prosodyctl",{"_index":2101,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["protect",{"_index":1552,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/platform/linode-backup-service/":{}},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["protocol",{"_index":218,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["provid",{"_index":485,"title":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["provis",{"_index":269,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["proxi",{"_index":33,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["proxy pass",{"_index":2046,"title":{},"keywords":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["proxypass",{"_index":1998,"title":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{}},"toc":{"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["psql",{"_index":230,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["ptr",{"_index":777,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ptr record",{"_index":1493,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["public",{"_index":1094,"title":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"keywords":{},"toc":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["publish",{"_index":2658,"title":{},"keywords":{},"toc":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{}},"deprecated":{}}],["pull",{"_index":454,"title":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["puppet",{"_index":747,"title":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/platform/automating-server-builds/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"deprecated":{}}],["puppet ag",{"_index":1319,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["puppet instal",{"_index":749,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{}},"toc":{},"deprecated":{}}],["puppet mast",{"_index":1318,"title":{},"keywords":{"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{}},"toc":{},"deprecated":{}}],["purg",{"_index":192,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{}},"deprecated":{}}],["purge&rdquo",{"_index":1083,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{}},"deprecated":{}}],["push",{"_index":764,"title":{},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"deprecated":{}}],["put",{"_index":584,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{}},"deprecated":{}}],["putti",{"_index":2067,"title":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["putty ssh",{"_index":2837,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["pv",{"_index":1573,"title":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{}},"deprecated":{}}],["pv-grub",{"_index":1574,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pvgrub",{"_index":1575,"title":{},"keywords":{"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"toc":{},"deprecated":{}}],["pyinotifi",{"_index":353,"title":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"keywords":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["pypa",{"_index":694,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"toc":{},"deprecated":{}}],["pypi",{"_index":698,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["python",{"_index":39,"title":{"/docs/development/python/install_python_miniconda/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{}},"keywords":{"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["python 3",{"_index":124,"title":{},"keywords":{"/docs/development/python/install_python_miniconda/":{}},"toc":{},"deprecated":{}}],["python virtual environ",{"_index":835,"title":{},"keywords":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{},"deprecated":{}}],["q&a",{"_index":2593,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queri",{"_index":1069,"title":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["question",{"_index":2588,"title":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["question and answ",{"_index":2592,"title":{},"keywords":{"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["queue",{"_index":394,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["quick",{"_index":686,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["quick refer",{"_index":1582,"title":{},"keywords":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"toc":{},"deprecated":{}}],["quick start",{"_index":2176,"title":{},"keywords":{"/docs/security/securing-your-server/":{}},"toc":{},"deprecated":{}}],["quickedit",{"_index":274,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["quickli",{"_index":973,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["quicklisp",{"_index":825,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["quit",{"_index":1756,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["r",{"_index":50,"title":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["r foundat",{"_index":52,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"toc":{},"deprecated":{}}],["rabbitmq",{"_index":396,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["rack",{"_index":2315,"title":{},"keywords":{},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["raid",{"_index":507,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["rail",{"_index":1196,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["rails and apach",{"_index":1910,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails app",{"_index":1513,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["rails on cento",{"_index":2877,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{}},"toc":{},"deprecated":{}}],["rails on debian",{"_index":1909,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rails on ubuntu",{"_index":2308,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ram",{"_index":2449,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["rancher",{"_index":402,"title":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"keywords":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"toc":{"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{}},"deprecated":{}}],["rang",{"_index":2232,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["rare",{"_index":2853,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["raspberri",{"_index":36,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["raspberry pi",{"_index":26,"title":{},"keywords":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"toc":{},"deprecated":{}}],["rate",{"_index":2433,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["rcon",{"_index":1239,"title":{},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["rdbm",{"_index":2305,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["rdiff",{"_index":1950,"title":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{}},"deprecated":{}}],["rdiff-backup",{"_index":2840,"title":{},"keywords":{"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{},"deprecated":{}}],["rdn",{"_index":1489,"title":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["read",{"_index":290,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["reader",{"_index":1018,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["readi",{"_index":872,"title":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["real",{"_index":1757,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["real tim",{"_index":1749,"title":{},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"toc":{},"deprecated":{}}],["real time messag",{"_index":2099,"title":{},"keywords":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["real-time messag",{"_index":2021,"title":{},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["reason",{"_index":2857,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["reboot",{"_index":95,"title":{"/docs/uptime/reboot-survival-guide/":{}},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["rebuild",{"_index":2132,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["receiv",{"_index":2127,"title":{},"keywords":{},"toc":{"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["recent",{"_index":2160,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["recip",{"_index":1541,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{}},"deprecated":{}}],["recommend",{"_index":377,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{}},"deprecated":{}}],["reconfigur",{"_index":288,"title":{},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"deprecated":{}}],["reconnect",{"_index":1450,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["record",{"_index":489,"title":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{}},"toc":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/running-a-mail-server/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["recov",{"_index":2133,"title":{"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{},"toc":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["recoveri",{"_index":933,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["recurs",{"_index":2269,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["red",{"_index":130,"title":{"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"keywords":{},"toc":{},"deprecated":{}}],["red hat",{"_index":128,"title":{},"keywords":{"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/databases/elasticsearch/install_elasticsearch_centos/":{}},"toc":{},"deprecated":{}}],["redi",{"_index":162,"title":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["redirect",{"_index":636,"title":{"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["redis centos 5",{"_index":2509,"title":{},"keywords":{"/docs/databases/redis/redis-on-centos-5/":{}},"toc":{},"deprecated":{}}],["redis clust",{"_index":1189,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{}},"toc":{},"deprecated":{}}],["redis cluster instal",{"_index":827,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["redis debian 5",{"_index":2531,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis fedora 13",{"_index":2510,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-13/":{}},"toc":{},"deprecated":{}}],["redis fedora 14",{"_index":2399,"title":{},"keywords":{"/docs/databases/redis/redis-on-fedora-14/":{}},"toc":{},"deprecated":{}}],["redis lenni",{"_index":2532,"title":{},"keywords":{"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redis lucid",{"_index":2512,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis maverick",{"_index":2429,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis precise pangolin",{"_index":2029,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis serv",{"_index":1187,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.04",{"_index":2519,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 10.10",{"_index":2428,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 12.04",{"_index":2028,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 14.04",{"_index":1186,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 16.04",{"_index":1188,"title":{},"keywords":{"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{}},"toc":{},"deprecated":{}}],["redis ubuntu 9.10",{"_index":2511,"title":{},"keywords":{"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmin",{"_index":708,"title":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["redmine debian",{"_index":2769,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["redmine debian 6",{"_index":2250,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["redmine linux",{"_index":2246,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine postgresql",{"_index":2248,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 10.04",{"_index":2634,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 11.04",{"_index":2245,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["redmine ubuntu 9.10",{"_index":2770,"title":{},"keywords":{"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["redo",{"_index":976,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["reduc",{"_index":999,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["redund",{"_index":504,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["reenabl",{"_index":1969,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["refer",{"_index":1518,"title":{"/docs/platform/kvm-reference/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["referr",{"_index":1816,"title":{},"keywords":{"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"toc":{"/docs/platform/billing-and-payments/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{}},"deprecated":{}}],["regard",{"_index":869,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"deprecated":{}}],["regex",{"_index":1362,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["regist",{"_index":760,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/install-farmos/":{}},"deprecated":{}}],["regular",{"_index":2555,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"deprecated":{}}],["regular express",{"_index":2546,"title":{},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{},"deprecated":{}}],["regularli",{"_index":997,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["reissu",{"_index":1803,"title":{},"keywords":{},"toc":{"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"deprecated":{}}],["rel",{"_index":2461,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{}},"deprecated":{}}],["relat",{"_index":1063,"title":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{}},"deprecated":{}}],["relational databas",{"_index":1065,"title":{},"keywords":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["relay",{"_index":1060,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{}},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["releas",{"_index":1185,"title":{},"keywords":{},"toc":{"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"deprecated":{}}],["reload",{"_index":2727,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["reloc",{"_index":1915,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["remot",{"_index":204,"title":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/remote-access/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{}},"keywords":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["remote access",{"_index":1134,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["remote desktop",{"_index":421,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["remov",{"_index":390,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/api/api-key/":{},"/docs/platform/linode-managed/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["renam",{"_index":927,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["renew",{"_index":1226,"title":{},"keywords":{},"toc":{"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{}},"deprecated":{}}],["reorder",{"_index":2415,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["replac",{"_index":647,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["replic",{"_index":1075,"title":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"keywords":{"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["replica",{"_index":1073,"title":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"keywords":{},"toc":{},"deprecated":{}}],["replica set",{"_index":1074,"title":{},"keywords":{"/docs/databases/mongodb/create-a-mongodb-replica-set/":{}},"toc":{},"deprecated":{}}],["replset",{"_index":1797,"title":{},"keywords":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"toc":{"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["repo",{"_index":1538,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["report",{"_index":313,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/support/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["repositori",{"_index":282,"title":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{}},"keywords":{"/docs/platform/package-mirrors/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/development/version-control/how-to-configure-git/":{}},"deprecated":{}}],["request",{"_index":220,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["requir",{"_index":261,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["requisit",{"_index":569,"title":{},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["reschedul",{"_index":79,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["rescu",{"_index":1126,"title":{"/docs/troubleshooting/rescue-and-rebuild/":{}},"keywords":{"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{}},"deprecated":{}}],["resel",{"_index":2215,"title":{},"keywords":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"toc":{"/docs/websites/cms/creating-accounts-on-directadmin/":{}},"deprecated":{}}],["reset",{"_index":950,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/networking/remote-access/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["residenti",{"_index":2644,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["resiz",{"_index":906,"title":{"/docs/quick-answers/linode-platform/resize-a-linode-disk/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{}},"toc":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{}},"deprecated":{}}],["resolut",{"_index":2083,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["resolv",{"_index":2086,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["resourc",{"_index":753,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{}},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["resource tun",{"_index":1599,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"toc":{},"deprecated":{}}],["respons",{"_index":1435,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{}},"deprecated":{}}],["rest",{"_index":2797,"title":{},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{},"deprecated":{}}],["restart",{"_index":537,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{}},"deprecated":{}}],["restor",{"_index":8,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/create-physical-backups-of-your-mariadb-or-mysql-databases/":{},"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["restore from a backup",{"_index":2172,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["restrict",{"_index":634,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/remote-access/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["result",{"_index":1919,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{}},"deprecated":{}}],["rethinkdb",{"_index":822,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["retri",{"_index":1358,"title":{},"keywords":{},"toc":{"/docs/security/using-fail2ban-for-security/":{}},"deprecated":{}}],["retriev",{"_index":300,"title":{"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{}},"deprecated":{}}],["revers",{"_index":32,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/networking/remote-access/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/hosting-a-website/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["reverse dn",{"_index":1490,"title":{},"keywords":{"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{}},"toc":{},"deprecated":{}}],["reverse proxi",{"_index":212,"title":{},"keywords":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["revok",{"_index":998,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["rewrit",{"_index":913,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["rich",{"_index":1409,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{}},"deprecated":{}}],["right",{"_index":1884,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["rm",{"_index":2110,"title":{},"keywords":{},"toc":{"/docs/applications/social-networking/dolphin/":{}},"deprecated":{}}],["road",{"_index":456,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["roadmap",{"_index":621,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"deprecated":{}}],["role",{"_index":1070,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["rollback",{"_index":515,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["root",{"_index":951,"title":{"/docs/quick-answers/linode-platform/reset-the-root-password-on-your-linode/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/platform/linode-managed/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{}},"deprecated":{}}],["root compromis",{"_index":2871,"title":{},"keywords":{"/docs/security/recovering-from-a-system-compromise/":{}},"toc":{},"deprecated":{}}],["root password",{"_index":2092,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["roster",{"_index":853,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"deprecated":{}}],["rotat",{"_index":815,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{}},"deprecated":{}}],["roundcub",{"_index":1274,"title":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["roundcube’",{"_index":1276,"title":{},"keywords":{},"toc":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"deprecated":{}}],["rout",{"_index":1664,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["router",{"_index":2468,"title":{},"keywords":{},"toc":{"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["routin",{"_index":311,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["row",{"_index":1068,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{}},"deprecated":{}}],["rpm",{"_index":2938,"title":{},"keywords":{"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["rsa",{"_index":1549,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["rss",{"_index":1017,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["rstudio",{"_index":48,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{}},"keywords":{},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{}},"deprecated":{}}],["rsync",{"_index":1944,"title":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"keywords":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["rubi",{"_index":464,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"deprecated":{}}],["ruby on nginx",{"_index":1512,"title":{},"keywords":{"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rail",{"_index":1197,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ruby on rails ubuntu 14.04",{"_index":1199,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["rule",{"_index":326,"title":{"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"deprecated":{}}],["ruleset",{"_index":1408,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["run",{"_index":381,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/platform/network-helper/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["running a mail serv",{"_index":1930,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["runtim",{"_index":936,"title":{},"keywords":{},"toc":{"/docs/development/java/install-java-on-centos/":{},"/docs/development/java/install-java-on-debian/":{}},"deprecated":{}}],["safe",{"_index":1821,"title":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"keywords":{},"toc":{},"deprecated":{}}],["salt",{"_index":516,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["salt configuration manag",{"_index":1412,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt mast",{"_index":1413,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{}},"toc":{},"deprecated":{}}],["salt minion",{"_index":1497,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt stat",{"_index":1495,"title":{},"keywords":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"toc":{},"deprecated":{}}],["salt-cloud",{"_index":518,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{}},"toc":{},"deprecated":{}}],["salt-ssh",{"_index":852,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["saltstack",{"_index":517,"title":{},"keywords":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{}},"toc":{},"deprecated":{}}],["sampl",{"_index":213,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"deprecated":{}}],["sample t",{"_index":2093,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["sasl",{"_index":2348,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"deprecated":{}}],["saslauthd",{"_index":2235,"title":{},"keywords":{},"toc":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{}},"deprecated":{}}],["save",{"_index":1478,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/platform/linode-images/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["sbopkg",{"_index":2951,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["scale",{"_index":1429,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["scan",{"_index":492,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{}},"deprecated":{}}],["scenario",{"_index":604,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["schedul",{"_index":577,"title":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["schedule a backup",{"_index":2170,"title":{},"keywords":{"/docs/platform/linode-backup-service/":{}},"toc":{},"deprecated":{}}],["schema",{"_index":1296,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["scm",{"_index":1632,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["scp",{"_index":2860,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"deprecated":{}}],["scrambl",{"_index":2416,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["scrape",{"_index":291,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scraper",{"_index":298,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["scrapi",{"_index":369,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["scratch",{"_index":173,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["screen",{"_index":742,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["script",{"_index":40,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["scss",{"_index":469,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{}},"deprecated":{}}],["se",{"_index":1418,"title":{},"keywords":{},"toc":{"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["seafil",{"_index":940,"title":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["search",{"_index":109,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"toc":{"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["search engin",{"_index":111,"title":{},"keywords":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{}},"toc":{},"deprecated":{}}],["seasid",{"_index":2731,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["second",{"_index":2490,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"deprecated":{}}],["secur",{"_index":319,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["secure http",{"_index":2423,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["secure mariadb",{"_index":1472,"title":{},"keywords":{"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{}},"toc":{},"deprecated":{}}],["secure mysql",{"_index":1468,"title":{},"keywords":{"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{}},"toc":{},"deprecated":{}}],["secure open sourc",{"_index":858,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["secure shel",{"_index":988,"title":{},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["security-enhanced linux",{"_index":857,"title":{},"keywords":{"/docs/security/getting-started-with-selinux/":{}},"toc":{},"deprecated":{}}],["sed",{"_index":2544,"title":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["select",{"_index":993,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{}},"deprecated":{}}],["self",{"_index":795,"title":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["self sign",{"_index":2771,"title":{},"keywords":{"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["self signed ssl",{"_index":2772,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["self-host mail",{"_index":1931,"title":{},"keywords":{"/docs/email/running-a-mail-server/":{}},"toc":{},"deprecated":{}}],["selinux",{"_index":856,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"keywords":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/quick-answers/linux/how-to-change-selinux-modes/":{}},"toc":{"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{}},"deprecated":{}}],["send",{"_index":43,"title":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["send email ubuntu",{"_index":2240,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["send-only email",{"_index":1988,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["sendgrid",{"_index":1780,"title":{},"keywords":{},"toc":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"deprecated":{}}],["sendmail",{"_index":1475,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-systems-logwatch/":{}},"deprecated":{}}],["separ",{"_index":640,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["serv",{"_index":1078,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["server",{"_index":49,"title":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/security/advanced-ssh-server-security/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{}},"toc":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/introduction-to-websockets/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/pocketmine-server-on-debian-7/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["server autom",{"_index":751,"title":{},"keywords":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["server build",{"_index":1927,"title":{},"keywords":{"/docs/platform/automating-server-builds/":{}},"toc":{},"deprecated":{}}],["server monitor",{"_index":1623,"title":{},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["server,elasticsearch,filebeat,metricbeat,beats,kibana,elk",{"_index":277,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["server.cfg",{"_index":1219,"title":{},"keywords":{},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["serverlimit",{"_index":1619,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["servic",{"_index":42,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/platform/linode-backup-service/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-deploy-apps-with-rancher/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/automating-server-builds/":{},"/docs/email/running-a-mail-server/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/security/securing-your-server/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["service monitor",{"_index":1967,"title":{},"keywords":{"/docs/platform/linode-managed/":{}},"toc":{},"deprecated":{}}],["session",{"_index":367,"title":{"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"deprecated":{}}],["session initiation protocol",{"_index":1388,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["set",{"_index":29,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/dns/configure-your-linode-for-reverse-dns/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/platform/network-helper/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/package-mirrors/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["set up mysql",{"_index":1685,"title":{},"keywords":{"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{}},"toc":{},"deprecated":{}}],["setup",{"_index":659,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/media-servers/install-plex-media-server-on-centos-7/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["setuptool",{"_index":701,"title":{},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{}},"deprecated":{}}],["sever",{"_index":942,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"deprecated":{}}],["sftp",{"_index":1719,"title":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"keywords":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"deprecated":{}}],["sftp jail",{"_index":2743,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["shadowsock",{"_index":342,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shadowsocks serv",{"_index":343,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["shadowsocks.json",{"_index":347,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"deprecated":{}}],["shard",{"_index":830,"title":{},"keywords":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{}},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{}},"deprecated":{}}],["share",{"_index":254,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"keywords":{"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["shared host",{"_index":1891,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["sheet",{"_index":1581,"title":{"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{}},"keywords":{},"toc":{},"deprecated":{}}],["shell",{"_index":382,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"keywords":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["shellshock",{"_index":1730,"title":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"keywords":{"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"toc":{},"deprecated":{}}],["shop",{"_index":2710,"title":{},"keywords":{"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["shortcut",{"_index":956,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{}},"deprecated":{}}],["shoutcast",{"_index":2120,"title":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["shutdown",{"_index":1342,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["side",{"_index":1287,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"deprecated":{}}],["sieg",{"_index":1624,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"toc":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"deprecated":{}}],["sign",{"_index":796,"title":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"keywords":{},"toc":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["signal",{"_index":386,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"deprecated":{}}],["silent",{"_index":509,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["silent corrupt",{"_index":505,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["simpl",{"_index":175,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["sinatra",{"_index":2313,"title":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"toc":{"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{}},"deprecated":{}}],["singapor",{"_index":2906,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["singl",{"_index":235,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{}},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sip",{"_index":1387,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["sip protocol",{"_index":1389,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["site",{"_index":544,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{},"toc":{"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["site’",{"_index":1698,"title":{},"keywords":{},"toc":{"/docs/websites/cms/drush-drupal/":{}},"deprecated":{}}],["situat",{"_index":2077,"title":{},"keywords":{},"toc":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{}},"deprecated":{}}],["size",{"_index":524,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["skip",{"_index":2683,"title":{},"keywords":{},"toc":{"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{}},"deprecated":{}}],["sl",{"_index":1498,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"deprecated":{}}],["slackbuild",{"_index":2950,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slackwar",{"_index":1694,"title":{},"keywords":{},"toc":{"/docs/platform/network-helper/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["slave",{"_index":417,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["slow",{"_index":1873,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["smalltalk",{"_index":2730,"title":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["smartcard",{"_index":1116,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["smf",{"_index":2693,"title":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"keywords":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"toc":{"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{}},"deprecated":{}}],["smtp",{"_index":1057,"title":{"/docs/email/postfix/postfix-smtp-debian7/":{}},"keywords":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["smtp server",{"_index":1990,"title":{},"keywords":{"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["snapshot",{"_index":514,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["snif",{"_index":1154,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["snmp",{"_index":2053,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["snmpd",{"_index":2581,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["soa",{"_index":2920,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["social",{"_index":2496,"title":{"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["social cod",{"_index":2559,"title":{},"keywords":{"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["social network",{"_index":2108,"title":{},"keywords":{"/docs/applications/social-networking/dolphin/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sock",{"_index":1822,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"deprecated":{}}],["socket",{"_index":148,"title":{},"keywords":{"/docs/development/introduction-to-websockets/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["socks proxi",{"_index":1823,"title":{},"keywords":{"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{}},"toc":{},"deprecated":{}}],["socks5",{"_index":341,"title":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"keywords":{},"toc":{},"deprecated":{}}],["softwar",{"_index":789,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"keywords":{},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/running-a-mail-server/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/platform/stackscripts/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["solr",{"_index":719,"title":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"toc":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["solut",{"_index":2762,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["someth",{"_index":2780,"title":{},"keywords":{},"toc":{"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["sort",{"_index":2412,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["soup",{"_index":294,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sourc",{"_index":345,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["source control manag",{"_index":2656,"title":{},"keywords":{"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["sourcemod",{"_index":1217,"title":{},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"toc":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{}},"deprecated":{}}],["spam",{"_index":1934,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["spamassassin",{"_index":1804,"title":{},"keywords":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{}},"toc":{"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["span/trac",{"_index":606,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{}},"deprecated":{}}],["spark",{"_index":549,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"deprecated":{}}],["spawn",{"_index":2378,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["special",{"_index":2738,"title":{},"keywords":{},"toc":{"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["specif",{"_index":755,"title":{},"keywords":{},"toc":{"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["specifi",{"_index":214,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/platform/linode-managed/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"deprecated":{}}],["spectr",{"_index":72,"title":{"/docs/platform/meltdown_statement/":{}},"keywords":{"/docs/platform/meltdown_statement/":{}},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["speed",{"_index":317,"title":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"keywords":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["speedtest",{"_index":903,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{}},"deprecated":{}}],["spell",{"_index":2209,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{}},"deprecated":{}}],["spf",{"_index":1261,"title":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"keywords":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{}},"toc":{"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["spider",{"_index":374,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"deprecated":{}}],["spigot",{"_index":1443,"title":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"keywords":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{}},"deprecated":{}}],["spigotmc",{"_index":1566,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-spigot-ubuntu/":{}},"deprecated":{}}],["spine",{"_index":2054,"title":{},"keywords":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{}},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"deprecated":{}}],["spreadsheet",{"_index":309,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["sql",{"_index":233,"title":{},"keywords":{"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"deprecated":{}}],["sql databas",{"_index":2304,"title":{},"keywords":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["sql dump",{"_index":228,"title":{},"keywords":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{}},"toc":{},"deprecated":{}}],["squeak",{"_index":2733,"title":{},"keywords":{"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"toc":{},"deprecated":{}}],["squeez",{"_index":2202,"title":{"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{}},"keywords":{"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["squeeze upgrad",{"_index":2364,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["squid",{"_index":1808,"title":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"keywords":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"toc":{"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{}},"deprecated":{}}],["squirrel mail",{"_index":1855,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["squirrelmail",{"_index":1854,"title":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"toc":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{}},"deprecated":{}}],["srv",{"_index":2921,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["ssh",{"_index":655,"title":{"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/quick-answers/linode-platform/find-your-linodes-ip-address/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/remote-access/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/linode-managed/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["ssh filesystem",{"_index":2816,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssh jail",{"_index":2744,"title":{},"keywords":{"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["ssh key",{"_index":1117,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{},"deprecated":{}}],["ssh tunnel",{"_index":2065,"title":{},"keywords":{"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"toc":{},"deprecated":{}}],["ssh-agent",{"_index":1114,"title":{},"keywords":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{},"deprecated":{}}],["sshf",{"_index":2815,"title":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"toc":{"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{}},"deprecated":{}}],["sshfs linux",{"_index":2817,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["sshfs maco",{"_index":2818,"title":{},"keywords":{"/docs/networking/ssh/using-sshfs-on-linux/":{}},"toc":{},"deprecated":{}}],["ssl",{"_index":687,"title":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/applications/messaging/install-znc-debian/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/email/running-a-mail-server/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"deprecated":{}}],["ssl cert",{"_index":1142,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl cert linux",{"_index":2774,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certif",{"_index":1141,"title":{},"keywords":{"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-centos-and-fedora/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{}},"toc":{},"deprecated":{}}],["ssl certificates with nginx",{"_index":2425,"title":{},"keywords":{"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{},"deprecated":{}}],["ssl linux",{"_index":2773,"title":{},"keywords":{"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["ssl on cento",{"_index":1700,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{}},"toc":{},"deprecated":{}}],["ssl on debian",{"_index":1704,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["ssl on fedora",{"_index":1701,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{}},"toc":{},"deprecated":{}}],["ssl on ubuntu",{"_index":1705,"title":{},"keywords":{"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ssl ubuntu",{"_index":2391,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["sslv3",{"_index":1711,"title":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"keywords":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"toc":{"/docs/security/security-patches/disabling-sslv3-for-poodle/":{}},"deprecated":{}}],["stabl",{"_index":1013,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{}},"deprecated":{}}],["stack",{"_index":275,"title":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["stack,elast",{"_index":278,"title":{},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{}},"toc":{},"deprecated":{}}],["stackscript",{"_index":539,"title":{"/docs/platform/stackscripts/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/linode-cli/":{},"/docs/platform/stackscripts/":{}},"deprecated":{}}],["stage",{"_index":447,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["standard",{"_index":1724,"title":{},"keywords":{},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["stapl",{"_index":1150,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["stare",{"_index":2866,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["start",{"_index":80,"title":{"/docs/security/getting-started-with-selinux/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/development/version-control/how-to-configure-git/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/websites/cms/install-and-configure-drupal-8/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/game-servers/install-teamspeak/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/linode-managed/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["startserv",{"_index":1614,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["startssl",{"_index":1344,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"keywords":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"toc":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["startup",{"_index":1081,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["starv",{"_index":1568,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["stat",{"_index":2679,"title":{},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["state",{"_index":1494,"title":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{}},"keywords":{},"toc":{"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{}},"deprecated":{}}],["statement",{"_index":2669,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["static",{"_index":1425,"title":{"/docs/networking/linux-static-ip-configuration/":{}},"keywords":{"/docs/networking/linux-static-ip-configuration/":{}},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"deprecated":{}}],["static ip",{"_index":1693,"title":{},"keywords":{"/docs/platform/network-helper/":{}},"toc":{},"deprecated":{}}],["statist",{"_index":51,"title":{},"keywords":{"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{}},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["statu",{"_index":85,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stay",{"_index":104,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["steam",{"_index":812,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["steam cmd",{"_index":1259,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{},"deprecated":{}}],["steam serv",{"_index":1236,"title":{},"keywords":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["steamcmd",{"_index":809,"title":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"keywords":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"deprecated":{}}],["steampip",{"_index":1260,"title":{},"keywords":{"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{}},"toc":{},"deprecated":{}}],["step",{"_index":46,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/uptime/monitoring/how-to-install-and-configure-graylog2-on-debian-9/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/security/getting-started-with-selinux/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/applications/containers/introduction-to-docker/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/install-steamcmd-for-a-steam-game-server/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["sticki",{"_index":2227,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["stop",{"_index":583,"title":{"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{}},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{}},"deprecated":{}}],["storag",{"_index":179,"title":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{}},"keywords":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/applications/cloud-storage/dropbox/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["store",{"_index":253,"title":{"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-centos-6/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{}},"deprecated":{}}],["storm",{"_index":1104,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["strategi",{"_index":932,"title":{},"keywords":{},"toc":{"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"deprecated":{}}],["stream",{"_index":1103,"title":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["streaming audio",{"_index":2124,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streaming media",{"_index":2123,"title":{},"keywords":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"toc":{},"deprecated":{}}],["streisand",{"_index":729,"title":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"deprecated":{}}],["strict",{"_index":1151,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["strike",{"_index":1228,"title":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{}},"deprecated":{}}],["string",{"_index":2548,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["strong",{"_index":995,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["strong vpn",{"_index":344,"title":{},"keywords":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{}},"toc":{},"deprecated":{}}],["stronger",{"_index":989,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["structur",{"_index":442,"title":{"/docs/web-servers/apache-tips-and-tricks/apache-configuration-structure/":{}},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["structured wiki",{"_index":2040,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["subdomain",{"_index":491,"title":{},"keywords":{"/docs/quick-answers/linode-platform/add-caa-dns-records/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{}},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["subjectaltnam",{"_index":2784,"title":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"keywords":{"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{}},"toc":{},"deprecated":{}}],["subkey",{"_index":1119,"title":{},"keywords":{},"toc":{"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["submit",{"_index":561,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{}},"deprecated":{}}],["subson",{"_index":1644,"title":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"toc":{"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"deprecated":{}}],["substitut",{"_index":2547,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["subvers",{"_index":2752,"title":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["sudo",{"_index":978,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["suexec",{"_index":2292,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["suit",{"_index":2229,"title":{},"keywords":{},"toc":{"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["summari",{"_index":75,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["superus",{"_index":925,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"deprecated":{}}],["suppli",{"_index":102,"title":{"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["support",{"_index":472,"title":{"/docs/platform/support/":{}},"keywords":{"/docs/platform/support/":{}},"toc":{"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/development/ror/ruby-on-rails-nginx-debian/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/platform/support/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["sure",{"_index":2929,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["surviv",{"_index":1045,"title":{"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/reboot-survival-guide/":{}},"keywords":{},"toc":{},"deprecated":{}}],["svn",{"_index":2753,"title":{},"keywords":{"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["swap",{"_index":252,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/applications/containers/how-to-deploy-nginx-on-a-kubernetes-cluster/":{},"/docs/networking/remote-access/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"deprecated":{}}],["swapping ip address",{"_index":1136,"title":{},"keywords":{"/docs/networking/remote-access/":{}},"toc":{},"deprecated":{}}],["swarm",{"_index":669,"title":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"keywords":{},"toc":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{},"/docs/applications/containers/introduction-to-docker/":{}},"deprecated":{}}],["swarm manag",{"_index":671,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["swarm nod",{"_index":672,"title":{},"keywords":{"/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode/":{}},"toc":{},"deprecated":{}}],["switch",{"_index":718,"title":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"keywords":{},"toc":{"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"deprecated":{}}],["switch kernel",{"_index":1786,"title":{},"keywords":{"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{}},"toc":{},"deprecated":{}}],["symbol",{"_index":2458,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"deprecated":{}}],["sync",{"_index":1517,"title":{},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/high-availability-wordpress/":{}},"deprecated":{}}],["synchron",{"_index":2662,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/introduction-to-rsync/":{}},"toc":{},"deprecated":{}}],["syncronize fil",{"_index":2664,"title":{},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{},"deprecated":{}}],["syntax",{"_index":170,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/containers/how-to-deploy-an-nginx-container-with-docker/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["sysctl.conf",{"_index":1439,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"deprecated":{}}],["system",{"_index":339,"title":{"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/websites/cms/cms-overview/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/security/recovering-from-a-system-compromise/":{}},"keywords":{"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/websites/cms/cms-overview/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/networking/nfs/how-to-mount-nfs-shares-on-debian-9/":{},"/docs/platform/package-mirrors/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/platform/longview/longview/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/troubleshooting/rescue-and-rebuild/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["system monitor",{"_index":1956,"title":{},"keywords":{"/docs/platform/longview/longview/":{}},"toc":{},"deprecated":{}}],["system us",{"_index":2347,"title":{},"keywords":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["system–frequ",{"_index":2177,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{}},"deprecated":{}}],["system'",{"_index":714,"title":{"/docs/networking/dns/using-your-systems-hosts-file/":{}},"keywords":{},"toc":{},"deprecated":{}}],["systemd",{"_index":41,"title":{},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["systems administr",{"_index":2760,"title":{},"keywords":{"/docs/tools-reference/linux-system-administration-basics/":{}},"toc":{},"deprecated":{}}],["systemv",{"_index":648,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"deprecated":{}}],["tab",{"_index":1880,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tabl",{"_index":1066,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["table_cach",{"_index":1605,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["tablet",{"_index":270,"title":{},"keywords":{},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{}},"deprecated":{}}],["tag",{"_index":372,"title":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"deprecated":{}}],["tags=chmod",{"_index":2550,"title":{},"keywords":{"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"toc":{},"deprecated":{}}],["taho",{"_index":532,"title":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{}},"deprecated":{}}],["tahr",{"_index":1307,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["tail",{"_index":984,"title":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"toc":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{}},"deprecated":{}}],["take",{"_index":92,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/platform/linode-backup-service/":{}},"deprecated":{}}],["tar",{"_index":1949,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["tar.gz. tgz",{"_index":2524,"title":{},"keywords":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"toc":{},"deprecated":{}}],["target",{"_index":603,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["task",{"_index":236,"title":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{}},"keywords":{"/docs/development/python/task-queue-celery-rabbitmq/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["tasksel",{"_index":1182,"title":{},"keywords":{},"toc":{"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{}},"deprecated":{}}],["taskwarrior",{"_index":873,"title":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"keywords":{},"toc":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["taskwarrior on ubuntu",{"_index":875,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["taskwarrior serv",{"_index":876,"title":{},"keywords":{"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"toc":{},"deprecated":{}}],["tcp",{"_index":1423,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["tcp socket",{"_index":2069,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["tcp wrapper",{"_index":1554,"title":{},"keywords":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"toc":{},"deprecated":{}}],["team",{"_index":1593,"title":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"deprecated":{}}],["team fortress",{"_index":1596,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["team fortress 2",{"_index":1595,"title":{},"keywords":{"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{}},"toc":{},"deprecated":{}}],["teamspeak",{"_index":1485,"title":{"/docs/game-servers/install-teamspeak/":{}},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{"/docs/game-servers/install-teamspeak/":{}},"deprecated":{}}],["teamview",{"_index":423,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["tech support",{"_index":2161,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["techniqu",{"_index":2648,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["telnet",{"_index":2155,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["templat",{"_index":641,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["temporarili",{"_index":1968,"title":{},"keywords":{},"toc":{"/docs/platform/linode-managed/":{}},"deprecated":{}}],["term",{"_index":1772,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["termin",{"_index":363,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["terminal howto",{"_index":2909,"title":{},"keywords":{"/docs/networking/ssh/using-the-terminal/":{}},"toc":{},"deprecated":{}}],["terraform",{"_index":484,"title":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"keywords":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"toc":{"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{}},"deprecated":{}}],["terraria",{"_index":1280,"title":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"keywords":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"toc":{"/docs/game-servers/host-a-terraria-server-on-your-linode/":{}},"deprecated":{}}],["test",{"_index":60,"title":{"/docs/tools-reference/tools/load-testing-with-siege/":{}},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/postfix/pflogsumm-for-postfix-monitoring-on-centos-6/":{},"/docs/databases/mysql/managing-mysql-with-phpmyadmin-on-centos-6-4/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["test.j",{"_index":1674,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{}},"deprecated":{}}],["text",{"_index":610,"title":{"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{}},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/ssh/using-the-terminal/":{}},"deprecated":{}}],["text user-interfac",{"_index":739,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["that’",{"_index":211,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{}},"deprecated":{}}],["the bug geni",{"_index":2622,"title":{},"keywords":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{}},"toc":{},"deprecated":{}}],["the friendly interactive shel",{"_index":868,"title":{},"keywords":{"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{}},"toc":{},"deprecated":{}}],["theme",{"_index":1207,"title":{"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{}},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/cms-overview/":{}},"deprecated":{}}],["thing",{"_index":967,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["thingsboard",{"_index":25,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{}},"deprecated":{}}],["third",{"_index":1665,"title":{},"keywords":{},"toc":{"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["thread_cache_s",{"_index":1603,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["thread_stack",{"_index":1602,"title":{},"keywords":{},"toc":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"deprecated":{}}],["three",{"_index":665,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{}},"deprecated":{}}],["through",{"_index":324,"title":{"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/quick-answers/linux/log-in-to-coreos-container-linux/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["throughput",{"_index":1872,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["ticket",{"_index":2162,"title":{},"keywords":{"/docs/platform/support/":{}},"toc":{},"deprecated":{}}],["tidi",{"_index":1926,"title":{},"keywords":{},"toc":{"/docs/security/encryption/full-disk-encryption-xen/":{}},"deprecated":{}}],["time",{"_index":232,"title":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["timeout",{"_index":1000,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"deprecated":{}}],["timey wimey",{"_index":2488,"title":{},"keywords":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"toc":{},"deprecated":{}}],["timezon",{"_index":2056,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["tinc",{"_index":660,"title":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"keywords":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{}},"deprecated":{}}],["tini",{"_index":1019,"title":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"keywords":{},"toc":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"deprecated":{}}],["tinydb",{"_index":296,"title":{},"keywords":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"toc":{},"deprecated":{}}],["tip",{"_index":745,"title":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{}},"deprecated":{}}],["tl",{"_index":321,"title":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"keywords":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{}},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{}},"deprecated":{}}],["tl:dr",{"_index":1689,"title":{},"keywords":{},"toc":{"/docs/development/nodejs/how-to-install-nodejs/":{}},"deprecated":{}}],["tls certif",{"_index":773,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["tls/ssl",{"_index":782,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{}},"deprecated":{}}],["tmux",{"_index":362,"title":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"keywords":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"toc":{"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{}},"deprecated":{}}],["togeth",{"_index":1080,"title":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{}},"deprecated":{}}],["token",{"_index":1147,"title":{},"keywords":{"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/security/linode-manager-security-controls/":{}},"deprecated":{}}],["tokyo",{"_index":2907,"title":{},"keywords":{},"toc":{"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["toler",{"_index":1611,"title":{},"keywords":{},"toc":{"/docs/uptime/reboot-survival-guide/":{}},"deprecated":{}}],["tomcat",{"_index":1172,"title":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["tomcat java",{"_index":1174,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tomcat linod",{"_index":2892,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["tomcat ubuntu",{"_index":1176,"title":{},"keywords":{"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["tool",{"_index":919,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/tools-reference/custom-kernels-distros/install-alpine-linux-on-your-linode/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/automating-server-builds/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["top",{"_index":550,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"keywords":{"/docs/uptime/monitoring/top-htop-iotop/":{}},"toc":{"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/uptime/monitoring/top-htop-iotop/":{}},"deprecated":{}}],["topolog",{"_index":1109,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["tor",{"_index":732,"title":{},"keywords":{"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{},"deprecated":{}}],["totp",{"_index":1091,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{}},"toc":{},"deprecated":{}}],["trace",{"_index":2445,"title":{},"keywords":{},"toc":{"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{}},"deprecated":{}}],["tracerout",{"_index":2639,"title":{},"keywords":{"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{}},"toc":{"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["track",{"_index":356,"title":{"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["tracker",{"_index":2282,"title":{"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{}},"keywords":{},"toc":{},"deprecated":{}}],["traffic",{"_index":323,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["transcod",{"_index":2125,"title":{},"keywords":{},"toc":{"/docs/applications/media-servers/how-to-install-shoutcast-dnas-server-on-linux/":{}},"deprecated":{}}],["transfer",{"_index":1032,"title":{"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/platform/billing-and-payments/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["transport",{"_index":1152,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/nginx-ssl-and-tls-deployment-best-practices/":{}},"deprecated":{}}],["tri",{"_index":1396,"title":{},"keywords":{},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"deprecated":{}}],["trick",{"_index":746,"title":{},"keywords":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/networking/using-the-linode-shell-lish/":{}},"deprecated":{}}],["trigger",{"_index":450,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["troubleshoot",{"_index":790,"title":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{}},"keywords":{"/docs/troubleshooting/troubleshooting/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/platform/kvm-reference/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/troubleshooting/troubleshooting-memory-and-networking-issues/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["true",{"_index":839,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/tools-reference/custom-kernels-distros/install-coreos-on-your-linode/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/game-servers/multicraft-on-debian/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/email/citadel/email-with-citadel-on-debian-6-squeeze/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/kloxo-guides/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/websites/cms/directadmin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/websites/cms/install-kloxo-on-centos-5/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/websites/ecommerce/opencart-on-fedora-15/":{},"/docs/websites/ecommerce/opencart-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/applications/social-networking/phpfox/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/uptime/monitoring/nagios-server-monitoring/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-gentoo-linux/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-fedora-13/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/logwatch-log-monitoring/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/social-networking-with-phpfox-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-debian-5-lenny/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/planet-feed-aggregator/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-on-arch/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/run-a-custom-compiled-kernel-with-pvgrub/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/development/frameworks/cakephp-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/wikis/twiki/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/apache-tips-and-tricks/managing-resources-with-apache-modalias/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-debian-5-lenny/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/how-to-make-a-selfsigned-ssl-certificate/":{},"/docs/security/ssl/obtaining-a-commercial-ssl-certificate/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-debian-5-lenny/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/security/firewalls/configure-a-firewall-with-arno-iptables-in-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}}}],["truew",{"_index":2725,"title":{},"keywords":{},"toc":{},"deprecated":{"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-debian-5-lenny/":{}}}],["truli",{"_index":2010,"title":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusti",{"_index":1306,"title":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["trusty tahr",{"_index":1479,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["tt-rss",{"_index":1021,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["ttl",{"_index":1829,"title":{},"keywords":{"/docs/networking/dns/dns-manager-overview/":{}},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/running-a-mail-server/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["ttrss",{"_index":1020,"title":{},"keywords":{"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{}},"toc":{},"deprecated":{}}],["tui",{"_index":740,"title":{},"keywords":{"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"toc":{},"deprecated":{}}],["tune",{"_index":335,"title":{"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"keywords":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{}},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{}},"deprecated":{}}],["tune mysql",{"_index":1598,"title":{},"keywords":{"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{}},"toc":{},"deprecated":{}}],["tunnel",{"_index":1096,"title":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"keywords":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{}},"toc":{"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"deprecated":{}}],["turbocharg",{"_index":1576,"title":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"keywords":{},"toc":{},"deprecated":{}}],["turn",{"_index":1438,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/platform/network-helper/":{}},"deprecated":{}}],["turtl",{"_index":817,"title":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{}},"deprecated":{}}],["twiki",{"_index":2038,"title":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki/":{}},"toc":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{}},"deprecated":{}}],["two",{"_index":202,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{}},"deprecated":{}}],["two factor authent",{"_index":1090,"title":{},"keywords":{"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{}},"toc":{},"deprecated":{}}],["two-factor authent",{"_index":1941,"title":{},"keywords":{"/docs/security/linode-manager-security-controls/":{}},"toc":{},"deprecated":{}}],["txt",{"_index":2922,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-records-an-introduction/":{}},"deprecated":{}}],["type",{"_index":1238,"title":{"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{},"toc":{"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"deprecated":{}}],["ubuntu",{"_index":11,"title":{"/docs/development/java/install-java-jdk/":{},"/docs/development/go/install-go-on-ubuntu/":{},"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/databases/elasticsearch/install_elasticsearch_debian_ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-ghost-cms-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/install-and-manage-mysql-databases-with-puppet-hiera-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/applications/cloud-storage/install-and-configure-owncloud-on-ubuntu-16-04/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{},"/docs/quick-answers/linux/install-selinux-on-ubuntu/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/cassandra/deploy-scalable-cassandra/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/applications/media-servers/install-plex-media-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/install-black-mesa-on-debian-or-ubuntu/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-12-04-precise/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/redis/redis-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{},"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-install-and-configure-redmine-on-ubuntu-16-04/":{},"/docs/applications/cloud-storage/how-to-install-a-turtl-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-debian-ubuntu/":{},"/docs/development/java/install-java-on-ubuntu-16-04/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-debian-and-ubuntu/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/web-servers/nginx/install-nginx-pagespeed-module-on-ubuntu1604/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-google-drive-linode/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/custom-compiled-kernel-with-pvgrub-debian-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/containers/how-to-install-docker-and-deploy-a-lamp-stack/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/multicraft-on-ubuntu/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/disabling-sslv3-for-poodle/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/cloud-storage/dropbox/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/email/installing-mail-filtering-for-ubuntu-12-04/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/platform/package-mirrors/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/manage-mysql-with-phpmyadmin-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/applications/project-management/power-team-collaboration-with-egroupware-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/create-a-self-signed-certificate-on-debian-and-ubuntu/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/development/version-control/how-to-configure-git/":{}},"toc":{"/docs/development/r/how-to-install-r-on-ubuntu-and-debian/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/uptime/monitoring/monitor-systems-logwatch/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distribution-supplied-kernel-with-kvm/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/platform/network-helper/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/networking/linux-static-ip-configuration/":{},"/docs/platform/disk-images/switch-to-a-64-bit-linux-kernel/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/package-mirrors/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/platform/linode-cli/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/tools-reference/tools/synchronize-files-with-unison/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["ubuntu 10.04",{"_index":2498,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.04 mail serv",{"_index":2597,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10",{"_index":2392,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 lamp",{"_index":2442,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 mail serv",{"_index":2455,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.10 upgrad",{"_index":2439,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu 10.4",{"_index":2595,"title":{},"keywords":{"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04",{"_index":2184,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 lamp",{"_index":2242,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.04 upgrad",{"_index":2262,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 lamp",{"_index":2216,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 11.10 upgrad",{"_index":2220,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04",{"_index":1770,"title":{},"keywords":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/email/exim/deploy-exim-as-a-send-only-mail-server-on-ubuntu-12-04/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 lamp",{"_index":2103,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 12.04 mail serv",{"_index":2006,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04",{"_index":1200,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/game-servers/launch-a-counter-strike-global-offensive-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/deploy-just-cause-2-multiplayer-server-on-ubuntu/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/game-servers/install-dont-starve-together-game-server-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 lamp",{"_index":1654,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 14.04 mail serv",{"_index":2012,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 16",{"_index":1857,"title":{},"keywords":{"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{}},"toc":{},"deprecated":{}}],["ubuntu 16.04",{"_index":892,"title":{},"keywords":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["ubuntu 17.04",{"_index":923,"title":{},"keywords":{"/docs/databases/cassandra/deploy-scalable-cassandra/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04",{"_index":2851,"title":{},"keywords":{"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 8.04 lamp",{"_index":2935,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04",{"_index":2891,"title":{},"keywords":{"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.04 mail serv",{"_index":2792,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10",{"_index":2487,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 lamp",{"_index":2807,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu 9.10 mail serv",{"_index":2793,"title":{},"keywords":{"/docs/email/citadel/email-with-citadel-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu dn",{"_index":2084,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu exim",{"_index":2241,"title":{},"keywords":{"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-11-04-natty/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-10-maverick/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/exim/sendonly-mail-server-with-exim-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu firewal",{"_index":1314,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu jaunti",{"_index":2845,"title":{},"keywords":{"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu karm",{"_index":2700,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu l0.04",{"_index":2637,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu l2.04",{"_index":2034,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp",{"_index":1653,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{}},"toc":{},"deprecated":{}}],["ubuntu lamp serv",{"_index":2102,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu lt",{"_index":1911,"title":{},"keywords":{"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu lucid",{"_index":2497,"title":{},"keywords":{"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu mail serv",{"_index":2698,"title":{},"keywords":{"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick",{"_index":2363,"title":{},"keywords":{"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu maverick upgrad",{"_index":2440,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{}},"toc":{},"deprecated":{}}],["ubuntu natti",{"_index":2185,"title":{},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu natty upgrad",{"_index":2263,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{}},"toc":{},"deprecated":{}}],["ubuntu oneir",{"_index":2218,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu oneiric upgrad",{"_index":2221,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{}},"toc":{},"deprecated":{}}],["ubuntu precis",{"_index":1902,"title":{},"keywords":{"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{}},"toc":{},"deprecated":{}}],["ubuntu precise pangolin",{"_index":2035,"title":{},"keywords":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu serv",{"_index":2104,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["ubuntu tahr",{"_index":1380,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["ubuntu ufw",{"_index":1311,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ubuntu upgrad",{"_index":2633,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["ubuntu web serv",{"_index":1656,"title":{},"keywords":{"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{},"deprecated":{}}],["ubuntu’",{"_index":2036,"title":{},"keywords":{},"toc":{"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{}},"deprecated":{}}],["ubuntu/debian",{"_index":2200,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/configure-modsecurity-on-apache/":{}},"deprecated":{}}],["udf",{"_index":2273,"title":{},"keywords":{},"toc":{"/docs/platform/stackscripts/":{}},"deprecated":{}}],["udp",{"_index":1679,"title":{},"keywords":{},"toc":{"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/security/securing-your-server/":{}},"deprecated":{}}],["ufw",{"_index":628,"title":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/game-servers/host-a-terraria-server-on-your-linode/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["ufw tutori",{"_index":1313,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["ufw’",{"_index":1317,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"deprecated":{}}],["unabl",{"_index":1451,"title":{},"keywords":{},"toc":{"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["unbound",{"_index":2082,"title":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"toc":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{}},"deprecated":{}}],["unbound debian 6",{"_index":2359,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbound debian squeez",{"_index":2360,"title":{},"keywords":{"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["unbundl",{"_index":1208,"title":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{}},"deprecated":{}}],["uncomplicated firewal",{"_index":1310,"title":{},"keywords":{"/docs/security/firewalls/configure-firewall-with-ufw/":{}},"toc":{},"deprecated":{}}],["under",{"_index":2400,"title":{"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{}},"deprecated":{}}],["understand",{"_index":332,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/configure-postgresql/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["undo",{"_index":972,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["unicorn",{"_index":1195,"title":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"deprecated":{}}],["unicorn rail",{"_index":1198,"title":{},"keywords":{"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["uninstal",{"_index":1966,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{},"/docs/security/securing-your-server/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uniq",{"_index":2413,"title":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"keywords":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"toc":{"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{}},"deprecated":{}}],["unison",{"_index":2663,"title":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"keywords":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"toc":{"/docs/tools-reference/tools/synchronize-files-with-unison/":{}},"deprecated":{}}],["unit",{"_index":663,"title":{},"keywords":{},"toc":{"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/game-servers/create-an-ark-survival-evolved-server-on-ubuntu-16-04/":{}},"deprecated":{}}],["uniti",{"_index":427,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["univers",{"_index":2057,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/build-aspnetmono-applications-with-modmono-and-apache-on-ubuntu-9-10-karmic/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["unix",{"_index":1529,"title":{},"keywords":{"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"toc":{"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{}},"deprecated":{}}],["unix socket",{"_index":2068,"title":{},"keywords":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"toc":{},"deprecated":{}}],["unix-like system",{"_index":2863,"title":{},"keywords":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"toc":{},"deprecated":{}}],["unmount",{"_index":1336,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["unoffici",{"_index":871,"title":{},"keywords":{},"toc":{"/docs/applications/containers/how-to-install-docker-and-pull-images-for-container-deployment/":{}},"deprecated":{}}],["unpack",{"_index":573,"title":{},"keywords":{},"toc":{"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["unrespons",{"_index":2146,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["unset",{"_index":1831,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["unstabl",{"_index":452,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{}},"deprecated":{}}],["unus",{"_index":2178,"title":{},"keywords":{},"toc":{"/docs/security/securing-your-server/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["unzip",{"_index":780,"title":{},"keywords":{},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["up",{"_index":16,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/databases/postgresql/how-to-back-up-your-postgresql-database/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/apache/how-to-set-up-htaccess-on-apache/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/databases/mariadb/set-up-mariadb-clusters-with-galera-debian-and-ubuntu/":{},"/docs/game-servers/how-to-set-up-minecraft-server-on-ubuntu-or-debian/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/networking/set-up-an-ipv6-tunnel-on-your-linode/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{}},"keywords":{},"toc":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/monitor-filesystem-events-with-pyinotify/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/tools-reference/custom-kernels-distros/install-nixos-on-linode/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/uptime/monitoring/how-to-install-graphite-and-grafana-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/uptime/reboot-survival-guide/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-debian-7/":{},"/docs/databases/mysql/install-and-configure-phpmyadmin-on-debian-8/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-on-ubuntu-12-04/":{},"/docs/databases/mysql/install-mysql-phpmyadmin-ubuntu-14-04/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-5-lenny/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-8-04-hardy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-ubuntu-9-04-jaunty/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["updat",{"_index":100,"title":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-linode/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/security/ssl/install-lets-encrypt-to-create-ssl-certificates/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/platform/billing-and-payments/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/game-servers/minecraft-on-linode-with-ubuntu-12-04/":{},"/docs/platform/automating-server-builds/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/platform/longview/longview/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-11-04-natty/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-fedora-14/":{},"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-14/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/redis/redis-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/databases/redis/redis-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/databases/redis/redis-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-fedora-13/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-debian-5-lenny/":{},"/docs/uptime/monitoring/monitor-system-logs-with-logwatch-on-ubuntu-10-04-lucid/":{},"/docs/databases/redis/redis-on-centos-5/":{},"/docs/databases/redis/redis-on-fedora-13/":{},"/docs/databases/redis/redis-on-ubuntu-9-10-karmic/":{},"/docs/databases/redis/redis-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/databases/redis/redis-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/applications/social-networking/question-and-answer-communities-with-osqa-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/forums/discussion-forums-with-fluxbb/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-bug-genie/":{},"/docs/development/bug-tracking/track-bugs-and-manage-development-with-flyspray/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/development/bug-tracking/manage-development-with-the-mantis-bug-tracker-on-debian-5-lenny/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-debian-5-lenny/":{},"/docs/applications/project-management/manage-projects-with-redmine-on-ubuntu-9-10-karmic/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["upgrad",{"_index":1033,"title":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{}},"keywords":{"/docs/platform/disk-images/resizing-a-linode/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{}},"toc":{"/docs/platform/upgrade-to-hourly-billing/":{},"/docs/websites/cms/update-and-secure-drupal-8-on-ubuntu/":{},"/docs/security/upgrading/upgrade-to-ubuntu-16-04/":{},"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-14-04-lts/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-12-04-precise/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-10-oneiric/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-11-04-natty/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-10-maverick/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/security/upgrading/how-to-upgrade-to-ubuntu-10-04-lts-lucid/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"deprecated":{}}],["upgrade distro",{"_index":1939,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["upload",{"_index":700,"title":{"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{}},"keywords":{},"toc":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/websites/hosting-a-website/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["uptim",{"_index":1606,"title":{},"keywords":{"/docs/uptime/reboot-survival-guide/":{}},"toc":{},"deprecated":{}}],["url",{"_index":388,"title":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"keywords":{"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache-tips-and-tricks/rewrite-urls-with-modrewrite-and-apache/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"deprecated":{}}],["us",{"_index":14,"title":{"/docs/databases/mysql/use-mysqldump-to-back-up-mysql-or-mariadb/":{},"/docs/development/r/how-to-deploy-rstudio-server-using-an-nginx-reverse-proxy/":{},"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/web-servers/nginx/nginx-reverse-proxy/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/platform/how-to-build-your-infrastructure-using-terraform-and-linode/":{},"/docs/uptime/loadbalancing/how-to-use-haproxy-for-load-balancing/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/development/nodejs/use-nightmarejs-to-automate-headless-browsing/":{},"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/networking/dns/using-your-systems-hosts-file/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/applications/containers/how-to-use-dockerfiles/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{},"/docs/platform/use-coreos-container-linux-on-linode/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/quick-answers/linux/how-to-use-grep/":{},"/docs/quick-answers/linux/how-to-use-head/":{},"/docs/quick-answers/linux/how-to-use-tail/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/tools-reference/custom-kernels-distros/use-the-distribution-supplied-kernel-on-centos-6-with-grub-legacy/":{},"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-centos-7/":{},"/docs/security/authentication/use-one-time-passwords-for-two-factor-authentication-with-ssh-on-ubuntu-16-04-and-debian-8/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/development/ror/use-unicorn-and-nginx-on-ubuntu-14-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/networking/using-the-linode-graphical-shell-glish/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/applications/configuration-management/use-salt-states-to-create-lamp-stack-and-fail2ban-across-salt-minions/":{},"/docs/applications/configuration-management/vagrant-linode-environments/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/databases/mysql/how-to-optimize-mysql-performance-using-mysqltuner/":{},"/docs/uptime/monitoring/top-htop-iotop/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/squid/squid-http-proxy-centos-6-4/":{},"/docs/networking/squid/squid-http-proxy-ubuntu-12-04/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/longview/longview/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-12-04-precise/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/platform/linode-backup-service/":{},"/docs/tools-reference/tools/use-nano-text-editor-commands/":{},"/docs/websites/cms/install-a-commercial-ssl-certificate-using-cpanel/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-on-debian-5-lenny/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/security/ssl/using-openssls-subjectaltname-with-multiple-site-domains/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/security/backups/using-rdiff-backup-with-sshfs/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/ssh/using-the-terminal/":{}},"keywords":{},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/applications/containers/docker-container-communication/":{},"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/applications/containers/when-and-why-to-use-docker/":{},"/docs/applications/project-management/jupyter-nobook-on-jekyll/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/quick-answers/linux/how-to-install-configure-and-run-fish/":{},"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/applications/cloud-storage/install-seafile-with-nginx-on-ubuntu-1604/":{},"/docs/quick-answers/linux/use-nano-to-edit-files-in-linux/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/web-servers/apache/host-your-own-rss-reader-with-tiny-tiny-rss-on-centos-7/":{},"/docs/security/encryption/use-luks-for-full-disk-encryption/":{},"/docs/websites/cms/install-cpanel-on-centos/":{},"/docs/networking/remote-access/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/game-servers/left-4-dead-2-multiplayer-server-installation/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/security/firewalls/configure-firewall-with-ufw/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/development/java/java-development-wildfly-centos-7/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/game-servers/team-fortress2-on-debian-and-ubuntu/":{},"/docs/applications/media-servers/install-subsonic-media-server-on-ubuntu-or-debian/":{},"/docs/game-servers/garrys-mod-server-on-centos-7/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/diagnostics/install-iperf-to-diagnose-network-speed-in-linux/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/security/ssl/ssl-apache2-centos/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/tools-reference/file-transfer/filezilla/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-fedora-20/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-12-04/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring-and-maintaining-your-server/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/set-up-dns-services-on-cpanel/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-15/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty/":{},"/docs/platform/stackscripts/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-arch-linux/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-6-squeeze/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-14/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-6-squeeze/":{},"/docs/databases/mysql/using-mysql-relational-databases-on-gentoo/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-14/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-14/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-14/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-10-maverick/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-14/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/find-files-in-linux-using-the-command-line/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/use-dig-to-perform-manual-dns-queries/":{},"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-10-maverick/":{},"/docs/tools-reference/tools/create-file-system-links-with-ln/":{},"/docs/uptime/logs/use-logrotate-to-manage-log-files/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-fedora-13/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/use-the-date-command-in-linux/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-12/":{},"/docs/development/frameworks/apache-tomcat-on-fedora-13/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/apache-tomcat-on-ubuntu-9-10-karmic/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-13/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-fedora-13/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-10-04-lucid/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-10-04-lucid/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/networking/ssh/using-gnu-screen-to-manage-persistent-terminal-sessions/":{},"/docs/applications/messaging/advanced-irssi-usage/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-ubuntu-9-10-karmic/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-debian-5-lenny/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-fedora-12/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-centos-5/":{},"/docs/websites/proxies/using-apache-for-proxy-and-clustering-services-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-centos-5/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/databases/couchdb/use-couchdb-for-document-based-data-storage-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modpython-on-centos-5/":{},"/docs/databases/mongodb/use-mongodb-to-store-application-data-on-debian-5-lenny/":{},"/docs/email/clients/retrieve-email-using-getmail/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/social-networking/social-networking-with-elgg-on-debian-5-lenny/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-10-karmic/":{},"/docs/networking/ssh/using-sshfs-on-linux/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{},"/docs/development/frameworks/apache-tomcat-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-8-04-lts-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modpython-on-ubuntu-8-04-hardy/":{},"/docs/security/recovering-from-a-system-compromise/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-centos-5/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-fedora-12/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-8-04-hardy/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-ubuntu-9-04-jaunty/":{},"/docs/databases/mysql/use-mysql-relational-databases-on-debian-5-lenny/":{},"/docs/development/frameworks/installing-apache-tomcat-on-ubuntu-9-04-jaunty/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/networking/dns/dns-manager-overview/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["usag",{"_index":168,"title":{"/docs/applications/messaging/advanced-irssi-usage/":{}},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{"/docs/applications/containers/how-to-use-docker-compose/":{},"/docs/tools-reference/tools/manipulate-lists-with-sort-and-uniq/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/development/perl/manage-cpan-modules-with-cpan-minus/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["use nginx as load-balanc",{"_index":2586,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["use nginx as proxi",{"_index":2585,"title":{},"keywords":{"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{}},"toc":{},"deprecated":{}}],["user",{"_index":119,"title":{"/docs/email/postfix/postfix-dovecot-and-system-user-accounts-on-debian-5-lenny/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"keywords":{"/docs/tools-reference/linux-users-and-groups/":{}},"toc":{"/docs/databases/elasticsearch/a-guide-to-elasticsearch-plugins/":{},"/docs/databases/postgresql/configure-postgresql/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/websites/ecommerce/install-opencart-on-centos-7/":{},"/docs/security/advanced-ssh-server-security/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/security/vulnerabilities/install-openvas-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/databases/mongodb/create-a-mongodb-replica-set/":{},"/docs/databases/postgresql/how-to-install-postgresql-on-ubuntu-16-04/":{},"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-and-configure-puppet/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-7/":{},"/docs/databases/mariadb/how-to-install-mariadb-on-centos-7/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-8/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/game-servers/minecraft-with-spigot-ubuntu/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/databases/mysql/configure-master-master-mysql-database-replication/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/email/iredmail/install-iredmail-on-ubuntu/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mariadb/mariadb-setup-debian/":{},"/docs/platform/linode-cli/":{},"/docs/databases/mysql/how-to-install-mysql-on-centos-6/":{},"/docs/databases/mysql/how-to-install-mysql-on-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/platform/linode-managed/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/databases/mysql/deploy-mysql-relational-databases-on-ubuntu-12-04-precise-pangolin/":{},"/docs/databases/mysql/install-mysql-on-ubuntu-14-04/":{},"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/applications/social-networking/dolphin/":{},"/docs/websites/cms/use-cpanel-to-manage-domains-and-databases/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{},"/docs/security/securing-your-server/":{},"/docs/websites/cms/creating-accounts-on-directadmin/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/databases/mongodb/build-database-clusters-with-mongodb/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/databases/postgresql/fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{},"/docs/tools-reference/tools/limiting-access-with-sftp-jails-on-debian-and-ubuntu/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/tools/schedule-tasks-with-cron/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/databases/postgresql/centos-5/":{},"/docs/databases/postgresql/fedora-12/":{},"/docs/databases/postgresql/ubuntu-8-04-hardy/":{},"/docs/databases/postgresql/ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/databases/postgresql/debian-5-lenny/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["user’",{"_index":2095,"title":{},"keywords":{},"toc":{"/docs/databases/postgresql/use-postgresql-relational-databases-on-ubuntu-12-04/":{},"/docs/databases/postgresql/debian-6-squeeze/":{},"/docs/databases/postgresql/ubuntu-10-10-maverick/":{},"/docs/databases/postgresql/ubuntu-10-04-lucid/":{},"/docs/databases/postgresql/ubuntu-9-10-karmic/":{},"/docs/databases/postgresql/debian-5-lenny/":{}},"deprecated":{}}],["user/root",{"_index":2158,"title":{},"keywords":{},"toc":{"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["usernam",{"_index":1058,"title":{},"keywords":{},"toc":{"/docs/email/postfix/configure-postfix-to-send-mail-using-gmail-and-google-apps-on-debian-or-ubuntu/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/email/postfix/postfix-smtp-debian7/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/platform/accounts-and-passwords/":{}},"deprecated":{}}],["util",{"_index":1947,"title":{"/docs/uptime/monitoring/use-cacti-to-monitor-resource-utilization-on-ubuntu-12-04/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-ubuntu-10-04-lucid/":{},"/docs/uptime/monitoring/monitoring-resource-utilization-with-cacti-on-debian-5-lenny/":{}},"keywords":{},"toc":{"/docs/security/backups/backing-up-your-data/":{},"/docs/databases/mysql/back-up-your-mysql-databases/":{},"/docs/email/clients/retrieve-email-using-getmail/":{}},"deprecated":{}}],["uwsgi",{"_index":1304,"title":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/nginx/deploy-django-applications-using-uwsgi-and-nginx-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"deprecated":{}}],["vagrant",{"_index":1515,"title":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["vagrantfil",{"_index":1516,"title":{},"keywords":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"toc":{"/docs/applications/configuration-management/vagrant-linode-environments/":{}},"deprecated":{}}],["valu",{"_index":832,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-install-and-configure-a-redis-cluster-on-ubuntu-1604/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{}},"deprecated":{}}],["vanilla",{"_index":1394,"title":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"keywords":{"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"toc":{"/docs/applications/voip/install-asterisk-on-centos-7/":{},"/docs/websites/forums/discussion-forums-with-vanilla-forums/":{}},"deprecated":{}}],["variabl",{"_index":59,"title":{},"keywords":{},"toc":{"/docs/development/go/install-go-on-ubuntu/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{},"/docs/platform/stackscripts/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["varnish",{"_index":1077,"title":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"keywords":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"toc":{"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["varnishlog",{"_index":1835,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vc",{"_index":1631,"title":{},"keywords":{"/docs/development/version-control/how-to-install-git-and-clone-a-github-repository/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-distributed-source-branches-with-bazaar/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"toc":{},"deprecated":{}}],["vcl",{"_index":1827,"title":{},"keywords":{},"toc":{"/docs/websites/varnish/getting-started-with-varnish-cache/":{}},"deprecated":{}}],["vdev",{"_index":511,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["venu",{"_index":2044,"title":{"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/social-networking/create-an-aggregate-blog-using-planet-venus-on-ubuntu-10-04-lucid/":{}},"keywords":{},"toc":{},"deprecated":{}}],["verbos",{"_index":1917,"title":{},"keywords":{},"toc":{"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"deprecated":{}}],["verifi",{"_index":896,"title":{},"keywords":{},"toc":{"/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos/":{},"/docs/databases/redis/how-to-install-a-redis-server-on-ubuntu-or-debian8/":{},"/docs/databases/redis/install-and-configure-redis-on-centos-7/":{},"/docs/email/postfix/configure-spf-and-dkim-in-postfix-on-debian-8/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-8-jessie/":{},"/docs/uptime/monitoring/ossec-ids-debian-7/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/email/using-google-apps-for-email/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-centos-6-4/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-ubuntu-12-04-precise/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/platform/longview/longview/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/platform/disk-images/copying-a-disk-image-to-a-different-account/":{},"/docs/tools-reference/tools/use-killall-and-kill-to-stop-processes/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version",{"_index":140,"title":{"/docs/quick-answers/linux/how-to-use-git/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-linux/":{},"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/development/version-control/how-to-install-git-windows/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{},"/docs/applications/containers/create-tag-and-upload-your-own-docker-image/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"deprecated":{}}],["version control",{"_index":1211,"title":{},"keywords":{"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{}},"toc":{},"deprecated":{}}],["vhost",{"_index":1166,"title":{},"keywords":{},"toc":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["vi(m",{"_index":980,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{}},"deprecated":{}}],["via",{"_index":142,"title":{"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{}},"keywords":{},"toc":{"/docs/development/version-control/how-to-install-git-mac/":{},"/docs/tools-reference/tools/faster-file-navigation-with-autojump/":{},"/docs/uptime/monitoring/monitor-remote-hosts-with-icinga/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems/":{},"/docs/applications/configuration-management/configure-and-use-salt-ssh/":{},"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/platform/disk-images/migrating-a-server-to-your-linode/":{},"/docs/troubleshooting/troubleshooting/":{}},"deprecated":{}}],["view",{"_index":22,"title":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/tools-reference/tools/view-and-follow-the-end-of-text-files-with-tail/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{}},"keywords":{},"toc":{"/docs/development/iot/install-thingsboard-iot-dashboard/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/platform/billing-and-payments/":{},"/docs/platform/longview/longview-app-for-mysql/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{},"/docs/tools-reference/tools/view-the-beginning-of-text-files-with-head/":{},"/docs/security/firewalls/control-network-traffic-with-iptables/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/networking/ssh/using-the-terminal/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["vim",{"_index":608,"title":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"keywords":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"toc":{"/docs/tools-reference/tools/how-to-install-neovim-and-plugins-with-vim-plug/":{},"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["vimrc",{"_index":797,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/introduction-to-vim-customization/":{}},"deprecated":{}}],["virtual",{"_index":379,"title":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{}},"keywords":{"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{}},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/applications/big-data/how-to-move-machine-learning-model-to-production/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/web-servers/lamp/install-lamp-stack-on-ubuntu-16-04/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/email/clients/install-roundcube-on-ubuntu/":{},"/docs/web-servers/lamp/lamp-on-centos-7/":{},"/docs/applications/configuration-management/use-puppet-modules-to-create-a-lamp-stack/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/applications/configuration-management/use-salt-states-to-configure-a-lamp-stack-on-a-minion/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/platform/kvm-reference/":{},"/docs/web-servers/nginx/install-and-configure-nginx-and-php-fastcgi-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/nginx-phpfastcgi-ubuntu-14-04/":{},"/docs/applications/configuration-management/creating-your-first-chef-cookbook/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/platform/nodebalancer/getting-started-with-nodebalancers/":{},"/docs/web-servers/lamp/lamp-on-ubuntu-14-04/":{},"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/development/version-control/install-gitlab-on-ubuntu-14-04-trusty-tahr/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/security/upgrading/updating-virtual-host-settings-from-apache-2-2-to-apache-2-4/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/web-servers/lamp/how-to-install-a-lamp-stack-on-arch-linux/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/email/postfix/troubleshooting-problems-with-postfix-dovecot-and-mysql/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/uptime/analytics/piwik-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/nginx/install-nginx-and-php-via-fastcgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-11-04-natty/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-11-04-natty/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-arch-linux/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-10-maverick/":{},"/docs/uptime/analytics/piwik-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/enable-ssl-for-https-configuration-on-nginx/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-centos-5/":{},"/docs/websites/wikis/confluence-on-fedora-13/":{},"/docs/websites/wikis/confluence-on-debian-5-lenny/":{},"/docs/websites/wikis/confluence-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/confluence-on-ubuntu-10-04-lucid/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/basic-postfix-email-gateway-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/nginx-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/email/mailman/manage-email-lists-with-gnu-mailman-on-debian-5-lenny/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/development/frameworks/deploy-smalltalk-applications-with-seaside/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/troubleshooting/troubleshooting-common-apache-issues/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["virtual host",{"_index":1986,"title":{},"keywords":{"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{}},"toc":{},"deprecated":{}}],["virtual intercom",{"_index":1486,"title":{},"keywords":{"/docs/game-servers/install-teamspeak/":{}},"toc":{},"deprecated":{}}],["virtual machine mod",{"_index":1520,"title":{},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{},"deprecated":{}}],["virtual memori",{"_index":2448,"title":{},"keywords":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"toc":{},"deprecated":{}}],["virtualbox",{"_index":2878,"title":{},"keywords":{},"toc":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"deprecated":{}}],["virtualenv",{"_index":695,"title":{},"keywords":{"/docs/applications/project-management/how-to-create-a-private-python-package-repository/":{},"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"toc":{"/docs/development/python/create-a-python-virtualenv-on-ubuntu-1610/":{}},"deprecated":{}}],["virtualhost",{"_index":1773,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["viru",{"_index":1935,"title":{},"keywords":{},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["visual",{"_index":287,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{}},"keywords":{},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/project-management/setting-up-taskwarrior-on-ubuntu-16-10/":{}},"deprecated":{}}],["vlogger",{"_index":2295,"title":{},"keywords":{},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{}},"deprecated":{}}],["vmstat",{"_index":2447,"title":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{}},"keywords":{},"toc":{"/docs/uptime/monitoring/use-vmstat-to-monitor-system-performance/":{},"/docs/tools-reference/linux-system-administration-basics/":{}},"deprecated":{}}],["vnc",{"_index":424,"title":{"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{}},"deprecated":{}}],["voic",{"_index":1774,"title":{},"keywords":{},"toc":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{}},"deprecated":{}}],["voice chat",{"_index":1326,"title":{},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{}},"toc":{},"deprecated":{}}],["voip",{"_index":1325,"title":{"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"keywords":{"/docs/applications/voip/install-and-configure-mumble-on-debian/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-12-04-precise/":{},"/docs/applications/voip/deploy-voip-services-with-asterisk-and-freepbx-on-ubuntu-9-10-karmic/":{}},"toc":{},"deprecated":{}}],["voip gateway",{"_index":1391,"title":{},"keywords":{"/docs/applications/voip/install-asterisk-on-centos-7/":{}},"toc":{},"deprecated":{}}],["volum",{"_index":271,"title":{},"keywords":{"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"toc":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/applications/containers/how-to-install-openvz-on-debian-9/":{},"/docs/platform/how-to-use-block-storage-with-your-linode/":{}},"deprecated":{}}],["volume manag",{"_index":503,"title":{},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{},"deprecated":{}}],["vpn",{"_index":459,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configure-openvpn-access-server-to-tunnel-traffic/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{},"/docs/networking/vpn/pritunl-vpn-ubuntu/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic/":{}},"deprecated":{}}],["vpn server",{"_index":1484,"title":{},"keywords":{"/docs/networking/vpn/pritunl-vpn-ubuntu/":{}},"toc":{},"deprecated":{}}],["vpn tunnel",{"_index":1282,"title":{},"keywords":{"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/networking/vpn/set-up-a-hardened-openvpn-server/":{},"/docs/networking/vpn/tunnel-your-internet-traffic-through-an-openvpn-server/":{}},"toc":{},"deprecated":{}}],["vs",{"_index":248,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode/":{}},"deprecated":{}}],["vulner",{"_index":73,"title":{"/docs/security/security-patches/patching-glibc-for-the-ghost-vulnerability/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{},"/docs/security/security-patches/patching-openssl-for-the-heartbleed-vulnerability/":{}},"keywords":{"/docs/platform/meltdown_statement/":{},"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"toc":{"/docs/platform/meltdown_statement/":{},"/docs/security/security-patches/patching-bash-for-the-shellshock-vulnerability/":{}},"deprecated":{}}],["vulnerabilti",{"_index":493,"title":{"/docs/security/vulnerabilities/scanning-your-linode-for-malware/":{}},"keywords":{},"toc":{},"deprecated":{}}],["wait",{"_index":2932,"title":{},"keywords":{},"toc":{"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["warn",{"_index":1003,"title":{},"keywords":{},"toc":{"/docs/security/advanced-ssh-server-security/":{}},"deprecated":{}}],["watch",{"_index":357,"title":{},"keywords":{},"toc":{"/docs/development/monitor-filesystem-events-with-pyinotify/":{}},"deprecated":{}}],["watchdog",{"_index":2105,"title":{},"keywords":{},"toc":{"/docs/uptime/monitoring-and-maintaining-your-server/":{}},"deprecated":{}}],["way",{"_index":970,"title":{},"keywords":{},"toc":{"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/platform/disk-images/disk-images-and-configuration-profiles/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["wazuh",{"_index":563,"title":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"keywords":{},"toc":{"/docs/security/visualize-server-security-on-centos-7-with-an-elastic-stack-and-wazuh/":{}},"deprecated":{}}],["web",{"_index":164,"title":{"/docs/development/use-a-linode-for-web-development-on-remote-devices/":{},"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/databases/elasticsearch/visualize-apache-web-server-logs-using-elastic-stack-on-debian-8/":{},"/docs/applications/project-management/install-farmos/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/tools-reference/tools/load-testing-with-siege/":{},"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/websites/proxies/deploy-multiple-web-servers-with-proxypass-on-ubuntu-12-04/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-6-squeeze/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-fedora-13/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/websites/cms/manage-web-content-with-flatpress/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/websites/cms/manage-web-content-with-phpfusion/":{},"/docs/websites/proxies/multiple-web-servers-with-proxypass-on-centos-5/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-ubuntu-9-10-karmic/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-joomla/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/apache/multiple-web-servers-with-proxypass-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache-tips-and-tricks/redirect-urls-with-the-apache-web-server/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{}},"keywords":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/uptime/analytics/open-web-analytics-install-and-launch-on-your-server/":{}},"toc":{"/docs/applications/containers/deploying-microservices-with-docker/":{},"/docs/applications/cloud-storage/store-and-share-your-files-with-nextcloud-centos-7/":{},"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9/":{},"/docs/applications/cloud-storage/tahoe-lafs-on-debian-9/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{},"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/networking/diagnostics/install-ntopng-for-network-monitoring-on-debian8/":{},"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lemp/how-to-install-a-lemp-server-on-ubuntu-16-04/":{},"/docs/uptime/monitoring/install-nagios-4-on-ubuntu-debian-8/":{},"/docs/uptime/monitoring/monitoring-servers-with-monit/":{},"/docs/development/version-control/install-gogs-on-debian/":{},"/docs/applications/configuration-management/learn-how-to-install-ansible-and-run-playbooks/":{},"/docs/platform/nodebalancer/nodebalancer-ssl-configuration/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-20/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/websites/varnish/getting-started-with-varnish-cache/":{},"/docs/email/clients/install-squirrelmail-on-ubuntu-16-04-or-debian-8/":{},"/docs/email/clients/installing-squirrelmail-on-debian-7/":{},"/docs/email/clients/installing-squirrelmail-on-ubuntu-12-04/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-19/":{},"/docs/web-servers/lamp/lamp-server-on-gentoo/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/uptime/monitoring/monitor-services-with-nagios-on-ubuntu-12-04/":{},"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/lamp/set-up-a-lamp-server-on-gentoo/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-11-04-natty/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-15/":{},"/docs/web-servers/lamp/lamp-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-11-04-natty/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/web-servers/lamp/lamp-server-on-debian-6-squeeze/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/ecommerce/oscommerce-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/development/version-control/git-based-development-networks-with-girocco-on-debian-5-lenny/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-13/":{},"/docs/uptime/monitoring/monitoring-servers-with-munin-on-ubuntu-10-04-lucid/":{},"/docs/uptime/analytics/piwik-on-centos-5/":{},"/docs/websites/ecommerce/oscommerce-on-ubuntu-9-10-karmic/":{},"/docs/websites/ecommerce/magento-on-ubuntu-9-10-karmic/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{},"/docs/websites/ecommerce/oscommerce-on-debian-5-lenny/":{},"/docs/websites/ecommerce/magento-on-debian-5-lenny/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-04-jaunty/":{},"/docs/uptime/analytics/piwik-on-ubuntu-9-10-karmic/":{},"/docs/development/version-control/manage-source-code-versions-with-subversion/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/uptime/analytics/piwik-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lamp/lamp-server-on-centos-5/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-11/":{},"/docs/web-servers/lamp/lamp-server-on-fedora-12/":{},"/docs/networking/using-the-linode-shell-lish/":{},"/docs/web-servers/lamp/lamp-server-on-debian-5-lenny/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lamp/lamp-server-on-ubuntu-9-04-jaunty/":{}},"deprecated":{}}],["web app",{"_index":1860,"title":{},"keywords":{"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["web appl",{"_index":1690,"title":{},"keywords":{"/docs/web-servers/lemp/lemp-stack-on-centos-7-with-fastcgi/":{},"/docs/web-servers/lemp/lemp-stack-on-debian-8/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apache-centos-6/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/websites/forums/launch-discussion-forums-with-phpbb-on-ubuntu-12-04/":{},"/docs/web-servers/apache/run-php-cgi-apache-ubuntu-12-04/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-11-10-oneiric/":{},"/docs/web-servers/lemp/lemp-server-on-centos-6/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-15/":{},"/docs/web-servers/lemp/lemp-server-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-6-squeeze/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-fedora-14/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/sinatra-framework-and-nginx-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-14/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-10-maverick/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-centos-5/":{},"/docs/web-servers/lemp/lemp-server-on-arch-linux/":{},"/docs/web-servers/lemp/lemp-server-on-fedora-13/":{},"/docs/web-servers/lemp/lemp-server-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/lemp/lemp-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-10-04-lts-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-centos-5/":{},"/docs/websites/forums/discussion-forums-with-mybb/":{},"/docs/websites/forums/install-a-simple-machines-forum-on-your-website/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-8-04-hardy/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-centos-5/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-fedora-12/":{},"/docs/development/frameworks/catalyst-and-modperl/":{},"/docs/web-servers/apache/run-php-applications-under-cgi-with-apache-on-debian-5-lenny/":{},"/docs/websites/forums/discussion-forums-with-phpbb-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web framework",{"_index":2032,"title":{},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{},"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{},"/docs/websites/cms/managing-web-content-with-drupal-7/":{}},"toc":{},"deprecated":{}}],["web host",{"_index":1165,"title":{},"keywords":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{}},"toc":{},"deprecated":{}}],["web mail",{"_index":1378,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["web scrap",{"_index":375,"title":{},"keywords":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{}},"toc":{},"deprecated":{}}],["web search",{"_index":722,"title":{},"keywords":{"/docs/websites/cms/add-a-custom-search-to-your-site-with-solr/":{}},"toc":{},"deprecated":{}}],["web serv",{"_index":711,"title":{},"keywords":{"/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/":{},"/docs/web-servers/nginx/install-nginx-web-server-on-debian-8/":{},"/docs/web-servers/apache/apache-web-server-debian-8/":{},"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/security/ssl/ssl-apache2-debian-ubuntu/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-ubuntu-12-04-preci/":{},"/docs/web-servers/nginx/installing-nginx-on-ubuntu-12-04-lts-precise-pangolin/":{},"/docs/web-servers/apache/apache-web-server-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-centos/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-fedora-12/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/web-servers/apache/apache-access-control/":{},"/docs/web-servers/apache-tips-and-tricks/rulebased-access-control-for-apache/":{},"/docs/web-servers/apache-tips-and-tricks/apache-configuration-basics/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-ubuntu-8-04-lts-hardy/":{},"/docs/web-servers/lighttpd/lighttpd-web-server-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["web sev",{"_index":1870,"title":{},"keywords":{"/docs/web-servers/apache/apache-web-server-on-centos-6/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-10-maverick/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/cherokee/web-apps-with-cherokee-and-phpfastcgi-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/apache/apache-2-web-server-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{},"/docs/security/ssl/ssl-certificates-with-apache-2-on-debian-5-lenny/":{},"/docs/web-servers/apache/apache-2-web-server-on-centos-5/":{}},"toc":{},"deprecated":{}}],["web-appl",{"_index":2829,"title":{},"keywords":{"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["web-server autom",{"_index":678,"title":{},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{}},"toc":{},"deprecated":{}}],["web.pi",{"_index":1309,"title":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"keywords":{"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/development/frameworks/webpy-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/webpy-on-debian-6-squeeze/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/webpy-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/webpy-on-debian-5-lenny/":{}},"deprecated":{}}],["webal",{"_index":2296,"title":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"keywords":{"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"toc":{"/docs/websites/cms/manage-a-debian-6-squeeze-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-14-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-10-maverick-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-fedora-13-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-10-04-lucid-vps-with-ispconfig/":{},"/docs/websites/cms/manage-a-debian-5-lenny-vps-with-ispconfig/":{},"/docs/websites/cms/manage-an-ubuntu-9-10-karmic-vps-with-ispconfig/":{},"/docs/uptime/analytics/webalizer-on-centos-5/":{},"/docs/uptime/analytics/webalizer-on-debian-5-lenny/":{}},"deprecated":{}}],["webdav",{"_index":1331,"title":{},"keywords":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["webmail",{"_index":1275,"title":{},"keywords":{"/docs/email/clients/install-roundcube-on-ubuntu/":{}},"toc":{"/docs/email/running-a-mail-server/":{}},"deprecated":{}}],["webmail control panel",{"_index":770,"title":{},"keywords":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"toc":{},"deprecated":{}}],["webmin",{"_index":1722,"title":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"keywords":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"toc":{"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{}},"deprecated":{}}],["webpag",{"_index":301,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{}},"deprecated":{}}],["webserv",{"_index":2798,"title":{},"keywords":{"/docs/troubleshooting/troubleshooting-common-apache-issues/":{}},"toc":{},"deprecated":{}}],["webservic",{"_index":631,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["websit",{"_index":292,"title":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/development/version-control/how-to-unbundle-nginx-from-omnibus-gitlab-for-serving-multiple-websites/":{},"/docs/uptime/analytics/google-analytics-for-websites/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/websites/hosting-a-website/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/nginx/websites-with-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-ubuntu-10-04-lts-lucid/":{},"/docs/web-servers/nginx/websites-with-nginx-on-centos-5/":{},"/docs/web-servers/nginx/websites-with-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/websites-with-nginx-on-fedora-12/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"keywords":{"/docs/websites/introduction-to-high-availability/":{},"/docs/web-servers/lamp/lamp-on-debian-8-jessie/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/development/nodejs/how-to-install-nodejs/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/websites/hosting-a-website/":{}},"toc":{"/docs/websites/ecommerce/how-to-install-prestashop-on-ubuntu-16-04/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{},"/docs/troubleshooting/troubleshooting/":{},"/docs/websites/hosting-a-website/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/platform/linode-beginners-guide/":{}},"deprecated":{}}],["website migr",{"_index":1892,"title":{},"keywords":{"/docs/platform/migrate-to-linode/migrate-from-shared-hosting-to-linode/":{}},"toc":{},"deprecated":{}}],["websocket",{"_index":147,"title":{"/docs/development/introduction-to-websockets/":{}},"keywords":{"/docs/development/introduction-to-websockets/":{},"/docs/applications/big-data/install-a-jupyter-notebook-server-on-a-linode-behind-an-apache-reverse-proxy/":{}},"toc":{"/docs/development/introduction-to-websockets/":{}},"deprecated":{}}],["weechat",{"_index":1746,"title":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"keywords":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"toc":{"/docs/applications/messaging/using-weechat-for-irc/":{}},"deprecated":{}}],["week",{"_index":2494,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/use-the-date-command-in-linux/":{}},"deprecated":{}}],["wercker",{"_index":474,"title":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"keywords":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wercker.yml",{"_index":478,"title":{},"keywords":{},"toc":{"/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/":{}},"deprecated":{}}],["wget",{"_index":900,"title":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"keywords":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"toc":{"/docs/quick-answers/linux/how-to-use-wget/":{},"/docs/tools-reference/tools/download-resources-from-the-command-line-with-wget/":{}},"deprecated":{}}],["what’",{"_index":1523,"title":{},"keywords":{},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["what’",{"_index":82,"title":{},"keywords":{},"toc":{"/docs/platform/meltdown_statement/":{}},"deprecated":{}}],["wheezi",{"_index":1563,"title":{"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/web-servers/apache/running-fastcgi-php-fpm-on-debian-7-with-apache/":{},"/docs/databases/mongodb/creating-a-mongodb-replication-set-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/lemp/lemp-server-on-debian-7-wheezy/":{},"/docs/web-servers/nginx/how-to-install-nginx-on-debian-7-wheezy/":{},"/docs/web-servers/apache/run-php-cgi-apapache-debian-7/":{},"/docs/web-servers/lamp/lamp-server-on-debian-7-wheezy/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"keywords":{"/docs/security/upgrading/upgrade-to-debian-8-jessie/":{},"/docs/game-servers/minecraft-with-mcmyadmin-on-debian/":{},"/docs/web-servers/nginx/install-nginx-and-a-startssl-certificate-on-debian-7-wheezy/":{},"/docs/web-servers/apache/apache-web-server-debian-7/":{},"/docs/security/encryption/full-disk-encryption-xen/":{},"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{"/docs/tools-reference/custom-kernels-distros/run-a-distributionsupplied-kernel-with-pvgrub/":{}},"deprecated":{}}],["wheezy upgrad",{"_index":1940,"title":{},"keywords":{"/docs/security/upgrading/how-to-upgrade-to-debian-7-wheezy/":{}},"toc":{},"deprecated":{}}],["whitelist",{"_index":1107,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/security/linode-manager-security-controls/":{},"/docs/web-servers/apache-tips-and-tricks/modevasive-on-apache/":{}},"deprecated":{}}],["whitelist/blacklist",{"_index":2514,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/control-network-traffic-with-iptables/":{}},"deprecated":{}}],["whole",{"_index":243,"title":{},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{}},"deprecated":{}}],["wide",{"_index":376,"title":{},"keywords":{},"toc":{"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{}},"deprecated":{}}],["wiki",{"_index":2039,"title":{},"keywords":{"/docs/websites/wikis/twiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-12-04-precise-pangolin/":{},"/docs/websites/wikis/ikiwiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/twiki-on-centos-5/":{},"/docs/websites/wikis/twiki-on-debian-6-squeeze/":{},"/docs/websites/wikis/twiki-on-fedora-14/":{},"/docs/websites/wikis/ikiwiki-on-arch-linux/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-04-lucid/":{},"/docs/websites/wikis/twiki-on-ubuntu-10-10-maverick/":{},"/docs/websites/wikis/ikiwiki-on-debian-5-lenny/":{},"/docs/websites/wikis/twiki-on-debian-5-lenny/":{},"/docs/websites/wikis/ikiwiki-on-fedora-13/":{},"/docs/websites/wikis/dokuwiki-engine/":{},"/docs/websites/wikis/twiki/":{},"/docs/websites/wikis/ikiwiki-on-fedora-12/":{},"/docs/websites/wikis/ikiwiki-on-ubuntu-9-10-karmic/":{},"/docs/websites/wikis/install-mediawiki-on-ubuntu-1604/":{}},"toc":{},"deprecated":{}}],["wildcard",{"_index":1562,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/networking/dns/common-dns-configurations/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["wildfli",{"_index":1253,"title":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"keywords":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"toc":{"/docs/development/clojure-deployment-with-immutant-and-wildfly-on-ubuntu-14-04/":{},"/docs/development/java/java-development-wildfly-centos-7/":{}},"deprecated":{}}],["window",{"_index":145,"title":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/databases/postgresql/how-to-access-postgresql-database-remotely-using-pgadmin-on-windows/":{},"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{},"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{},"/docs/development/version-control/how-to-install-git-on-linux-mac-and-windows/":{}},"keywords":{"/docs/development/version-control/how-to-install-git-windows/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/databases/couchdb/access-futon-over-ssh-using-putty-on-windows/":{}},"toc":{"/docs/networking/vpn/create-a-socks5-proxy-server-with-shadowsocks-on-ubuntu-and-centos7/":{},"/docs/networking/ssh/persistent-terminal-sessions-with-tmux/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/networking/vpn/install-openvpn-access-server-on-linux/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/web-servers/cherokee/deploy-websites-with-a-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/web-servers/cherokee/use-cherokee-web-server-on-ubuntu-12-04/":{},"/docs/platform/disk-images/copying-a-disk-image-over-ssh/":{},"/docs/security/authentication/use-public-key-authentication-with-ssh/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-13/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-fedora-14/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-10-04-lts-lucid/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/applications/messaging/using-irssi-for-internet-relay-chat/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-ubuntu-9-04-jaunty/":{},"/docs/web-servers/cherokee/websites-with-the-cherokee-web-server-on-debian-5-lenny/":{}},"deprecated":{}}],["windows scp",{"_index":2820,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows sftp program",{"_index":2821,"title":{},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{},"deprecated":{}}],["windows ssh cli",{"_index":2838,"title":{},"keywords":{"/docs/networking/ssh/ssh-connections-using-putty-on-windows/":{}},"toc":{},"deprecated":{}}],["winscp",{"_index":2819,"title":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"keywords":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"toc":{"/docs/tools-reference/file-transfer/transfer-files-with-winscp-on-windows/":{}},"deprecated":{}}],["wireguard",{"_index":458,"title":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"keywords":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{},"/docs/networking/vpn/set-up-a-streisand-gateway/":{}},"toc":{"/docs/networking/vpn/set-up-wireguard-vpn-on-ubuntu/":{}},"deprecated":{}}],["within",{"_index":813,"title":{"/docs/applications/containers/node-js-web-server-deployed-within-docker/":{}},"keywords":{},"toc":{"/docs/game-servers/install-a-half-life-2-deathmatch-dedicated-server-on-debian-or-ubuntu/":{},"/docs/quick-answers/linux/linux-command-line-tips/":{},"/docs/tools-reference/tools/manipulate-text-from-the-command-line-with-sed/":{}},"deprecated":{}}],["without",{"_index":250,"title":{"/docs/networking/dns/previewing-websites-without-dns/":{}},"keywords":{},"toc":{"/docs/security/encrypt-data-disk-with-dm-crypt/":{},"/docs/game-servers/minecraft-with-bungee-cord/":{},"/docs/websites/cms/how-to-install-a-webmin-control-panel-and-modules/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-filezilla-on-ubuntu-9-10-desktop/":{}},"deprecated":{}}],["wizard",{"_index":775,"title":{},"keywords":{},"toc":{"/docs/email/how-to-create-an-email-server-with-mail-in-a-box/":{}},"deprecated":{}}],["wkhtmltopdf",{"_index":1014,"title":{},"keywords":{},"toc":{"/docs/websites/cms/install-odoo-10-on-ubuntu-16-04/":{},"/docs/websites/cms/install-odoo-9-erp-on-ubuntu-14-04/":{}},"deprecated":{}}],["wordpress",{"_index":543,"title":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"keywords":{"/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/themes-modules-backups-drupal-drush-on-debian-7/":{},"/docs/websites/cms/drush-drupal/":{},"/docs/websites/cms/cms-overview/":{}},"toc":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/host-a-website-with-high-availability/":{},"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/websites/cms/high-availability-wordpress/":{},"/docs/websites/cms/cms-overview/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"deprecated":{}}],["wordpress how-to",{"_index":2529,"title":{},"keywords":{"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["wordpress on linod",{"_index":546,"title":{},"keywords":{"/docs/websites/cms/configure-apache-to-run-multiple-wordpress-sites-on-one-linode/":{},"/docs/websites/cms/install-wordpress-on-ubuntu-16-04/":{},"/docs/websites/cms/how-to-install-and-configure-wordpress/":{}},"toc":{},"deprecated":{}}],["work",{"_index":435,"title":{},"keywords":{},"toc":{"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{},"/docs/networking/vpn/how-to-set-up-tinc-peer-to-peer-vpn/":{},"/docs/tools-reference/tools/how-to-install-midnight-commander/":{},"/docs/databases/postgresql/how-to-install-postgresql-relational-databases-on-centos-7/":{},"/docs/websites/varnish/use-varnish-and-nginx-to-serve-wordpress-over-ssl-and-http-on-debian-8/":{},"/docs/websites/introduction-to-high-availability/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{},"/docs/web-servers/nginx/nginx-with-pagespeed-on-ubuntu-14-04/":{},"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/applications/containers/docker-commands-quick-reference-cheat-sheet/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mariadb-on-centos-7/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-6/":{},"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{},"/docs/platform/billing-and-payments/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-7-wheezy/":{},"/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-12-04-precise-and-debian-7/":{},"/docs/development/ror/ruby-on-rails-apache-debian-8/":{},"/docs/email/running-a-mail-server/":{},"/docs/platform/prepaid-billing-and-payments-legacy/":{},"/docs/platform/linode-backup-service/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-6-squeeze/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-centos-5/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-debian-6-squeeze/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-10-maverick/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-10-maverick/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-10-04-lucid/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-13/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-fedora-12/":{},"/docs/uptime/loadbalancing/use-nginx-as-a-front-end-proxy-and-software-load-balancer/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-dovecot-and-mysql-on-debian-5-lenny/":{},"/docs/web-servers/nginx/how-to-configure-nginx/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-10-karmic/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-8-04-hardy/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-ubuntu-9-04-jaunty/":{},"/docs/email/postfix/email-with-postfix-courier-and-mysql-on-debian-5-lenny/":{},"/docs/tools-reference/tools/introduction-to-rsync/":{},"/docs/development/version-control/how-to-configure-git/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-users-and-groups/":{},"/docs/development/ror/ruby-on-rails-with-apache-on-ubuntu-9-04-jaunty/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/websites/cms/manage-web-content-with-movable-type/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["workbench",{"_index":841,"title":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"keywords":{"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"toc":{"/docs/databases/mysql/install-and-configure-mysql-workbench-on-ubuntu/":{},"/docs/databases/mysql/deploy-mysql-workbench-for-database-administration/":{}},"deprecated":{}}],["worker",{"_index":398,"title":{},"keywords":{},"toc":{"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/web-servers/nginx/configure-nginx-for-optimized-performance/":{},"/docs/web-servers/apache-tips-and-tricks/tuning-your-apache-server/":{},"/docs/platform/longview/longview-app-for-nginx/":{},"/docs/platform/longview/longview-app-for-apache/":{}},"deprecated":{}}],["workflow",{"_index":1907,"title":{},"keywords":{},"toc":{"/docs/development/version-control/introduction-to-version-control/":{},"/docs/development/version-control/manage-distributed-version-control-with-mercurial/":{},"/docs/email/clients/using-fetchmail-to-retrieve-email/":{}},"deprecated":{}}],["workshop",{"_index":1660,"title":{},"keywords":{},"toc":{"/docs/game-servers/garrys-mod-server-on-centos-7/":{}},"deprecated":{}}],["workstat",{"_index":1108,"title":{"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{},"/docs/applications/configuration-management/beginners-guide-chef/":{},"/docs/applications/configuration-management/install-a-chef-server-workstation-on-ubuntu-14-04/":{}},"deprecated":{}}],["world",{"_index":199,"title":{},"keywords":{},"toc":{"/docs/applications/containers/docker-container-communication/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{}},"deprecated":{}}],["wp",{"_index":1203,"title":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"keywords":{},"toc":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{},"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["wp-cli",{"_index":1206,"title":{},"keywords":{"/docs/websites/cms/install-wordpress-using-wp-cli-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["wpsolr",{"_index":1578,"title":{},"keywords":{},"toc":{"/docs/websites/cms/turbocharge-wordpress-search-with-solr/":{}},"deprecated":{}}],["wrap",{"_index":1337,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/access-your-box-account-from-your-linode/":{}},"deprecated":{}}],["wrapper",{"_index":1553,"title":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{}},"keywords":{},"toc":{"/docs/security/firewalls/protecting-your-linode-using-tcp-wrappers/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-arch-linux/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-14/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-13/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-fedora-12/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-centos-5/":{},"/docs/web-servers/nginx/nginx-and-perlfastcgi-on-debian-5-lenny/":{}},"deprecated":{}}],["write",{"_index":307,"title":{},"keywords":{},"toc":{"/docs/applications/big-data/how-to-scrape-a-website-with-beautiful-soup/":{},"/docs/development/python/use-scrapy-to-extract-data-from-html-tags/":{},"/docs/development/python/task-queue-celery-rabbitmq/":{},"/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/":{},"/docs/security/using-fail2ban-for-security/":{},"/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian/":{},"/docs/applications/containers/what-is-docker/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-6-squeeze/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-fedora-14/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-ubuntu-10-10-maverick/":{},"/docs/websites/cms/manage-content-with-markdown-and-mango-on-debian-5-lenny/":{},"/docs/tools-reference/tools/modify-file-permissions-with-chmod/":{},"/docs/tools-reference/linux-users-and-groups/":{}},"deprecated":{}}],["wsgi",{"_index":802,"title":{"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"keywords":{"/docs/websites/forums/install-and-run-askbot-on-ubuntu-16-04/":{},"/docs/web-servers/nginx/use-uwsgi-to-deploy-python-apps-with-nginx-on-ubuntu-12-04/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-6-squeeze/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-04-lucid/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-arch-linux/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-14/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-centos-5/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-fedora-13/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-9-10-karmic/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-debian-5-lenny/":{},"/docs/web-servers/nginx/wsgi-using-uwsgi-and-nginx-on-ubuntu-10-10-maverick/":{}},"toc":{"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-14-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-12-04-precise-pangolin/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-fedora-14/":{},"/docs/web-servers/apache/apache-and-mod-wsgi-on-ubuntu-10-10-maverick/":{},"/docs/web-servers/apache/apache-and-modwsgi-on-debian-5-lenny/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-6-squeeze/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-10-maverick/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-centos-5/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-10-04-lucid/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-ubuntu-9-10-karmic/":{},"/docs/development/frameworks/django-apache-and-modwsgi-on-debian-5-lenny/":{}},"deprecated":{}}],["x",{"_index":630,"title":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{},"/docs/databases/postgresql/securely-manage-remote-postgresql-servers-with-pgadmin-on-macos-x/":{},"/docs/tools-reference/file-transfer/transfer-files-with-cyberduck-on-mac-os-x/":{}},"keywords":{},"toc":{"/docs/networking/vpn/vpn-firewall-killswitch-for-linux-and-macos-clients/":{},"/docs/websites/ecommerce/install-magento-on-centos-7/":{},"/docs/websites/ecommerce/install-magento-on-ubuntu-16-04/":{},"/docs/applications/remote-desktop/install-vnc-on-ubuntu-16-04/":{},"/docs/networking/vpn/configuring-openvpn-client-devices/":{},"/docs/applications/messaging/using-weechat-for-irc/":{},"/docs/applications/remote-desktop/using-vnc-to-operate-a-desktop-on-ubuntu-12-04/":{},"/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing/":{},"/docs/platform/linode-cli/":{},"/docs/networking/dns/previewing-websites-without-dns/":{},"/docs/security/backups/backing-up-your-data/":{},"/docs/networking/ssh/install-mosh-server-as-ssh-alternative-on-linux/":{},"/docs/platform/nodebalancer/nodebalancer-reference-guide/":{},"/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/":{},"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{},"/docs/databases/mysql/create-an-ssh-tunnel-for-mysql-remote-access/":{}},"deprecated":{}}],["x over ssh",{"_index":1795,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x-forward",{"_index":1794,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["x11",{"_index":1792,"title":{},"keywords":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"toc":{"/docs/applications/remote-desktop/running-graphic-software-xforwarding-debian/":{},"/docs/applications/remote-desktop/run-graphic-software-on-your-linode-with-xforwarding-on-ubuntu-12-04/":{}},"deprecated":{}}],["xe",{"_index":2307,"title":{"/docs/databases/oracle/securely-administer-oracle-xe-with-an-ssh-tunnel/":{}},"keywords":{},"toc":{"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid/":{},"/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny/":{}},"deprecated":{}}],["xen",{"_index":1522,"title":{"/docs/tools-reference/custom-kernels-distros/install-a-custom-distribution-on-a-xen-linode/":{}},"keywords":{"/docs/platform/kvm-reference/":{}},"toc":{"/docs/platform/kvm-reference/":{}},"deprecated":{}}],["xenial",{"_index":1162,"title":{"/docs/databases/mongodb/install-mongodb-on-ubuntu-16-04/":{},"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xeru",{"_index":1164,"title":{"/docs/web-servers/lighttpd/use-lighttpd-web-server-on-ubuntu-16-04/":{}},"keywords":{},"toc":{},"deprecated":{}}],["xfce",{"_index":426,"title":{},"keywords":{"/docs/applications/remote-desktop/remote-desktop-using-apache-guacamole-on-docker/":{}},"toc":{},"deprecated":{}}],["xmpp",{"_index":2022,"title":{"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"keywords":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{}},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-12-04-precise-pangolin/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-10-maverick/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-10-04-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-debian-5-lenny/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/installing-prosody-xmpp-server-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xmpp server",{"_index":1979,"title":{},"keywords":{"/docs/applications/messaging/install-openfire-on-ubuntu-12-04-for-instant-messaging/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-6-squeeze/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-10-04-lts-lucid/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-openfire-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["xmpp/jabber",{"_index":2025,"title":{},"keywords":{},"toc":{"/docs/applications/messaging/use-ejabberd-for-instant-messaging-on-ubuntu-12-04/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-fedora-13/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-centos-5/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-10-karmic/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-8-04-hardy/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-ubuntu-9-04-jaunty/":{},"/docs/applications/messaging/instant-messaging-services-with-ejabberd-on-debian-5-lenny/":{}},"deprecated":{}}],["xtradb",{"_index":1089,"title":{},"keywords":{},"toc":{"/docs/web-servers/apache/install-and-configure-apache-on-centos-7/":{},"/docs/websites/host-a-website-with-high-availability/":{}},"deprecated":{}}],["xzip",{"_index":2527,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"deprecated":{}}],["yarn",{"_index":552,"title":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{}},"keywords":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"toc":{"/docs/databases/hadoop/install-configure-run-spark-on-top-of-hadoop-yarn-cluster/":{},"/docs/databases/hadoop/how-to-install-and-set-up-hadoop-cluster/":{}},"deprecated":{}}],["yellow",{"_index":2944,"title":{},"keywords":{},"toc":{"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["yesod",{"_index":1745,"title":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"keywords":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"toc":{"/docs/development/frameworks/yesod-nginx-mysql-on-debian-7-wheezy/":{}},"deprecated":{}}],["yoast",{"_index":1649,"title":{},"keywords":{},"toc":{"/docs/uptime/analytics/google-analytics-on-wordpress/":{}},"deprecated":{}}],["you’r",{"_index":2865,"title":{},"keywords":{},"toc":{"/docs/tools-reference/introduction-to-linux-concepts/":{}},"deprecated":{}}],["yubikey",{"_index":784,"title":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{}},"keywords":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"toc":{"/docs/security/authentication/how-to-use-yubikey-for-two-factor-ssh-authentication/":{},"/docs/security/authentication/gpg-key-for-ssh-authentication/":{}},"deprecated":{}}],["yum",{"_index":281,"title":{},"keywords":{"/docs/platform/package-mirrors/":{},"/docs/tools-reference/linux-package-management/":{}},"toc":{"/docs/databases/elasticsearch/monitor-nginx-web-server-logs-using-filebeat-elastic-stack-centos-7/":{},"/docs/platform/longview/longview/":{},"/docs/tools-reference/introduction-to-linux-concepts/":{},"/docs/tools-reference/linux-package-management/":{}},"deprecated":{}}],["z",{"_index":512,"title":{},"keywords":{},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zabbix",{"_index":2106,"title":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"keywords":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"toc":{"/docs/uptime/monitoring/monitoring-servers-with-zabbix/":{}},"deprecated":{}}],["zf",{"_index":501,"title":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"keywords":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"toc":{"/docs/applications/cloud-storage/how-to-use-zfs-on-ubuntu-16-04/":{}},"deprecated":{}}],["zgrep",{"_index":2556,"title":{},"keywords":{},"toc":{"/docs/tools-reference/tools/how-to-grep-for-text-in-files/":{}},"deprecated":{}}],["zimbra",{"_index":1370,"title":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"deprecated":{}}],["zimbra debian 5",{"_index":2651,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra debian 6",{"_index":2351,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra email",{"_index":1373,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra email serv",{"_index":1374,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra groupwar",{"_index":2354,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra lenni",{"_index":2652,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra lucid",{"_index":2608,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zimbra mail serv",{"_index":2355,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on cento",{"_index":2846,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-centos-5/":{}},"toc":{},"deprecated":{}}],["zimbra on debian",{"_index":2353,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}],["zimbra on ubuntu",{"_index":2609,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{},"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-8-04-hardy/":{}},"toc":{},"deprecated":{}}],["zimbra open sourc",{"_index":1377,"title":{},"keywords":{"/docs/email/zimbra/zimbra-on-ubuntu-14-04/":{}},"toc":{},"deprecated":{}}],["zimbra squeez",{"_index":2352,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-debian-6-squeeze/":{}},"toc":{},"deprecated":{}}],["zimbra ubuntu 10.04",{"_index":2607,"title":{},"keywords":{"/docs/email/zimbra/email-and-calendars-with-zimbra-6-on-ubuntu-10-04-lts-lucid/":{}},"toc":{},"deprecated":{}}],["zip",{"_index":2521,"title":{"/docs/tools-reference/tools/archiving-and-compressing-files-with-gnu-tar-and-gnu-zip/":{}},"keywords":{},"toc":{},"deprecated":{}}],["zipkin",{"_index":602,"title":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"keywords":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"toc":{"/docs/uptime/analytics/zipkin-server-configuration-using-docker-and-mysql/":{},"/docs/uptime/analytics/set-up-a-zipkin-server/":{}},"deprecated":{}}],["znc",{"_index":1758,"title":{"/docs/applications/messaging/install-znc-debian/":{}},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{"/docs/applications/messaging/install-znc-debian/":{}},"deprecated":{}}],["znc on debian",{"_index":1761,"title":{},"keywords":{"/docs/applications/messaging/install-znc-debian/":{}},"toc":{},"deprecated":{}}],["zone",{"_index":1404,"title":{},"keywords":{},"toc":{"/docs/security/firewalls/introduction-to-firewalld-on-centos/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-6-squeeze/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-11-04-natty/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-14/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-10-maverick/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-10-04-lucid/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-fedora-13/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-9-10-karmic/":{},"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-debian-5-lenny/":{},"/docs/tools-reference/linux-system-administration-basics/":{},"/docs/networking/dns/dns-records-an-introduction/":{},"/docs/networking/dns/dns-manager-overview/":{}},"deprecated":{}}],["zone fil",{"_index":2074,"title":{},"keywords":{"/docs/networking/dns/provide-authoritative-dns-services-with-nsd-on-ubuntu-12-04/":{}},"toc":{},"deprecated":{}}],["zookeep",{"_index":1105,"title":{},"keywords":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"toc":{"/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm/":{}},"deprecated":{}}],["zoom",{"_index":1962,"title":{},"keywords":{},"toc":{"/docs/platform/longview/longview/":{}},"deprecated":{}}],["zope",{"_index":2721,"title":{},"keywords":{"/docs/websites/cms/manage-web-content-with-plone-on-debian-5-lenny/":{}},"toc":{},"deprecated":{}}]],"pipeline":["stemmer"]}} \ No newline at end of file From be5a67c9f0676e311fb6d2918678cb02ab70c516 Mon Sep 17 00:00:00 2001 From: Jared Date: Thu, 1 Feb 2018 10:03:10 -0500 Subject: [PATCH 12/25] Clear contribute.md topics list (#1475) Chose to leave this file in place so format is available when needed. --- docs/contribute.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contribute.md b/docs/contribute.md index 6eab2ad4543..6ea876ce601 100644 --- a/docs/contribute.md +++ b/docs/contribute.md @@ -15,9 +15,9 @@ show_on_rss_feed: false --- {{< topics >}} -* Introduction to the Kubernetes Scheduler + {{< /topics >}} {{< topics >}} -* Build and Manage Applications with Dokku + {{< /topics >}} From 13cdfe664246ce75fe734509cb19fb030eb10256 Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Thu, 1 Feb 2018 11:03:42 -0500 Subject: [PATCH 13/25] Initial block storage fixes (#1476) --- ...w-to-use-block-storage-with-your-linode.md | 48 ++++++++----------- 1 file changed, 20 insertions(+), 28 deletions(-) diff --git a/docs/platform/how-to-use-block-storage-with-your-linode.md b/docs/platform/how-to-use-block-storage-with-your-linode.md index 9febfa88868..9effc3e8f85 100644 --- a/docs/platform/how-to-use-block-storage-with-your-linode.md +++ b/docs/platform/how-to-use-block-storage-with-your-linode.md @@ -3,52 +3,50 @@ author: name: Linode email: docs@linode.com description: This tutorial explains how to use Linode's block storage service. -keywords: ["block storage", " volume", " media", " resize", " storage", " disk"] +keywords: ["block storage", " volume", "media", "resize", "storage", "disk"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -modified: 2018-01-30 +modified: 2018-02-01 modified_by: name: Linode published: 2017-06-16 title: How to Use Block Storage with Your Linode --- -![Block storage title graphic](/docs/assets/block-storage-title-graphic.png) +![How to Use Block Storage with Your Linode](/docs/assets/block-storage-title-graphic.png) -Linode's block storage service allows you to attach additional storage volumes to your Linode. A single volume can range from 1 to 1024 gigabytes in size and costs $0.10/GiB per month. They can be partitioned however you like and can accommodate any filesystem type you choose. Up to eight volumes can be attached to a single Linode, be it new or already existing, so you do not need to recreate your server to add a block storage volume. +Linode’s block storage service allows you to attach additional storage volumes to your Linode. A single volume can range from 10 GB to 10,000 GB in size and costs $0.10/GB per month. They can be partitioned however you like and can accommodate any filesystem type you choose. Up to eight volumes can be attached to a single Linode, be it new or already existing, so you do not need to recreate your server to add a Block Storage Volume. -Block Storage is currently in a free public beta for Linodes in our Newark and Fremont datacenters. Any feedback you can give on the service would also be helpful and is appreciated. +The Block Storage service is available now in production in the us-west/Fremont region only. {{< caution >}} -- Linode's backup services do not cover block storage volumes. You must execute your own backups for this data. +- Linode's backup services do not cover Block Storage Volumes. You must execute your own backups for this data. - Your Linode must be running in Paravirtualizaion mode. Block storage currently does not support Full-virtualization. {{< /caution >}} ## How to Add a Block Storage Volume to a Linode -This guide assumes a Linode with the root disk mounted as `/dev/sda` and swap space mounted as `/dev/sdb`. In this scenario, the block storage volume will be available to the operating system as `/dev/disk/by-id/scsi-0Linode_Volume_EXAMPLE`, where `EXAMPLE` is a label you assign the volume in the Linode Manager. Storage volumes can be added when your Linode is already running, and will show immediately in `/dev/disk/by-id/`. +This guide assumes a Linode with the root disk mounted as `/dev/sda` and swap space mounted as `/dev/sdb`. In this scenario, the Block Storage Volume will be available to the operating system as `/dev/disk/by-id/scsi-0Linode_Volume_EXAMPLE`, where `EXAMPLE` is a label you assign the volume in the Linode Manager. Storage volumes can be added when your Linode is already running, and will show immediately in `/dev/disk/by-id/`. ### Add a Volume from the Linode Dashboard -1. Go to the dashboard page of the Linode to which you want to attach a block storage volume. Select **Create a new Volume**: +1. Go to the dashboard page of the Linode to which you want to attach a Block Storage Volume. Select **Create a new Volume**: - [![Linode Manager create a volume](/docs/assets/bs-manager-create-new-volume-small.png)](/docs/assets/bs-manager-create-new-volume.png) + [![Linode Manager create a Volume](/docs/assets/bs-manager-create-new-volume-small.png)](/docs/assets/bs-manager-create-new-volume.png) -2. Assign the block storage volume a label and size. The label can be up to 32 characters long and consist only of ASCII characters `a-z; 0-9.-_`. The maximum volume size is 1024 GiB (1 terabyte). When finished, click *Add this Volume!*: +2. Assign the Block Storage Volume a label and size. The label can be up to 32 characters long and consist only of ASCII characters `a-z; 0-9.-_`. The maximum volume size is 10,000 GB. When finished, click *Add this Volume!*: - [![Linode Manager add a volume](/docs/assets/bs-add-a-volume.png)](/docs/assets/bs-add-a-volume.png) + [![Linode Manager add a Volume](/docs/assets/bs-add-a-volume.png)](/docs/assets/bs-add-a-volume.png) {{< note >}} -Block storage is currently only available to Linodes in our Newark and Fremont datacenters. Contact [Linode Support](https://manager.linode.com/support/ticket/new?summary=Block%20Storage%20Beta) if you would like to migrate your Linode to Newark or Fremont from another location. +There is currently a soft limit of 100 TB of Block Storage Volume per account. {{< /note >}} - If you receive the message, "Block Storage service is not yet enabled for this Linode's host. Please contact support if you would like a migration," reply to the ticket opened earlier and quote the error's text. - 3. Once you add a volume, you'll be presented with the Volume Attached page as shown below. This page provides customized instructions which show you how to make a filesystem in your volume from any of our supported Linux distributions. The page shows how to mount the volume, and how to add it to `/etc/fstab` so it's mounted automatically whenever you reboot your Linode: [![Linode Manager volume instructions](/docs/assets/bs-volume-instructions-small.png)](/docs/assets/bs-volume-instructions.png) -4. If your Linode is not already running, boot and SSH in to execute the commands as shown on the instructions page. If you need to see the volume mount instructions again, click **Edit** to the right of the volume in that Linode's dashboard: +4. If your Linode is not already running, boot and SSH into your Linode to execute the commands as shown on the instructions page. If you need to see the volume mount instructions again, click **Edit** to the right of the volume in that Linode's dashboard: [![Linode Manager edit volume](/docs/assets/bs-edit-small.png)](/docs/assets/bs-edit.png) @@ -66,17 +64,11 @@ Block storage is currently only available to Linodes in our Newark and Fremont d [![Linode Manager add volume](/docs/assets/bs-volume-attach-small.png)](/docs/assets/bs-volume-attach.png) - {{< note >}} -Block storage is currently only available to Linodes in our Newark and Fremont datacenters. Contact [Linode Support](https://manager.linode.com/support/ticket/new?summary=Block%20Storage%20Beta) if you would like to migrate your Linode to Newark or Fremont from another location. -{{< /note >}} - - If you receive the message, "Block Storage service is not yet enabled for this Linode's host. Please contact support if you would like a migration," reply to the ticket opened earlier and quote the error's text. - 4. Once you add a volume, you'll be presented with the Volume Attached page as shown below. This page provides customized instructions which show you how to make a filesystem in your volume from any of our supported Linux distributions. The page shows how to mount the volume, and how to add it to `/etc/fstab` so it's mounted automatically whenever you reboot your Linode: [![Linode Manager volume instructions](/docs/assets/bs-volume-instructions-small.png)](/docs/assets/bs-volume-instructions.png) -5. If your Linode is not already running, boot and SSH in to execute the commands as shown on the instructions page. If you need to see the volume mount instructions again, click **Edit** to the right of the volume in that Linode's dashboard: +5. If your Linode is not already running, boot and SSH into your Linode to execute the commands as shown on the instructions page. If you need to see the volume mount instructions again, click **Edit** to the right of the volume in that Linode's dashboard: [![Linode Manager edit volume](/docs/assets/bs-edit-small.png)](/docs/assets/bs-edit.png) @@ -102,9 +94,9 @@ Block storage is currently only available to Linodes in our Newark and Fremont d ## How to Delete a Block Storage Volume -{{< alert-danger >}} +{{< caution >}} The removal process is irreversible, and the data will be permanently deleted. -{{< /alert-danger >}} +{{< /caution >}} 1. Shut down the Linode. @@ -114,19 +106,19 @@ The removal process is irreversible, and the data will be permanently deleted. ## How to Resize a Block Storage Volume -Storage volumes can **not** be sized down, only up. Bear this in mind when sizing your volumes. +Storage volumes **cannot** be sized down, only up. Keep this in mind when sizing your volumes. 1. Shut down your Linode. 2. Click the **Edit** option for the volume you want to resize. -3. Enter the new volume size. The minimum size is 1 GiB and maximum is 1024 GiB. Then click **Save Changes**. +3. Enter the new volume size. The minimum size is 10 GB and maximum is 10,000 GB. Then click **Save Changes**. - [![Linode Manager edit volume](/docs/assets/bs-resize-volume-small.png)](/docs/assets/bs-resize-volume.png) + [![Linode Manager edit volume](/docs/assets/bs-resize-volume-small.png)](/docs/assets/bs-resize-volume.png) 4. You'll be returned to the volume list and the **Status** column for the volume should say **resizing**. - [![Linode Manager edit volume](/docs/assets/bs-volume-resizing-small.png)](/docs/assets/bs-volume-resizing.png) + [![Linode Manager edit volume](/docs/assets/bs-volume-resizing-small.png)](/docs/assets/bs-volume-resizing.png) 5. Reboot your Linode and your volume resize will be completed. From 220939ad2259e59213807d3e6c7da93f65728e4e Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Thu, 1 Feb 2018 12:22:05 -0500 Subject: [PATCH 14/25] GB -> GiB for block storage --- docs/platform/how-to-use-block-storage-with-your-linode.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/platform/how-to-use-block-storage-with-your-linode.md b/docs/platform/how-to-use-block-storage-with-your-linode.md index 9effc3e8f85..124ee0ab5bb 100644 --- a/docs/platform/how-to-use-block-storage-with-your-linode.md +++ b/docs/platform/how-to-use-block-storage-with-your-linode.md @@ -14,7 +14,7 @@ title: How to Use Block Storage with Your Linode ![How to Use Block Storage with Your Linode](/docs/assets/block-storage-title-graphic.png) -Linode’s block storage service allows you to attach additional storage volumes to your Linode. A single volume can range from 10 GB to 10,000 GB in size and costs $0.10/GB per month. They can be partitioned however you like and can accommodate any filesystem type you choose. Up to eight volumes can be attached to a single Linode, be it new or already existing, so you do not need to recreate your server to add a Block Storage Volume. +Linode’s block storage service allows you to attach additional storage volumes to your Linode. A single volume can range from 10 GiB to 10,000 GiB in size and costs $0.10/GiB per month. They can be partitioned however you like and can accommodate any filesystem type you choose. Up to eight volumes can be attached to a single Linode, be it new or already existing, so you do not need to recreate your server to add a Block Storage Volume. The Block Storage service is available now in production in the us-west/Fremont region only. @@ -34,7 +34,7 @@ This guide assumes a Linode with the root disk mounted as `/dev/sda` and swap sp [![Linode Manager create a Volume](/docs/assets/bs-manager-create-new-volume-small.png)](/docs/assets/bs-manager-create-new-volume.png) -2. Assign the Block Storage Volume a label and size. The label can be up to 32 characters long and consist only of ASCII characters `a-z; 0-9.-_`. The maximum volume size is 10,000 GB. When finished, click *Add this Volume!*: +2. Assign the Block Storage Volume a label and size. The label can be up to 32 characters long and consist only of ASCII characters `a-z; 0-9.-_`. The maximum volume size is 10,000 GiB. When finished, click *Add this Volume!*: [![Linode Manager add a Volume](/docs/assets/bs-add-a-volume.png)](/docs/assets/bs-add-a-volume.png) @@ -112,7 +112,7 @@ Storage volumes **cannot** be sized down, only up. Keep this in mind when sizing 2. Click the **Edit** option for the volume you want to resize. -3. Enter the new volume size. The minimum size is 10 GB and maximum is 10,000 GB. Then click **Save Changes**. +3. Enter the new volume size. The minimum size is 10 GiB and maximum is 10,000 GiB. Then click **Save Changes**. [![Linode Manager edit volume](/docs/assets/bs-resize-volume-small.png)](/docs/assets/bs-resize-volume.png) From 9f7ec99e568aab10b9f93ff03c1f65a464848fa6 Mon Sep 17 00:00:00 2001 From: Jared Date: Thu, 1 Feb 2018 13:44:04 -0500 Subject: [PATCH 15/25] Add test case for file extensions (#1471) * Add test case for file extensions Tests that all files have a lowercase extension. Written due to broken images with mismatched extension names. As written will ignore files without an extension. - Added .git and .gitignore to preexisting pytest fixtures - Fixed uppercase filenames (preexisting) - Added a new full_index fixture to cycle through all files * Change params in conftest --- ci/conftest.py | 19 ++- ci/test_extensions.py | 10 ++ .../how-to-install-openvz-on-debian-9.md | 6 +- .../openvz/{openvz_one.PNG => openvz_one.png} | Bin .../{openvz_three.PNG => openvz_three.png} | Bin .../openvz/{openvz_two.PNG => openvz_two.png} | Bin .../assets/{openvz_one.PNG => openvz_one.png} | Bin ...nfig => team_fortress_2_server_config.cfg} | 0 .../deploy-a-react-app-on-linode.md | 139 ++++++++++++++++++ .../team-fortress2-on-debian-and-ubuntu.md | 2 +- 10 files changed, 166 insertions(+), 10 deletions(-) create mode 100644 ci/test_extensions.py rename docs/assets/openvz/{openvz_one.PNG => openvz_one.png} (100%) rename docs/assets/openvz/{openvz_three.PNG => openvz_three.png} (100%) rename docs/assets/openvz/{openvz_two.PNG => openvz_two.png} (100%) rename docs/assets/{openvz_one.PNG => openvz_one.png} (100%) rename docs/assets/{team_fortress_2_server_config => team_fortress_2_server_config.cfg} (100%) create mode 100644 docs/development/deploy-a-react-app-on-linode.md diff --git a/ci/conftest.py b/ci/conftest.py index 658fa4e1c00..c567c42dc81 100644 --- a/ci/conftest.py +++ b/ci/conftest.py @@ -21,23 +21,30 @@ def wrapper(md_filepath): return wrapper @pytest.fixture(scope='module', autouse=True) -def md_index(path='.', extension='*.md'): +def file_index(path='.', extension=None): """ Traverses root directory """ index = [] - exclude_dir = ['node_modules', 'archetypes'] - exclude_file = ['_index.md'] + exclude_dir = ['node_modules', 'archetypes', '.git'] + exclude_file = ['_index.md','.gitignore'] for root, dirnames, filenames in os.walk(path): dirnames[:] = [d for d in dirnames if d not in exclude_dir] - for filename in fnmatch.filter(filenames, extension): + if extension: + filter_ext = fnmatch.filter(filenames, extension) + else: + filter_ext = filenames #Filter nothing + for filename in filter_ext: if filename in exclude_file: continue index.append(os.path.join(root, filename)) return index - -@pytest.fixture(params=md_index()) +@pytest.fixture(params=file_index(extension='*.md')) def md_filepath(request): return request.param +@pytest.fixture(params=file_index(extension=None)) +def all_filepaths(request): + return request.param + diff --git a/ci/test_extensions.py b/ci/test_extensions.py new file mode 100644 index 00000000000..c8d7764b47e --- /dev/null +++ b/ci/test_extensions.py @@ -0,0 +1,10 @@ +import pytest +import os + +def test_extension(all_filepaths): + """ + Tests that all file extensions are lowercase. + Ignores files without an extension. + """ + filename, file_extension = os.path.splitext(all_filepaths) + assert file_extension == file_extension.lower(), 'File extensions must be lowercase.' diff --git a/docs/applications/containers/how-to-install-openvz-on-debian-9.md b/docs/applications/containers/how-to-install-openvz-on-debian-9.md index 6b11d74c4ee..b91b63629c3 100644 --- a/docs/applications/containers/how-to-install-openvz-on-debian-9.md +++ b/docs/applications/containers/how-to-install-openvz-on-debian-9.md @@ -48,11 +48,11 @@ If you intend to dedicate an entire Linode VPS to running OpenVZ and no other se 1. Log into your Linode Manager and select your Linode. Power down the machine, and verify the job completed by viewing the *Host Job Queue* section. Under the *Disks* tab, click *Create a new Disk*. Add a label of your choosing, select "ext4" in the *Type* drop-down menu, and allocate as much space as you can in the *Size* field. Click *Save Changes*; an optimal configuration will resemble the image below. - ![Linode Manager - Partition Scheme](/docs/assets/openvz/openvz_two.PNG) + ![Linode Manager - Partition Scheme](/docs/assets/openvz/openvz_two.png) 2. Under the *Dashboard* tab, click your main Configuration Profile. Under the *Block Device Assignment* tab, assign your new partition to an open device. Click *Save Changes* when finished. - ![Linode Manager - Block Device Assignment](/docs/assets/openvz/openvz_three.PNG) + ![Linode Manager - Block Device Assignment](/docs/assets/openvz/openvz_three.png) 3. Boot the Linode and log in via SSH. Issue the command below to verify that the new disk has been created properly. The output will display your newly created disk. @@ -262,7 +262,7 @@ submenu 'Advanced options for Debian GNU/Linux' $menuentry_id_option 'gnulinux-a 6. By default, kernel loading is not handled by Grub, but by the Linode Manager. Login to your Linode Manager and select your Linode. Click on your configuration profile. Under the "Boot Settings" section, select "GRUB 2" from the Kernel dropdown-list (see image below). Save your changes and exit. - ![Linode Manager - Select Kernel](/docs/assets/openvz/openvz_one.PNG) + ![Linode Manager - Select Kernel](/docs/assets/openvz/openvz_one.png) 7. Reboot your server and issue the command below to verify the OpenVZ kernel was loaded: diff --git a/docs/assets/openvz/openvz_one.PNG b/docs/assets/openvz/openvz_one.png similarity index 100% rename from docs/assets/openvz/openvz_one.PNG rename to docs/assets/openvz/openvz_one.png diff --git a/docs/assets/openvz/openvz_three.PNG b/docs/assets/openvz/openvz_three.png similarity index 100% rename from docs/assets/openvz/openvz_three.PNG rename to docs/assets/openvz/openvz_three.png diff --git a/docs/assets/openvz/openvz_two.PNG b/docs/assets/openvz/openvz_two.png similarity index 100% rename from docs/assets/openvz/openvz_two.PNG rename to docs/assets/openvz/openvz_two.png diff --git a/docs/assets/openvz_one.PNG b/docs/assets/openvz_one.png similarity index 100% rename from docs/assets/openvz_one.PNG rename to docs/assets/openvz_one.png diff --git a/docs/assets/team_fortress_2_server_config b/docs/assets/team_fortress_2_server_config.cfg similarity index 100% rename from docs/assets/team_fortress_2_server_config rename to docs/assets/team_fortress_2_server_config.cfg diff --git a/docs/development/deploy-a-react-app-on-linode.md b/docs/development/deploy-a-react-app-on-linode.md new file mode 100644 index 00000000000..e02a940f0d7 --- /dev/null +++ b/docs/development/deploy-a-react-app-on-linode.md @@ -0,0 +1,139 @@ +--- +author: + name: Phil Zona + email: phil.b.zona@gmail.com +description: 'Learn to deploy a locally developed React application to your Linode using Rsync.' +og_description: 'Use Rsync to deploy a React application from your local computer to a Linode.' +keywords: ['react','reactjs','deploy','rsync'] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2018-01-31 +modified: 2018-01-31 +modified_by: + name: Linode +title: "Deploy a React App on Linode" +contributor: + name: Phil Zona + link: https://twitter.com/philzona +external_resources: +- '[React - A JavaScript library for building user interfaces](https://reactjs.org/)' +- '[Deploy a React App with Sass Using NGINX](http://zabana.me/notes/build-deploy-react-app-with-nginx.html)' +--- + +## What is React? + +[React](https://reactjs.org/) is a popular JavaScript library for building user interfaces. While React is often used as a frontend for more complex applications, it's also powerful enough to be used for full client-side applications on its own. + +Since a basic React app is essentially static (it consists of compiled HTML, CSS, and Javascript files), it is easy to deploy from a local computer to a Linode using [Rsync](https://rsync.samba.org/). This guide will show how to set up your Linode and local machine so that you can easily deploy your app whenever changes are made. + +## Before You Begin + +1. Familiarize yourself with our [Getting Started](/docs/getting-started) guide and complete the steps for setting your Linode's hostname and timezone. + +2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server) to create a standard user account, harden SSH access and remove unnecessary network services. + +3. You will need to have a web server, such as [NGINX](https://linode.com/docs/web-servers/nginx/how-to-configure-nginx/) or [Apache](https://linode.com/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/) installed and configured to host a website on your Linode. + +4. This guide assumes you already have a React app you'd like to deploy. If you don't have one, you can bootstrap a project quickly using [create-react-app](https://github.com/facebookincubator/create-react-app). + +5. Make sure [Git](https://linode.com/docs/development/version-control/how-to-configure-git/) is installed on your system: + + sudo apt install git + +5. Update your system: + + sudo apt update && sudo apt-get upgrade + +## Configure Linode for Deployment + +The steps in this section should be performed on your Linode. + +### Create Host Directory + +1. Navigate to your *web root*, or the location from which you'll be serving your React app, and create a directory where your app will live. Most of the time, this will be `/var/www`, but you can adjust the path and the directory name for your needs: + + sudo mkdir -p /var/www/mydomain.com + +2. Set permissions for the new directory to allow your regular user account to write to it: + + sudo chmod 755 -R /var/www/mydomain.com + +### Configure Web Server + +1. Ensure your web server is configured to serve from the "work tree" file path we configured in the previous step. + + If you're using Apache, this will be the `DocumentRoot` in your virtual host file: + + {{< file "/etc/nginx/sites-available/mydomain.com.conf" aconf>}} + + ServerAdmin webmaster@mydomain.com + ServerName mydomain.com + ServerAlias www.mydomain.com + DocumentRoot /var/www/mydomain.com/ ## Modify this line as well as others referencing the path to your app + ErrorLog /var/www/mydomain.com/logs/error.log + CustomLog /var/www/mydomain.com/logs/access.log combined + +{{< /file >}} + + If you're using NGINX, this will be found in the line starting with `root` in the server block for your site: + + {{< file-excerpt "/etc/nginx/conf.d/myapp.conf" nginx >}} +server { + listen 80; + listen [::]:80; + + root /var/www/mydomain.com; ## Modify this line + index index.html index.htm; + +} +{{< /file-excerpt >}} + +2. Restart your web server to apply the changes. Use whichever command applies to your web server: + + sudo systemctl restart apache2 + sudo systemctl restart nginx + +## Configure Local Computer + +1. Navigate to the directory where your local project lives. For example: + + cd ~/myapp + + If you don't have an existing project to use, you can create one at this stage using [create-react-app](https://github.com/facebookincubator/create-react-app). + +2. Using a text editor, create a deployment bash script called `deploy` in your app's root directory. Replace `exampleuser` with the username of your limited user account, and `mydomain.com` with your Linode's FQDN or public IP address. + + {{< file "~/myapp/deploy" bash >}} +#!/bin/sh + +echo "Switching to branch master" +git checkout master + +echo "Building app" +npm run build + +echo "Deploying files to server" +rsync -avP build/ exampleuser@mydomain.com:/var/www/mydomain.com/ +echo "Deployment complete" +{{< /file >}} + + This script will check out the master branch of your project on Git, build the app using `npm run build`, and then sync the build files to the remote Linode using Rsync. If your React app was not built with `create-react-app`, the build command may be different and the built files may be stored in a different directory (such as `dist`). Modify the script accordingly. + +3. Make the script executable: + + sudo chmod u+x deploy + +4. Run the script: + + ./deploy + + Enter your Unix password when prompted. + +5. In a browser, navigate to your Linode's domain name or public IP address. If the deploy was successful, you should see your React app displayed. + +6. Make a few changes to your app's `src` directory and then re-run the `deploy` script. Your changes should be visible in the browser after refreshing the page. + +## Next Steps + +Deployment can be a complex topic and there are a number of factors to consider when working with production systems. This guide is meant to be a simple example for personal projects, and isn't necessarily suitable (on its own) for a large scale production application. + +More advanced build tools such as [Travis](https://travis-ci.org/), [Jenkins](https://jenkins.io), and [Wercker](http://www.wercker.com/) can be used to automate a more complicated deployment workflow. This can include running unit tests before proceeding with the deploy and deploying to multiple servers (such as test and production boxes). See our guides on [Jenkins](/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/) and [Wercker](/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/) to get started. diff --git a/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md b/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md index 9881d7ee833..fa8bd17bc4e 100644 --- a/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md +++ b/docs/game-servers/team-fortress2-on-debian-and-ubuntu.md @@ -103,7 +103,7 @@ The `motd_default.txt` file can contain HTML and is displayed as a website upon ### Server.cfg -The file `~/Steam/tf2/tf/cfg/server.cfg` is what contains all of the settings you need to customize the loadout of your game. A `server.cfg` file is not needed to run the game but we have a sample config file [here](/docs/assets/team_fortress_2_server_config) which you can edit for your own use. +The file `~/Steam/tf2/tf/cfg/server.cfg` is what contains all of the settings you need to customize the loadout of your game. A `server.cfg` file is not needed to run the game but we have a sample config file [here](/docs/assets/team_fortress_2_server_config.cfg) which you can edit for your own use. {{< note >}} For the configuration of this file, `0` means *off* and `1` means *on*. From e8b8738f384451402fb0c55641756535a59d0cd0 Mon Sep 17 00:00:00 2001 From: Jared Kobos Date: Thu, 1 Feb 2018 17:40:54 -0500 Subject: [PATCH 16/25] Remove incorrect guide --- .../deploy-a-react-app-on-linode.md | 139 ------------------ 1 file changed, 139 deletions(-) delete mode 100644 docs/development/deploy-a-react-app-on-linode.md diff --git a/docs/development/deploy-a-react-app-on-linode.md b/docs/development/deploy-a-react-app-on-linode.md deleted file mode 100644 index e02a940f0d7..00000000000 --- a/docs/development/deploy-a-react-app-on-linode.md +++ /dev/null @@ -1,139 +0,0 @@ ---- -author: - name: Phil Zona - email: phil.b.zona@gmail.com -description: 'Learn to deploy a locally developed React application to your Linode using Rsync.' -og_description: 'Use Rsync to deploy a React application from your local computer to a Linode.' -keywords: ['react','reactjs','deploy','rsync'] -license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' -published: 2018-01-31 -modified: 2018-01-31 -modified_by: - name: Linode -title: "Deploy a React App on Linode" -contributor: - name: Phil Zona - link: https://twitter.com/philzona -external_resources: -- '[React - A JavaScript library for building user interfaces](https://reactjs.org/)' -- '[Deploy a React App with Sass Using NGINX](http://zabana.me/notes/build-deploy-react-app-with-nginx.html)' ---- - -## What is React? - -[React](https://reactjs.org/) is a popular JavaScript library for building user interfaces. While React is often used as a frontend for more complex applications, it's also powerful enough to be used for full client-side applications on its own. - -Since a basic React app is essentially static (it consists of compiled HTML, CSS, and Javascript files), it is easy to deploy from a local computer to a Linode using [Rsync](https://rsync.samba.org/). This guide will show how to set up your Linode and local machine so that you can easily deploy your app whenever changes are made. - -## Before You Begin - -1. Familiarize yourself with our [Getting Started](/docs/getting-started) guide and complete the steps for setting your Linode's hostname and timezone. - -2. This guide will use `sudo` wherever possible. Complete the sections of our [Securing Your Server](/docs/security/securing-your-server) to create a standard user account, harden SSH access and remove unnecessary network services. - -3. You will need to have a web server, such as [NGINX](https://linode.com/docs/web-servers/nginx/how-to-configure-nginx/) or [Apache](https://linode.com/docs/web-servers/apache/apache-web-server-on-ubuntu-14-04/) installed and configured to host a website on your Linode. - -4. This guide assumes you already have a React app you'd like to deploy. If you don't have one, you can bootstrap a project quickly using [create-react-app](https://github.com/facebookincubator/create-react-app). - -5. Make sure [Git](https://linode.com/docs/development/version-control/how-to-configure-git/) is installed on your system: - - sudo apt install git - -5. Update your system: - - sudo apt update && sudo apt-get upgrade - -## Configure Linode for Deployment - -The steps in this section should be performed on your Linode. - -### Create Host Directory - -1. Navigate to your *web root*, or the location from which you'll be serving your React app, and create a directory where your app will live. Most of the time, this will be `/var/www`, but you can adjust the path and the directory name for your needs: - - sudo mkdir -p /var/www/mydomain.com - -2. Set permissions for the new directory to allow your regular user account to write to it: - - sudo chmod 755 -R /var/www/mydomain.com - -### Configure Web Server - -1. Ensure your web server is configured to serve from the "work tree" file path we configured in the previous step. - - If you're using Apache, this will be the `DocumentRoot` in your virtual host file: - - {{< file "/etc/nginx/sites-available/mydomain.com.conf" aconf>}} - - ServerAdmin webmaster@mydomain.com - ServerName mydomain.com - ServerAlias www.mydomain.com - DocumentRoot /var/www/mydomain.com/ ## Modify this line as well as others referencing the path to your app - ErrorLog /var/www/mydomain.com/logs/error.log - CustomLog /var/www/mydomain.com/logs/access.log combined - -{{< /file >}} - - If you're using NGINX, this will be found in the line starting with `root` in the server block for your site: - - {{< file-excerpt "/etc/nginx/conf.d/myapp.conf" nginx >}} -server { - listen 80; - listen [::]:80; - - root /var/www/mydomain.com; ## Modify this line - index index.html index.htm; - -} -{{< /file-excerpt >}} - -2. Restart your web server to apply the changes. Use whichever command applies to your web server: - - sudo systemctl restart apache2 - sudo systemctl restart nginx - -## Configure Local Computer - -1. Navigate to the directory where your local project lives. For example: - - cd ~/myapp - - If you don't have an existing project to use, you can create one at this stage using [create-react-app](https://github.com/facebookincubator/create-react-app). - -2. Using a text editor, create a deployment bash script called `deploy` in your app's root directory. Replace `exampleuser` with the username of your limited user account, and `mydomain.com` with your Linode's FQDN or public IP address. - - {{< file "~/myapp/deploy" bash >}} -#!/bin/sh - -echo "Switching to branch master" -git checkout master - -echo "Building app" -npm run build - -echo "Deploying files to server" -rsync -avP build/ exampleuser@mydomain.com:/var/www/mydomain.com/ -echo "Deployment complete" -{{< /file >}} - - This script will check out the master branch of your project on Git, build the app using `npm run build`, and then sync the build files to the remote Linode using Rsync. If your React app was not built with `create-react-app`, the build command may be different and the built files may be stored in a different directory (such as `dist`). Modify the script accordingly. - -3. Make the script executable: - - sudo chmod u+x deploy - -4. Run the script: - - ./deploy - - Enter your Unix password when prompted. - -5. In a browser, navigate to your Linode's domain name or public IP address. If the deploy was successful, you should see your React app displayed. - -6. Make a few changes to your app's `src` directory and then re-run the `deploy` script. Your changes should be visible in the browser after refreshing the page. - -## Next Steps - -Deployment can be a complex topic and there are a number of factors to consider when working with production systems. This guide is meant to be a simple example for personal projects, and isn't necessarily suitable (on its own) for a large scale production application. - -More advanced build tools such as [Travis](https://travis-ci.org/), [Jenkins](https://jenkins.io), and [Wercker](http://www.wercker.com/) can be used to automate a more complicated deployment workflow. This can include running unit tests before proceeding with the deploy and deploying to multiple servers (such as test and production boxes). See our guides on [Jenkins](/docs/development/ci/automate-builds-with-jenkins-on-ubuntu/) and [Wercker](/docs/development/ci/how-to-develop-and-deploy-your-applications-using-wercker/) to get started. From 34b92551ab61c2bb55f094bb404c50b163685076 Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Fri, 2 Feb 2018 09:01:45 -0500 Subject: [PATCH 17/25] Add coreutils install for GNU split on MacOS --- .../tools/split-files-with-split.md | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md index 45b2df128a4..11c9dcd18a5 100644 --- a/docs/tools-reference/tools/split-files-with-split.md +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -20,6 +20,10 @@ external_resources: `split` is a Unix command-line utility like `grep` or `tail`. As its name implies, it allows you to divide a larger file into several smaller files. +{{< note >}} +Certain options for `split` will not work by default on MacOS because the GNU version of split does not come pre-installed. Use Homebrew to install `brew install coreutils` then invoke in GNU split via `gsplit`. +{{< /note >}} + ## Example Files 1. Create `example.txt` in a text editor and add the following content: @@ -50,11 +54,12 @@ example line 10 2. Check your working directory: ls + {{< output >}} -example.txt moby-dick.txt xaa xab xac xad xae xaf xag +moby-dick.txt xaa xab xac xad xae xaf xag ... {{< /output >}} - The new files present in the directory (`xaa`, `xab`, etc.) each contain a portion of the original file. By default, `split` divides a file into subfiles of 1000 lines each. The original `moby-dick.txt` file had 16,000 lines, resulting in 16 subfiles. + The new files present in the directory (`xaa`, `xab`, etc.) each contain a portion of the original file. By default, `split` divides a file into subfiles of 1000 lines each. The original `moby-dick.txt` file had 16,000 lines, resulting in 16 subfiles. The original `moby-dick.txt` file is left unchanged. ## Options and Parameters @@ -66,13 +71,17 @@ The first argument to `split` is the name of the file, as demonstrated above. An Each of the outputted files will begin with `moby-dick`. +{{< output >}} +moby-dick.txt moby-dickaa moby-dickab moby-dickac ... +{{< /output >}} + #### Split by Number of Lines The `-l` option sets the length in lines of each subfile. This value is 1000 by default. The files output by the following command will each contain two lines of text: split -l 2 example.txt - {{< output >}} +{{< output >}} $ cat xaa example line 1 example line 2 @@ -98,10 +107,11 @@ Use the `-d` option to label the output files numerically rather than alphabetic split -l 2 -d example.txt - {{< output >}} +{{< output >}} x00 x01 x02 x03 x04 {{< /output >}} + #### Set Suffix Length Use the `-a` option to set the number of digits or letters used when labeling the output files. This option defaults to two (i.e. `x00`). From 3bd90b9546fbcfa446c9eca78be6c1f93d3a3eaf Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 2 Feb 2018 15:10:59 +0100 Subject: [PATCH 18/25] Replace 'Icinga2' with 'Icinga 2' (#1481) The official spelling of the project name is 'Icinga 2'. --- .../install-icinga2-monitoring-on-debian-9.md | 76 +++++++++---------- .../monitor-remote-hosts-with-icinga.md | 42 +++++----- 2 files changed, 59 insertions(+), 59 deletions(-) diff --git a/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9.md b/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9.md index 470f74aca40..4b3a5993796 100644 --- a/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9.md +++ b/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9.md @@ -2,15 +2,15 @@ author: name: Linode Community email: docs@linode.com -description: "This guide shows you how to install and configure Icinga2 and Icinga Web 2 on Debian to monitor your Linode services and performance." -og_description: "This guide will show you how to install and configure Icinga2 to monitor your system" +description: "This guide shows you how to install and configure Icinga 2 and Icinga Web 2 on Debian to monitor your Linode services and performance." +og_description: "This guide will show you how to install and configure Icinga 2 to monitor your system" keywords: ["debian", "icinga", "monitoring", "icinga2"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-12-12 modified: 2017-12-12 modified_by: name: Linode -title: 'Install Icinga2 Monitoring on Debian 9' +title: 'Install Icinga 2 Monitoring on Debian 9' expiryDate: 2019-12-12 contributor: name: Matt Vass @@ -19,15 +19,15 @@ external_resources: - '[Official Icinga Documentation](https://www.icinga.com/docs/icinga2/latest/doc/01-about/)' --- -![Install Icinga2 Monitoring on Debian 9](/docs/assets/icinga/Icinga2.jpg "Install Icinga2 Monitoring on Debian 9") +![Install Icinga 2 Monitoring on Debian 9](/docs/assets/icinga/Icinga2.jpg "Install Icinga 2 Monitoring on Debian 9") -## What is Icinga2? +## What is Icinga 2? -Icinga, previously a fork of the popular Nagios monitoring system, is an open source network monitoring application that can be used to monitor critical services and systems on your Linode. Icinga2 can monitor hosts on a network or it can verify network external protocols, such as the state of an HTTP server, mail server, file-sharing service, or others. +Icinga, previously a fork of the popular Nagios monitoring system, is an open source network monitoring application that can be used to monitor critical services and systems on your Linode. Icinga 2 can monitor hosts on a network or it can verify network external protocols, such as the state of an HTTP server, mail server, file-sharing service, or others. -Icinga2 can be configured to monitor internal systems' state and check the load, memory, disk free space, or other internal parameters via Icinga agents deployed on each node that needs to be monitored. Icinga can also be configured to send notifications and alerts via email or SMS to the system administrators defined in contacts. +Icinga 2 can be configured to monitor internal systems' state and check the load, memory, disk free space, or other internal parameters via Icinga agents deployed on each node that needs to be monitored. Icinga can also be configured to send notifications and alerts via email or SMS to the system administrators defined in contacts. -This guide shows how to install and configure the latest version of Icinga2 web monitoring tool on Debian 9 to monitor network infrastructure. +This guide shows how to install and configure the latest version of Icinga 2 web monitoring tool on Debian 9 to monitor network infrastructure. ## Before You Begin @@ -61,9 +61,9 @@ Restart the Apache daemon to apply the new changes: systemctl restart apache2 -## Configure Icinga2 Databases +## Configure Icinga 2 Databases -1. Install the backend database needed by Icinga2 monitoring web application and Icinga Web 2 frontend to store users, contacts and other collected data. Execute the following command to install MariaDB database and PHP module needed to access MySQL database in Debian 9: +1. Install the backend database needed by Icinga 2 monitoring web application and Icinga Web 2 frontend to store users, contacts and other collected data. Execute the following command to install MariaDB database and PHP module needed to access MySQL database in Debian 9: apt install php7.0-mysql mariadb-server mariadb-client @@ -79,31 +79,31 @@ Restart the Apache daemon to apply the new changes: sudo mysql_secure_installation -4. Log back in to the database console and create the database for Icinga2: +4. Log back in to the database console and create the database for Icinga 2: mysql –u root -p -5. Create a user with a strong password to manage Icinga2 application database, by issuing the following commands. You should replace `icingadb`, `icinga-user`, and `strongpassword` in this example with your own database name and credentials: +5. Create a user with a strong password to manage Icinga 2 application database, by issuing the following commands. You should replace `icingadb`, `icinga-user`, and `strongpassword` in this example with your own database name and credentials: create database icingadb; grant all privileges on icingadb.* to 'icinga_user'@'localhost' identified by 'strongpassword'; flush privileges -6. Create the second MySQL database used by Icinga2 web to store its interface users and groups. As in the previous step, replace the database name and credentials accordingly and choose a strong password for database user. You can use the same MySQL user account to manage both databases simultaneously (`icinga_user'@'localhost`): +6. Create the second MySQL database used by Icinga 2 web to store its interface users and groups. As in the previous step, replace the database name and credentials accordingly and choose a strong password for database user. You can use the same MySQL user account to manage both databases simultaneously (`icinga_user'@'localhost`): create database icinga_users; grant all privileges on icinga_users.* to 'icinga_user'@'localhost' identified by 'strongpassword'; exit -## Install Icinga2 +## Install Icinga 2 -Install Icinga2 and the Icinga2 MySQL module for accessing MariaDB database backend: +Install Icinga 2 and the Icinga 2 MySQL module for accessing MariaDB database backend: apt install icinga2 icinga2-ido-mysql During the installation, when asked: -* If Icinga2 should use the MySQL module, +* If Icinga 2 should use the MySQL module, * Choose **Yes** from the prompt. @@ -111,27 +111,27 @@ During the installation, when asked: * Choose **No** from the prompt. -After Icinga2 has been installed, start the Icinga2 service and check the daemon status: +After Icinga 2 has been installed, start the Icinga 2 service and check the daemon status: systemctl start icinga2.service systemctl status icinga2.service -## Install the Icinga2 Web Interface +## Install the Icinga 2 Web Interface -In order to manage Icinga2 via the web interface, install the Icinga2 web interface and Command Line Interface (CLI) packages: +In order to manage Icinga 2 via the web interface, install the Icinga 2 web interface and Command Line Interface (CLI) packages: apt install icingaweb2 icingacli -Restart the Icinga2 daemon and verify the Icinga2 daemon status: +Restart the Icinga 2 daemon and verify the Icinga 2 daemon status: systemctl restart icinga2.service systemctl status icinga2.service -Install the MySQL schema required Icinga2 database: +Install the MySQL schema required Icinga 2 database: mysql -u root icingadb -p < /usr/share/icinga2-ido-mysql/schema/mysql.sql -Edit the Icinga2 MySQL IDO configuration file and add Icinga2 engine database credentials, as shown in the following example. Use the credentials of the first database created in the [earlier database creation step](#configure-icinga2-databases): +Edit the Icinga 2 MySQL IDO configuration file and add Icinga 2 engine database credentials, as shown in the following example. Use the credentials of the first database created in the [earlier database creation step](#configure-icinga2-databases): {{< file-excerpt "/etc/icinga2/features-enabled/ido-mysql.conf" conf >}} library "db_ido_mysql" @@ -144,19 +144,19 @@ object IdoMysqlConnection "ido-mysql" { } {{< /file-excerpt >}} -Save the file and restart the Icinga2 daemon: +Save the file and restart the Icinga 2 daemon: systemctl restart icinga2.service -Create an Icinga Web 2 log directory and add the proper file system permissions to grant the Icinga2 group write permissions: +Create an Icinga Web 2 log directory and add the proper file system permissions to grant the Icinga 2 group write permissions: mkdir -p /var/log/icingaweb2/ chgrp -R icingaweb2 /var/log/icingaweb2/ chmod -R 775 /var/log/icingaweb2/ -## Configure Icinga2 via Web Interface +## Configure Icinga 2 via Web Interface -1. Generate an installation token. Save it somewhere easily accessible. You will need to use it to access the Icinga2 setup: +1. Generate an installation token. Save it somewhere easily accessible. You will need to use it to access the Icinga 2 setup: icingacli setup token create @@ -178,21 +178,21 @@ Create an Icinga Web 2 log directory and add the proper file system permissions ![Select Doc and Monitoring Modules](/docs/assets/icinga/icinga-docs-and-modules.png "Select Doc and Monitoring Modules") -5. Icinga2 will check your system requirements and PHP modules to see if all requirements are met before continuing with the installation and configuration process. Scroll down to the end of the page and press **Next** to continue. +5. Icinga 2 will check your system requirements and PHP modules to see if all requirements are met before continuing with the installation and configuration process. Scroll down to the end of the page and press **Next** to continue. 6. Choose **Authentication Type = Database**: ![Choose the "Database" Authentication Type](/docs/assets/icinga/icinga-database-authentication-type.png "Choose the "Database" Authentication Type") -7. Use the information from the second database created earlier to add the credentials needed to access the Icinga2 database for storing web interface users and groups. Use `icingaweb_db` as a name for this resource and leave the **Host**, **Port** and **Character** set variables as default. Do not enable **Persistent** and **SSL** option. Press **Validate Configuration** button to validate the database. After the database has been validated successfully, press **Next** to continue to the next phase of Icinga2’s configuration process: +7. Use the information from the second database created earlier to add the credentials needed to access the Icinga 2 database for storing web interface users and groups. Use `icingaweb_db` as a name for this resource and leave the **Host**, **Port** and **Character** set variables as default. Do not enable **Persistent** and **SSL** option. Press **Validate Configuration** button to validate the database. After the database has been validated successfully, press **Next** to continue to the next phase of Icinga 2’s configuration process: ![Database Resource Information](/docs/assets/icinga/icinga-database-resource-info.png "Database Resource Information") 8. Define a name for the database authentication backend (you can use the default value) and press **Next**. -9. Add a username with a strong password in order to log in to the Icinga2 web interface and further manage the Icinga2 engine and press **Next**. +9. Add a username with a strong password in order to log in to the Icinga 2 web interface and further manage the Icinga 2 engine and press **Next**. -10. Adjust the Icinga2 application and logging configurations using these settings, then press **Next**: +10. Adjust the Icinga 2 application and logging configurations using these settings, then press **Next**: * Check **Show Stacktraces** @@ -208,13 +208,13 @@ Create an Icinga Web 2 log directory and add the proper file system permissions ![Icinga Configuration Summary](/docs/assets/icinga/icinga-configuration-summary.png "Icinga Configuration Summary") -12. Press **Next** to continue setting up Icinga2 engine monitoring module. +12. Press **Next** to continue setting up Icinga 2 engine monitoring module. -13. Add a name for the Icinga2 Backend, select **IDO** as Backend Type and press **Next**. +13. Add a name for the Icinga 2 Backend, select **IDO** as Backend Type and press **Next**. -14. Add the Icinga2 engine database credentials in order to setup the IDO resource environment. After adding the Icinga2 database credentials, press **Validate Configuration** to validate the Icinga2 Monitoring IDO Resource. After the **Successfully validated** message appears, press **Next**. +14. Add the Icinga 2 engine database credentials in order to setup the IDO resource environment. After adding the Icinga 2 database credentials, press **Validate Configuration** to validate the Icinga 2 Monitoring IDO Resource. After the **Successfully validated** message appears, press **Next**. -15. Configure the Icinga2 Command Transport module with the following settings and press **Next**: +15. Configure the Icinga 2 Command Transport module with the following settings and press **Next**: * **Transport Name** = icinga2 @@ -224,7 +224,7 @@ Create an Icinga Web 2 log directory and add the proper file system permissions 16. Use the default values or configure the monitoring security environment variables to sensitive information and press **Next**. -17. The next screen shows a detailed report of the current configuration. A message will also show you that Icinga2 Monitoring module has been successfully configured. Review the configuration and press **Finish** to complete the setup process. +17. The next screen shows a detailed report of the current configuration. A message will also show you that Icinga 2 Monitoring module has been successfully configured. Review the configuration and press **Finish** to complete the setup process. After the installation and setup process completes, a message informs you that Icinga Web 2 has been successfully set up. @@ -232,13 +232,13 @@ Create an Icinga Web 2 log directory and add the proper file system permissions ![Icinga Successfully Set up - "Login to Icinga Web 2" button](/docs/assets/icinga/icinga-set-up-success-login.png "Icinga Successfully Set up - 'Login to Icinga Web 2' button") - You will be directed to the Icinga Web 2 Dashboard, where you should see the default services and Linode resources that are currently monitored by the Icinga2 engine: + You will be directed to the Icinga Web 2 Dashboard, where you should see the default services and Linode resources that are currently monitored by the Icinga 2 engine: ![Icinga Dashboard and Current Incidents](/docs/assets/icinga/icinga-dashboard-current-incidents.png "Icinga Dashboard and Current Incidents") ## Secure the Icinga Web 2 Interface Via TLS -To access Icinga2 monitoring application via HTTPS protocol, enable the Apache SSL module, SSL site configuration file, and Apache rewrite module: +To access Icinga 2 monitoring application via HTTPS protocol, enable the Apache SSL module, SSL site configuration file, and Apache rewrite module: a2enmod ssl rewrite a2ensite default-ssl.conf @@ -287,4 +287,4 @@ Add a new rule to allow HTTPS traffic to pass through the firewall. ## That’s All! -You have successfully installed, set up, and secured the Icinga2 engine monitoring application and Icinga Web 2 Interface on Debian 9. +You have successfully installed, set up, and secured the Icinga 2 engine monitoring application and Icinga Web 2 Interface on Debian 9. diff --git a/docs/uptime/monitoring/monitor-remote-hosts-with-icinga.md b/docs/uptime/monitoring/monitor-remote-hosts-with-icinga.md index 7c3a2b7984f..cacf0b00235 100644 --- a/docs/uptime/monitoring/monitor-remote-hosts-with-icinga.md +++ b/docs/uptime/monitoring/monitor-remote-hosts-with-icinga.md @@ -2,8 +2,8 @@ author: name: Matt Vass email: linuxboxgo@gmail.com -description: "This guide shows how to configure Icinga2 to monitor remote systems on your Linode" -og_description: "This guide will show you how to configure Icinga2 to monitor your remote systems. Icinga2 can monitor local and remote systems, and this guide shows you how to do both." +description: "This guide shows how to configure Icinga 2 to monitor remote systems on your Linode" +og_description: "This guide will show you how to configure Icinga 2 to monitor your remote systems. Icinga 2 can monitor local and remote systems, and this guide shows you how to do both." keywords: ["debian", "icinga", "monitoring", "icinga2"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-12-28 @@ -19,10 +19,10 @@ external_resources: - '[Official Icinga Documentation](https://www.icinga.com/docs/icinga2/latest/doc/01-about/)' --- -## What is Icinga2? +## What is Icinga 2? -This guide is a continuation of our guide on [Icinga2](/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9). -Icinga, is an open source network monitoring application that can be used to monitor critical services and systems on your Linode. Icinga2 can monitor hosts on a network or it can verify network external protocols, such as the state of an HTTP server, mail server, file-sharing service, or others. +This guide is a continuation of our guide on [Icinga 2](/docs/uptime/monitoring/install-icinga2-monitoring-on-debian-9). +Icinga, is an open source network monitoring application that can be used to monitor critical services and systems on your Linode. Icinga 2 can monitor hosts on a network or it can verify network external protocols, such as the state of an HTTP server, mail server, file-sharing service, or others. ## Before You Begin @@ -30,10 +30,10 @@ The steps and examples in this guide assume the defaults and configurations from ## Monitor Remote Hosts via Simple Host Monitoring -In order to monitor a host and its external services via regular command checks, Icinga2 uses a mechanism that issues a ping command against the server's IP address at regular intervals and using its built-in commands, regularly verifies the state of remote network services protocols, such as HTTP, SSH, SMTP, IMAP, POP or others.\ -Icinga2 stores Host definitions in objects. These objects and their attributes are used for applying rules for `Service`, `Notification`, `Dependency`, and `Scheduled Downtime` can be found in `hosts.conf` file, in `/etc/icinga2/conf.d/`. +In order to monitor a host and its external services via regular command checks, Icinga 2 uses a mechanism that issues a ping command against the server's IP address at regular intervals and using its built-in commands, regularly verifies the state of remote network services protocols, such as HTTP, SSH, SMTP, IMAP, POP or others.\ +Icinga 2 stores Host definitions in objects. These objects and their attributes are used for applying rules for `Service`, `Notification`, `Dependency`, and `Scheduled Downtime` can be found in `hosts.conf` file, in `/etc/icinga2/conf.d/`. -1. To add a new host definition to be periodically monitored by Icinga2 engine via ICMP checks, open `hosts.conf` and add the following lines to the bottom of the file: +1. To add a new host definition to be periodically monitored by Icinga 2 engine via ICMP checks, open `hosts.conf` and add the following lines to the bottom of the file: {{< file-excerpt "/etc/icinga2/conf.d/hosts.conf" conf >}} object Host "Linode" { @@ -60,11 +60,11 @@ object Service "http" { 5. To display the status of the host’s HTTP service, navigate to **Overview** then **Servicegroups** and click **HTTP Checks**. -## Monitor Remote Hosts via Icinga2 Agent Monitoring +## Monitor Remote Hosts via Icinga 2 Agent Monitoring -Icina2 can monitor a node's internal health parameters, such as CPU load, disk space, memory, and number of running process via a secured channel set up between a master node and client node on port `5665/TCP`. In this instance we’ll configure our Icinga2 to act as the master node and monitor the remote CentOS 7 client node. In this specific type of configuration, also called a *Top Down Command Endpoint* model, the check commands will be scheduled on the master node and then will be sent to the client via a TLS connection. +Icina2 can monitor a node's internal health parameters, such as CPU load, disk space, memory, and number of running process via a secured channel set up between a master node and client node on port `5665/TCP`. In this instance we’ll configure our Icinga 2 to act as the master node and monitor the remote CentOS 7 client node. In this specific type of configuration, also called a *Top Down Command Endpoint* model, the check commands will be scheduled on the master node and then will be sent to the client via a TLS connection. -1. Set up the Icinga2 master node on our Debian 9 server. Configure this instance of Icinga2 as a master node: +1. Set up the Icinga 2 master node on our Debian 9 server. Configure this instance of Icinga 2 as a master node: icinga2 node wizard @@ -79,7 +79,7 @@ Icina2 can monitor a node's internal health parameters, such as CPU load, disk s Bind Host []: Bind Port []: -4. Restart the Icinga2 service to apply the master node configuration and check the daemon status: +4. Restart the Icinga 2 service to apply the master node configuration and check the daemon status: systemctl restart icinga2.service systemctl status icinga2.service @@ -96,16 +96,16 @@ Icina2 can monitor a node's internal health parameters, such as CPU load, disk s ## Configure CentOS 7 Client Node -1. Log in to your CentOS 7 system with an account with `root` privileges or directly as root and issue the following command to enable EPEL and Icinga2 repositories in CentOS. Also, make sure your CentOS 7 system is configured with a static IP address. +1. Log in to your CentOS 7 system with an account with `root` privileges or directly as root and issue the following command to enable EPEL and Icinga 2 repositories in CentOS. Also, make sure your CentOS 7 system is configured with a static IP address. yum install epel-release yum install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm -2. Install the Igina2 engine and Nagios plugins required by Icinga2 to execute the check commands in CentOS by issuing the following command: +2. Install the Igina2 engine and Nagios plugins required by Icinga 2 to execute the check commands in CentOS by issuing the following command: yum install icinga2 nagios-plugins-all -3. After the Icinga2 daemon has been installed in your CentOS system, start the node wizard and configure this system as a satellite node instead of master node: +3. After the Icinga 2 daemon has been installed in your CentOS system, start the node wizard and configure this system as a satellite node instead of master node: icinga2 node wizard @@ -139,7 +139,7 @@ Icina2 can monitor a node's internal health parameters, such as CPU load, disk s Accept config from master? [y/N]: y Accept commands from master? [y/N]: y -8. After the client node wizard completes, restart the Icinga2 service, check Icinga2 service status, list Icinga’s listening port, and add the Icinga2 listening port number to the CentOS firewall: +8. After the client node wizard completes, restart the Icinga 2 service, check Icinga 2 service status, list Icinga’s listening port, and add the Icinga 2 listening port number to the CentOS firewall: systemctl restart icinga2 systemctl status icinga2 @@ -147,9 +147,9 @@ Icina2 can monitor a node's internal health parameters, such as CPU load, disk s firewall-cmd --add-port=5665/tcp --permanent firewall-cmd --reload -## Set up Icinga2 Master Agent-based Monitoring +## Set up Icinga 2 Master Agent-based Monitoring -1. Log in to the Icinga2 master node and create a CentOS client zone directory, a client configuration, and a services file: +1. Log in to the Icinga 2 master node and create a CentOS client zone directory, a client configuration, and a services file: mkdir /etc/icinga2/zones.d/centos/ touch /etc/icinga2/zones.d/centos/centos.conf @@ -202,7 +202,7 @@ apply Service "procs" { * Verify number of users logged in to the system and the number of processes running. - * The `command_endpoint` lines force the service checks to be transmitted to the remote CentOS system and executed by the Icinga2 engine command endpoint. + * The `command_endpoint` lines force the service checks to be transmitted to the remote CentOS system and executed by the Icinga 2 engine command endpoint. * You can add as many commands as you’d like here to be executed internally on the remote host. However, if Icinga sent instructions are not present on the remote node as Nagios plugin scripts, the commands won’t execute and an error will be displayed in the icinga2 web interface. @@ -212,6 +212,6 @@ apply Service "procs" { ## That’s all! -You have successfully configured Icinga2 as a master node and added a CentOS 7 client node to be remotely checked via Icinga2 agent-based monitoring system and another remote host to be actively monitored via external services command checks. +You have successfully configured Icinga 2 as a master node and added a CentOS 7 client node to be remotely checked via Icinga 2 agent-based monitoring system and another remote host to be actively monitored via external services command checks. -For other Icinga2 configurations, installation, and monitoring mechanisms, visit the [official Icinga2 documentation](https://www.icinga.com/docs/icinga2/latest/doc/01-about/). +For other Icinga 2 configurations, installation, and monitoring mechanisms, visit the [official Icinga 2 documentation](https://www.icinga.com/docs/icinga2/latest/doc/01-about/). From 8942661d9b6710a2e12284dcd3c645074642053d Mon Sep 17 00:00:00 2001 From: Angel Date: Fri, 2 Feb 2018 09:18:06 -0500 Subject: [PATCH 19/25] FarmOS title rename (#1480) * Hot Fix * Update install-farmos.md * Title adjustments --- docs/applications/project-management/install-farmos.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/applications/project-management/install-farmos.md b/docs/applications/project-management/install-farmos.md index 34d6b806ae1..a702ffc6662 100644 --- a/docs/applications/project-management/install-farmos.md +++ b/docs/applications/project-management/install-farmos.md @@ -9,7 +9,7 @@ published: 2017-09-09 modified: 2017-09-20 modified_by: name: Linode -title: 'Install and Configure FarmOS, an Agricultural Management, Planning and Record-Keeping Web App' +title: 'How to Install FarmOS - a Farm Recordkeeping Application' --- ![Farm_OS Banner](/docs/assets/FarmOS.png) From 98f1ed744990da2df255ccab1e085c2780c5e7c9 Mon Sep 17 00:00:00 2001 From: Sam Foo Date: Fri, 2 Feb 2018 09:45:17 -0500 Subject: [PATCH 20/25] Data center is two words (#1479) --- ...aming-data-processing-with-apache-storm.md | 36 +++++++++---------- .../cloud-storage/tahoe-lafs-on-debian-9.md | 2 +- ...oud-and-cloud-maps-to-provision-systems.md | 2 +- ...onfigure-salt-master-and-minion-servers.md | 4 +-- ...utomate-web-server-creation-on-a-linode.md | 2 +- ...ocker-swarm-manager-and-nodes-on-linode.md | 2 +- .../voip/install-asterisk-on-centos-7.md | 2 +- ...andra-node-cluster-on-ubuntu-and-centos.md | 6 ++-- .../build-database-clusters-with-mongodb.md | 2 +- .../mongodb/create-a-mongodb-replica-set.md | 4 +-- ...e-10g-express-edition-on-debian-5-lenny.md | 2 +- ...10g-express-edition-on-debian-6-squeeze.md | 2 +- ...press-edition-on-ubuntu-10-04-lts-lucid.md | 2 +- ...xpress-edition-on-ubuntu-10-10-maverick.md | 2 +- ...g-express-edition-on-ubuntu-9-10-karmic.md | 2 +- ...resql-cluster-using-patroni-and-haproxy.md | 4 +-- ...install-and-configure-redis-on-centos-7.md | 2 +- docs/getting-started.md | 4 +-- .../diagnosing-network-issues-with-mtr.md | 2 +- ...-local-dns-resolution-on-debian-5-lenny.md | 2 +- ...ocal-dns-resolution-on-debian-6-squeeze.md | 2 +- ...ns-resolution-on-ubuntu-10-04-lts-lucid.md | 2 +- ...dns-resolution-on-ubuntu-10-10-maverick.md | 2 +- ...al-dns-resolution-on-ubuntu-11-04-natty.md | 2 +- ...on-on-ubuntu-12-04-lts-precise-pangolin.md | 2 +- ...communications-with-openvpn-on-centos-6.md | 2 +- ...ications-with-openvpn-on-debian-5-lenny.md | 2 +- ...ations-with-openvpn-on-debian-6-squeeze.md | 2 +- ...ions-with-openvpn-on-ubuntu-10-04-lucid.md | 2 +- ...s-with-openvpn-on-ubuntu-10-10-maverick.md | 2 +- ...ions-with-openvpn-on-ubuntu-9-10-karmic.md | 2 +- .../disk-images-and-configuration-profiles.md | 2 +- docs/platform/linode-backup-service.md | 2 +- docs/platform/linode-beginners-guide.md | 10 +++--- docs/platform/linode-cli.md | 2 +- docs/platform/meltdown_statement.md | 2 +- docs/platform/network-helper.md | 2 +- .../getting-started-with-nodebalancers.md | 2 +- docs/platform/package-mirrors.md | 4 +-- .../install-freebsd-on-linode.md | 2 +- .../cms/high-availability-wordpress.md | 2 +- .../host-a-website-with-high-availability.md | 2 +- .../getting-started-with-varnish-cache.md | 2 +- 43 files changed, 71 insertions(+), 71 deletions(-) diff --git a/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md b/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md index 7413f24efd1..9281de1c6b2 100644 --- a/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md +++ b/docs/applications/big-data/big-data-in-the-linode-cloud-streaming-data-processing-with-apache-storm.md @@ -138,9 +138,9 @@ You only need to run `source` on this file once in a single terminal session, un {{< /note >}} - `DATACENTER`: - This specifies the Linode datacenter where the Cluster Manager Linode is created. Set it to the ID of the datacenter that is nearest to your location, to reduce network latency. It's also recommended to create the cluster manager node in the same datacenter where the images and cluster nodes will be created, so that it can communicate with them using low latency private IP addresses and reduce data transfer usage. + This specifies the Linode data center where the Cluster Manager Linode is created. Set it to the ID of the data center that is nearest to your location, to reduce network latency. It's also recommended to create the cluster manager node in the same data center where the images and cluster nodes will be created, so that it can communicate with them using low latency private IP addresses and reduce data transfer usage. - To view the list of datacenters and their IDs: + To view the list of data centers and their IDs: source ~/storm-linode/api_env_linode.conf ~/storm-linode/linode_api.py datacenters table @@ -315,9 +315,9 @@ The values represented in this guide are current as of publication, but are subj - `DATACENTER_FOR_IMAGE` - The Linode datacenter where this image will be created. This can be any Linode datacenter, but cluster creation is faster if the image is created in the same datacenter where the cluster will be created. It's also recommended to create the image in the same datacenter as the Cluster Manager Linode. Select a datacenter that is geographically close to your premises, to reduce network latency. If left unchanged, the Linode will be created in the Newark data center. + The Linode data center where this image will be created. This can be any Linode data center, but cluster creation is faster if the image is created in the same data center where the cluster will be created. It's also recommended to create the image in the same data center as the Cluster Manager Linode. Select a data center that is geographically close to your premises, to reduce network latency. If left unchanged, the Linode will be created in the Newark data center. - This value can either be the datacenter's ID or location or abbreviation. To see a list of all datacenters: + This value can either be the data center's ID or location or abbreviation. To see a list of all data centers: ./zookeeper-cluster-linode.sh datacenters api_env_linode.conf @@ -456,11 +456,11 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `DATACENTER_FOR_CLUSTER` - The Linode datacenter where the nodes of this cluster will be created. All nodes of a cluster have to be in the same datacenter; they cannot span multiple datacenters since they will use private network traffic to communicate. + The Linode data center where the nodes of this cluster will be created. All nodes of a cluster have to be in the same data center; they cannot span multiple data centers since they will use private network traffic to communicate. - This can be any Linode datacenter, but cluster creation may be faster if it is created in the same datacenter where the image and Cluster Manager Linode are created. It is recommended to select a datacenter that is geographically close to your premises to reduce network latency. + This can be any Linode data center, but cluster creation may be faster if it is created in the same data center where the image and Cluster Manager Linode are created. It is recommended to select a data center that is geographically close to your premises to reduce network latency. - This value can either be the datacenter's ID or location or abbreviation. To see a list of all datacenters: + This value can either be the data center's ID or location or abbreviation. To see a list of all data centers: ./zookeeper-cluster-linode.sh datacenters api_env_linode.conf @@ -520,9 +520,9 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `PUBLIC_HOST_NAME_PREFIX` - Every Linode in the cluster has a *public IP address*, which can be reached from anywhere on the Internet, and a *private IP address*, which can be reached only from other nodes of the same user inside the same datacenter. + Every Linode in the cluster has a *public IP address*, which can be reached from anywhere on the Internet, and a *private IP address*, which can be reached only from other nodes of the same user inside the same data center. - Accordingly, every node is given a *public hostname* that resolves to its public IP address. Each node's public hostname will use this value followed by a number (for example, `public-host1`, `public-host2`, etc.) If the cluster manager node is in a different Linode datacenter from the cluster nodes, it uses the public hostnames and public IP addresses to communicate with cluster nodes. + Accordingly, every node is given a *public hostname* that resolves to its public IP address. Each node's public hostname will use this value followed by a number (for example, `public-host1`, `public-host2`, etc.) If the cluster manager node is in a different Linode data center from the cluster nodes, it uses the public hostnames and public IP addresses to communicate with cluster nodes.
    @@ -534,7 +534,7 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `CLUSTER_MANAGER_USES_PUBLIC_IP` - Set this value to `false` if the cluster manager node is located in the *same* Linode datacenter as the cluster nodes. This is the recommended value. Change to `true` **only** if the cluster manager node is located in a *different* Linode datacenter from the cluster nodes. + Set this value to `false` if the cluster manager node is located in the *same* Linode data center as the cluster nodes. This is the recommended value. Change to `true` **only** if the cluster manager node is located in a *different* Linode data center from the cluster nodes. {{< caution >}} It's important to set this correctly to avoid critical cluster creation failures. @@ -642,9 +642,9 @@ The values represented in this guide are current as of publication, but are subj - `DATACENTER_FOR_IMAGE` - The Linode datacenter where this image will be created. This can be any Linode datacenter, but cluster creation is faster if the image is created in the same datacenter where the cluster will be created. It's also recommended to create the image in the same datacenter as the Cluster Manager Linode. Select a datacenter that is geographically close to you to reduce network latency. + The Linode data center where this image will be created. This can be any Linode data center, but cluster creation is faster if the image is created in the same data center where the cluster will be created. It's also recommended to create the image in the same data center as the Cluster Manager Linode. Select a data center that is geographically close to you to reduce network latency. - This value can either be the datacenter's ID or location or abbreviation. To see a list of all datacenters: + This value can either be the data center's ID or location or abbreviation. To see a list of all data centers: ./zookeeper-cluster-linode.sh datacenters api_env_linode.conf @@ -772,11 +772,11 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `DATACENTER_FOR_CLUSTER` - The Linode datacenter where the nodes of this cluster will be created. All nodes of a cluster have to be in the same datacenter; they cannot span multiple datacenters since they will use private network traffic to communicate. + The Linode data center where the nodes of this cluster will be created. All nodes of a cluster have to be in the same data center; they cannot span multiple data centers since they will use private network traffic to communicate. - This can be any Linode datacenter, but cluster creation may be faster if it is created in the same datacenter where the image and Cluster Manager Linode are created. It is recommended to select a datacenter that is geographically close to your premises to reduce network latency. + This can be any Linode data center, but cluster creation may be faster if it is created in the same data center where the image and Cluster Manager Linode are created. It is recommended to select a data center that is geographically close to your premises to reduce network latency. - This value can either be the datacenter's ID or location or abbreviation. To see a list of all datacenters: + This value can either be the data center's ID or location or abbreviation. To see a list of all data centers: ./zookeeper-cluster-linode.sh datacenters api_env_linode.conf @@ -850,9 +850,9 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `NIMBUS_NODE_PUBLIC_HOSTNAME`, `SUPERVISOR_NODES_PUBLIC_HOSTNAME_PREFIX` and `CLIENT_NODES_PUBLIC_HOSTNAME_PREFIX` - Every Linode in the cluster has a *public IP address*, which can be reached from anywhere on the Internet, and a *private IP address*, which can be reached only from other nodes of the same user inside the same datacenter. + Every Linode in the cluster has a *public IP address*, which can be reached from anywhere on the Internet, and a *private IP address*, which can be reached only from other nodes of the same user inside the same data center. - Accordingly, every node is given a *public hostname* that resolves to its public IP address. Each node's public hostname will use this value followed by a number (for example, `public-host1`, `public-host2`, etc.) If the cluster manager node is in a different Linode datacenter from the cluster nodes, it uses the public hostnames and public IP addresses to communicate with cluster nodes. + Accordingly, every node is given a *public hostname* that resolves to its public IP address. Each node's public hostname will use this value followed by a number (for example, `public-host1`, `public-host2`, etc.) If the cluster manager node is in a different Linode data center from the cluster nodes, it uses the public hostnames and public IP addresses to communicate with cluster nodes.
    @@ -864,7 +864,7 @@ When creating a cluster, you should have `clustermgr` authorization to the Clust - `CLUSTER_MANAGER_USES_PUBLIC_IP` - Set this value to `false` if the cluster manager node is located in the *same* Linode datacenter as the cluster nodes. This is the recommended value and is also the default. Change to `true` **only** if the cluster manager node is located in a *different* Linode datacenter from the cluster nodes. + Set this value to `false` if the cluster manager node is located in the *same* Linode data center as the cluster nodes. This is the recommended value and is also the default. Change to `true` **only** if the cluster manager node is located in a *different* Linode data center from the cluster nodes. {{< caution >}} It's important to set this correctly to avoid critical cluster creation failures. diff --git a/docs/applications/cloud-storage/tahoe-lafs-on-debian-9.md b/docs/applications/cloud-storage/tahoe-lafs-on-debian-9.md index f3ac0b29f67..0b75df128b6 100644 --- a/docs/applications/cloud-storage/tahoe-lafs-on-debian-9.md +++ b/docs/applications/cloud-storage/tahoe-lafs-on-debian-9.md @@ -70,7 +70,7 @@ Introducers have a variety of advantages and disadvantages: * Tell the joining machines about the currently active peers to which it can connect. * Potential for a single point of failure. But, * Without the introducers you would have to edit a configuration file on every node, and add a new IP address every time you insert another node into the grid. -* Allow you to configure multiple introducers to make your setup more reliable in the event of crashes or other unforeseen events, ideally, in different datacenters. +* Allow you to configure multiple introducers to make your setup more reliable in the event of crashes or other unforeseen events, ideally, in different data centers. After you get acquainted with the initial introducer setup, you can [read about additional introducers](http://tahoe-lafs.readthedocs.io/en/latest/configuration.html#additional-introducer-definitions). diff --git a/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems.md b/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems.md index 95c6f814ce3..cbc00df07ee 100644 --- a/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems.md +++ b/docs/applications/configuration-management/configure-and-use-salt-cloud-and-cloud-maps-to-provision-systems.md @@ -94,7 +94,7 @@ All configuration files store data in YAML format. Be careful with indentation - ### List Available Locations, Images and Sizes -Before creating new instances, specify instance size: amount of system memory, CPU, and storage; location: physical location of datacenter; and image: operating system. +Before creating new instances, specify instance size: amount of system memory, CPU, and storage; location: physical location of data center; and image: operating system. You can obtain this information with the following commands: diff --git a/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers.md b/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers.md index 52b6cf491e1..1569c79bf7e 100644 --- a/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers.md +++ b/docs/applications/configuration-management/install-and-configure-salt-master-and-minion-servers.md @@ -23,7 +23,7 @@ The steps required in this guide require root privileges. Be sure to run the ste 1. You will need at least three Linodes: One Salt master, and at least two Salt minions. -2. Ensure that each Linode's [hostname](https://www.linode.com/docs/getting-started#setting-the-hostname) has been set. As the Linode's hostname will be used to identify it within Salt, we recommend using descriptive hostnames. You should also designate one Linode as your Salt master and name it appropriately. If your Linodes are located within the same datacenter, we recommend that you configure [private IP addresses](https://www.linode.com/docs/networking/remote-access#adding-private-ip-addresses) for each system. +2. Ensure that each Linode's [hostname](https://www.linode.com/docs/getting-started#setting-the-hostname) has been set. As the Linode's hostname will be used to identify it within Salt, we recommend using descriptive hostnames. You should also designate one Linode as your Salt master and name it appropriately. If your Linodes are located within the same data center, we recommend that you configure [private IP addresses](https://www.linode.com/docs/networking/remote-access#adding-private-ip-addresses) for each system. ## Add the Salt Repository @@ -57,7 +57,7 @@ The following steps will be run only on the Linode designated as your Salt maste apt-get install salt-master -2. Open `/etc/salt/master`. Uncomment the `#interface:` line and replace `` below with the address of your Salt master Linode. If your Linodes are located in the same datacenter, you can utilize your private network address for this purpose. +2. Open `/etc/salt/master`. Uncomment the `#interface:` line and replace `` below with the address of your Salt master Linode. If your Linodes are located in the same data center, you can utilize your private network address for this purpose. {{< file "/etc/salt/master" >}} # The address of the interface to bind to: diff --git a/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode.md b/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode.md index 4513cccca90..b206b6ed9d4 100644 --- a/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode.md +++ b/docs/applications/configuration-management/use-laravel-forge-to-automate-web-server-creation-on-a-linode.md @@ -69,7 +69,7 @@ If you want to be able to quickly deploy from Github, Gitlab or Bitbucket, you w **Server Size:** The size of the server. - **Region:** The datacenter where you want your server hosted. Choose a location close to where you expect the majority of users to be. + **Region:** The data center where you want your server hosted. Choose a location close to where you expect the majority of users to be. **PHP Version:** The installed PHP version. diff --git a/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode.md b/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode.md index df34d6b0e1b..f1ba15f9d94 100644 --- a/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode.md +++ b/docs/applications/containers/how-to-create-a-docker-swarm-manager-and-nodes-on-linode.md @@ -24,7 +24,7 @@ external_resources: ## Before You Begin -1. Completing this guide will require at least two Linodes located in the same datacenter. The instructions in this guide were written for Ubuntu 16.04, but other distributions can be used; the Linodes do not need to use the same distribution. +1. Completing this guide will require at least two Linodes located in the same data center. The instructions in this guide were written for Ubuntu 16.04, but other distributions can be used; the Linodes do not need to use the same distribution. 2. For each Linode, complete the steps in our [Getting Started](/docs/getting-started) guide for setting your Linode's hostname and timezone. Follow the steps in our [Securing Your Server](/docs/security/securing-your-server) guide to create a standard user account. diff --git a/docs/applications/voip/install-asterisk-on-centos-7.md b/docs/applications/voip/install-asterisk-on-centos-7.md index 42e0ded2a7b..b7945986c7c 100644 --- a/docs/applications/voip/install-asterisk-on-centos-7.md +++ b/docs/applications/voip/install-asterisk-on-centos-7.md @@ -29,7 +29,7 @@ This guide is written for a non-root user. Commands that require elevated privil ## Before You Begin -1. Create a CentOS 7 Linode in your closest datacenter (barring Atlanta, which does not currently support SIP servers). A 2GB Linode is enough to handle 10-20 concurrent calls using a non-compressed codec, depending on the processing required on each channel. +1. Create a CentOS 7 Linode in your closest data center (barring Atlanta, which does not currently support SIP servers). A 2GB Linode is enough to handle 10-20 concurrent calls using a non-compressed codec, depending on the processing required on each channel. 2. Ensure you have followed the [Getting Started](/docs/getting-started) and [Securing Your Server](/docs/security/securing-your-server) guides to prepare your server. **Do not** following the section to set up a firewall. diff --git a/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos.md b/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos.md index 4aa2c581c66..dfd35378b92 100644 --- a/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos.md +++ b/docs/databases/cassandra/set-up-a-cassandra-node-cluster-on-ubuntu-and-centos.md @@ -57,7 +57,7 @@ The instructions here must be executed on each Cassandra node to be clustered. A | seed_provider | This contains a comma-delimited list of each public IP address of each node to be clustered. Input the list in the line that reads `- seeds: "127.0.0.1"`. | | listen_address | Other nodes in the cluster will use the IP address listed here to find each other. Change from `localhost` to the specific node's public IP address. | | rpc_address | The listen address for client communication. Change from "localhost" to the public IP address or loopback address of the node. | - | endpoint_snitch | Snitches determine how Cassandra replicates data. Change this to "GossipingPropertyFileSnitch," as this is more suitable to a multi-datacenter configuration. | + | endpoint_snitch | Snitches determine how Cassandra replicates data. Change this to "GossipingPropertyFileSnitch," as this is more suitable to a multi-data center configuration. | | auto_bootstrap | Add this property anywhere in the file. If you have yet to add data to your nodes - that is, you would start with a fresh cluster - set this to "false." If your node(s) already contains data, **do not** add this property. | | num_tokens | This property defines the proportion of data stored on each node. For nodes with equal hardware capabilities, this number should be set equally between them so the data is more likely to be evenly distributed. The default value of 256 is likely to ensure equal data distribution. For more information on this topic, see the "How data is distributed across a cluster" link in the "External Resources" section. | @@ -75,7 +75,7 @@ auto_bootstrap: false {{< /file >}} -3. Edit the `cassandra-rackdc.properties` file. Assign each node the same datacenter and rack name: +3. Edit the `cassandra-rackdc.properties` file. Assign each node the same data center and rack name: {{< file "/etc/cassandra/conf/cassandra-rackdc.properties" properties >}} # These properties are used with GossipingPropertyFileSnitch and will @@ -233,7 +233,7 @@ You may want to configure the *internode_encryption* setting to better meet the |:----------:|:-------------:| | all | All traffic between nodes is encrypted. | | none | No traffic is encrypted. | -| dc | Only traffic between datacenters is encrypted. | +| dc | Only traffic between data centers is encrypted. | | rack | Only traffic between server racks is encrypted. | ## Verify SSL Setup diff --git a/docs/databases/mongodb/build-database-clusters-with-mongodb.md b/docs/databases/mongodb/build-database-clusters-with-mongodb.md index 79d0cfb2f50..81205c837b1 100644 --- a/docs/databases/mongodb/build-database-clusters-with-mongodb.md +++ b/docs/databases/mongodb/build-database-clusters-with-mongodb.md @@ -57,7 +57,7 @@ The problem in this configuration is that if one of the shard servers experience ## Configure Hosts File -If your Linodes are all located in the same datacenter, we recommend [adding a private IP address](/docs/networking/remote-access#adding-private-ip-addresses) for each one and using those here to avoid transmitting data over the public internet. If you don't use private IP addresses, be sure to [encrypt your data with SSL/TLS](https://docs.mongodb.com/manual/tutorial/configure-ssl/). +If your Linodes are all located in the same data center, we recommend [adding a private IP address](/docs/networking/remote-access#adding-private-ip-addresses) for each one and using those here to avoid transmitting data over the public internet. If you don't use private IP addresses, be sure to [encrypt your data with SSL/TLS](https://docs.mongodb.com/manual/tutorial/configure-ssl/). On each Linode in your cluster, add the following to the `/etc/hosts` file: diff --git a/docs/databases/mongodb/create-a-mongodb-replica-set.md b/docs/databases/mongodb/create-a-mongodb-replica-set.md index 2edb8263883..bc4e9eb7ac7 100644 --- a/docs/databases/mongodb/create-a-mongodb-replica-set.md +++ b/docs/databases/mongodb/create-a-mongodb-replica-set.md @@ -52,9 +52,9 @@ To allow for consistent replication, each node will need to communicate with all There are two major ways to allow the members of your replica set to communicate. -The first method is to use [private IP addresses](/docs/networking/remote-access#adding-private-ip-addresses) for each member of the replica set. This allows the Linodes in your replica set to communicate without exposing your data to the public internet. This method is recommended, but note that it requires all members of the replica set be in the same datacenter. +The first method is to use [private IP addresses](/docs/networking/remote-access#adding-private-ip-addresses) for each member of the replica set. This allows the Linodes in your replica set to communicate without exposing your data to the public internet. This method is recommended, but note that it requires all members of the replica set be in the same data center. -The second method is to simply use the public IP address assigned to each Linode. You'll need to use this method if your Linodes are located in different datacenters, although this is not recommended because network latency will have a negative impact on replication. If you must use public IP addresses, you should [configure SSL/TLS encryption](https://docs.mongodb.com/manual/tutorial/configure-ssl/) for data sent between your hosts, or configure them to communicate over a VPN. +The second method is to simply use the public IP address assigned to each Linode. You'll need to use this method if your Linodes are located in different data centers, although this is not recommended because network latency will have a negative impact on replication. If you must use public IP addresses, you should [configure SSL/TLS encryption](https://docs.mongodb.com/manual/tutorial/configure-ssl/) for data sent between your hosts, or configure them to communicate over a VPN. Whether you're using public or private IP addresses to send data, you'll need to secure each Linode with a [firewall](/docs/security/firewalls/) before deploying your replica set into production. diff --git a/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny.md b/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny.md index 06bb9c16fb0..0f88f2cbc5a 100644 --- a/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny.md +++ b/docs/databases/oracle/oracle-10g-express-edition-on-debian-5-lenny.md @@ -24,7 +24,7 @@ To do this, log into the Linode Manager and shut down your Linode. Once your Lin # Configure Networking and Set the Hostname -Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same datacenter. +Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same data center. First, make sure your Linode has a private IP address assigned to it. To do so, visit the "Remote Access" tab in the Linode Manager. If you need to add a private IP, reboot your Linode after doing so before proceeding with the next step. diff --git a/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze.md b/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze.md index ee86746cb3c..91bd99dbe90 100644 --- a/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze.md +++ b/docs/databases/oracle/oracle-10g-express-edition-on-debian-6-squeeze.md @@ -24,7 +24,7 @@ To do this, log into the Linode Manager and shut down your Linode. Once your Lin # Configure Networking and Set the Hostname -Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same datacenter. +Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same data center. First, make sure your Linode has a private IP address assigned to it. To do so, visit the "Remote Access" tab in the Linode Manager. If you need to add a private IP, reboot your Linode after doing so before proceeding with the next step. diff --git a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid.md b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid.md index 93f1c364723..f704f7ee20f 100644 --- a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid.md +++ b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-04-lts-lucid.md @@ -24,7 +24,7 @@ To do this, log into the Linode Manager and shut down your Linode. Once your Lin # Configure Networking and Set the Hostname -Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same datacenter. +Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same data center. First, make sure your Linode has a private IP address assigned to it. To do so, visit the "Remote Access" tab in the Linode Manager. If you need to add a private IP, reboot your Linode after doing so before proceeding with the next step. diff --git a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick.md b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick.md index f200958d182..73b09019b06 100644 --- a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick.md +++ b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-10-10-maverick.md @@ -26,7 +26,7 @@ To do this, log into the Linode Manager and shut down your Linode. Once your Lin # Configure Networking and Set the Hostname -Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same datacenter. +Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same data center. First, make sure your Linode has a private IP address assigned to it. To do so, visit the "Remote Access" tab in the Linode Manager. If you need to add a private IP, reboot your Linode after doing so before proceeding with the next step. diff --git a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic.md b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic.md index d87f35eba30..30e3ab41fb6 100644 --- a/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic.md +++ b/docs/databases/oracle/oracle-10g-express-edition-on-ubuntu-9-10-karmic.md @@ -26,7 +26,7 @@ To do this, log into the Linode Manager and shut down your Linode. Once your Lin # Configure Networking and Set the Hostname -Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same datacenter. +Oracle is very picky about the system hostname with respect to what interfaces it will listen on. You'll be using a private IP on your Linode and setting the hostname a bit differently than usual to account for this, with the added benefit of being able to connect to your Oracle database from other Linodes in the same data center. First, make sure your Linode has a private IP address assigned to it. To do so, visit the "Remote Access" tab in the Linode Manager. If you need to add a private IP, reboot your Linode after doing so before proceeding with the next step. diff --git a/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy.md b/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy.md index 4a9aec438e9..0a676065812 100644 --- a/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy.md +++ b/docs/databases/postgresql/create-a-highly-available-postgresql-cluster-using-patroni-and-haproxy.md @@ -35,7 +35,7 @@ This guide shows you how to create a highly available Postgres cluster of three sudo apt update && sudo apt upgrade -4. Create five Linodes on your account, all within the same datacenter. Take note of each Linode's [private IP address](/docs/networking/remote-access/#adding-private-ip-addresses) +4. Create five Linodes on your account, all within the same data center. Take note of each Linode's [private IP address](/docs/networking/remote-access/#adding-private-ip-addresses) {{< note >}} This guide is written for a non-root user. Commands that require elevated privileges are prefixed with `sudo`. If you’re not familiar with the `sudo` command, see the [Users and Groups](/docs/tools-reference/linux-users-and-groups) guide. @@ -43,7 +43,7 @@ This guide is written for a non-root user. Commands that require elevated privil ## Install PostgreSQL -Install Postgres on three Linodes in your setup. Because the configuration in this guide uses private IP addresses to communicate between Linodes in the same datacenter, this setup may not meet certain [Highly Available requirements](https://docs.oracle.com/cd/B28359_01/server.111/b28281/hadesign.htm#g1007388). For more information about private IPs, visit our [Remote Access guide](/docs/networking/remote-access/#adding-private-ip-addresses). +Install Postgres on three Linodes in your setup. Because the configuration in this guide uses private IP addresses to communicate between Linodes in the same data center, this setup may not meet certain [Highly Available requirements](https://docs.oracle.com/cd/B28359_01/server.111/b28281/hadesign.htm#g1007388). For more information about private IPs, visit our [Remote Access guide](/docs/networking/remote-access/#adding-private-ip-addresses). The examples in this guide assign the private IP addresses of the three Postgres Linodes `192.0.2.11`, `192.0.2.12` and `192.0.2.13`. To setup a private IP address on a Linode, refer to the [Remote Access guide](/docs/networking/remote-access/#adding-private-ip-addresses) for more information. diff --git a/docs/databases/redis/install-and-configure-redis-on-centos-7.md b/docs/databases/redis/install-and-configure-redis-on-centos-7.md index 98e35aac783..44a250bd854 100644 --- a/docs/databases/redis/install-and-configure-redis-on-centos-7.md +++ b/docs/databases/redis/install-and-configure-redis-on-centos-7.md @@ -133,7 +133,7 @@ The following steps will guide you through master/slave replication, with the sl For this section, you will use two Linodes, a master and a slave. {{< note >}} -To communicate over the private network, your master and slave Linodes must reside in the same datacenter. +To communicate over the private network, your master and slave Linodes must reside in the same data center. {{< /note >}} ### Prepare Your Linodes diff --git a/docs/getting-started.md b/docs/getting-started.md index b291182ed3e..fa43d9195ea 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -27,11 +27,11 @@ If you haven't already signed up for a Linode account, start here. 1. Create a new account at the [Sign Up page](https://manager.linode.com/signup). 2. Sign in and enter your billing and account information. Most accounts are activated instantly, but some require manual review prior to activation. If your account is not immediately activated, you will receive an email with additional instructions. -3. Select a Linode plan and datacenter location +3. Select a Linode plan and data center location ![Available Linode plans](/docs/assets/linode-manager-select-plan.png) -If you're unsure of which datacenter to select, see our [speed test](http://www.linode.com/speedtest) to determine which location provides the best performance for your target audience. You can also generate [MTR reports](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/) for each of the datacenters to determine which of our facilities provides the best latency from your particular location. +If you're unsure of which data center to select, see our [speed test](http://www.linode.com/speedtest) to determine which location provides the best performance for your target audience. You can also generate [MTR reports](/docs/networking/diagnostics/diagnosing-network-issues-with-mtr/) for each of the data centers to determine which of our facilities provides the best latency from your particular location. ## Provision Your Linode diff --git a/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md b/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md index 9cc38e5976a..ac0b33dfd1b 100644 --- a/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md +++ b/docs/networking/diagnostics/diagnosing-network-issues-with-mtr.md @@ -162,7 +162,7 @@ The final column, `StDev`, provides the standard deviation of the latencies to e In most circumstances, you may think of the MTR output in three major sections. Depending on configurations, the first 2 or 3 hops often represent the source host's ISP, while the last 2 or 3 hops represent the destination host's ISP. The hops in between are the routers the packet traverses to reach its destination. -For example if MTR is run from your home PC to your Linode, the first 2 or 3 hops belong to **your** ISP. The last 3 hops belong to the datacenter where your Linode resides. Any hops in the middle are intermediate hops. When running MTR locally, if you see an abnormality in the first few hops near the source, contact your local service provider or investigate your local networking configuration. Conversely, if you see abnormalities near the destination you may want to contact the operator of the destination server or network support for that machine (e.g. Linode). Unfortunately, in cases where there are problems on the intermediate hops, both service providers will have limited ability to address those glitches. +For example if MTR is run from your home PC to your Linode, the first 2 or 3 hops belong to **your** ISP. The last 3 hops belong to the data center where your Linode resides. Any hops in the middle are intermediate hops. When running MTR locally, if you see an abnormality in the first few hops near the source, contact your local service provider or investigate your local networking configuration. Conversely, if you see abnormalities near the destination you may want to contact the operator of the destination server or network support for that machine (e.g. Linode). Unfortunately, in cases where there are problems on the intermediate hops, both service providers will have limited ability to address those glitches. ## Analyzing MTR Reports diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny.md index 4dd3cf574d0..be1f95a4c5e 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-5-lenny.md @@ -64,7 +64,7 @@ server: Unbound uses CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, you can see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze.md index 69d1496db6c..8824298226c 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-debian-6-squeeze.md @@ -64,7 +64,7 @@ server: Unbound uses CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, you can see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid.md index dd69731d903..ab5e09bfb4d 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-04-lts-lucid.md @@ -64,7 +64,7 @@ server: Unbound uses a CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, we see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick.md index 9b4a5272fdd..bcf0be11043 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-10-10-maverick.md @@ -66,7 +66,7 @@ server: Unbound uses CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, you can see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty.md index 389df52bb85..61de2bc9039 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-11-04-natty.md @@ -66,7 +66,7 @@ server: Unbound uses CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, you can see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin.md b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin.md index 28e0e504939..6dad0729267 100644 --- a/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin.md +++ b/docs/networking/dns/use-unbound-for-local-dns-resolution-on-ubuntu-12-04-lts-precise-pangolin.md @@ -64,7 +64,7 @@ server: Unbound uses a CIDR notation to control access to the DNS resolver. This allows you to permit or refuse DNS traffic to large or small groups of IP addresses in a simple and clear syntax. In the above example, we see a number of different access control approaches. -In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same datacenter to resolve domain addresses using your server. +In the first example, we allow all requests from the `192.168.0.0/16` net block, or all IP addresses beginning with `192.168.`, which corresponds to the local "private" network. Specify this if you have private networking configured on your Linode and would like to allow multiple Linodes in the same data center to resolve domain addresses using your server. In the second example, we allow all requests from the IP address `11.22.33.44`. To specify specific IP addresses in CIDR notation, simply append `/32` to the desired IP address. The remaining examples force Unbound to block access from two netblocks, or all IP addresses that begin with `12.34.56.` and the entire `34.` prefix. Specifying `deny` causes Unbound to drop all traffic from this address or addresses. By contrast, the `refuse` option returns an error message in response to requests from blocked sources. diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6.md b/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6.md index 0843341b425..7d8a307035d 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6.md @@ -197,7 +197,7 @@ If you use OS X on a Mac, we have found that the [Tunnelblick](http://code.googl ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on nonpublic interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's datacenter if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration. If you connect to the OpenVPN you have configured at this point, you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on nonpublic interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration. If you connect to the OpenVPN you have configured at this point, you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny.md b/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny.md index 3320b2d7754..e4ee79445ab 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-debian-5-lenny.md @@ -186,7 +186,7 @@ If you use Mac OS X, we have found that the [Tunnelblick](http://code.google.com ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point, you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point, you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze.md b/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze.md index c64a35ed7f4..df31a20409f 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-debian-6-squeeze.md @@ -184,7 +184,7 @@ If you use Mac OS X, we have found that the [Tunnelblick](http://code.google.com ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point, you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point, you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid.md b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid.md index b1124af6306..597a1cab4d3 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-04-lucid.md @@ -188,7 +188,7 @@ If you use OS X on a Mac, we have found that the [Tunnelblick](http://code.googl ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick.md b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick.md index 6cb58fa2d52..02c05decdf6 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-10-10-maverick.md @@ -188,7 +188,7 @@ If you use OS X on a Mac, we have found that the [Tunnelblick](http://code.googl ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic.md b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic.md index 61f862b332e..d671620de1f 100644 --- a/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic.md +++ b/docs/networking/vpn/secure-communications-with-openvpn-on-ubuntu-9-10-karmic.md @@ -188,7 +188,7 @@ If you use OS X on a Mac, we have found that the [Tunnelblick](http://code.googl ### Connect Remote Networks Securely With the VPN -Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same datacenter. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. +Once configured, the OpenVPN server allows you to encrypt traffic between your local computer and your Linode's local network. While all other traffic is handled in the conventional manner, the VPN allows traffic on non-public interfaces to be securely passed through your Linode. This will also allow you to connect to the local area network in your Linode's data center if you are using the LAN to connect to multiple Linodes in the same data center. Using OpenVPN in this manner is supported by the default configuration, and if you connect to the OpenVPN you have configured at this point you will have access to this functionality. ### Tunnel All Connections through the VPN diff --git a/docs/platform/disk-images/disk-images-and-configuration-profiles.md b/docs/platform/disk-images/disk-images-and-configuration-profiles.md index 29290cf5bea..b6ee35c5fbf 100644 --- a/docs/platform/disk-images/disk-images-and-configuration-profiles.md +++ b/docs/platform/disk-images/disk-images-and-configuration-profiles.md @@ -199,7 +199,7 @@ The configuration profile is removed from the dashboard. ## Cloning Disks and Configuration Profiles -You can *clone* disks and configuration profiles from one Linode to another, as long as both of the Linodes are on your account. This is an easy way to transfer your configuration between Linodes, or migrate your Linode to a different datacenter. See our guide on [cloning your Linode](/docs/migrate-to-linode/disk-images/clone-your-linode) for more information. +You can *clone* disks and configuration profiles from one Linode to another, as long as both of the Linodes are on your account. This is an easy way to transfer your configuration between Linodes, or migrate your Linode to a different data center. See our guide on [cloning your Linode](/docs/migrate-to-linode/disk-images/clone-your-linode) for more information. ## Potential Uses diff --git a/docs/platform/linode-backup-service.md b/docs/platform/linode-backup-service.md index 7fe0af7da88..f7915de5d58 100644 --- a/docs/platform/linode-backup-service.md +++ b/docs/platform/linode-backup-service.md @@ -73,7 +73,7 @@ You'll manage your backups with a simple web interface in the Linode Manager. Th ## How Linode Backups Work -Backups are stored on a separate system in the same datacenter as your Linode. The space required to store the backups is *not* subtracted from your storage space. You can store four backups of your Linode, three of which are automatically generated and rotated: +Backups are stored on a separate system in the same data center as your Linode. The space required to store the backups is *not* subtracted from your storage space. You can store four backups of your Linode, three of which are automatically generated and rotated: - **Daily backup:** Automatically initiated daily within the backup window you select. Less than 24 hours old. - **Current week's backup:** Automatically initiated weekly within the backup window, on the day you select. Less than 7 days old. diff --git a/docs/platform/linode-beginners-guide.md b/docs/platform/linode-beginners-guide.md index 43b77ff9ad7..f730c4eb283 100644 --- a/docs/platform/linode-beginners-guide.md +++ b/docs/platform/linode-beginners-guide.md @@ -72,7 +72,7 @@ You may add an additional public IP address from the "Remote Access" tab in the We require technical justification for the issuance of new IP addresses; you may need to open a ticket from the "Support" tab of the Linode Manager explaining the reason for the new IP. {{< /note >}} -If you'd like to take advantage of our private networking feature, you may add a private IP to your Linode from the "Remote Access" tab of the Linode Manager. Private IP addresses are not publicly accessible, although they are accessible from other Linodes in the same datacenter. Although we take measures to prevent others from intercepting your private IP traffic, you may still wish to configure a firewall to allow access from only the Linodes that you operate. +If you'd like to take advantage of our private networking feature, you may add a private IP to your Linode from the "Remote Access" tab of the Linode Manager. Private IP addresses are not publicly accessible, although they are accessible from other Linodes in the same data center. Although we take measures to prevent others from intercepting your private IP traffic, you may still wish to configure a firewall to allow access from only the Linodes that you operate. ## How do I set the reverse DNS for an IP address? @@ -90,13 +90,13 @@ First, check to be sure that the service (SSH, HTTP, etc.) you're trying to acce ## How can I upgrade or downgrade my Linode? -Resizing your Linode is automated via the "Resize" tab in the Linode Manager, pending availability for the plan you wish to move to in your datacenter. If you're downgrading, please make sure you've resized your disk images to fit within your desired plan's disk space allocation before issuing the resize job. For more information, refer to our guide on [resizing a Linode](/docs/migrate-to-linode/disk-images/resizing-a-linode) +Resizing your Linode is automated via the "Resize" tab in the Linode Manager, pending availability for the plan you wish to move to in your data center. If you're downgrading, please make sure you've resized your disk images to fit within your desired plan's disk space allocation before issuing the resize job. For more information, refer to our guide on [resizing a Linode](/docs/migrate-to-linode/disk-images/resizing-a-linode) -## How can I test downloads speeds from different datacenters? +## How can I test downloads speeds from different data centers? -You may use our [speed test](http://www.linode.com/speedtest/) page to check latency and download speeds from your location to each of our datacenters. Many customers with a large Asia-Pacific presence find that our Singapore and Tokyo facilities work best, while those with a visitor base in Europe tend to prefer our London or Frankfurt datacenters. +You may use our [speed test](http://www.linode.com/speedtest/) page to check latency and download speeds from your location to each of our data centers. Many customers with a large Asia-Pacific presence find that our Singapore and Tokyo facilities work best, while those with a visitor base in Europe tend to prefer our London or Frankfurt data centers. -## Can I transfer my Linode to another datacenter? +## Can I transfer my Linode to another data center? Yes! Any time you'd like to transfer your Linode, you may open a ticket via the "Support" tab in the Linode Manager to request a DC migration. Your disks and configuration profiles will move with your Linode, although your IP addresses will need to change. Once we stage your migration, you'll see a "migration pending" link in the Linode Manager, which you may use at your convenience to migrate your Linode. diff --git a/docs/platform/linode-cli.md b/docs/platform/linode-cli.md index 5babb9e7233..c33e6a522d1 100644 --- a/docs/platform/linode-cli.md +++ b/docs/platform/linode-cli.md @@ -138,7 +138,7 @@ To start with, most users will want to run the configuration utility: 19 - openSUSE Leap 42.2 Choose[ 1-19 ] or Enter to skip>> - Default datacenter when deploying a new Linode. (Optional) + Default data center when deploying a new Linode. (Optional) Valid options are: 1 - atlanta 2 - dallas diff --git a/docs/platform/meltdown_statement.md b/docs/platform/meltdown_statement.md index 75ea9639198..0ab7330c13f 100644 --- a/docs/platform/meltdown_statement.md +++ b/docs/platform/meltdown_statement.md @@ -20,7 +20,7 @@ external_resources: ## Summary -Virtually every processor manufactured in the last 23 years is potentially affected by two recently discovered processor vulnerabilities: Meltdown and Spectre. Linode is continuing to implement patches on datacenter equipment. In the meantime, update your Linux kernel and reboot to help protect your system. +Virtually every processor manufactured in the last 23 years is potentially affected by two recently discovered processor vulnerabilities: Meltdown and Spectre. Linode is continuing to implement patches on data center equipment. In the meantime, update your Linux kernel and reboot to help protect your system. ## FAQ diff --git a/docs/platform/network-helper.md b/docs/platform/network-helper.md index 60cc7efc2ab..0c9b03b0e5e 100644 --- a/docs/platform/network-helper.md +++ b/docs/platform/network-helper.md @@ -20,7 +20,7 @@ Network Helper automatically deposits a static networking configuration in to yo - Add a public or private IPv4 address - Restore from a backup - Deploy from an Linode Images template - - Migrate your Linode to a new datacenter + - Migrate your Linode to a new data center - Clone from another Linode diff --git a/docs/platform/nodebalancer/getting-started-with-nodebalancers.md b/docs/platform/nodebalancer/getting-started-with-nodebalancers.md index d5a46893857..18fec15e5e7 100644 --- a/docs/platform/nodebalancer/getting-started-with-nodebalancers.md +++ b/docs/platform/nodebalancer/getting-started-with-nodebalancers.md @@ -47,7 +47,7 @@ Sticking with the simple web application example above, the backend Linode curre [![The NodeBalancer tab.](/docs/assets/796-1.png)](/docs/assets/770-nodebalancer-tab.png) -2. For the example web application, only one NodeBalancer is needed. Add one in the same datacenter that your backend Linodes are located in. Once purchased, you will be able to see the public IP address that has been assigned to your NodeBalancer. +2. For the example web application, only one NodeBalancer is needed. Add one in the same data center that your backend Linodes are located in. Once purchased, you will be able to see the public IP address that has been assigned to your NodeBalancer. [![The NodeBalancer has been added.](/docs/assets/797-2.png)](/docs/assets/772-nodebalancer-added.png) diff --git a/docs/platform/package-mirrors.md b/docs/platform/package-mirrors.md index 08c5412c23b..faddd947f5f 100644 --- a/docs/platform/package-mirrors.md +++ b/docs/platform/package-mirrors.md @@ -17,7 +17,7 @@ Linode offers public package mirrors for Ubuntu, Debian, and CentOS. When you in ![Setting Linode Package Mirrors.](/docs/assets/package_mirrors_smg.png "Setting Linode Package Mirrors.") - Linode package mirrors are available in all of our datacenters. The mirrors can be found at: + Linode package mirrors are available in all of our data centers. The mirrors can be found at: - - @@ -32,7 +32,7 @@ Linode offers public package mirrors for Ubuntu, Debian, and CentOS. When you in ## Package Mirror Settings -For best performance, you will want to use the mirror in the same datacenter as your Linode. When using the Linode DNS resolvers, **mirrors.linode.com** will resolve to the mirror within the same datacenter. For public queries, mirrors.linode.com will return a round robin of the US locations. +For best performance, you will want to use the mirror in the same data center as your Linode. When using the Linode DNS resolvers, **mirrors.linode.com** will resolve to the mirror within the same data center. For public queries, mirrors.linode.com will return a round robin of the US locations. Instructions for setting the package mirror location are provided in the following subsections. diff --git a/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode.md b/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode.md index 35fff1a1396..c0cc75dd8f0 100644 --- a/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode.md +++ b/docs/tools-reference/custom-kernels-distros/install-freebsd-on-linode.md @@ -40,7 +40,7 @@ FreeBSD is not officially supported by Linode at this time. This means that the Begin by creating the Linode and making some preliminary changes. -1. Create your Linode in your preferred datacenter. For the purposes of this tutorial, we recommend turning [Lassie](/docs/uptime/monitoring-and-maintaining-your-server#configuring-shutdown-watchdog) *off* to prevent the watchdog from attempting to restart your Linode without your input. You can disable Lassie in the **Settings** tab of the Linode Manager under **Shutdown Watchdog**. +1. Create your Linode in your preferred data center. For the purposes of this tutorial, we recommend turning [Lassie](/docs/uptime/monitoring-and-maintaining-your-server#configuring-shutdown-watchdog) *off* to prevent the watchdog from attempting to restart your Linode without your input. You can disable Lassie in the **Settings** tab of the Linode Manager under **Shutdown Watchdog**. 2. [Create two disk images](https://www.linode.com/docs/migrate-to-linode/disk-images/disk-images-and-configuration-profiles#creating-a-blank-disk); both should be in the RAW format. diff --git a/docs/websites/cms/high-availability-wordpress.md b/docs/websites/cms/high-availability-wordpress.md index 57e785b6d1a..c006bf86558 100644 --- a/docs/websites/cms/high-availability-wordpress.md +++ b/docs/websites/cms/high-availability-wordpress.md @@ -297,7 +297,7 @@ port = 22 1. Visit the NodeBalancers tab in the Linode Manager. -2. If you have not done so already, add a NodeBalancer, ensuring that it is in the same datacenter as your back-end Linodes. +2. If you have not done so already, add a NodeBalancer, ensuring that it is in the same data center as your back-end Linodes. 3. Select your new NodeBalancer and click "Create Configuration." Edit your configuration settings as follows: diff --git a/docs/websites/host-a-website-with-high-availability.md b/docs/websites/host-a-website-with-high-availability.md index a866c9d7bf1..2241665a702 100644 --- a/docs/websites/host-a-website-with-high-availability.md +++ b/docs/websites/host-a-website-with-high-availability.md @@ -26,7 +26,7 @@ In this guide, we'll explain how to host a highly available website with Wordpre ## Before You Begin -1. We will be using a total of nine nodes, or servers, all running CentOS 7, and all within the same datacenter. You can create them all in the beginning, or as you follow along. Either way, familiarize yourself with our [Getting Started](/docs/getting-started) guide and complete the steps for setting the hostname and timezone for each Linode you create. +1. We will be using a total of nine nodes, or servers, all running CentOS 7, and all within the same data center. You can create them all in the beginning, or as you follow along. Either way, familiarize yourself with our [Getting Started](/docs/getting-started) guide and complete the steps for setting the hostname and timezone for each Linode you create. 2. You should also be familiar with our [Securing Your Server](/docs/security/securing-your-server) guide, and follow best security practices as you create your servers. Do not create firewall rules yet, as we'll be handling that step in our guide. diff --git a/docs/websites/varnish/getting-started-with-varnish-cache.md b/docs/websites/varnish/getting-started-with-varnish-cache.md index 0c46adc657a..96772e3b313 100644 --- a/docs/websites/varnish/getting-started-with-varnish-cache.md +++ b/docs/websites/varnish/getting-started-with-varnish-cache.md @@ -272,7 +272,7 @@ set beresp.grace = 1h; #### Serve Varnish Cache from Another Linode (Optional) -For added availability, consider serving Varnish cache from a separate Linode. In this case, the Varnish installation steps should be performed on a separate Linode in the same datacenter as the web server. Once installed, configure the Varnish backend `.host` value to point at the web server Linode's [private IP address](/docs/networking/remote-access#adding-private-ip-addresses). Note that DNS records for your site should be pointed at the Varnish Linode, since this is where the client connects. +For added availability, consider serving Varnish cache from a separate Linode. In this case, the Varnish installation steps should be performed on a separate Linode in the same data center as the web server. Once installed, configure the Varnish backend `.host` value to point at the web server Linode's [private IP address](/docs/networking/remote-access#adding-private-ip-addresses). Note that DNS records for your site should be pointed at the Varnish Linode, since this is where the client connects. That's it! If everything went well, visitors to your site are now being served Varnish-cached content from memory, resulting in dramatic improvements to your site's speed. From c9b2099c6137df9cc7771865fe441daa6b5c15c3 Mon Sep 17 00:00:00 2001 From: Jared Date: Fri, 2 Feb 2018 13:15:51 -0500 Subject: [PATCH 21/25] Add January banner images (#1485) --- ...ertificates_with_Apache_on_CentOS_7_smg.jpg | Bin 0 -> 51923 bytes .../Backing_Up_Your_Data_smg.jpg | Bin 0 -> 117590 bytes .../Installing_Multicraft_on_Ubuntu_smg.jpg | Bin 0 -> 50193 bytes ..._Install_Nodejs_and_Nginx_on_Debian_smg.jpg | Bin 0 -> 61203 bytes .../NodeBalancer_Reference_Guide_smg.jpg | Bin 0 -> 72255 bytes ...l_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg | Bin 0 -> 82439 bytes ...and_Management_Panel_on_Ubuntu_1404_smg.jpg | Bin 0 -> 80958 bytes ...HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg | Bin 0 -> 91401 bytes ..._with_Your_Linode_for_Safe_Browsing_smg.jpg | Bin 0 -> 83514 bytes ...SL_Certificate_on_CentOS_and_Fedora_smg.jpg | Bin 0 -> 51998 bytes ..._Open_Source_Edition_on_Ubuntu_1404_smg.jpg | Bin 0 -> 99701 bytes .../mysql/install-mysql-phpmyadmin-debian-7.md | 2 ++ ...ow-to-install-nodejs-and-nginx-on-debian.md | 7 +++++-- docs/email/zimbra/zimbra-on-ubuntu-14-04.md | 1 + docs/game-servers/multicraft-on-ubuntu.md | 3 +++ .../squid/squid-http-proxy-centos-6-4.md | 2 ++ ...unnel-with-your-linode-for-safe-browsing.md | 2 ++ docs/networking/vpn/pritunl-vpn-ubuntu.md | 2 ++ .../nodebalancer-reference-guide.md | 2 ++ docs/security/backups/backing-up-your-data.md | 2 ++ ...ned-ssl-certificate-on-centos-and-fedora.md | 2 ++ docs/security/ssl/ssl-apache2-centos.md | 2 ++ 22 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 docs/assets/apache-ssl/SSL_Certificates_with_Apache_on_CentOS_7_smg.jpg create mode 100644 docs/assets/backing-up-data/Backing_Up_Your_Data_smg.jpg create mode 100644 docs/assets/multicraft/Installing_Multicraft_on_Ubuntu_smg.jpg create mode 100644 docs/assets/node-nginx/How_to_Install_Nodejs_and_Nginx_on_Debian_smg.jpg create mode 100644 docs/assets/nodebalancer/NodeBalancer_Reference_Guide_smg.jpg create mode 100644 docs/assets/phpmyadmin-debian-mysql/How_to_Install_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg create mode 100644 docs/assets/pritunl/Pritunl_VPN_Server_and_Management_Panel_on_Ubuntu_1404_smg.jpg create mode 100644 docs/assets/squid/Creating_an_HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg create mode 100644 docs/assets/ssh-tunnel/Setting_up_an_SSH_Tunnel_with_Your_Linode_for_Safe_Browsing_smg.jpg create mode 100644 docs/assets/ssl-cert-centos/Obtain_a_Commercially_Signed_SSL_Certificate_on_CentOS_and_Fedora_smg.jpg create mode 100644 docs/assets/zimbra/Install_Zimbra_Open_Source_Edition_on_Ubuntu_1404_smg.jpg diff --git a/docs/assets/apache-ssl/SSL_Certificates_with_Apache_on_CentOS_7_smg.jpg b/docs/assets/apache-ssl/SSL_Certificates_with_Apache_on_CentOS_7_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed3b6bc348bc2e8669848ab14945ec7e13c2c62f GIT binary patch literal 51923 zcmc$`c|4Tg-#>oMW*M^1SV~MnV;lRLG-L^t8GDQ+nzFp@ltji>LXkCEj6uc{DGDJ= z2q|kyDtjohw4m*G#(TNH_kDl9-^cfl@BR55kD0lybDeWuXL+61dA^p*@0Y*FAwF{x zGZP2~hoIx&5BmKP;x`KQ@Hqp)AS47qdLU~85$G8b5}>Q3$LWRXhWQ5gQbUg6!hHYm3)T(WC%M(QF1Ti8D@o$EiiG&=lQdva#W@@% z;STr*QE?gsO+^nCb!D8E4najzSzSX#0jH|0qNSv)p`@&-sH~!^tgWl6g8M5;0%}3W zPv}}1nfyfy-0hS6Yfz_8pC+7EBlriMR8rB=(NR)XRZ>+|1SJ%M&-jHL3sdw9-u-tA zM$}-BAg_QBFMmHAtHopP{-GiJBtcLA9D;Aa;luwl{4ZzA*OxV}t(??*B}PRS@(>*D}ZpEXuJzjQl-9eW`vSW=8uY!4tx9 zuj9H#Mq29X8V58D)m61LwN+HK52&acXeg^2X=)oDFwrplyN!QUS5r+xP1{IQ&BR30 zL`B6|OWQgn)xc0&{qMSFe!(Hf{5+_C)Aa&$|EjC{f2^x}Ac%S_#6QT! z-~W%lIe_HpAL1YE=^ubQV6BP6A3o;c<;Tj9Wi8O3<29lNd7YvjHwp6h#cj>7uGhcl z!GQzn>LvyT#-Il}tlk@HX=oW9Fwim7(b7;opr$7ISKZ_PV%GkuYx2LXs{}fu#A1*C zgIe2r5ZD~Qmmr=kmWPfvgG~tg{Thmc*pNsh3dx2-v2n72 z4;Kd;8wVFR8qI}9bMtX;B|dH*UOrwPZb3l|Mo>^}$BrFh68|I^J3IR}?rkD`d?MSi z{MhaPJovx8_}vWgbHGm_?;v3O5S$-|;D`Nw3_XEhFc<_!fUmz3431z&qS!b%Sx>-& z|9Aof4FWu2=Y!xdI1-6Kav)(GC{7e7c)*X?C4fY!7?9bH39<)XkyMTDx55-+Z8`F* z40pS?1f{7-g=h%HSf^(QGg=2c;-o|EM3xT>R%=bH+$}J&kE`un-VgE3gg`*mmA5j_`-@VjfiI=Ma} zIXoA;Ym@E5fZI*3jBnCqoRUydKk1Gx3m2;`6(8LgX$im&2FA?Mo`2iZIgzp=ZETl6 zP$b-Q!N4Hf|GG0ITRpEQVP)e@N^X#_apaz^ueIRiCl)O+*|Xj~eZ5RUvE6j2NZ@`E zJh9xlk;W(^QA!=TX4*a`ax7NPpCKj&9ZBDmkYv@bU77AyEeH)rD^6gm3^f`>kL5jA z$`4RvYZB>XAg~$hb}Ap9W-IsFdt?=R=>eYP2?F1a%#E38v!Yr=83lt+|(cFb0zHLqhB71x>fZRhAHBf zPW(>vCMVba)6E00;GvU0Q1vypVc@8vg3Sia<&bdb6sVY%L=h8^v8hBGJ+iEkpfC{cl$QnX2E5y;-vHkq=5FzX0x!>~o%&ugAv1cYsu;MDr{F6(Bl9f1xjkq(@e+l_6b zv6a;`zfAoSmn$zsSg?91lPc%eLd@5}mlQ%*(oGjO2US~^TS)X(yk-qKj zE0IS%1?o%>PPQA_z3%Xgg7bLfx3HUBe-y1Lorkd12DEk=AJZu)W zX2{snF!Hc~Do}wkal7 zM_SD7!!IFJ^3a{}jeOFnVIN@=WYMSU#%9^m*RP=LvcG64c^O|HvX!;(f@N}Ah-x>4(#BabC2op8eh&ag;N_Il?ZxTeX~K?)pgBAHRtPe zh`%*MC(m48xyJa8k9Dzqbk~tR)Au)IjuAbT+ach6y^ha;QU-RU#TB=sj!EqiN~Hp7 zS(|OD#VLG*zqTf}w0`VN-VtM=;AElwhO-9A5B4PAboiM;F7|$Fe_maxg%cE{o^5XO zb~sG^gVD{OTd8k_>&|>~Ogbl$ap}y9UjszF*Ac-u)ujika_iB@{8H4b(q|8HQp^UE z=19Gv%ZWy*N4^;~%V)IuD6Qg$3PcsoooDmW4(!ME$zyTjK4v3G6wRIqGb=$ywSJMOQL!ik*`>DE#z-mgyup;z=l2 zpv(MCUi3nx;jaX5ey0H!}6i)mOW$6A}9{${PheC8)LCFK(i+ z&vtquPYZu8f4&aG*4IB5?g~O!UH5p*nL9Nh#({m<4?P=s+Stx~#GP%^+--G%HxXwW zB=!bnytZo?ov@@d-yV(Gai;h)PD2*|)6l3_t5rKJb^pVDm|9mv|0ZdBIaRzQXdjKmXe~kuL$&b6uvhpOR1SN%PKUF_byuzzTN#N?W9I$tNya0-)AF1y^&stK$CPU zXL};x!O+X{bWnBwg;CVnuCKJq(`Ve}WR6I?WSsP$v0cG|$$>c~ zC6k2IlGhxl7Eo&5jLiJCnK~wJ1Bzfhh?osCa)vZk$zKNfT>D3N*&l4pYhitUz%2W9I zPV6(Bx0=<&5>_ZF_s{aEaW=8*cP#kUiKZT=7ubHNVvMHGkUnWK4vsCZ2FS{(yQottF9LTYc>S`yi7(bRsX7LJ~@% zb63sb(MhSI8E?GA9GE6@ga%hTwo+E{#CQ_3C$_?Kd@~3mq$SugzKKpU?uB~9Y0%T+ z%MOzp>uBV$LoTYA?WGiBP(Ghj`ZYS|fLMPkaku&#@olhDf}3h59ZfK&ov@y+N@bde zyl{9z@@CqonKGF&@g`K{8;@84{yf=Z;D9xON%zB~)f*d9ncYe0<-ZbAgWQtHY6PZ@ zT)a^R2Atu|iAM-&n zowI_tQF&Z2Gb*t^1#ne5JC)AW+({jLB5beN6J0ypSA~y5q2hZ6Yi) z1cNqBGo+1Lh@nixy&9BLT2;K@JND6fQ?V?b5s=zagAvVQ%R-{K_02jDxhp z%p(S|t$V6%0#xuaHg==c74#;a_xxf=AMg=}$EGMuBnPIvnq`}kmIjA?Z6^axO?gG6 z2+Yx@f-;}t=EZ|HX=BGk%Js8gUF2cLkqNzPQB=&yo(yNVU*}QrPoK-TS|q~c$w9rs znd<>Ci=N!$XqRQ8Ug?jea?(+A6^EZ31+quN9%Sv)Nh>h#ZOZ(b6+QF%yCe%Y3R^-7 zC+$t+;tffb=XpypXbNS!+x~~o;zq@t&z*GTF~-)mN2PLP6m_D05Su7xO1~Q;SM&SP zhje4Mki8MxIh`<^+yilMM)VdylAzX1 zJV74+VCJ@gP8`pRU7%&u*6Kk~!7b2}cfE4oQ2^alT!iIzQ}nSzHnx6xD_;}Yvw0Fo zroKVV@bn{qlY~ggjg2Hhg%Nfd?^4*d{4~p1H!pm9h+(Wo#=2WQ&2H+sgeSd;qKoEO ztT>WP!i5TWi12+9!?*@OvPft?EtLD#ber9 zS%F?n*mhLeHGqn-dbO)q2v^2My-K}DUtI0d&XJy#NsL%(}-B6j0O z1Ox_$(_S(k+llen(;6-2Z!@uGXudBjuI#3;;@Bnkq14jHIkKzusQq>0%~n&B18}Bv zQu`M-7HFgPanRpA{V{+^w$4;+I36p{lgBmDzZsfQ~9wtr)s_fq)*!t{N%5PX0Q1R_i zQd-IYA9KB(y zp0PUbxn)Y527W`bCYe1^o`^c$YTD%wQIeGjLYi}H7NP<;=^&Mm$xX?GnKM%&m4zt( z;KWT1rK@EtGL1z-WGmOM=-g-88n(lMxPdz1r}X#Y493ata*v)M-9H@Fy(6FIqC^+e z=xjOr1RTZ~wVy?neDdZ8IgfTGmM+jr10zI@pNkhVd-7h{LiE?=RS~J!u3cpL;565R z;LN9$`bKo$)T8N|g*p@SFaaCcEAaOzj$yE1(`yKVPnH5a$?tCaD$%Qppg*pb>mT!t z2CxbIn&qU;3c|q*aNlIgdchB3U7s*GPLkhKsszvkhn_KmTLY8iY}rSdXPfr`43txu z1M|!U8#p7(y&keoxz`e1T0y6dB_94fDL|bvQ5)(}U%uPq@a60Iy|3#^s*WAMCBNw| zRE26Z^1oFed|?!6k!e0P&iIvDmTQst4JD1o-+$LCK(YHGbp39t*Kg>;0@5N|&&M=& zuK5LZNKU8HpC(!mrO8DX&ARniIoP6ErJYCA&(6O48urj1x4RQI+#E=)vgGOb6=cm zkFa`@=Yn&xS2Wj%D~&O#$zxO|9KZC2lDRKmBy-r0Fm=i2Yaq(uK}D68$#tJ0DQDDc z9^T%nxVp}C1L-dB&Fh%j(68so1Y2n^LQ|%|-E5TcaI}q;>r>7=1{3{eI(q=N_xivl zRBE=a3_zoUvdoDlssVg9g(NyP#4%PBXRAl7N=(^sVAnUZ;dE-`Lyyg7_o1vUd3Xz8 z_z`SeeYBcJT=oFUDuu*DUO@Kl0l2NX>aweF?;ReWw8}eMb>7UTV$A}=R7e@}i7l&c zhk7G=<^j`?Nx>;XJ!G{9tChu9P{~&9Qv|x$K$v@TW?h$3VYE{N=$LFp80M()e)g_t zHM3*VpXqYf!xLk#+pCbTuSUsLCXE|-pmiIL_dxHlG3}p;rt+0>k<;k66)HB%ZnlAT zX*TDifke+vk&&XB2ez7*E%Mo(;@wQ-nQ01w@2zP?S61TqADHI4ViFW8I`ozDO{C?Q z6q%*gd4i(5x@He7DxJwRC>-A2%x!gQ#TBC)O!QN=vOUrSiMg%Q(R>tItrVMBk>2jO zGf%deptY64=oMyxAz1E}g~mzxa3sw`A-_%JGiHaCC5@@wz6z%%j>n^ZLDa6Uf&CT; za-yq)5P$(W1;ela#5V0Iaj`xC+8oZt8x-}CR88shTAb?iTmEl}aqijGB=3?ys-Wt^ zMRHj5`P>dYoqPjk*M5JZyx9uzP}Lj?L9lJrUZ*8nbtWy~HEe1VFXrweA4s{AAsXl- z@;#odKU z8h?Bp*FkN;-p=i{-M(yORCj7KB|Fes6YWDYZ^$v%{MgWtg^|~aExKRvu6$*7!G!sC zHFU9c$bR$YkXxxPwfmxakJ4X6 z7J1zm`qiyOo%xQ>mFF;aMBXM_K~B`EuH(J@>62XK-fNg_q=0Rkb4S@rw(8An*$w;M zS)O-{8g9)$Ry}c<5|Bc?U3kT)bRmYbBHzqdA4k;^6PHiNy%V^&1zGKpu(JCtoS1=ODPp4QbDvEXpc@wbm2#sNjI}mhtU8< z8ndNOnsdJ(O(lm%R}X$gCrk-HApsOmuQ3b3ij)_(ar}mq)zc`Dj&U$ijX>XSnIPIB zt^!(ZqY27Ikm#lSlz3Qmwqdg7`?vtgE4Bix7$3GF#KoeI=gr#w%3M1=r+GEAR9By?z3kY(|WzMtV(NyiiLGPx4LmzkPU2~-h#S+G* zlBGZE9n|1TbkHy(7z@~?pJB}7Fb#DjQE<}!h7J60h@ZIndSk}*1d2YG;r=KMp?-b6 zp=z!+jj=&0+Fn@=tej$uc;u6*WY@mts?2~e3p%r6G(tI&M9-*gAVvj#CIW<_8(nPF zz$dz1G)`-xgxineMR)b1Ij@wv{~Wg^Sg~O0a-@ZUtj4oK^z)W&`Bxt03~|K)lfjBb z3(U55t#cIB1+eC!j1Iz02vfC%YnLO58M*IC5)yaV?AGrP_?`Jg%Zu8OC{l`EBqL^; zWjKxB=|2C1CaXSA*hj38{T?3O9_sDcaI5TDzD$LjpTxuthsEt<656p|hr=oE7Y}$o zQjVD1cFQ?RuSoOO;nN5CM(aX+f{gc)WvRkDUn@cx354Zge#}_nHsd zI$d5nU?Jb3Q&Xh^FV$*7kh61AAz-eeH!?8?OFw+iuLy z0RK!U?NnbB6m&){OY7us$V40KIUQ%!I%Z=(%FWne_iL~WW4k)h zkLH*xJI}p4CQ6*amnFAf@N1mkXX}T4*L_m%@KEkiBpOs@^{WwyWY@6xF!IWRz|lts zogV}SMsYVri@ge5zhPK$Fa*6faOT1tGX8OaoR!&OSjR`x*_u7jq-y^BvY_pN6U9_zPkn=^BQI($nLjlD@WH%;KB`fxAGoVV z)u*1g!(QgmkNpORi?oonkI(l<{;W{>itsF`q)g&{U4Kse5?Iu%@$ylN3T!uRR4-7IzZDy^gQU_GX!AtWtFG{@GZ-#i5$=9ZTGo$WYKW1#X6e(Ti(G$_KbJW6^6d? zd0Vlpq4;)!Wm1oL(nZuM-0Sv&9GNiU9z7!3T&A=Mahp+=@o%TGRx+Wz(%P4HB~-1*OkbHxKq1BYo-vfK zf*ub`n=C3s*;wux2ptB=YqSSyE`Nq=`QCsIj10gm6Rj$~x2w@Pa32 z;tJ7BKKSVI(t2cOoCin0TRqAmQ7tKD`zqo*mu{B=;Q-CO_XGO<<0jEH0~v9(2igtR zhmvLGiZy;7!e#_t`*jOl?mKp^RWT-Q=JMr56)#k4ys z$h~;1vjtUPuDDL1ITkj+Z=G1jNl4K6@2{7Jc<$~zVqr_zRztJ&$<>@Lx-mt#u`k-u z9ygQqNMMq7ua2X%tB?DczB{F^_^H77(0fuG)qDhv%uX$>nrv--aSmqQlM64|)66l| z3%joKV;6qvMp95{pv!P9r>WqeQ-sW~G?mu8;2X+bpE=_@_X;2D&?b1wh@Mm*(WEs| zpI5io6c)}WxfRyk_NwX)Mn@f_3e^>6$e(hsh;z3)>~Pe5Mo)T=osd|?r9inVu2Z*% zi%iz$D2XSiJ?WEaVY zH9HGwk6>dLkWWW?KY>9$MR)}(8a;j2-IRtdIOL+lU8SR+7uUjbZ;SIj zMo&@B07$*2REP$aY5H`1T7k}o)kze&qf!Xgs|2j?cK$KN)zMB#Y3EwuwRPo91Hg!S z_KdP>5x(B+*jL)XbqQtp410AsmDv$sP=@UYn@umT<2y=8c9ysA$56XJ9JyjKYPPFk zWxC(c%*?&?{7T}H*B^LpuuVKEEG(^siR~ibIc~QEBy4YiU68fl7_Yl)VXq& zbgX*2LE#3P4agNt0l~KAY;&pXSu+FgL@bd*&7{d?CsZ=BfLG5G*g_R_lXs}c@I)5{ zk|V8jfz-@BaJ6&Hz@}^wUY%pqB_6khiq{E}4CY$c9a&&UgLBsoihQS)6n}wv=J5gP z1@FfMI>+3QjT>Q0NPZExF?H?7!EGD&--+#`n|utWACAe)T?-yKW`1ZoekXB*WUj}!Cr7h|iCKS5HI}(^ zZdn~zD&zTEl@bvI9_7t*^eyLn02J=r`b`)@>d33L+E_+cFT*%4!uBUVxJ(eV!{(CeDvFW+*3+OlohJjAr= z8jcx+^M_@XBy$3nKi>=<}qDz+NVZj;ppd*YF5*>I4xCp(c-^`K*EU|Uh06yx%pe@j@`?Fb-Q;TtP6amTus~q5 z&dA*9IBvE}j~SBhsXC!OC2afEtkzq2_a4)@Y>Wdi#*{mYr2bl%R~je&`ea0Fa*9$b zG4@k&)`jWoM8${9%E>*zPAy`%uS78MqT4rI8{h!EDf4h8wj{E5G!P>q`9?*ZCV$Zg z{KkTl*)g~}K49BMc8{>3tfrUU#O$jQ*&nltK~(=FJW%G&?HNxX*dXLE+|}dFvO%CJ z*$jQ@Ng$h{g4t%bR3H&rU_q5$2ju3=*<3EuFm=k?WXSr28r&lZBlx8iH|2v2+a?i7 zu1u)A9_r~sodGS-3bPY;yNTqWqBc0E9bgN2Gf<2T zF*yfMi*P`uZIvUq)MlvCMZKGX-L-EY9mgHiNM2 zg8TzhUsLsQqT!RU>L$iTll6&lgCM#nN#IgIXEVAm??JvnXKqWXWy&aGYA%&Kb8-Oy z20W*k#bqu!FG0Vb7?3mrFh)1aSSO@r$sRk044`<#!hQ}97zuu_Omo5M-T&ofv(20o z7uZ}NF?Lg6!FBWb|Ov;tN z%Iv9g&9t%E&F!P$x{AT}?l}^PV!00iG;r((oN*BDHcnD>gCy;OrMQO0Z4Wf_}0 zS@sbpTfxgd=@>^ZTAXgqnUTne#Mx>$xijj3Q>m@4Tdr~)O5Pc4AsRBBpdo)H3&2Ig1@SwPX|vl+yb zA;uiU={Qa+Awg&woLnJ3E*Am9a_S?T2Ej_B zH--!wttaauJUg0>&xO#BKmAqIpjivVLy z!$Z*ULAB%v()LofLuGV2)ftT!_3c5mm7vUUiX`L+X`9TSC&L_D`e8R@K+R2L>~Dp?rPqYQQ~?% z?$7gpgW>*zA0daQ8lkOe$e%Mpv_l6a_|W=PVI;DBolljKWP~gxV!uUuA|FSuVDOu% z6aoCzJEFvDqIn3+g>FZ?N?T9BM0684IPKPI;vQLLsgY3ts9q@jfw9`18=7^JV zp~(+%5oM%!6HubYW;p3^s2c^`Z!pI|cnwKfgqv6b1M7{Ff6Qfs?54Rl5NnmCw~r$x zaqjSVwq~maK=2Tg4bK$|x2AIw-QhI5Ib^{sJb}#y0R(uoY#;k$;(8)x0p&+C*ZQjw z8fXJZZOIFdiN#ilF9j~Gz<{`>xr6;Z#9%cOVT2CF*BsOex z6+V3>NXDg{aX$^0hp8Q>9Zz8As3LZcbpJXJGuzMJ$1z^p-cS2AIoDMUqAGT6MQsg- zD6(Bk7B=qM)+Rfaw{E|J+pAnqq0Je?{q0OM(yzUta^jqH^hxB(_=Y-&o(jnQY6dIs zUyvgJ2W0`lYXX~-7oPT)D2t>4jycvGCgBFMuN@!m#Q<*ht8}0s<3{=dyuN#EeQl0%YDq z1G1=+MBoNWlM#?LBrF`vY%NYY0s_)+h@J26(*6lx{VQqQ2eAu@tkPd$-ZZEb4#GiP zAoFzykZpn}B7zt0aDgV=n*lQbNw`I{1S|y?36i5-y`zYSH>$ur`l9Xo7(<*#XpUbX zINf}NhLwYutaG4==19lPAuCCWL?9G5U{-W=H0WR19I6y%8HWA>BVj?i@Ip9~(;kR! zq9Rcp6vm^Y<@?a7e-(w(x0k@HC%5G4^*1WGQtjc%W*zCpIkK9?$5im4SyPtX8QpR& zZx0pdTtDakIf38_B;ss}jhyO|$HCGn@@{s=t{1K?9KfK~nIfKWD7o&re4&oOX};-F zAQ3GvQYR-LOi4^8Xy&GsK4!422*As>%OJo79!oglU^)-t6f8bqgo@DgZF^#I&s0{3 zUh3^ej5#1Y1Y$B+WErx0tbRE{Pw`AgGcwc9#yK+h3_a&Q}Hc7WUBQ4ALj(y^`{VEHUG2O>** zZDBnNXZK4;>bzc31eP@V20@s2te7|*oq`HT{@gkV0N7bOhGxTMgaPt)PINw zku6(RsiIF`2z*PW{3$N6qNlN5Vy??r6nC(tC_9pECdCvUc)+Nq=Tx-~n(NYZr37j@UO1 zl%5Po{U&#;1SY~A;Daz2%LR4@c=zROCSnjgehvrbugGbLnCQRt&v8eE6bPtIgRt0~ zlVa`*O+7o}lcyAPD)2U9SRdicL=X&TM!Wqij{EkH=X1u}!6t+9Fb#a%NjGtn1b~B) zSl#bL>U{KpNmv3}-^~TmX7M#0FafKlTf1Sa%l~l&fh_^JpOyR15dWD5)~@?A{dooU z3y?Yg4E(=daT5X4Z0#|a3ZNefAI8ZjwE)y{{$Q%PSwQGAFc&QX{idUg4f*Rm4Lvpo zYkzd(Cl`%=yF;!L3F2Os*FAm^_maCmq+FEYP#gO$@tAAJm56|dQk*nOAXPRpw${{Mgu!zT8K#p2URGX z#{6qn{57Wkkslz~nE?3$4GCFyH`WU(n@*6X_HpGvftKQt=91|S7Hw*6F_E^##S!oD&HU|bcpnG#34JJ~$GNiYE4^KTb)atS<=d~P)6=D?d zOh*+9kISLA)%T=G;T4Loohb&pMW+XQgg=iPbXmnQ3af}7BEjWRSJ;NPFC^}M09>xv z+I#~m3mX0M;d;}zD6&QS7YqhwP`UzlZ;TVZX!s9^`tRNPf1X1};~;?WkW3V00NlNT zA}lYmgE|{Uasv&2z;ECQ-0jNKuL~omnM230DZ)e5LY8b&C%Y0^VSJ_+9@pzjfpF8J z#o5Fy|K`LKHm?em%0%3WyjS_gJ%AkoggGi9$)Id*K4H1p1yXk%AAW?JxW_79mrn&> z6A8Jq@X7ytf)Pb%z(rIri)w+XoP$(TRT&q}2qNpi*Yk_MJLy+85t}^Q}aA4wxUr@qfP6s)2R*i)!^I>L~?cZns^8X1n{^y6eg>EtyP`)^6S3{JmVN4oM zdqkX<$$unItD(U5P$oJ$Tcbw^N%no=YKS;OrZ|IW;)24XQWtiaP(^wYH;KJe_RA{M z&2OxoNrK>Y9pdUlU-fn~0+Qa7?sw%I2sr|ACUo>R8-<}t}8ZJdqrx>YYc+5=fN*<2Ybpf*D&Cz&77{?S9tGd1>R`{dXPDAJtcygHK?9cMtHVQW7i^gC9x2>H-xoW|CAkw{`me z8-@pvd^Enf0b)s5{FdQY0G%5}5>!+kl{(s;}8GlH$K?EfQ>!>XkMOuA#2ur+V3ze8qK&;rN00Xa;T(ykBc9|w2 z2(vs_j^~KQi)L6)eL`piv`mQ~vhioDkJhXG44edtz}Eqf(a{1iVnDm|C*k3-X3;7x zt!Q9MGx|5I*A|H_(FwGBBA(AA9d6rs8Nba9ylo<7L0p|Q2N(dwVn^*JM!twNc$q7@ zxFtGIIOs|`!SfLrUE0N~15S`_AW0@!T zz@hu^Nn4~?Ca5hYog~YRh}n}g;-Tl+0wld!&`IDu>`4zZO>v1~Y(;;=o45}?&!~TN z2EXUq?qAYB%)v{778~G%bd}$P>WZJ?4h>Axs?(<~(6D4e0i{$6Ibvh zTSl_GsG|p1TGPKF0VwQ-f5`(Ka^P;lsnXW7FT&LO1m#_oYT3L9@?!|~x?N=1J)Nk2 zSmk+nx=62VL}^kPv^c)-#!OiW2u>{ai0Z^+hPlY_F#>~D)a{_(5O1;&PqZ)nOH4G4EzGl$POa-LBC>2NQzeYdkSsByvP8W2X#bFz}rEI9oHw23p16 z3AP*Gbt1_s#Wu0|U*RH{7^B24(;0i_&Y#*2d->akNxrWpIK5}~$fr!y_+1W}of``< z<+(Sc`guj_1qr2BcXL!?Js)W9o1Bq z?#|y|T%Ofb{<|apx4&4pHB+b>Zr>d33Xkzh6+5%+W=trJ-(D(h$S5F~g*7GA2+I52 z-Q>rskEZacF4^iD-#v6Ghr1huz@^35cCsgaH!N`2?f`*U2KIM!oy5jm`p(t&LN|5942={yoqe{3y;hW zJm=T;y27I8a!UNe&8HRFORlcsW?CGkibCFZ^dDG{Hal=;i^qbj#40LBaj5IF)R_wZX^y#&YYvf7s zHG|O|hZ79LXB4Mg($=)Lbt--z$i$D?+4^;7zpUZtZ061S^s}|IIIDW+FukYf<*xF3 zg-eR{5-$I5r^V8wc$+1)7uLcjdSwC7R z`gYNfY;``?ly|?ag7>_xVOue;T4D&|)gO+|glwmW4*jE-E-7dTjihrhTeZYk#z#T>kCyvXiXXHp>%`f%FhOL@;k-RYy8+Py)^ zy0C9FR()REvBtK-m-k;Sd}Bk4 zP`gJ*nPUWtfT7;*+58vp4wV(hjGv1v>3yU+-}G}$siLdr0YS3o^ns;)s&!iTy(b)B zU-}J2@3Fa-*!#n>^v7Pc&lMFPUGM$4$y;F*X>szk=_?7tm47vg|9u|IevGUnDnbzM zk_?#@e?roTH4=SN=Y|)R#LJllAP9cdEMqLPDy)fa-*QoOHCv{OxIXnuifj#D0mmG= z9nql6M;VxaEoQ_1`ZZj!cN%tt4mIA?!CQv z^;3A!o+?i*`EOrdS%+je$LI9x){bV3+3OKM-6oV-mJK=%dsUcx&Hb@EsCP~S|4hI( znK6Rtlh7#n+<7l_-^YgoOP4L9?DF01Ge1;4(0=XJ_O!b2c5i!!`qR2S?KpiV5AEmE z(;7>opDYiZZnR2&S-m6k`{u`zdUHbS)43ZIUvoeCo4C_&vu%rq=Wlygk9eH5JjY*m z;`8>5lbmuLWS>N@=r!HELua+D-}W>T=BB@W@fMOkg`LLvvn>1n~@!puO{}Phe zvG9rM=-2Y`a9b^bdb5<@PV<9+&-dK28oQ|@ULLYh@yh!o7C+Qz>@{_J_4dKh9`ab^ zu+lTFNauEo^sJ(jHKO+CoqUfOo4kc0PX>p_jz-?Q72f#4u{u}V<-x6oWdYaATfe-b zCQEDIx(D7XlIyT>h+h5;)!#n+Q2&Dei-c!;61U&5 z^W~cZwMCt(F}Kg9>fK@SCVTHUOJ-yC=)?0P5B$I1Xymzfrfz!iYmsQzGh1@`_1)4O zvuQ_*jo1fZ!+TGCx;6Im%u;0Jheh9?SE^q2o2fTEJYBOE{_vZ;`AAQd2za4%bJ0HN zkDqy?T4!VHL*@OeWcMApe|ooUx3GpfVtA-a?4IW3%ne^Xf+RrERN%t6wzL@76G~w|j?fJ9>Ano>F^NY~RJI z9-qaE7mK0En$8a`&IYBGS~cAs7?YhkbL7)`hcAdF7Hw{CrB{P5>&|^1eyGWK4{V_3 zvbOila#ioYs`uJ4)AzG$?AzYFsE3hVZGQ~No*~V9E6x6f^nI1aBbx4MeQ-Vcy=u8~ zM)mt8@yqJ3$P$lEzwQ>#T^j!){M!3Ut7gGhk8b&wXCAbldg$BJ#`E=KWUiB?-+VbG z=`v$st+IW^>Zba+cB4rDVy|CWHb$Rr++B~d8j7UMUwyM<*UVD(H!jCTRHMer*5U7$ zg$wW}LM$|SYIi~I z?a}*pUtGDR7aTmtUiV+-`JY>f9dDg`DyxebeNK(;V*x`SR?TIj&X0{2-*=gs`RPBj zrg-rlfpC9+_@?FD#h;JzKW?77+_h18^`_9;S@FT8Z6_v*?Xj`HXYri`+v*UDu zWsZ4{O?_qH>v{2lbD_1tzE_*}Rp&Z?TK`3w9r603r~dw-Lje^pBRLlvmjCI-KNmJ^ z3gExWfM|i9VOlp4=tRgtV}Ls4H#tO$de5?ipg?*=0MYvj%lnmUwP7o4#j!Z7d%sJW zaQc}dIuV2_Wtbh<-pPrE-&D`y-ZnCi<+Bk>!wSlW^^5_SWGtu=CYLHd4pZ;m7BUGO ze{{%(_u`kcgNp3T#+;Iup=yqil;br!{O)G1hAJO6eze@BB^strKj;0q=Y{y{XOCKm zW8Z$IeY`JkuYBa*!@}gZ!qo$|_93fNnPIh44tIXW)+}8+wfMm6o8klVHkVj?U*|z@ zUk&^b0o%js>>2Fs;f?b*-z_Me@IJNEX!z3qN~-4T@oV6Jwm8BziU*Y(&i3?Q9*?~6 zZqwrK%iEL|-DgW_YGE#eX130QJ(q1Kr!Kj-edQUc_kDf;P4U?MH^z|(j#u>Lg5o2H=A&H3S3<;+S6Vi{ho$ceYbSMDXM;--N%$8w@-#U zW&iPZxPx%9$0@3-?AHF*HGW4LrP${;3|da!} zBa1rE&)+L9tK4J8h1%txB7C;<*Xi*3aps!uN|{^eNTgTs!b#@d{obDPr)$pI+i!bb zU$f%%>ShIaPxR#L$rbCHif>Xrw^sC_bV$_>I zj=nGqj;&@C$Ye{=K$EYw>7wplkJd2q3qr^W9stYn#jtRP+hfFK`gD381lk>x| z`g0R+mbCUdw?A4q9eL=TaDJ8aHtC$;qn|pWc)7D?gdg+FEWPbpTv~cr`7yGk(6RRc zX-YneQp8pS-mWKK7o!U0PB*Wf+L`42Qqxzww|f3Xwr`)~r5lQIGYWT7coPqITVC@W zzN5$5V~CO(7v?vaf^VF+KCgLSPIHpEcHrCXrH>Oj-n;h8*<+4rXkaN{!#b}a?h{$_ zvX$7Mp7y^Lnf~Ts)=1rHw%0rT?wzQcog>tZowv_b>(Sserd;;ilNIXnmA(G|W9_}8 zno8HcVLXhY<56ZTARyoz#X_~vBmy>I00C)<5Q<8ZlF$>1fR2R`1e7WXMQNcWk&=WE z0;32Dp$LIMD$)s%AQBQt2)vo+taq(vo$p!Sdf&BP{(!Lm*!#}j`@Zk%x_;&2h`f!5 znnFe1Zn=ic{8WeaB}ehJLY-7fL6{%!#B7iz&W+0vHq?s!t!fVFQItEqgkr z=jP5w&aGX-TzRw^&Q@AnKeU`VfV-bSUqOx{8O6J+YwUzbhqE={*p1+GK2FNF%uXvr zFN^oLn(MZ&YDI%TDjp0+A6(+1qtpbMkjZ)4zw$o$vvOJ=I{O&>NO3zIOb{ zvu*Aj3xpjx`}FUo>mcCycI@|glwT$B{YBa+(X#o|P;g-)uR`4I_)@Q(cpuh6Gz$uz#+R0@YLkO3yHz9^@>wTTVxxaB&cN}R+A#4LVJk;MnKli}+Y>3F~jPLgK} zF&k%-cYAQ>iu5bTbX%l*n3o`==s{Wn6jmyw1RqbzN)C%4pDt~aq&Txgk`P)M2~(mG zK#AE1zR7Tr*qSwmzGMb2TZ};%|71q_nfc8Wkc>@>5{ey5?NP+)5q1VrDJPFY_}d4i zpYX@2eiaXYw&9<$P=37x4?9@0Rp05F2zosXiV+5x8i*aAzZmsU3^MpGtX-)81YRxZ z;9)j-$usF&DDVAa_v_5B)a`HZowL`BZ0ut~+4}0fsG#5-ITrr)=kYnd#UcZcK+B(- zJ=bkU8KTmAj*k|#fc_%PS&_!Mh8~4$7lQa*KCJ#PCRRR=5|SBwa(T;ghyf(K=v^gQ zM>+blj%$``+%bh!)-a9W;b>rXviHKrzN*{;>kN2E z*oz8MqpakH^!E+3RwJ(*-jP#JRM;lCXDJHf--v+5J929XjM9#roB2wJ_%V|_u&xtQ zOivoVP&^M~5}wxCfyToq19<6xdU#bJx9rSCWYS7-^9s=9T*%3gL#gbUa$VLMFju7J zlQ{nGc__DQwdAcgOQ|lbp^TJZg57M$s5_kNHPPvmSNnA{>yvVz9|hmjN&xxa;<2bm z@2smhQe|<;R=!BLJL70r^mm z^0taerwi7&A2SMLk7SQbJ%z17N{D2tQ+MQaR#ca0@HD!QTZ{;5-TJh+BlAM!c7?*- zT?>h%jzr5QfxQQdgv-G9<-n$4?xd)qhosvsL`(67yRooxQR;%Uj;KfO-3oOw=H#7S z`z$H=&ET8Dh!D9IP*B!#uEDVDPoHwqj}SG{k1 zmz0$6$Xz{1W0*K-tTZnWy#HAw06$CjMC;Bf?*o9|Vy?CHoU>}_x%=0Tzuf+Ct+A^8 zhudS%C>ae};dsb<|K0jddv@zxml-4=e01Hclyw6Hzx{1qut&WYb(4PDy6_ zR0bRw;rp~P8c;Z8Ku&1Jp>KJSxiv@o-Jf~xtyO>mIs#o z&U^^0^!d475wQ*)PG+sE5m0!31TdDClg}i6JjbT8Q2HwG43?fnevf%z<|J%tho1=% zwM)4s5o5+VeIs1GxxxK#bjxNM6OsZIoW@wE%eG2EcSjU;Ay1ay5wOPf!91&h8OHR@ z7A>y;ZL8=92ls|MXDq>R2z#;Sy^)OyD!rfkv1a^r;d9o2HziZY$S~n{hrQ;4EBRfJ& z0?x5#y6y^3kOU#MTEfLO7%}uA{M=mN`=yWbGjQ~!@*~Z6^L3msZkR_N(nJL2y8&6# zRZnF+BATO1eRWReekHc4``e9DYw{hMXm(&`2&%e2!8`>TT9V1@zk^msr@!q+xa5}X zJ0*K<9oZ}DvMf%5qz&Fz)nHeYJn=>2qGoyi_uN*%RBK?se*My)Ds`!nbI$KqlhoHO z#;V!alz2jUNd^~J5aSZ%04C2?_nJU}XzSaEdY=nlKW*zFx6-RKkoee~)o089#p!!m_S4Fg@| ze6w^08%wJ7@f;ix>~InV5f+|n~%5sGbc3eRMD9<8lT^?+q@Z9B(RN4vTC>CnPyeR#L}1a7*(Q&!ieD|5|SiB$(FpMmZU1z8K3qE;qTp zHkz?Sm6iu)g$Kv9{=Kfy(E2&{^{%;E&YN9EOpyGG&X zO~=ww5;L?u%+_}PV)1!&(4Ejez|$d9n;*m=$OMNvTvY*w@AY(DJBo5Sctp9kqPo%m zk!c%H{t9MH#b!?97DRimF*6&x$TuOBxir#lBju@Dg=Ft9*s~NS@lFemGti72&VSTtQGc%s1bWSRD|K%o%*>a;ndLZxgzUGp4bkpakCc(-i1;fVf=JWz zj+!+*v~LiL4t@AwM{fPwhaI^BWmp)qsx+3-jLa{r@fc-18+YBZYZjZT)7W?FrlWrZ zX>T^dnTD}Da85vs6sM$da&+giK0F==e@=K&`QSUxt(m2sf&hxDX#DYee)VKYf$FA!_J-7A%v_OuAWgoKS$> z`Wz8QG}m}XJ^9@^<SHZ6mx{mNBW%9on3;QL1ZEFlJ~h!tuAAuf zM86ybtpTP&k3I|x$O)i^t)zmWt0M_dCJH1;?Be#Z@nF4&dIZfjU(BzNs2w?BQ9(-7 zmL*BC;>(+_TtDMdPM@TG0S0^$z%Z8T%GPrAVvCafx{!~*+LcV#>ix;uTxMGb28?4` z1AWi2+Y7mb1F)RNH%2aPKETec(%0n10pP+$YlmXe*5FJ*U~zbn?G|?YV`n{i?~dG)72hqp zl^-^zb7Ho9tu}I`6w7RtWi=os;oZc~Gbd%Pl2!htCL{i`C_CD~wJ<};%GADbn_Iaf zSCc9}yI4MdVNmH^V1Mh((|bObUED=SPjicx$A^QP`Oy9rCR{yms>Tzvw0Bm1K5=lw zqHmdeB(}J}mCod`usI>_#Y@f8v-CgmdWKtuO{3+py2(7L60rt`Y6)3p$|8JcbFFy= z!8ON}%@Z(8CreE;0+LT~$ng$}WUhcHBiuRE9@+u-i0rwNvx@mFGDI*K$`YZQqBwr# zqsza(B%Jjjz_c%O^Nl&a{9cc|li`=-XO#I%Lj~18+C^yKl2e=csUNOrim=L_Z6CO$D5An=3xP@?}(VR z__}}(G5|+fXkv4Awd$Cr$wtn_<@#UMPA?Ry5OBVb~7-RIrMI(||}N)b44CzcXB#0lXtx6Ol}1qDNy6N29E`JkY& zP@`9Dtw4DDrcSs{V^zKtRB2=L&DdXx&J(4?QhSLBoZPgCT{O}AeCx+zJ&!gS?}Q#BZBxTIkN%ExG1hc@1RmQ1$|Ivq2t9rrgsU__F(4PWzu$sFa@0oW#?(qh5 zwA95|e`P%wp3Ia5)nWZ*IZf3se@l@f&bxZ}0bXqvIQ^+eQ?HS{S+)BfYFOi^yk{`-5W~4Y=}aD8Bqx zZbA@=Yw*D65=|)N7C+!~><4gB?BmPqNV|(4ZM$u?r=K6aH;%MKn-8W4n@B9lY)`l( zu$I%a`OLSdx%DMR*=u9|2a9Lz72!1Z>0p5%yaC_7v91`#>!*4O%=AEoI)oEbn0`-! zPKi6})O1OFa3@D$NlS8F5UCxnIzKI{NxJI0{fc~iM^2IimoEC=R_|znm^qXNedU?y zQfvspykNuLsOW-%`#-ZT*-mlpO#QWXRwjjgU#r{Vn?784 zM}{W_8AU$6=O2zt6l*o9xU){if+Pr8tIVMNJn7F2$8e$}6dv>tfv5{1(cmVVRG(qyZ^61hi4ti)u?g+XS`;$UAq%a%`E~&EJd_`8* zJ^ns~O^PU1ep1|H|49+SKLD>z$XqA9=fVIc0DybB3#kLp018{o>)k53U-01=?Ho8Z z$M=x?+oZqL)lqZ}tSG#W)jZ_m$b1hjX`czUN?3=0pLTTVKF=+h|_nZplfH$tfxc+hx@@nk@XeTQy8A(X|2b+m-&}!wZiH-#jF6$VN%mZGLOstMDer&qG1pr7SP{R5_Hn}|J zDL#_|(&LPAy$U8o3W4#Hfp+@0soXW|iz$bR`bP-2ZY+t&pY0oj!j33J23nt9L8{LF zcp-zN#M*wEdzCxLfThh2I-&U{Iq+CjvQLxi$v@>|yqZ|_o<`vTrzV3vCjuH&B z7a4EWtt95-{9to~js05-`3*x>4pOqoe98` zY&Cp=Es>k79OO|?Wkh6r`8KN@D!GkJuP8p;eej+55&>_^OE6`Ut0e;{3Lyl3Qd6IG zFYq!%1}ru8>>XXriG|i5d?6^tEJ^!hxqobY=3Ie4VKWe+XLc?yv*coy*6~*R%%U|= zwFZcv-hz`nC*hI|m3)%8>=8h}s26x3tZSVti=LgGi+dcQRjt#mdhp=laDSe2j z@70&f1&JwFF=5_h%#(&zXhC@n z818f`cX>g;15OkwP3sg?PxrFw+%!Rr%S;%hX+fCO+S@=_(Cu`pYHXlDS#I}{551N2 zR^`_$s4Vq<35-t{3MGO3Np9v!Z7~}g`7Fp>|DlhM<&lUry&XCCOP#7!nkZulGZ|$c z?)^58gn)$kRTHY4ZV~*V&UMcPtOaIVknfRG=u3FVG9V-Y_hMBf5w;KShg{;XmlE}A8#dAtwfwMdWG2@T3Wdw)f5Fv#DZW!ejyAuDI+2C-$ zV$)UiyZlIspR5jSuT=t-K~WF#LBHd-m+sA`m1QKmANBGzYrDEsO6Px$w&f;C=eF2v zYiWz`2r0WR=NaOTN5yK+nqL3dCq;KjQ54@|L$E?!at7UN38gjphP2dOo(^_cDcwZ?0nDvXL>Gs5oq@YcDZ9=f-1C+Fo zHA>d8&pesUKXR+kJDGQ4DI_u z`|4@pU4?~2V+g%zzj1j!yQTWNPVW8cS8B4L1}W`^>ri=~>VJ&XnEP+9*4S^?Qa3U7 zH}=0?6%t7bAtVwU%6>}-RAw{l%t*(-zC8JI_U!kVw1*Bb`XycR4QG{j6K_u!&G*0U z{rKxs7w0s)b9b|CqSy8zs%^jtL+y8-KMCg%YM;MeF_~8PmSp#+CEPI^a7j}8Yj$L! zQEy7Dd6jyL4U4^yWJ+Hl^3kHwDw^;O&zTdG5}i>>s!R4y8J(p#MK&$c?c6_`9q^yX z+C5(9J$P-QT~w9ECi!q`RY{5Nn@-^!khzxvf|k3@xBi4s0`miVNu1bzYxAY)^jy~Z zjVH9Em>9K{;Lw1O*$wV`RLe5m17oib`W+L7D6C-Wl{_xU(lKLv0#1YuCO2_qu#z-7 z4rM6}nqF6dU-;;0xu7pghYiFfSQ+Ezf;f-#AVy?Nl30d5FwnEEnyc|AB|A?Z-P0k7 zJzwO}q;@V8Ww0Pl_NFR#2gVNlUbPVKgXK$-`h9vB@O7Xd!8~ALf`#d?{-_%2w6|jo z@mFhlSwkr3-Hfl&T+kv_T4XMblv&Y0j&fTPyRlr}-2!*Nz@J9)*o;jMjZq zd9SnJEzP4)<#oV#StxOld}M+r3%r3{dN*U0@!;X6kY#l@!4C)%@qOxEWqX6;LF^~h zV8X>q!N2#VZKs5G3EWLX0r=7R?Qz06z>6(>|}Qy0#M3O8oQp zQMBtsZ@4B-U4&I53v@2~4~?t`UqvwN$iS*Mk?6t1SPLw^uXuu@tG?T{oejn77g65# zs}na7i81k-p7f5uUI$J0O@;c>t^P6@Q|t4h$=&{G#Y@D04+S+26P6}Yc|de{LUkzo z7%{#z{Wfs=)I{g+m_H}{Z&|Zf&bY(8$NFZw)l9<^Po6PVnAfy1Ht!fw1WM+~fHIbe z9uet|EI%piITbNKZ`8E>vfrEdhh4*Y;IeE3LurdAe3`8-cJ0L<@~ z9{92eHzeqF!z%aGJF4ktx%xSm54*Q8*1TqqstO2a zWq~{5kyK8>TRdB}0oBeh^(#d zgMpU`>!7XT_IG9v`nH$7Oj>_VSCAXTi9O;p2Jv^uZmuYcj3q6WOd) zO5K1;9VY}U4~fx{EMv?h%NXqh57z7E*A6iE=g)^)b7#>uZ}LtxJ!~;SwvNljXs;}s3U&$|PRMB#?J19?QJVdj`8;2o0{a(svk2--K5I(Sk3Xpea8C32 z+}&2?TN4cFf(B5%$O7R_JQG@$KZ&-4Z)wU&ZjdL`d`c{(&r`N#oedVuO}4=uU^sOw zlDz6u%Tr&gA~4M$F~;fdi7D=zdkXNnUd`LqNX44xW;M6V-ThQN`|bgXbW(2xQjB33Z2df#g=9v2&oUYNK;cC}@Lue{{$MfJJ={s`4YXTqtkh&bL<;)V+ zU&*EN-^j6ic1p0=wPOVw!$yB(zqvE)?Q5tX0{!@rsJVL0tFP_0=1b{OR?^9#@Wkib zMSp|PcYCiv7?#>_o);;W(oag%agVSKaH)+)PQ6m+Hj7_NY{{(;mKPGE`iuw$jOY2G zVa_4TsG|x#ZaMPUlmy@HI$2J*=x1o*CFE#yY|~IeR&UkT81p$AIFv!iyzrm{8ci^a%#3 zgEo{gns_}6=o@-f7;9$n{r1twx0;paK*3t0By<@1V-&{esbH*wgp~Xh_An!ZXg8c2 za27AyI_I%;R`cq5azStj7+P}&%j}1=rhIjg7ah|q?MTR>8r*_adzFva$2Bjn+XmxQ zCYp{YbZ%1tHW2>6mlf%gc!CZRI3oc1Pc2MGX$wZbL{{)9vR)Z3^7HTs#+h1)wO}Hg zMdc^hUji9|pOIFFIUe5kXZJNv8gBQMHY+|L>qsZ8&)LMYJUv|O6CVES`*eJg`PB^v zr&^14m}0d34bnqN~ZM#)>u>R4vg{9Ly=QV=dD9)9qHqM`V*MGNbmwoR0 z`{h0#ZXf+sX0CshW5C)|`}$`8*T--6yE&ixw^}42RQ%_%Bp>Bk6Qbrr{5achzZtf8 za(D1%mKZX?`px#rVMpxL)xw zQQBkl6l0m+kHx`e|JCMwSW%wJ=^?+r5yggs@#{%cmdUn=yaeffRSyK4g*sFkoN)^O z_AD~4{ca+d@qadki?T7~`qv`54F3|C_j6Poij%1Jfr*$Mxdh8)uznsYc?R(jq)7=J zW00a=`{=(&easd4bH;xoLP=<5LOYkQCIeVF>-g#4fjWA{MpeTFIVi&S>n&}*=P&HY z>FX~tcu>H=5*AlQ13xdLrQWC|5f}~oY%V@URpr%Dvz?}+i*-I;_@>}2$|_f%C+o$K zE%?Pl%e5oN1xOlxu1S_?LT8}Xsqgl*llv1w ze})H~*?yog9WcyK%x~mK+PJf2MJLblkhf-4C=M#4cI)#$e_m1k?R%^7JJoK3shoQP znL`MTQxAhpC&GFB?eUmKS~$Bh8KnO}Hofadd7`q(ng%G^!05UI(O z@Jtpg<5sL${N$-RwfwnaEhvxZ0^?t|t+{S%xbe8BCEQc}05c(;(m&?oz!ezR=!gyl z8^81V7t#ZzZGDBY3-=(L0gpv|R)MOvVT4|O&|fk3zd$p(kH)R#@!)Doz_Q~MTd*44LEyEL9p2Pi0Du8! zr+HUneR)B)enA312)Xz%I%%c>9rgrL3 zDH>4R%z`?2>7RzA75*iv#Ry>!n%9`W1T!9S3)R88o~3p@2({d!u;3u$tj2hzWu6^O1iuBdk0z`c4}SvRtv&&7Feel#51A6-eG^*X7n%h?yV zOPE}=qIR%!7&AV)fSG5?;JIaPxvJd^|N5tUGu2oG|3S;_ojG}wF}Z4Xkj;}OZ^9|$ zcMPAowx#r5{46S?RG(Vwp?7`FJ*FuWgYJfT!k9d6M@Ev-ynr|5I{YwGUB6|So9EGln#06hx=?u(p3&+HfDTX2HCy94b z{kNAv5i8LW{AV`8;N*=K_D0x^+x4E!JjdyH*M8KF9OX~-HS|Qx``nmTwfyzO;spX~ z_+#*7XJ5-SQmeWH;WS=%I!7^|ud%R#R;*F4VIrYV9IELi>K0|fb>f8U6GvG!w9|#6 zQd{F6;%NKB_RGE{OnTs0f;-F8VSp9xD9oOLQ4IT|5}$)arXFeal~JI^it=>%aj_Fq zQV^a1VIqy^pHG&3WjwDsFm{U3#~Z!(9c1uTfhH$kkrD@}Dz{nS^&3@Rz9B=%TfslP zPVSu_sj>X0I1XE(Na7`FARQPI%LieiXs%Ftu+*Vt32i?~fGU+$?j5j{O8M!>&J+*L zxE#dt9O_&RWZ-kO5AB*qQyCpS7>ZxWY2#kdHFOFv7LK?$q{OvmLqrCzHUpyf|Y`^rCfwbuMJ^K^R@oMAU7tWi%Jf zddcdYoWpUFtGrApKf{sA#YVvu3TDX0sjkuCFBdCh`^zWH85?Cl#+5dgke1P1-z}Sy zDVbf|hbHN?A4{Y(0nQboOL2mbfG2%2tX+NQcX8oxzeMQ-Hy=NZtKjLCuI%rNhY)5j z&(&8~moylU(Z9>e15aENU8_KR57-eV3_UpiW9hq{ZDn4MUqRZpRe4#lQn62?I^+zi zq|Wziw=aV_plUa^_v3JX481& zr5ZeQ8?!;98p9e-GI{Whx13TRMzbs5e1J+o(>hOQj*MzSDP28lj&qvVGVq_?Rg`w=Hr76z z7>=C%6zF>iQ0}*AR9NspK#T`E9;a-FR!b%}Pd4qySq-I(gTKb&f} z2n|_Faw!U6d*_&%b$c#W5v!&GN=4|6X0c(4pXH`H@@A|>B(gw{fzv5a%^*eoo7#Qv z{^`J1i`$fD_0^DW%a2p6?$;M@dd9TH1nb-RWMufvi?W6_>;^ZWWO& zy!r{QM@Oa&+IHl!0hR)9W$Cky>IJcJL~81e+`Z~;K*z0ig{0x&M70q#DsIT*c|ic@ zok%^P&iOWBf1X>OlDf)ZOwyGvZ`cOW4oM8Q`X<~_x32?XN|e;eh>|vOgKYvOt(tMd zk$3G}o^~&*VE@RrR^JN>=?JuV*$_mprwT<5mvkjL78B7tJZ6KZN3~T4=EPC~QSOn& zUzkM+b59xB@7h_+K%GOYYh-|>{<4V&eBt5eSn=D+YC;1H{G7*9eNkP*^a)76;53yx z*RH%$W)v7C(PbLgTP;Y=n7IB3u$e22^J$XK|Hx!WC|MlK3k~z}v9|}E(zWA;+x{5~ zE}vp991$0`!0#43P!C7`2ZrqU9~iQRNdPnv`ebBVm`?%)*{iVeZ&$pYwKlVZ3(Eq$ ze=Up!C*3$L5qKQC52XXjFrBhIGtqB7Nm)8Kw*8vAt~aeH-!!njzoW{>F+GkEOU*Sj zV_Vcl*bW%$f1FNxsOAiP?i}OD4ek5V*R%pQ-nyTqi@vJ?QLRd~6hu$7$gN+p&;Olg|O;2J|mNGf=sT+AB4_E$jedu%X5q&!Nz&#!in~mhQkO ztxiA&B+x$N$X_CjR|z*rFxnakUJB=*XOo!8c4j16o-UVn1pC(iP^#HLr)QSpCC!U$(GwY4U`ti&!Vp8KSV%Bk3w% zuhVKKj5)zh(HV`$qvkf9E4KGKf_`&a?b^k7E4L+*WGw5Lk-(0n1aD;Gv(y%-<}2%q zAY5cC&k2-hn{g(J`7{V{p{pCCU7Iy3*jhH~A_a1eYX?rm3hHUEmJZT+WXe6(@>@p@B^bGrkzbOX0eu4W)`T{g`C6pgpk- z(ETm6@lB{S$8ukier9j*RNw`V3u`v>6Pg9&rFFGv8lV6#HAIK-?DZ#`x~>ST*jFg$ zI?`CBN2L~>sV4U8p)mL6c8hIaJbgM`Ehv@0rH&7}Tj6VjPv&hUQCB3sAVzUhv;R=& zI&gVWlvI^~^h~<$=nKn7>2yGulZDmY7qf*CHA0PN{_5k+x{Tw$Am3rPd2 z?Q-tOMr6{xB~xF6#gqW%iccp8AnW9yzqD*rNiv&#Ud9CJ_E1%IUS$M-QS59l60N|* zdJ~L}b{-XeqOzO=3myK^)UDr;8<;zdxajfDumXWTpLdnNE}0y!$qEUnqpkqAQr46I zG8bmGLy{-ShAS2vCXC2aCF`Lt4fjeH*clXlR7arE%X_bbhO2u7uQZF3&W$BRGtK*3 zAsTfsUcVK}-fm`e6mC`heg>sNe~Rwuo(uEQGp#?%lyAjjrlbgSs&%tk43IR46WNH8 zI;EkAp0#^xu77Iom&hbI>tGrD{jD`+NA6OMybzkYt&GA-Z(45uq%alExZy;THIb6! zHyv3s;BKQnGZaktSSJjf97!O1zn{G?%}~PrK7)8RNE$wr8NP=008k*5TjyH@B0~t%*zHP76 zQ*8lI`{VbbSVjK1P1emH-U38nQa(s{U|Q0<~h?%&-duN^_e6db(e7F;oQ`%Hmyf7#b7xY6uC zsw+SIEMK6Ne)jBo*DIGtKc6_Q^J4ee+q>nQT^=R$zy>~m3T{A$^Sq{m0nT}$UPDjP z3N-G3?dZ$eF`7nMvdhF0kMs(~wkBXx2S|=_jo^)w;Tr3wKS2sprtyq;r&e zbVGm_Kc&7T$0?+*l9&50q&)j?DTW3X#31A9$ILrj@xhqTncRT-A7xlm%&+i6uAv$S z9?wD~z%jygpirt+eCqU)Q6LL4mlTkv-JvAY{nby9eDRW02X$j9j%(szPC&590Z4dm z0PQlhSNbR(;6ueh%+5Z5k<~Nyq>YKm`UsXTBdhTj=QR1x6OvGZB-Kj&phTuCG(WDd zGeliPck^&j=enG9sqS_TZi;@#x-U4VIlpv2bm!Eo{rQtohX_&Hu(=|c*1D?XfZ^t@ zMN&#L$(I1}!oBBtdN;Diz^{iH&+5mC&a?JE%`CK>Fn><4Djy5hUs%WMEyff~O{O>{ zXwMS6R$rE%qB?z2+<%vs$>y=uhQh$m(y(DW$Ec=Cf|_&GLq^)w7#n{_QRFrsK!{CY z4+*!QEi5~@&04@rsHjRZvpO%HISs*JPT*w%Cd3#$~`)q*E&Zh zKL~>Yk{AGl_pOsr%*fbu%BfYSC-O+BtoYqzb3ln*g{v6$#1`EDbQ1bA2J<@2UO8Pp zD~@gqS-N4qXZ0PGZ>IBR(4iK$pT_jk@TjV7ef+sWI3K=j=0sdhgvvY}2!-QAbi(}u z>miH`-*kD(=t6S>#m5oTMYgIKX(PRVIb9eLlO0m6sOIo~xfQ%Raz_>iR_)g{QaMaK z)|~Hd;-O{r@ooG!xm}ZdiSba|f<8pjp4L72mh5C=UqevC&)T@(={I^JpA*i+O9@s% zHwawx1A%8;^&M*Pq#E$u(U0e!9(oCSfAByjL1_Nj-4BHM8oX{s)(&;5CPFU~cN-us zAU$#e`hhPMFLtG?CSGW|&kCdeQK837dwIY0)cdP`;Ig5m=7N|6rqa5Z{c1!9ihMMR zHMP<0oE?msQh4?r_8BVVXDs0L2u}E5tuvQBhM5`FL<@-32~%8gF$2No(>CiEhKP)* zPwpg7N&Y>Zp_c&&9f12rz{`Xv`96-ZcX~?Zza2q1cKLEkMNzRfw}1H0nTKu7zorWz6Ae*aqhR>`Nh4sLinfv4 zX%%n`(Vdy%Ia$SuU;ejsE!G1+1)L|wu(uV&@cw-o@K!@G@H&Q&o&rv~n1j$>I{Zeub6x)cV$Rz{Z34Q?WRsLc z4u-Mksa~M^8skP*);?YI{`zzRA_*9HtB-D2@8a{NXTZq)syVcWNizN%vW~{yYW_On z1;?IZ_Fs;S!}~#AL+7o_-3yB^nDhr9NhltqYJ6s`i*RBdMj4mzB8VK@8{F$1k!`K) z?{Uc^73fqS62(i0wC8uqpfedq+Ofliuw6VTJ*mMNIM5+#?U*hd5wgj2^#L(2?dKg`%-Y+%0)c_2O>D#|CLLLG zezxV~;!AWkvtdWBzcphekOs*&fV3vUpdt0WBSA(rE|KYR#s!BzZh0dE7;5kPoHjev z%Kb^v59uO^^=uR`WA~C!-?Jfq=C?Z($@x2$!J8}951Oz8NOa>8`VAo_rApJCD}G6e z(tFYRuavGCC>XjK!pZ+-crl!hcrYu2bzR&DXPfKKX~z>oUv58vq3o;w#Q%%QA0Q;H zdXGqO(!~_zIj^GSn!>`?@x~NboUCX;`X)~PG_=@^RL-esFgG7Gn+EcAu{t4{sT~U{ zCbQh{6Nkg5inG_uT`w}%Lc_-VE&dd8A`~k4j-QwL^BFjnnsHVP>^;uh;f+_(;i+=t zCYy!34_CJTA-=pL*9%UOBE^4+q;=y-#f(rFQuqTZFVy4pV*ASR_MklEX(%zex8&;; z=z@Sk-Ci8I;mT4wm=iI2Eg-XMw$;10#fp{b(cEgRP~EU_rkrM^w62s0w%Jb$#DEcN z=Zidpw^#^yrpTnq{4rbYsmZ}_;{sAXo?UrgHGMTI8>eDtcNDw(96|6{@RhI^oFVG~ zXmz$*=MVdz9&IMG1x?g;CX2>x2vc<+ML6f-Y8w98@n=Rcj@7F5ZbH~^ zF<<$z=_9R*1wBjQS+(8Yx~-ucDu&b5Ym&Fi2{4E;J<;{3OtNw%irB4RbH(?(dDYtc zW#n9%r~3Rg6e}irvsqksoBZ=S#ZcBsW4uB@1r+A{6wM*%y1g^X zcTPTV-a-bZ>`IbxFlY5Tw)>@bowjxh;4Rmp6`&0i~@kPsXy0cm}*z(ZJ7K0;aH9Qx)WG;&PxmrKv zmhPSEx^@kS{Vz)9Ma$-{pX#SSAK8=hQr6xl51ThR^y-prAM}QOUPS%ZfAmcd zWqvur$M+NKNz>%;YjsQxH|Ka1uGBU13~$uB{gcANU;q6S|NXQ4FdRBjHwMWe1i7pK zq=$kfj8v_7eyKyyJirxgVDW*%=wI~;K`wCjQB_T=`F4oJ8y$$3X6(mBd#K4ereIhd zSNhp~+bX6mnZ=I8k;%deNP==`ARS>tnsgZ1sydCtlXM!%mwD}98_x3Z^UIeY5m-Nc5xsKD__@{4hLD_>5;?GK~+++caB@Npmc) z?D~o0u3uM5$m&n{T;9Ll*DK*L<0R7)!Yw$rk0R_GhoM6CYR5RS(Qx?w*A?xjCqoRx zzk!@&)Ue;^T%Q7Fx6T|fM@$~-&&zk65}%}p{pVHx%jaJHk*v|xE}N0ZPKTcBeA?}L z^Jk+@)=zz6xxQ_RtPRLdyUWtf4g`Kr6aRkjVCf|-`95!z5W|YnJwHWuH+)F@NA|bx z_sg&Td@}p0-QTSXpWKnz+W&ItH)q#d@BZ#@@&CQ#|2`5s#y?Dy71yt^5~_Q;x3P{w zsRhV3h-RtPyczIx*5K_y17>NcJ;7Xa+;GgVz#W6r`|RqTH#geD{v$NQFZiQAS#J65 z|32G){*|AX3@l?HLgP9YN(!vwfOcpaep{ze{F@S_Hv{)=pr>N&$%H3iKX4MtpzM_` z4N)j1^&lnnY{Jr?t|en6?(Uf)kw(3Xw|JB>I$3wNf z{XN5o=_Y1KDszMexgTD{}8aUAwUHr*@Z2z6vt_X5FAgI@Fa|p z_rD`;zJDE~Pw%9!Q+l7D7OYH-=(1sYhow#mq*Art1yYvOFRKq>0-L$KA`QDyj8nV9 zYSFP}*9khef)cI0#X+L2u`boqPVkCcCj?gc~U~SA9w*5fjh`2;|(Ha^@NboK@N!+Xp z_k~F0cXSCH?2K^uBLXx*2kiwWdmaXjsZR)u-yD;0&*99F) z<&)4XQJ_(8yViMVpazRavt(}>F!LgJOG$FIpYS}Wxtfe5Psf76SW9NJdf|ZZ;`dYo zk-{?9qNg(w{3-Ntj4{dxw(MmMmvbi1c^1h}4{VioU@T8UbsT27&7+)2K5O%Vr)J0Y z^O#8IDIW`}%P<}3CFr9hi*zPJO#`mM>+YlyaO22bMiEArA@!T8ffj>jbRjqzzXJ9# zW?4@Ne#g^0WMq{+hTL6`YYHx2nrp$wp=x7)Vtp_7!PL5kb^FV8RyvFATl|N1uK4hR zxU@SGRsxg;V9*7visuWCP^!fv92DyK|LIEq%hdy0g=I(q85;vxrG>LUIvHf96Kvbt z%L#I6i-vRq@8;1k1HsqSk}J{eiQa1`u*(|6uZK$4KiZJtS?wsWblYuEvD}Bz=4&mu zg(?uXOT>nYMRDeI4+Bn10jL%VI!1700HweJ%70n>|0O$iQHNlnK$QnIGXe%mbPzD? z`WXoo+#>uhfj2fDduD}Bj-6pWcJ0|bN$<7wQ3ArFqGmZqcZ{|Nb}iU*@0HHJA?ZJ~ zRh1PM5|B78oban)QVB`Ih6Z{@L0OW1-zRes2|+12Wel(eDVQx@1SY4GD9?6TW!dA) zePSyTe7U2qU8*?u>K1P|(82EI4-#ri=w3i^ILn|niP4-h@KGx^366E7eesGYsQw)vw*3;u((nj(6aKxm8A*JzmXIHX z?n?=Ow8+}EpZ~orExJ8@Ci5ePBfG8vQFed0>+<1RvCXHKy^|J8wIm0fui>)c=&}W% zWx`w>mWfwQ!xx0r@`QdtS--_(eNiRKUJB?^o-4UT5hW)~V3dYP$knjYDau8BmWClW zZJjm@YDNUtu2FU__M9#@Q`_6S6y}Se4#pRaOOB_W4c}W8D+IIMLKXw7L_vAG9D~&F zGVCZcaTSaMbjNZaA^4_I-_h4MpE;{@Xukn=o&9{B#{4q1;g>|;2i;G<;AtG?0);8X zNQfkGKQhgC#mGxixLeIB=Nis%A3fu_?p{G4_9bu3BH<`wiS&6|70X_$@4ClZowPSG zEh`+q(Wp%~d~;Ff3vLZl%t5 zS-AKQH+tv?gWQBA#hc`Fr7HH~{}NoeB<SY0;7Np^;PK%53)LbM?NFdnb6DuDs+PLBMOF@kpeeN6fawlI#wECH96C3aw4KhAxsb6*6A*4oi zdK`S(yhvJq=jM&_5u%R_js~hn84DM*g^Lgwrfx*aLe_$=PrS=&QVcooGJrJ%+YBNq z18*TT$81&D6Yj4z6Dl{W(=dI3gzOKy!sxGAjfVTPZHAzl{XO0P|BIa-*g0$1&@X72 zBXNi%0nBM)N&NoYJ5EXMc8i~P`lw*|h(*$$4bh?-1Ns(Jugj-hc3OHfTVJtE2u#YBI@7tmu8*cZ{?=-`0A@U;N- z`)~uk*t)^~7vu~V*hN5W1a8l!CxFgC9DtpTNhWZlT2tj^c)4nTmmNc!f_G@UggZM0qcSICGri*TA;73H*BLFCYRhhv39CnnVLlXc~at_8i z6W9qsW!VZaJ04IrOSowW-3p2i)xc4V&W{4FeaSJX)a&WCA?Tf-3_eV#>X#TXd|0wr9T`er}az zQJL-b*s;6nz~vq52W4MLntP4BAA-I5CxdfBKmKuGhX1KmNub`xzZxD{H3w*y-3uG? zc}D(Q-!ISVZ@zbWYmzCko<7+xLq&z+HzRf$LP_S!QuxeOBF5=^#1*G*QqMhMaeFV+ zPLb;L3HvLs?aT_(%*KZJg6>j6PU8}B_d8LswTpZMrKBb9Ai`R~Kn5!iOOB(gBa!(o zG!f-NPuE(*K$T)3z*`OK#UDao_XT_4qRs&exB(rg91)<45IDnv)*Y6 zRZ383B7$KO`@j5#K0^6V>59yWc4D%3{@Om)f$zy$;Abq_xGJBqZbPo7YgP&O_-u$ypdU$}TWsG>+ zxeoJnJBRDy70tj`2IvvVYo_e0ozc^9sHE9*e(ZOEO`cIOt|a-a3^Vm7PDQDjCR z-oZ@tRJ|rXu7RvdnYZ9k+}SeD_=Q<_l+}z1);hgt-Y%rE{@(GN)iURFm)sW1ERk3C zP?+j#iaxW$-T0MAq0!0p{89;4`Zy69UXmc3Q3#aZ!4C-J5OLrQC+CsG*|8@X{K6)l zur3@EAz)3w7LifR3m)(kE`@?a;`-45n?Hp%50O{{yv1bBm(air@-%eXmkV_m7;uo) zEP49@1czKeP|9DRYN-2&6e658h+qgBLl&o4LuL|W{5d>QpNW@e>jBs+Z$uZ;uVg}| zKm{wn0G&}mbYR2NILtGFCu#vU9wZ`gJ|yh5jg_!Fi9v9UtEJV zoERtD^#V7$A4RH#cd5b&={jDiP#GF5mH=CKC2|g|l9fEl8xF9R1{}j#Y`cif<@$07 z4THmUW&y>B(Z!i+4#e1oD1(LyBa@$37Od$k8+Inn2gyLEJ*ago!Wu9IDuF0`c_!yn zM-Zp8V+yTNHIB6Z@^Ykf)gV4WaLv-i;a<$p%d3xGkIgQv!{$D5>&&dslGQ8hC){4i z(0OLHjCsOabw0w=IHn=^>YZq)d15O0F%2KI*4msGe}!#JX*|ZjK5oca7vzOflDlH} zLa+)WRZ~Qf;;fs(cp>@V>uPa6i~~F&0x+cc1#q2EW3cALevS}ee4e$$RG`{J?Y1S; zlB8quH6@jy(~f*n>hG{0vMBG^lozgh(X+5+Trj`a?v>UKy-g8!ZcS-xE?VpU<|KcN z%CkI6&0?v&Z!K^8+^cW4D6ZOF#93gW*XU2!Cl%PO=otQRbo7;g#>mjA8U96g6jklR zit~0AOULhrLppOLZ>L3%9K6cEDWSW&-S6Sk-1313IcDXmNlsTE?<%!>Ri1ZYkEg=1 zr1HeJM@4H2v>zIG3(0Z$cn+QH_3^b+7(CT+LbbllPQ%%?f4z^>`UJ~ni}3UEmmK58 zQi&!S#=Rv$WyLpMaJpXFY{pSnDiW%`_sw5Q(tfU{xDy`hrVLF4#Ln&$IlDqtlJjs{ zSB^+JF@~xgL3h6Z~?76 z#t@r{@FgKxs0}qkl?%0^t1OTrq#e0YPFND}%lgB(;{Nds_|Uf)gL^^LiwD&V?lGh; z9^CAJ&rcHJH5_H((QAziDenh=&@JFklO+3JO*ndc5Tt=5Oh`gC+S_~;TigT(yZTWc zF@>fq9F`~;ybh$0_uq`ZK8`KT%+)fwP;gO>lcT})=9XH5y}91JV`bRPp7^j{Y&4r) z(EO@)6F#wq{LotcUG01+{YvD15^vn*r@UEj)QNfHuY42RdmH*#^; zcPeR48Oa8I9^{YPd0%PEHpTKqun%KK{^P>o=AGr*iTBz?s;o@CFUYJOd?lBA12; zWw1cz`Lu;v5>GI<<8jmkMw0Bxhl)lWDcwfo?azCClWihN9QY6*KK%eGZ}DU`eVn6gl_v4!;ROp=m8cvG2Wu3rsb#erq=BH z%uAncc?56&wU&<-pB=xpt1_cVI6^P;YG&x^m!9&cTX$|qUtTQQ9JRFSguNylW4>d` zbl;k10TwNS*Q2aI43`G#Y*lhzpF6d2^Pk5}r2LY3v%AjWcVxnU3v$A0Ie>b+O0^5O zM1w^NcdtpY)I%Wh4&EfSpTZ*NrE#YEX~`_v8p5NFtvDxeDoFAH+<{O?UK5WdgxMJ2 zXc)#9w4}9Tsa~^pAc(kTzB)=r&zI*)Dp5EE-isS(bn6IaVp+Fv(zk-UE${>jB*BD2 z$RJQyy&O_xTTC3n>cz%&Z=D|p0=Z-2+_7|7b-e8H1({s>+^-saL#6B7Nl_lAm~7Eg zRF%t!W>-n4`rd+QmZ^uel}zs5fk7NmFaPiB^m~6gc7_@)x0O|v>r&%8)Ct=nGw;ZF zjd2*}ufgZ2bH03w-G1CBQqqc(?iQ&KYbMLk*(l0o)Wmw=j?rl1(ZgbQq->Mw1zJxg zxr|r-HN#dzAdHEJWR*)WG#0R;*PbdED zS?gWcGSs(%Xz;O?SeI~^x?y#FR*sT~d23l`uFJ{p@>U~q=`+*(#FphM_4)9QQbB@u z(X&lY`-)rx8mdO`KmDlZ+5S4ip(8H+vdZ~5db(@FJu9`i4^hseCjCOYmW=AYSW@}) zyx{)9OLkNG}mL@Xx{Y_>A0y?C&wO4B_&vSikS5MW$|b7oewhG1CMMdFV6Ms zd2_imx7EEkZf1?_KZsj*0=eWNe@x@q=nuPD-CH}H_MW-$Dc5sn{w~k<@`lYX4n9tw z+S`_AY13zQ>GUJPcDvi&6K{HK?g>xa7~Hh`%GlY#wiahymGjY5h)X;T|bdID?e zH>vKk**t7C?weQU_I|>^?|nep*fzaxPqFo~8*THRI1ClNbQmjq5U6u-73+TaVwdd) zZ|;oiI3aRGd80(K;B_ID<$^|ggu_CwN9zl;#>bx&suG`CWHW}u(_|pVAi@h7%{Q!xb!05K#btvn>O@Ca z8fWdiS_qe6AHxz-Cx;SEC~`qNEV~j58RtF%01!C<)Sj^!h)@{=f?&Py$lbUVdwZvO z*O~Y7rnl6k(P)?Cx@-hR`U2I|)9+>RD##7g5_BRzUsy^mEPad#kaZI8q%Y_19*b0X zZZ2+hU_pyFlcgVjx37~ct0~3Il`Z<-niAk9CW-JapqTVx3psOoI27OpK$AlhAfjFz z0y0)o@-R{@B3`KQ9Da}T<2}v5R7%OXwaf&}!wd%;5`0y(ePr55!T)MbXam2kmEBUqvZX!8&UA2PDi}sur z+rGiPN5#)pKJy3OhBhCWf}8Q%Q}yEpqQk0vjGT?`<~%T1F1YHV^ZCI~!_un_0&--X z&pnG6)7Vn?>|*l7iJ9k56cblmC7V8KEpo9cYv1{_pqaRjkk!-v4}$dyG%z(1Qofv! zbkDC^yL^-C$I%VDLIc(nzx`A>{LsJjO7FzN80|uP@l9tHBX3HxV*R~>DClK`j|o_oj?HAPZ*)bHEyW11Xwo5uk@D4&p{r+OFEPS> zYfLg>RtxJ7TEUMA)XPj*);0ooOXFNp?X4zz5YL(25BUnj&C*RGoK8rpSM?zRk5Th{ zLriw0j>#1kP{KPiBrV}&LIkbDybylkTWm9f2GL`JOGF7Cm5WKh?yaB^VZ#B}L#%!U z8`5}Sj*@`*m8gg?F=YT0Ysh#Ok0G6MLHSUxnj@?w5+MvQ!!YMvQXyaWp8ScY!@n`B zW7A(&C63n`gm*UTJii#PlXx0V?U(4NliY0g&?wGA+H9a&R(7g%e3{qX@MIs6?QQMX ziwK(=gk*oQ@7_mqBb^KWZ4hB z@UAG`5_;y$<&x~4&Jo3qCH$s`_wRNp)_AgWuSN3J9AnQF^QWBJ%pCP&u8W&Wv?=x& zJ12+rjF;p$TM65_>I4)Y^ig{jn9!$G>HP89&5645zOgd@6-kEtqpuuHGTi!)U8M!s zDD2?sGdeE(_I80&vE#s>t9Jxw8p(F7v$_hee?KdBGMg_P(4JA8*3`#>S%=e%SG)-@w*C93rIOG5;u&HI-+1J?N~-gNR$^k}MBw=6EfKJwg5a zt0B^3J~ADnFjj-}mS^J>nB+1t9@3mhXom)=(+_ao!B%Q5l%UOqY?EBc8zS*a^$fP( zO{SoBR=p;cy*3ZQZJ6>;VAvprlBfLf&Nt+fVWJ-vOwqBrg67DGg-Pei6%<&>S5ZKx z`2983@j=@JI|2M0V1$#18CT}l^5~v9hVCJG9Ba);fE%Xo$>^827MeB{b1>7m0vtB z0RoX&Isy~d)ilC1gaqIg5=~ZW!l^(Q6`qQSsO+1RBN_;9?_%j6O2?p{~9yWmW4j`f0?z;XmyP7g}v|2 zDb0+S3K*T4di{=8PTY3!OOSH zB+DdU4%nP*R6I=w8oa*Z(gQ^+HAmsNulw5bBR(n-J5;X3q#km)V;DVc!gZ~Cm!Ro* zki~^f01ZaR%1* zJ{fT9lBjA4NZuA7@82?91v~ihAOCpn?yu9%3Vjp8^>AVgOCO!YtR`ycvbGbmY{SCb z5A6xl9d+bZ>LL<9Nh&|^z?q*aGum5<$-R|rw>8ChikB~=kjwcTV=5FpJ9z5OnsfQQ zLQ&fkFhDj(z4(wL;GKxzm6Q=A$DAg}#W$6DvsrvA_9yEuQo61Rw+@+CmA~k<9$oWXI4)DDL(70pS)yzWhTw zqh)u$NNhDr63zKoS0c3<_Ybn0kfqme>ZQ)?nA}Qy#U;Kfxo$`)1{@Y~(j@5o1d@!No=Kr}P<$3YWzh68n>`Tvm?jm*buEnaQ z#%H>py(@M)95W$RwrY7r7BG_etIVjsedcn_VzjTrdiS8rO4gC0#kr>h6`MI0|Z+7)B7%lS=9kEVyqI+BFl6t8RfgRnGX`@=kj zCj0CDt|DdM>A%x`J^gx+IKF!A`t!_X_uWj%k7{|8=DXe*$tNklwV*l6;cgwheLYqD zI13ZZpuktKq1qJ}Xv)ixX0Q=N zHmC-~Aq3_ncmf4ESGAlQb-?s>vP{}4^Cr%jP8wVWs@DpvA@(sZ>Q-4HE$eHs0q^lN z7NRCKCFiXsg>hiSS!hYBJ7)00%7>QZ)(`{`nmBBzfaQA&N)bh~vXg%RBA~O^hhc-z zI@vTqWR(#aoHm2=ATxdgj+6l4madi^1Q9zqUIK;8i5h9aAyPWOLcf|r=t2p#wdP&~ zkO%IF;-teS2{ds!E*p7Fm5_#LDjmV1raNqs*AmB=F&5jwyr{(^OTh~NoLe>9lwU3Ji^UrZ&rkT~1T&te5!4_}R*&)JvM(@m0antwsT4v9vZd3;6 zJOyfyev&-7tDL7il)j@+l)i6|ZNPp3zEgV|x{e0QAy<0R%8o0ry&}0o#1$K*v83oW zukCoFo;CH#P^;w{;)<#FA=J?6o*?5Yo?K-w*ZFj%m9kg;mM)Le%BELsR^c^_#EYJa zPr<0_aA>1D<-m_NG_#&Cs7l}=u^~JZ;-$qe)Xa2P;B53QU=aeJMys0=#cHu0V8|gv z$A}92Lt8!wl4}LUXK7p~q08|KtT4)|&} z9JIX|tHu02U)L-F*lLxD2G_xpV$^9a@d`K zI%mdKoVTj@(io@ih?NIJLf2Xm9UosYS}}DQ&&>87c>__m0hdswRBNh{{tc#CVe)ZG z^?a!WA8U$UOcyo;-NIA%j4JPvOp2~uQ`c7C<8^IGvh2`-o^(M~Yap>1tx-76Vy=uC z)qOLwc*M9W)lS%}LiHcS;+2Qf>*~Zwxn8TVqVWYAMmEhH34dH1y~ATj*H^G>(0|*) z3f(WsYKwJWXS+RSy{}n&sPShsR$i8NZ-TTK2G|OgZsl zb>QWZvTN^M8{CKX->}K}{1`$|k$Z|m*`>IwUS2Hw`g2|a98lvlqkhAMfM%foByio( z;s@3IE~u18T8D+R>_1%m2f1(iX=iojp5jv-0~OBcIUg>5oQAS1cTb-X_DY(7y6nE? z3&|R6;iU?P;;)U-T(qZjQo!Y;ZT(D72V2G>DB^{#RpX}6XkhgVT)br>$BKTatDt;iMQH>MsZ9M)C-q|8H*SW{BwtSE=zTi+y-{0wDjTOo<~EaFqwo2#Ep=vWvCt-N zyY;E1G;r%Di~O&`=cTs$MxT58W0yfw25!6YL!mo9f-yWzq=w-4s_b<}L4 zoH>a^A^VcI@X}bN+4QMzePGq-8$Tvj*E${c?b4R@LoQ8lE-70dX1iq7sO7AReeXO- zWz|$YH_;zMmA7>~*KB$5gMx*5K)QEuu-se?`Rw?-Iwe4Mj(Yr}R;zm|8>YV~+gEi> zPMj2XeG0GW{Xf}lM|X9FCc|AVA_mYP%Q)^>L7=XQ&4zMH{{uo2Iy?^V?(o0OA@ zSUfqmHRWc7`=P487;;eNPZiaMo-u&}jOP^atrJkC{iYq&TR$0n*N%#aM&IOLs?bk~ zX1nuSPPYXHo>yGkyyXRZ(0*-4&``8(e-QuIvi_uMtJ;0fmb?x8VZ8slH-FXq&~;mS zfA!$p4uJ>%B^PLr*~_ax^xMw=NY-EVQNw>K|G!iZiu_r9epStXOQuz9`MUc@`G2A9 zzY;dWV@R*5T5!%l`~xg-!`>ea!mrv4r0Doj)!DLsu}NRGfSoE}Zu_&f^D{2uWBVM< ziysBkJ^w$@*dOg#Mbyx&yZAxNz@m8{Gz|nJ^j$>**|ubEJ;lH}{#*ZlZ9?bjf6S=m z>-Q%$$xGiLH<9%m0u(R7Z!82eh@tQ|Lsh^jEEmB-v2Tp zergLCasPryv+eT>`R7*sU-B3JqC=c3Z#V4y5f=SI>wcM4^|l|JLDW#vH-usE4Fs%L zl?nG>ma}6H7TM#RRDX7tr*0s>Pma;&Il!;6@llEW$iZ0i>ef7i5Bv)&zGR~eha&w1 zv>ZO~uRi?DYNme{DxqlX!I1B8Z~o_5%*aM#E@GeV2X+^HmiUgR9-rxcZZze&f6T#Y z=3B`!ZZh{v;e@>WVgtv1Sz)hy6bqg$Uh$~3?@YbbO!jy0{1^tq;iq55M_?Ux)edW5hm?&dj@((Vm!Qk{e$(TKXyHk#`t^bOWSK$s#=B`di(jCoDKK3J!?hrJR9h# z<0XCk7)CEvHaMN`=mhgZdD>8Ri|Rq+})C5)OXPV0!O#t~IbWmTN6s889b(N5C-y=939i1bpYDd)6lsP$+BhCazy2mO9N67qB1IatW zGu%Hk(mx~^^QT64kC3QHeQ8cl|1|_!sHNq9D*j*J7LE32Tz}_|h_vzkpKkoGxg#iN zLcNdJct?apg?oB)vdjEanDg%b?+yLQ$mxyl$#8$ppW+@w3h|7hc?Uim}o@O#N%*A zTH0zjBW(jsO$`lA11-F|+CODYgCio{gFU_fY1g0A?!U|G{9nuJ8isqjM}~w`LPCQ6 znE_4t_A(9+p<(`h!@B;e1p7sK-<*eJ>RX(OX)W4FB|vj-vp>FML*k#`wj4$>b!Se z`Zr)NdUe=;E9$d>t<&IkX5?a8*g$$%wX5z6-l?^zE4Tz<54$It!yg^6HJyyXZv3ib zqJx!SLxm6i-^T#%5J5sqS75=tV82Qx{qO+b2L#?vK)qeXw&cFD04} zQfY%iC;0k|98Qk4P0_y6oZ$f<@85loeH0ORJ9bAIz@npSYk#z?pSl(BS2Gv2=L*pL z;H5+fmPh}&q#9?yxY~$c!BBT$aD7F(Z1U<;Pf}_cpUp$g`6_ znj0$GyCtLcrF*ooyP|H-!{AEUfZEzVS9XWhGuFxVr!ei%YMb5%6*hv(AEDgDh$Vq` z8AE>sCJ|m-Fp#v~N2qIF-fT!*aBVAR#5uHsWs?e@_iW#7c=_U9Sn5%3_JKG_iNgT~ z!R;Xd%TDWGCv0j=-g+FCeg%GAM00OAYj43uWuC+ae6Nw7Q1#jJh#jWP)$J-{8fo{& zqZB>VpFyjCDcdEyx2vzHlzuEtGCj=AtO~CSuJ592RM@x-sH&B_c6HAz%-;XRerML! zq#BM%aX1&gPE*b^QZkek&xmlWE~h6O0i=OY%Pm_!|oxJRpmQ;s1k-L$4w} zFl$&T^gj)irTpC}D1QIBN3&ERAG*%ZR$;%Rlh*%%5vLLdH4(_D+s8{EJpT&&Hr-iq zJm}YfXP;{9_B0Ph-Ay-kv3mJy^!Nt4-Trpm`QL!soBO_*U0gqZ;C$)NU$r1H0!XIB zxU4SxhBpkDAxC0V!5wng)1C^TCh6Xj3ST7eyLW5@;ru2_bOP^W%?dtq zW4M$hweNaY7@JiO?&8bE_T-5XR>=`*{(b_Wd4r7-3+aB zy~4Pq_~O@Zl!RiPfnJw$Mq2x%@@o=z?+W;zJ9A24Y97gJL3h|fd0Wfp9X%*Iy_sh? zsoN?wXiT*U)-`?bV9eb0$SK}kwPeYy>eR)=U!OlOw7EISs_L5;Gv5XbMt^PzxziRC zNt@l>I5_o|h_dN%d}2KQ@Bw?QzD{u|G9MFvon28aFEBEIaT2Q3kaT&Etqxjuvs)JC z21tCWIjziQ&^=2vGJgZ+k=*h<4A`i!AO*maT*${v*Ip%ZVj!Of7-z^FXmBP!guvuM z^Dg2M^0^RCybuIIAX|`)fa#FO%oILm77@=6;bQ{TiOPi5|B@G+qQt>b>;FTB{HczE z9ugA%4<7hq=66PIjgTZxTSotYikNjd`^>>vDpcpfS1!nJK+H06;U8rE!8C~RFq0)0 z&vWiK!1MH{N1SCT*O&Hh3~Ai>e`Dy<&#s8K4-$?E-lsOU)tjFnbB|g)4J-RpZ5_hu zC#)aP9ef5{D@5QOXt@>BTbhI7MHX9XCuhyeo2~ZOMSci4ljDy&8ZmUoW-p zX|Zc&olMF?Z#^H8hgP8{L1)Ww@-7j}8p7`UL8G@%^UHFX6hDrm%%v-o9Jtf?LgS@q zzqh00$UHnqt1486bwVna`jg6K^HerK*f>nC#=B1d9W|Iq`YuROx-WXD>RzBD{}>xq zs@p;Cs%Q^73?qn{gD4j!3=_8SBmww`WLB}qtm|RLm<&FNckBkS+E<4cW*pTPzx#usD@81!FPZh4`_iza-97mt4TY4el5+wCD( z@t03^@1b%Cq@~1?EF*V2N9skUF^^l-!7*HWHOdMYfw;nr#%s|A~0)#aV2kL%XP97*SM zwazSluXN{J5p=fQoBkGDs;YRJA09rVzZ??e$>LQC+rD%*F|=!0Y2!nEYMNyq5H;Y7 z^{G_b=x-%NCNLiTGOLgN+~p)DpA2Aau`V}7g&d|xvXz+!p>2BE%d^<&hurJ=3Oe7$ zg1kGc!#~&V4ZNyR6AG_6U*z3FdZj)acYFV%WHJD59xGeiIyalzFzXDdXCw4{d@2ii zFZFHAylks6K|8f1Dzqxk4xTkWF;IObV3rOR^0h8}Y!}d-fhV#ar9&KWU3cP`*NN0>qS?!S60dpCW)1Kx0TaYZww=JZcsB4-6$( z>Qn!O|B+%`^1Adg>3_k}ab13%vje#Ub2`q!o{Ag|T_bTwO z8_{i$f*{7<`weKi{cZVEebnb%-=JS2e~YhwL+?QDNKR3fZm_20%>1eQ!XIx(U0Bla z$9<@J_*kZ!zPY3&JJUuhJzWo^ zK9HT%W6izjETSjOEKXc+*EKsilnHIhwo)(O>c!SdMYf+jL0(Tu8Y2`_duB&^vxRzB91u$L(v`|8qA7GVx@h!J>@MtVX!{A@Myv$)9UpP6gT?o(xqV@bi>1o^4jR?y3zejjG6rcW#NA z7qfL<*Sbb=b~X^Zx8;=78E+e`oi$W;u}*PP>vUy8-b<-M>6%r6qH~3H=Sl9HYo9q1 z>;|{!vuLB(;MaJJsRcXg-TWd^1;YfMW$V4s=L{48A-n|d^wU9*WQ@=hsk)LUO)2qbjy4<-2kO0BKMLxLk6 zVn%7r+`%Wn_I$CEHJuf;DPqozf-i-63q`9!rvys|4_Zz1IJTZ7v6pKTF0tx$|g7_Z8> zrE#rRItibt=Z8_0)Fuo0>VmECLdcOwK~<(85-!=}hdG?Y%#WAQA)CMnll&+SgBvA+ z82C{*!Jlb-lJfH_C`rvvmZ0rUc&mVEP$y!HfJitJ5J%)tJh~q*51K1X2FeBPUWy&H zDpruU1XeN>WZ_6**yz6m5^#u-RKv@Wbtxc@?D-GJODcaG0Afhf)BXq~4%>`V*}I1P z2W9_8%e7AuUQ-5Xt9vaRu_d_ue`Q{H-=-8V6n;C1 zP3!0iG>LXj?K5|d&TyRmcwY;axiGc)wT;q2AWhsy_67|h>(}1V`cCu{z&SoZyD){dxyuuN#K5gQtf2VVdPl); zKv~(y^8+_5L~|$9;b~(&*&&fWhq?7ID7-z7}^sw$J&%@Up0Q$bd>M0$bl8bg>yM%2cYGHdY zqB7B4{x~$jZ*4<2r|#>LM{-?v;<=_$jC|a((ZB)Y7ndb-;mO*@I@5Vk%jhG)w-?^& zfT?x%16cRolLNChD!luv9>xtq^Ye#8&JU)0ab1zUBOFodo*O;q{0=0;)b>PZPpT9U z15@jMT^9@^)(k9+&8c(eO1@(i&RSnrjLqv`4g1S@d|zh0(R&@M=V7t@c^j%eDl@>> zC!mz1`GuFx?5gm-QlB|K=W6P%9;46&A8imRL}MkRxx#g#ahHujyUV6mdQ1dJpYL9NR! zeQ6$Zjm7wN-NTm)gcUy1kT@IG31!o5Bh<7{l$d2-w2oe`?`w|&wGE^O9LGH!7p-GU z&QG%md<9=_)+eRJ^KE-N68eA{6k))#t5}d%pEp4rmH#LgltY(YW0r)D^{o)Pb4pzl zFt24ti86f4SxkJoQr{McpW2 zD-DAyawo7nr^z{Si)1|N6Q0{x0bs1^!-yi224y}l=_W{F(x)K?fLWrAz>CaXP+Tbi zt>+fkB-)KL!&tJdqekG9SUw>mfDcFVf$O^kGYkKSv0B#6vcwd$ zg5S+Dg@Bv_*1xucAWo9-$2-LTmT8>g;wI0Yj`34YrbEavtg?Sg!9QSUHhN+Cm=6~o zyyW?|)b@PHcIVaN+;0H7BBaHA@H@qOwd>r%w~^eQvnRt=PypWI!_RwFXD7n6GFXwb znPR|$w8&C1|6CU(oXUx}(#N40Ss0SkcbQx+-@N_-xi5@ltL*^}Sz? za*~8}{yFrl^Igj>sd(r9$EbrejGWyqCmf@S+RVg4Ud*#U zq@6JNaqZKV2;#*@+SNe&QNh(G5^JBIwe=ruJ9>{cj!h1+(d?hU(brZt7CaR74g zB<#IhHev~M#q;Ajz^oet#9c`+f3x7MdBlGc*REQF!_a-RmUERg*jPc$6^W3Brd^cu z?c##^zmA+%40b+x?(*TuVWkRVDjzy;Dm4!|4-FQQEq+_3bJPwqYY*$|YG^PVXubDW zYY|kXOOe=n5SWRS5gZP3VTVm0dKj#;ED~^1;AHR=Q-$km#_{|~7avVZ)1}a6L`Zi| za?OJ`mWA32>LLAp~~QCIL`TvE@DMsy{Na-KwRzYs^YGHuJPPgugve_XxTmG%L+y zAPf5>x@x=WP~#)rYxS})ZHf>f$pu#RLIj5-tovsXg)>RSh7ipQeybO1nl(-Lr?`d z1zrwc{s+&pzQoMplLcj%DIqmxDNhMcbjsft|M!ib+kjaJJMjKz=A{fp*Yg#}X}|XW z2K>=*Hs4Y?dA2Dk{}lD7qMvyq&VE)#$zb4C=E&*zM@flYwljq z;eNwsthA-$Q1)qm+c%GW*5($#zX9^!?+TdeRJw{P@yy`UtPiyfML z-!$G8ygV~gKbg=vG@T?bD)HVn@t$MM?h*D<3{-iJe-r%OSG!hetDnp(ODD>JfQ4P~ z1Eh)DHfzr)>A2Ng{Yt-gA8zZ{!kAWf3KnhZ++Q47pTnS%rdX@2{FJ=#tjc*dU!+L7 z)d%h}FZhki(_WwJuG5`oDPa(7wJYhNL!3^rQQ+;+7l&g@eliGA9&)rp$dHbu4#6?XmaVmI!uzjL0w zSbFXFjpFfMGOdUX=nr$ie6D*uSAV;S>zVqe^JhQbg%jL{aMXMfkqRF_cmKMl>JiL!FlK; z{;GkNnxgi3wmt3Icwmxyaq_Q=xJ9Kp$fm19&%nCK6RP5^n>jXerj@di2^MviT)3mmp8NMwXXt(}2XJ7Q^ zYg!HIx<&I-$HqkXlV;SP1&Y#Mw6g1yj0R1Q=>_meGo+1xd3b1dF_FnDUM$Uk7;_Vu zC3t{j8Eh1e$+^nQbim=>=&`Cx6jwBoL_`|d zN^%I$lo2VS-Vxe)$ci?^@*hyZm~HKl@r$*|EVQ2>UH}jE;p}^rOp};;ezJY!Lj!<) zJ&fkpCeM0UMKLgLMMMwdv0e>tbX+b(w9lRJFwuaa%J5FeR3?l6W<*UEvWlei1MwEfKU9GWNECsaqDmu--~@LZ0Zv3h z&>#UIH$9$k{X``rpP64H%~WNka7g{1l|zm$KI)}&Ll+ZA@FYt39c`ohH^=`EiO2k# z#9y5KOY2|!z}uMouAxFAz^*%fAYO2n<}uZ_hB0t}9b0cY+j465s|&b1TaF+R=+tZ! zme!q9@VRWMKTsxk`s>B&T@w@^%j5anq5h^I5EQO%xPOxt{rt4+6Zb-Ct1w4TiIx{1 z1^S;Pt;1j0)Olfe_o|<#`ywxGy@as-#e;V;C)%PLEJMz{&L@MfY)*R>gp%}l8xmT*C@htK%j#lZaX`hJB|l zSRC28_|9=OgGmR-Qpa2yUUm}bbG9h9#QL6rR>MrU6a(<`S-LMZ=w}<3R&-vl6j02u z5B1lhbT0nc+x(&vPEkS%Dt7kcMAeqXgp-#C+FHCNI+?IbTIiaVE#`5kpwHX2{Z*6M zW%yFB>HDHejXT+n(=Lee49d-zqas~DnwuT)T34WEHs|f8e>SqSa?{ei+?t9DJ-)HN znuDbn1NXTT)f~>vI|?DBi`UysBgWFVOYW`=_*EXw@y>f+wRUy!5mqkX$``o1hjHLVJ#uemrSQ=$ zvJxOCk6^g~nT8Jw`QqTc2_P4;iQWlxSyJM37UDf#Y{-wBc`gPFIztvjHi(Z(2^)d2 zK>7$noU?P6D{vG~DYF;uNgi}DAT4=fcs)W3b-;fg}K%SVRfefBjfP< zw9&lX$z{n1qB`kcT4*j=&;J76p^p)>L?e!A2FOfe0V!5^2pLW=0&oG5;=J34r2q^w zxrff&r2d!Tg$SWnWB@!Y0bTV?AQkZCy~B))iXm6mVXDW5+#b!V9NJ)s=Icztz&*EZ z`tP-W3;CsC_S|PEEk*Fu$H-lkxn>GiYtR1Tl*!cT&m-o-s#)9)#kZ8OZFke6gzUJ5 zCe(Endlbygh+a~02Ho)$P2ha|NgORT__@8wRC&6?W63D&`xZwxGLmDVqK?G9gWp>u zDsQH62nv+%Gc%`@GZgJnB)11+KaMC(*CC%k5IK5sccM1gWQdbxd6D3WmneDeu-P#5 zD~bQ+gC5!8fY?*_PkIbCOD>yq);(3uiJLOZvYZv&4L-X`%bf_LTAaO(Iws=F?+azy zB{i-uZ_9R91W#?I(TXCJ@IxbH9P8=lf%Mv#V2G-n5_3`76J0x^1VcpHtZses*D<{* z4~be&t-0|9`D+NPMEi=>cxJvV99BwEj%K%0gA}5nbF~^Nt*4t!(GN8c!q;h9o!z5~ zr<-A7C<(ug+^&E(Ul&Y96!JY5NjGAW@qEu`Z$w=l?a|o7EQeBEPV~JLzo)9zx3T;! zzQ4m3X7FmZ>FYdqBDiB#En6kYg-=4koi^Wc=91ZmcbNQVf{{w6c#~zINp|TDR2zn6 z|LZX3U2kiM=boQTF`8Eezevc80{IGxkVe!+Ai!>S@hL=Y57T&CONMG$8Vh_>0#eY8 z&<)~P(<_Xbdd{X}JQ z_m4zXg|wWzIh1K!W|0xuR-n2!+%X%JS;Ok!wITEz)~ODTb>wKXo9k|?StM0^+6DXu zZ0zS4=k!nPq+dn5ufN$mV*Giz0o!ky)zdBy+oT+rqMxYMN!thG2)2F2t&G&Mw~ zl9IcB1sNTBvzu@ywk@&Cznf~8P03Nb{3yXRI`n$m7xW%&s`0ssi&`+9#JgyhQy=_m ztZ8|N(!YIhMpMuK3hUR{?6(QAsd|(eLrps+twr-kGUsD_I(9fs)}IXbURIKZs= z7(R=!^G~F!uI8%hymA=bkE&F`>Q4mbN$20cwPzccC@+ZboxZwZS(o-NC{mYzHw-g*wd&F7HVlbX`bZkP>>scWSA2uWYi zJ8^mHN;WNF+M&bV7J<3?+2h)SJr$|^W`-_<7ng^c#AVUe?>Cg$KpR(kYBsyOk7{&f zjoZTe;06wL^W=&nTr?1c^jeT-qf+b$Z_9-vn+3vW^DbENV$6ZL&e~RNTE_iXLBXo$ z;=d;CT17atwlRY~U^|Q$lao_+?8HErqS`yjJr|!9;?4Uhb_hw8$=OyU|TbpTG zPOs(2yxT_M5C)N1UEP+o7h@{q^-CPud4DK%wxj<1S-ZK!UVWV@=Wo7E588ZP`~034 z4MYWFI?!aVP+RsTeHx=TE6gq+Bl`?ybAk;ai zs;@C~GBph1%VWtFrce6FM8_Kog$mMy4DnGo*k)@ai9y^p=1wth&mIFL<1%kb^^ZPu zQoot%bq*`dEvG%o(~Dwecc*ZvAWa5+Dd>?fvdjY^+0Qi{6(NUh`Sto?s&1n)P<|Sn z4=flZG~#aI5lfcq7<3`aQzITY>lXRO5$?#!NpLHsrZ9x%C<2zz9J*Lcrj*9$??u6-0vA#6UM%@ht zIBzK?fG6T1qn2E-*E;ZJ4M-qrG1o=7id{2JZ?dI~rJ z$XQtarOf8y*4n*Vz)Jd~j~=#50CFn&!-!!+w`>o{6fhrmZ7TYnu;8y~iO+Qujf&7Z z+ST4rM85{#jK5M6VEoo3{cF%cTEzYmYgRnH+tOoaRbnrO*8U1Ceeep{Ch=p|7)hrB+SWK9res z3=&~Xi*HkhR-mtI@j_zcjI;iiHy*|d*AVFhoZh?UYfO~}(@AF9)}9*5b@w=KxqaBmTWE!1`70#|r@EG} zk6532%It#L5y?Ju)2$lQ&r{_Bj!Ry90dfj+XDL8wNbFekzVW-!Ywy$z9dpHl1<0s0kq0Gp9k?X|*$j2RiKgg%y;FuKz8YmlLDs6LSJxv8OvZD&yo4lg_0YHvF; zk&=9*dl=@^%(@PcQ)Z<_)Z7^mUi868<;suWN=IAv%{hmKFA1q_aVXaCZ1$kwjmX$B zTyrn3+2Qv4#|c}7$u_6W1Y{;p)_rD*zGaWGp7AhCOdMdXK4->og7C+(JrS!!sqRKv zqi}eT93y>mrEo^>Mx;mV(qZYr^wQV!Y!qu!Ux9DMoF7+iVmk4oYGJF)>Fv(Xk&U`{ znoG-pm{K7NyIS?In3~sKZbnZJ{RW^|e^o0_zseFdI(X*TnQ_i6(qEfol&3I2_{(OYOXaXhN_1+0b&?x^(M-$VEK?EynnP?dFQS(a9)(cNF1E z@pRgRx1;I$^7v9mr>9BE4Dv8q~>Hx`tr^4g=##fu48Y~uc}Z% z_al*OQWjRRi&V3re!D|q%r@$XJc7_C+yqCG{M9#@ZXM>{L(D7$n3u_DiPK)i3k`Z1 zy96WwMnH6<^Tbs`4>9F1^C2s3Q75G)N{FyR!jUaLvlMt|UVM?pW*v~HV8rzll*c1i z(z!eqFvZGhf`B{}YIcCsuVKwh##!=%WD;Ob z;-0$s$wFZwKq8*Ae7JrLuR~J*M-}%c-Kq~#(!p2tM__4 zstwVxO9lAJ(B2^~yNf8jfAjfOV9Q6l8IULe{Gqxf>VmUoNp<9deg!3qhQeo8`K7ul zx}v+zmhl?7ms8)rsf+IlAta;h?s)_x&dmp=hd%UqmM0Q=?Orr=2ryu=ti5WXG1lD0 zJv%E#REC~x!S+wTd2u^*Ct=%JW^|}8M_sy3bB(*+IC2eFCU@Q^Jv=T9ZJ?G1=vGJB zB4*D^Pd%EPq3@$z7RldRv#qaHxziQHdc8lZio9Zc&kV#cqw}dfDi}(XF}h!xE<-Xd z6(8Q`m_HGCDj^*wPkH(%fm8$J{svg;$XcbwEVkGzXBh8mzNI_dDNDCE<=$80p}k^v z)jlwTL z+~9;i_Uh`^il>O=FV*IP!t9vDG&lC6K_OKe|&_%|alN0o}MLZ>GIcAN>HPA%!+ zwOhEJ6sdg>EfO{Vc75w7QS-X6UVwWRwKZBGloyh(-VLn|w3~mmXf%E(X*VN6L->1t zN*#Zc3HfPc-x9_bZ{qD8r66q~0`f&GM7aVjI2xeD?2X38n$Vwj{Q`n!#X>4?t}Q9V zntxC}btlS2C~we9rf}KPe5h9RY;+VCh+jlLfqHjpe8rGtHgX%Cv>Md^6R0u=`cj*# zr;gL8F}+|{1`Kjw6Fo*F3Rct2?s>Uh?5~`coB4{vT7>mfJ>0n5GPZvqMVv40wC)4$ z_l?3dj3aNsDk64-(-rs=D&2!e~1TqS5Ep>AR0Y9bwI)(>mwi{@fkW~ z=q0Yjzpahk%Kq?}7bB{6p?tF46n8RoZr)Dw8jsS0o**KRPI_@w(R*4k%;Q zwYOLgxl7z~G7J>z0r{+?<>jF`J43i+r0{G1H#(zsrn0=~*upY5t5|D;WJx^1!GAJB z1S0Cuo%Wq-%g4=gZ=g)X2Rgu`PBBm5ON6T7sVJ8Yusaw$z*s59tmMMohOD9>qF_lp z=8&ME@K>G; zm{8Br8{%ZAV2-H(V;*&~$uZ@Z7uouG}%K|^!m3v_c zvVs>6`8eF38lAq9Jb8yYQ040WYJXnggvN9JJGd&wGu_5}Z+z}u(A>ZM8?c><&7_b- zHL9O_wqJA*TzY>xn(fH7I`CpyPf?xyRv0DcMFHfKS@;rC_tAFtP zoi(QE2*kSWeI^Ua>uoI5t@_4KE#zpx<^l18i^9|#qs|!P&0nh-7G;`a zv&xO}O5e>Z1}0#SVW>V2z^=vE`HYegCe5 zygT(S^2hB4nfk=K)oZb~w%Wr%>_=wlvX3#}&P;O5$IYJ$6}+{FYCm z8|Rc~gK3VsLzm?!B>a~`gYS0tOceN_5!^D+BkP>=78!^PiSQI&z*5*^qOeEYM$zd4 zd2PLPXv?Iy^`{Pt+RzlnYe`GEP#>}QoOY9#&>HsPO|pumxOF3-U}MYj7Rl6{z@k|CV}o&AhR_1JC?qWR{$? zzIBF(@Uw)@TZr|XUzT7Pgf$g8a13eS+VLwQs7SX{_&4%YF(*3=Awxvy(`7Qznq%1jC!ViK#_}eyM2xe=dRPVObe71A3=t!* zL79(b*I0fK6A3?$H))?&NJhiDXTBi03!Wu_rMBUVL^)!&ZwV2dbdb$JJzk*@C7G{6 zZze+HC8Gdv&k6bp1E~EK!@WKQ+CP%eS*0Lb`YUWwGLI*|iv`0|^J7l#x z>Vsj-tkl6Fbrv$sl4{}sD3ko#r-9?f$JzZ!Gccon^rC-rF$6LB=knVC-ZCgCzKP>r z3!3l9t1rrMH}<)lVIQ`zar?4psne{0i!>=^F8!2szM zzjo)Mom-ogT=td!=1Sp9E%seA6((T7(q~}RTeEZDoj?|a4c(BJ%0oK(=2f^h*Vc54i5K)0oBLX8 zd(O>?HoTafwH_NsdYHoL2&XLlCjH*P7|Wut_Z`b7g=Qr=cLdx~s@u$=&~m4WU3Adw z1?@Ww9jfI~*Yy6bu#bF&iJ#BKoZ9HQuAJ&0f;{tde4r|zLpM>ZxMnU(I#ffa;T7)ONdzAboG!rMayTsWpzBkU;_AAkuGFpRp}qc-h!Ix*{kygo+FaEqc_gX6 zm%j(KM{IL-3|dSEz8P2x40?`qUfauGwH1xF_pAz&CF{*jNkoC#Tejh#r8OmFeM zMWeiQ2S!O$o*AYVM}KN=nlw-qUmi)`c)ao9w&BK9a#ylvpQT2@>yT^C?*#6u z8iO`#4A{<^ZHipo@#)?s*Mr)g3^5s3rj{wW0aqejyIqwo^y?WJT}x8h=r#e&DMdck z$sWE@!X@34{>T;9L}pqUrn{==wxb7HM*Rh(uF9c|42Yc%TAej*_TtJD)c1zzX%r{T=bqrI~r=3GrTGTTS_Ql`X`^E>1x!t^*Z%0-vtX7D9}MRmxwF;U*g z_c+u+^#n&ARIt)@>WJ&Jj?=W(vZ;ogV6U^l-82BV zY$3ZSSzpxrtb_0Y*SKuepD&~<3UjTSYiS?eUk`nX>*GT`N^o^uF`p^&7U}kQSZ;Nz z!r(`fUWbj9>G!}FE%hrT^z|F!8(l7p@z5rpYN`m}Kk`j1l19C`IkH~_zer=(`G6_Hk3N=YG)gT(-=~xPdl{L2CJwJjc0Zwc% zaVrFPPke1nid?+rF2|AE6rDaWDifzsjemaN<3|-&UdM%(c3JraJ?%N@2Xm?RA2!ZD z3xC-W+*4yLRVG)lQaTs@pe1P6o_6TTF294YWN%W=h~hE1^DSB{Q~L$3e!skjb*}fA zjoxq~=S^a_taFw3aaLP!S_0J)NVMB1h;DbZP_-eJn=LQ+T8Wz|aLNS=USGgh;#Q_Yb^AMF_OM<{0~yUWHuJ5sF&vv#MZ(q{La{rGLF z#&{;>ai{&!E{F{LDPJvOWpr+5V|aya^vw%Xz2cA?tfW0A;H1HgQfIK0svXnwBdrvdaLk>UVX0Z5o+8Tkd8aIE&H zqnlAqMR7ePj@-<#t?L?MV)|a^rZgPpw4Vq6Xvvj6ZJ~HlW^o|$B5;G0WC!rb|U3AyuMFW*-T0w!lAw00F>v4drz6cRt zulm&Jg==>zlH3}ZXA{e~WqQKuK6009yuTP%rcEcxcqdPl2p6eb;&aRq3Ivg-8 zYc(vsTEZpw-0H7P^Ms^D(0S$M%=Yr=MxF-KFU37q+32@)vImg+9lc&eEF)1A*PNVj$sxV)h7vv~M>qBYb)i%?o zCyzFRzm7RdxF>@}4Tl0w*^LOZKUOZRwCJA@92{E{Ch^tYt-o6vcr-PS>>RbuxWh{a z2wau$GauSRPn@CI15Pwt`xcor*?oK8*;_Ieb9S#4RCxA5lVCpKOlNl@E^Cl%j3H`& zDa%{z1B5M8kRYxgd$^&6F+#FbI?2)HcuX#Gl=-7$g`kjtfoD*K1f1NjvV8n%RO;rq ztl;Y+ruM9_^+flFre$JrdI}ir9Bm^q@sWMwBotP6IB}I~DINBdViW^->bXdzDznF5 z3Ps$k-W8GrL-}omEY8M4d3~Y$xH!_G#`mGM5`2Zqr%Rz8Wqip~1x(v2)ldzR`vx=D zQTyjL*b5)|T*CeH;WZ$A7{{BE>O931UnDHwK=Zh1Q;aSZ%~A{!0LwDz-~-l|;d=@) zFhFlEWbqgtF2{$;05MFvO_LW16$Cf0*J@1fUyDW>kjK5S8tFUP0o5w!o{*G0Kist9 zE=W5wDkE$xtpJXLrvsC<7YT2YdeJG!Wr+l`%kG6%vzkAr3OT+g92Ye%Ac!7EIFSG$ z7Q!q)9#p5oML1fvNR@>)|0ow4<~3iXhIG^YnM)-iq1z3|-pzJ($wfJ%D@z}jR4m{f4&QCBzkh|g4^fpy?H}wNZ4Gg` zBiVkzlIIKI=e3eBeUIC5Gk+a7lbbwok8>7QKelf>e{J^Vhm>1UD3L=<2|i4`-j|9i zwFkOHX~DtH>?m1=?3enFkaQ`b^)1qQ`OTn%FisceG%+rXfA6&7KuhD z=Ym^b-l3TU$%aYzCmK4p)9UJ5g3jv_sBg$aKeKF)A*6-p?{`GAZ;5Vy0yg3s2OBf5 zR*vS{(pM>&CFY&UNf{EXX{Dz1=)g2c9Cw&}uA*i-dnL8mY5e`V?0O&mb(1)y?)Duv zd%Zr~&|-0_p$-HXP4Jt-wgUza4T}^L5v9_D?W~<;F!{kQhviyk zKG?V4r*##1nR=M&nAXgv8`Zsnc4gnRgQ{xh44l}4f# zaS(1&+tae9#kc)Z@)T<^*~w<%fQTwa!kGKkVaF_)gHY)e0541C3*!Ib>b;}cZot3) zAa*EXM5t;g8kc1?`JTy zigOR{@#`Vr3f`hWW@%a0R=RsG$@q@D4Rz zd1Q(v!5@?Br4vK9bxg}H;2HhJ=G8(f8`xeNd#=Bd(r2b z!`7G4CGI96)ex}tB$6VT!N7;3R`P(%*3h&qMQEn*NAaC35ShhQ=#~eH2a!YdCi@?Z z2d zzcw-FC*3PcMp9Paw!`D8Pe0bL)cgt^I8cqP_~-MR{s8>5J1-&gNA7(^KZInvYn zTD<@V7m9Rw-(32E6m9cKE2*8a(`e&qooU`L7yi_|XGGwgmp(Zx38=&g(=+HAiq*~fjX_k<9sP`l*Sum3i+9Beo_EYfUK_j_T?p#kHt}JCVNymS;U zKZ57L;vXk13uOf7L}w&i1M|)(KYv-G*E!>4oDoUXpb6@n(jJfNX<{7EbIGt)1{Xs|#m0->$?| zRn8>c&qHl!at8Hm+Rbhpw)gPG`oX=HMl7vnZ%)2sv;i{Ai3#qhAm$_{4)1w7aw`0D zj(9gw-UimKMfy7nuuwx9s@sKlCQ~6ChLp%T6>n$S8Z{Am`BIQ`5>(5R`)1fw!6~8Z zhcD20QpF;o(T#7IVe4vbg9m>gzc{-ePZYGCd@&yv)?ck!Lu)m)L77-zQ!hrcNm9&V zaEV@x#+`(;Z#!0#9`oI9fyoy3Y*A??wINtsab>XrSJWH_l>A0mFdht}5f zQqBjoa6TAgWzr$|G7UY1GWwA@OCWoJN1Y3LKch{=D4jz25(oKt`ytK@dcGnb+ssSp zW8YQ2t_%5dB$OG}NXnaN0aylKkCg4`sKE>v$u1e7f7C+bG+dThGm{ ze6Wq!QR&9Y)Fid>`1d4jfp+0h#x8ziG-qUdxH-Ro6?54KO`qjW zcwKGC@RH^qzjfFSZ;iJC;OKR}QmQmmuf13((kE?NHDgzK`A0P+Y2Q&1NFA+B8Xk%p z&g$1nL3-1gjEe-wOVZVwe~K6>4hQ5(6J<&~cuvJ&b`vRI9eI@+$5zvE%*!FBoU(~z z&nkM2W>8Fc`Dt0;wptF z=J>Wrzf;ISOUSP&#+2ckybLm2t1Y|$NLeTm$HuaW6x|ttvS@Th(uPSoaatx8_#qMv zMzFx~_ZQ+>PC|xoaWjg_T6KImrzovr@Xslxa2G9^J#{S6|7&G>#gPu?e{8^7NSarI z<{AXPBqB=ar4+6`yFdA#O@dkEWUsZir?I-o);2}d+DBEO%PynqbbrNR$*%ipqiy?% zfh64?A2nj>)1GwIyVLGZYyFE|Xg+T8)4&zz!C?x7jxQ;XW~|`x=0F3dXiXI3_~*1r zZ?XNvg_0C4q>wm zPK^?7CX#^`6!YK=N|$Ydn72=$IK!FG^}x!izVe;{Ss+7|l{$qsJD&HI9NBy}mL=!& zu$pHE>z$-6?Ee%>FEnnZb5`YH-J}-h!{#{oUV5G=b03tk43AY;XlHb7p1!U^-%g$L zv{FmRMCT=duEXJR@~h0Lz=d;y>ze;Ht1me&avCz)rW|6I+Va|L>YG&Bge)tbB-xHB z)L+LYxBE1G=3`fu<4_(ctB(mL@5={cKXCQlA*l`49{5;r)J9M9G)XWGq?r=QPu&@T4QlDu9B=|`e&gqB9Hs)lrfUv4-#A) znkaU?eSa@W7*66J+t9mPH0AL;{2=GAav~-zlgOX2`+?q)KqD*7e&9!WZovD}GIU&T zMI!5W#BOee9c?Yi2HYX#iElBk# zhz`;weKe?@gqPsg=cFg)yiJDU91K$M8@}W?LnbfOSXwZXim<*0Z2bOxWdwV;Q9VW@ z7zl-R%?INc3~V2_rM1d=>khV#CCOTfQ=L?}5IZ!7^*l&88AV@@(uf{RW@}n>>>OI(#N^>P z)B0obl~77tkuMX8honF0&G5wqDJE~-hKm*BBXYWW0~CkiC>%f%f(vV-Y4ZPvd4#@; z&MKx&qH)CUli^#u-nuMyQFU<6eW6p_@wnhtL@jwvSC_4l_rG}O zQx>&twB_;2!&RCxIc)P7i_#wo=setSZcQSMFjOEEPEWfOGys$mnb@Xeu5nn&MOm^G z=B3_kVmW;roFy|%Q0{afece9GTL2JeCRXnF%h;};qcU5!RgGJ1OGyP}GFiKZlZh*u z)pYfgNKg4?52eQsHK%3yE%Ac_;`Pv{^%<7|08ksL>h`yxICm?HrnE8^VpD`Y3a8sz zt-}fNI7N-rz71?5iOv(iso*lyaK=EkAsYk2*QJ zCID|Xwm+|p0E(N|0xXp~uUN1|Y=He`EsfHw490swZOmShw*dx#)-xs*CdbKd06ZWG z_JIoHG^hABi#lOET%Qjx%-4N8P*Bmo$@}}JNyzT{UhT&M5ax=FYh~>7F<&F}Ny>^8 zOEnik=b|$1P3yN3Q=uU?1iCJ6*Nl9v){QOUr^gYbA}b z4(^z!B37LX?S?t-6&r~O&T6XYsZZbJW$$*{w(CLiFWn|NqDI9ing7nw1o*8N1r zE(kZ15xv+D%y&=va7<>s?;_28HU;G++=*BG`_3{!EO6~nAmSg_tLA-fisp~9`#f>k z5M>H6^GYP@%9B*^=XtIpDH|39#@|L;RWqv`n2V*v%kFb90~Cp^12X_No8l2E$SqOLG+MA;x8*9b#7eaoOcl!ZOryJ&yAte0AtJof`sS;D z4C3DXN|Q}@eAVDWjnV~a2!t^v-S@^3o%I+rSX?F909@`5e6JE(L__-k0tbt#CPP#F;nZ-Di%#DU&Nz-@z7?AVGaT<7^3oxriD*yJaE_M72@q>ShJczt z`Os^(41PuSOd)>7G2f1y@akfP5U@6&Z_~|OBD4guQ2J9XY@1RmSwGz@RGq7J#Z6dh zX!EJz2vvn4x@F{;sJN#K`A#JNc2-umkhxJCz~-6K-}o@%3BihEzW<@EDE|+`O<`#a ztg}026W@J1oM#oH} z1@q8IYFO-`GDj91rbbyWnmr=lukY#R7z~WBvh)Tfz<}Iixp^<;9eY$aDj&I;8vuD~ zb+&;b=t-lEQhPZvCY65Q)h1`3&@wS88@O)Lvl7I=*6O?2Gq|h9<|E_R?*F4?o-!L= zE4L{&Vg}DIq4q}{ti~9d4C!_6GD90ILs)=U`RT8rT)<+9#&f^T@*~FUEo&;4c&Z5v zM(L;hiNEkrPIDC*<)qK#Z)yvcJXA7Fg3NBMA`eZgP^5|5(p@7Ca88C>P;&ZWp$;u8 zmvCE|X6r#2;~f?hRE*VENg90t%rbD-jm}sn^i?1yEH&lV(^)a3Ujp29`|_89z5!Wg zQWG(c`n18R`LV^4;+#1oPYg;BXL)5-y`{^g=6c1LVF(9ik1K{L5hSVU>4qmD_~k5- zFt)uJW|1%!R*735$n|rIIHq_YJ}+fU3TlvPGK3S(T@D_?MW-P(3}Eqepagozw$?|i zSQc387HTC??YIQi9s+`SI@1~sJJzVV^@iYhiZU{UUz8yk4+s|&)`!CWOKn-vKzi&4 z5S9&ZF$gyj*rMh^n8v((+0G;yIc5JZz=rNMme>t8=QEWYBIW08cwb4w6@=4oixomE zgNeYLZKPNsJYG>!2A%@k)_RRSMe`KLc=Lj!_;+1N@tpUiuEg3N6O(Ml;+2U?2qr}> zHxXX;aL*+I=`u4B{e*}HveDCcfB!4XNvl&3!B~ANDFXqf>Ep;@$N2$&c0ht@!Kg_1 z3iPp;M0c1f&bLt1|zNN>>j^C|HTXhlYC~sY=1HPfjRN} zt$t4bxheNgTHJ*yhLki{v-USL8>+gam$3y@<+K8o#cm-}tm24^dC!{PFTW3PWeaKw zohLn(*C^PdX)#cBuH9GM^hr*=`tjRd`9Rfk-Tj#C@Vv6)23QQ&T@xK11WVE=n9?l& zLh2WOW@OMs!%BI_*etvxDPQLH>$@FuevziU-UdXY!T@_)FLs=N6zIU7us$Q_xERQ$ z!ehpB^-BGx$-cGa1>KbW{fRx5de)VK>mK8NaW_yBNa=GGf7|!p@;T{V#%gnCh8o}a zb?)fcygpw8HFb~UaBce3v|=(ftcWrBn)Mnz%yZ8l*ouL;VkZV`HcQ>TdmnmL8;F0+ z3>#SxDzt3gS=4)X!RYJhLaU^Q>-m#_@t?%g@GpmU4+K33E}^s4_MBV%|`>JBBk<~4SASI|f@<#{>@j_-|0(k` z5U#(U+oXB0HC`i>PI==EMON9o@ayaO<-jfSWyyjPqt|czX>*HJ5UrcEX)9pBI54Pg zE*K_M>f*X-C36eKY7W-i`%?cnZ_{x)s+q-u!TRZl8{S*P$MJ1V;Zq_@S(qU~^B}n4 zTl(-8^2%_Sp#}Pbp7U=D8^4P?W}i0LTFN%>zCO z7saeuMsKkdp2*rQj4NO_>;UQUiWPijxl87A&q(9IKO1l6t9>e*it2~lOy^;j3iy1R z`33B6Dox)UD~bQcgDA^nhO&0m8J1mOyK3vOGAlx6G}3W!RHMivrn+StI!3EtbA0(q z#3Ez&2Yk9UMXWGh9g%QGzd$Ghk4@g`ytwwVr-ra#3eZJ+bML2B+2?DGkB=CCJo*6Z zyy*2(?r8O>5&jHM`N(lV?_APwG`?V?%OBvQ@klDcVbyntJY&|U$j5EtLY7>@Skb$K z-?F8+-CSn$AN>+S)YeFWd?(lDize*o!1oQ#r;8Dm43Z-1(94jHLA5C>h@j{uB|Xki zGyxg@?2UTaE5?|L+PoQ_LBdrofiCknSnwH%+|>E1$9BUGPRonqb$P ziUerNfXSVe=(3^t3TazL3C%!J5P2i!7->H7F52uthg6^&5tK#Np?8i*X+0&C=x-up ztcjFh6(GMFE%nHdN-M3er_|y#eHkV3Ko$xq+u0ap01(_9nPT8p0Xjg^7)Ry!bO<3s z#3Z1nCn-~t#6pQT#u8J;^MMYc_Oyupilm@Ay1@$lUn24UnE73UB7e`b(|#l3_2l8- zmDv1`3rg`pu#Y~NTaPvo%vPr&T{tcYrA^zTS(B=!hkv)h)ceoiPG$R@pwC+u(=S|- zYFMnbE33Y;$ir6@O6?qRFw^@N@Vo2mYArfU{$D_8P+N(IwpgQ|Mf;;!EvMab#>~fS zo7$H11IY)fg2;bP+`3I#miKL9XatJ`#6G>`1+_iP#d1eQ8AF+g^~z!MqT$P%mQNkD z+3y)-6Odbs-rCYnpVi#oC;nBR;)-$`E1{?A@GB@W5Te$!wE{)aHzP z;ov!cH+n4hSl&~K8KJUwxe|heGDDT|y8bx#9+IKh?wh zj2zi`{|rQhf-N~rTj%&&W%N9YuCTYdJV~l>jd!Gj+L+<_vci3Y!rk)=P+`9?so&;O zfQaZSjWimNi|yTyaEB{J$`=erKmhy)xIsznmguZc`I~TDgdU9)tLv~Ct}T8yU#X^r z{BeqWl$ivfz@$cuS~M_^oUzR1+_i7!K{_IQjD7ru^sEzeEHZyOnUt+>s}Kvugt|F< zp?h;GU#uq zO2l~#-8wMNHDI^|Crt*+c1=hh(qj@+T*RG2PiNoUzx>GA!22Yo60N897}~e^rfY%j z%ET%&A2VLoOTdBUU~#M^#yPI_Kr}=|MN=-zWH8QG52y~KQzWRsdCZft8~It?M9NsW z%#;xe&uff%vx><(FCyNjYe`sIBRZ>XeZ&i7tG5MUJ_Ipw+b^ZIpn zjdunkB?+1DuN~>G-9X+9yJ(Ue)!xfsM0e(!krZkL2q9LU49UIB5cQyWyR=LD6#W&3 z^Z9iHqIX*Q-YFMo*y^|p>9TSLwXeyz!wJ@@+uFi<*Ot*6yEmsuZ%=hWnlztIC zb2=M<{_Cb%&;BcMKl-PXMWm~MRVc;`E@lRp2lvxo{8WGq;4oT0krLJ2M@U#k5V2n=jUP2B602E&EZxOM1+f^%tt0drIZ*H z06U7`Qb3uPP0UI~TR3*rl^9ofLyrShOCx>& zzzS0IAUB%9f0br#L;F}xOk2(Uf6L;-*k_aUQ?zw~pi^LP^sFe~Xi-Vu+nQhULr%Ld0&Zm8X`{>;3Sew<=>cY4 zHJ=vmKK=H-dx`wsr1RBGivcRqDj;ZNBg1pQ@6baVj!>7pvS)HV;u(DL4^GszWREa` z8D2hfj;%Q#G|fGj+UU+V*?in~^qN#xDZW zPyD)r7^|VcIJJe?%5AHat|Y5p_@uurk?4T}y)&zs`Ihw0&6o^~eMZH5?8l$LHq*Q@ zEaJD3@Y!11uV=esnZ<0pd6~exUo%m2uiUzVn60O7c+iB=wt7iE1<8PQGVI4(HZQj( z5i-=-Wte1nG3k?M)lt)#?$E8E)q+?0E7r?$!V&4#+?*fzu-F-FTE+W>iyXIS0rBQK zY=e`1M-kTwRn|f5ELX5YdFl1hhh_f)L1V>1K2V>#AFB)#9z4+yKj|hPd z?awx_j;l5P3rG@ao@}bv(MtDYEVWW(fDqIdIvYb*I(~{y+}08=JFM$4Cf#`2qu+ni zvtnv&rR&pa$yn#{noAjU@>6?5eIS|+LPy^=Q@SGCIUAfdyvAS;Vx7&G6fkys@IE#k z)WH+_7HS6CvJdLNfN!y&E8e<#AM|$lCq4oHiqPF4rmhpx6cbXk+;8-!Knn-XQ0aP{ z-2XZfJ?-7<516=dyEdKiCCVb=4EqHuc|c1=6%(Gnc|x#`SZVL=`bZ9ld->t3GT#HR zfJ*t22YbMsBnv~uWXMnr<3R1Ea2%Z;us}A&hYP0EP%CpiW(q697jA3PG`2GTP(7{M zv$JkXcJS}J3f?gPwR`Lf_jG~Y^wp^v$3t>ry+5Q1mC833m_Favowpx~wpXERAE7vhGfxz+cGzF5Q zD{(V&xi&}#U}Tz@diPwHbx67#Y^Q#%^`@wandHmc@=fi^sU>}Ns!as~qResSrdNOwA>|k-?75HNPYDPepMx*rAr3C&v8-Vie54IaK7Zn!XZqP%7?jzxx$as zsOZWj3i)om=eDE0U-NFZ!30I?x8-HnxqLYEqgD{ zY-!e)pcS2nZPk2!{;#SJ262z{MZ&M;eK4#-5^WE5tpuJiItbYRBg?og{L8}} za+ZJ6?%c7ZNc`13cj56(_WBD@PukOy=cewxgTU>rRL z1FR*rNh!i4x73+chqcf0_O|obecL!=9jnfUGA5&y>yfn$g}@uNf7?PUe?K+sbXHxM zGlc4?r0tmoHs{`w`a8#)@u~pp3G&c=HK3FKwNkd2Nm&?vS*``m87d40FV=u}|9<|-$AzQzWbT)kd9>&xI+uCxDRkJ^~7u{`ov;WV?ftzTiLh4yYldMY(-*8Zvt2SBF6b72T^E_e)s6=)%PsOsOmeFh!a3j2hto&aoK+e7~i!%rO8W->zxZ z3aw`|>6i1qNr(< zmegn{22Jy>q-7}L(xk}$+m&MSrMtKi_Fpp`jF~T=ig{CKCH#%jr(vX87Z5SawWDHR zV09Z72}Kt>uPXC1&Ezv}#S@L?p*lw+MHYeKTHx84k~oNGc^)C@s8s0CF(hAcL6D znfLSTK3#3Lx-J>E=4q9qVnzRCq6f9PXut~$Mq_S8 z^o&B-H{$1dD2L`LD9+VG|Ay*mq0w)M;!`#iN0@6YL<=$#A5BRbF2@+BrZHU300vhu z!$l#^-V$z_Jt#n98oLBhJM}ABLj8gUD|=#I2H*odGgymR6b){Un@1-1-?g__##X5o za8+q6-o5Il(hqRxSU#3;J|^!!(~v2(ukM|Bzv*J@Wka1>>JF~hdM@4w5EYL5)=*n9 z?4x_z{X1dbM7=+iTijF1`><^2l>kq7QJ1-TNs-L)91PdwcHoMrkLLheIjW8s%u2#c zd2a_C?I(z4v0*HGUNCMLd!f^>#||yvVB&KPR;v$7f|N0j~mSrWzbK72^`n!I1zA<)4JHAOd!+SRHz zUFVVa(eqFumXSN-f;teZ(EO^~BR*o9p~{wmuio=r{#?CLXVMBy6|QBZ7b+}bDwicG zaqppVddO(9hd3%INzpqZEk{E z^{t4{&S3coot#uoY8sR(*wptYEW<;~p$d;Kv~J^w-k=ld)HKnK3|V^=wAR#O&l+rt zv^{w_o^StHdO4Wy^EH7ryOX!}PTT>7BO9=070vBw|A5Y>nudEqmUw7}Ywya~E=IK4 z#avJzuyQy1N=k8)O2eItcf?@u%RANB65xQMLRhfilvN_*h@f)yH$Dt&cZ8%BmuFNO zv9mLT^|#C-}K)@Wdk>KtopiVzI|Ved2le+ez(1HDPlG; z+U*Oq&)=`6+b}4qw`<^f;8<~oi{`g_`-!pv`EdccHOFD~8|rkt#jw_;x1S>9*SiDP zYjc5YRCThE%negIK;A7pKQ3Z&^dn(#UW8YL$Oqtq{6YcZ*n`!lSwc@o%Nd+GZ|-j* z6_hkXh*ps!TdX*wBF(E@eH)UmE@RH=tR`JNfl?oqQ=u=TT~81W7WRgMyy$VPBXnqR zRz9#Q_>9ad{Cf&HOowEkH$VUqDqy4nD{2UdPaLEqfot}Z;>V^vNfLBZpJN*-8^LgE z1ruEXuP5n`iS|A6UGYzfzY<%bO)J7I|IZNrKYJX=e+%47eklo>kvJh<!KnAg#!%JwJB9{QWZKA4HhKNZ7>o_7{wcb+nuLFj(a|&SSUy+itZHBVAnHuZ4zJU z4^UIay$t&nweKk4nDkrHWREA#V#@VK07v^2$xOcR@EVz=o8P;LPfR5glnX2~!@*G& zJ2PMQ>jQLCT}N4W)Y)7=paK||4?v(tQ${>2Ilo)W;BTj8Hzz(1%q#}19L%}%!&n(a zoW1hzM11=_8vUm#C@41BLJagfGR9Xz=F?-e?E60A8dKz?z$K%ji|gzE%y;SWINJP4 z8GM-jIHyJ*(^MKU*%b0t2DAk{<_m9PcQFk4DaK_1$&1IOsDXMcU_8_PA*`Ygj;RfH zqy*=9PU2|B1(~}_YkuXO?^1?pJV!ssH(q+Rw)y++rQaEw=9lX8@?LiuJc@W;kxtbs!ba9U!TZ5#=dH98Ua_kYwm+1L+E5zyZw=>N6(2!T-@vL z4PG1(WqQ&v?cLpp+`)!ykvx$x@D={|tMA>Ov$8h~_4fAjUn{qd6gB~htsPKA>2C7X zEMx?TzJ=mWD3a=9De29Ij8a$a34O(F6m>RP<#2i?4oT&0E#hiV(M64(ue>~K_niq! zmFhRPdxBK^J)RTjB4#H%#ySevf^&CTcRdb->D+h<&_be-c)3U(&n9EQY*}W1A8BdpRTXa{1Z?`WxIE&2yz z%-)D@0_ zb(8qwyW*EL8+}}Co}^MAE)#y{G<|xyRFp7BOT?w^EgyzlGi;Q44CPRLJ=Jqe^b!8Z z%F9J1D=H$(dY!|$IANsR7GjZDa$5<|x-VQ+I-ffd4+tUE=TPJRdubUE#Zf#`|J6rw z+6OYSt>NulY`jDi4#C)tPIf^=GC8*IMrcLD;uXSUoDT}+IPj+%<_ zBOZu3%j3`8;jQ8jXe4G9itrBeP%wp{{kVH#DNRxzEa2tkhpAp#L#(tDdm>{lE=!N+ zBFo-tKwfkkwr43@)OmbP&~_=C7VcjOo4S*ri1+E~_D>JcN|8~lw|#CG0GIY=xJ;?E zTw`R}AGA!*48uemX$?xX|3UX*TLcM^c!Qs9 zkJ(DzzV7Guw0&$V?tDWug*|R_+Ysc{8(=!B6!r+U9L2?4qsLn&Fue0Gz~bjmnRnP8 z0BaUJi4C2IQ89$|a#tySH6S`3y2+IRiE|#Ax9KRIu+`!r5I6LoNVPIf&3d?Y z`gnj*#~-8&K<2^A4B4AtZ@cG#_3^KrGxh4F3%}p!GD+V;?8BHf9(Dd^KLngRE@h4V z`WG+}#FntNl5p*_V6i8~D@#3SWcrfnA1C@RGW5oVQVI-O;+(8S38X9vt^WOE z*n)51ejnDi$j+e<4A{e4_1Hihx=2e!96Q=Om?IWTgJOl}u89q@1u?nXckmZ=H%Z5p z_tosjD<{Vf#A<{1%?W26?bZXw-%BS~l(RYc3NT0AoFWPDB8)!Wj`zMEr|3P*oq@5P z9nlMsT+*UGudn2r1t5QXC04KK%Qn7NryCJX-gDQyulne`;cEz2j#x z8+rTZ&#p7kK&1HV?lBz`zXnImXS=A!E06xWHwLa(hvm^Uq}m+UFG#vp{}w9H3Z`AA4gTgp6sYpP+l2t$mn8s$oG)f@ zS~Rq9JG)ZG|Mwi5j<7d?S(pSl%wl82iJm_Ky6vF>v;c+HCLxrGXdz1Q8j6R-qd^(K za`Q|FZ)t9{;%k&H!&&dP3Vp7rD6Qc`F=zm`Gw4@edBfS1tXn9pO-~YJPK+o)S_I< z;kD(pmTain_r`a{m2W0t((HC}Jgjpd zVdsi)U(;vu{7<<=X%{5D>^2$&jTIBXU>ZmxB~OuTYCAP8A!#MNccCkZa(F#yA6Ex2 zqVg4&?B9Px+NO9HkBb^rp6@C%(qdvG7|AikDfbOPeg(o-%^|(#uDQi*E)^pXzq$^8 zVY(r;day|#pY8Sy{tIBNGpyjVTT1J*I?8PdPUPlU^>(7-Gj{iEElRY5C661oZ<3pq zo?p+{%jM0N&SYM)`{inCr~0PHC}0i(J{{^G3dGD+;3tn;e;Hdk5bC=N!`| zV_h&)8^|5U$Fbw3j~%swYw-yfSZx(8rejNLN5Vem0LvY$hmxAx`kh}boIVNE4gq?d zqD^eh)=E~a{ZhD(t;LZN#g>>`I`#`m1`57S9v&7!N<6kz)-ud&b$4ZBWFK-~$nb1( zct0G3cJ?06>gkS@sOhmaqq7Uke=s~7aH81`lEmM68zg=7XypM?;|qlz5*(EJ`Kt92sr%#=QP_(u2h+5?|C_Kneet7b&!c>G6@R$|;9E_c;;jP&pG|;bBqX{vEm} zHy=USd1E0FtDxx2>Lk4@N=QQ3ePb~xovO%oHUvT@!{NvrdV#;9EhnQGhSPPh)m#-!l4?}LXrJU+FYKaO0S&Qdr5G_IEP@}J4 zbkc6VU}_Fpqd^SPePzPIhdog^_^mM9$|0yIu=nUFU>jv(n>vzHa36kG>TlLb+=J#% zqdWH>?q0(~@7rTN&xe&|-c5Ynll@g9w*SH?PG|*bX?Tq_xX$o`Y?7fkNP#;U&vz#D z;r%%(VNfRqK6C@*)OoY%UJzg2`K@^Xi)@HkvmzLmj)DV-cOvH8ae z@HRu|SLFJaXLA#po|S3@LnUv-rvQN-1>$LWsXqpJOg!B8=xH%zR>ai2J7D-yDO@DU z%Ewix#7@H*kS$OWm9figj1;%aL=omwjDu;VOra%-Anv6z%xmt=r+)VLfKzg!fbCN* ziys}XLM-1`BkbGO8ePdkQYm>o7wEs@chRe^D^_<*e|nc&1}enF0`He!NC^%Nv;442NK?v_u_CC)uWvn;^@IoZUV0$MyJ z-bNL{CE-40kQ;?EQV^5*$c5nv;RPsQi9ufn@`1iM_Iw~p*IZN{8mBl!GK#l`0(n?x zk#H7g5XwMQ8FhmuQ~vM8J(Cr)`F9cxlt2S@BX{Q!YxjyTRI%K8WbGJM9@Xi&;t|_* zH0vQNTb=D{YGZL)GI~0pa%Sdif6a#egB0L_Z(c#&!?6LsMwve;;w&5RZKv7bz@^jW zwZIG=E>Tb_r6ylK;CR~YVF&-C6%ff27@}x9;HTuYn%f(IY zJ*J&!V7+`B<+6o6e0ktLH==V`?Yi&l4cOJ{!<~SP%#9;~+A$jzAVI=?llHH?Rq`4O zTKTw&3Au7UNQWrvzD~gp_^x#>Oob(I56*JzflB+O92`!h%Edu(R9{!SF3J~Q`jsvg zhb{GOBe3j;Zux)*k|ZSU0b{UfYB|%IQ8WCaH#SAJ3_vuFleT}k*p%=yMJ!w~ZV|&t|G55ME z-`r!YG{(JtrBrkDZK}Ut0j5O&S_LZ`yzTHhP|E!Z-n7m?@ziAx*)~oNxXpAM)|^Lf zcmI3sj?R7t%1yoDS>02}zFlj~9X{#mVjrrew1yqTCnWJtT%K-z*;+@S18~q-=$%Bf z2*q*K-=wAIT@|v3YHSI2dN0cy)2Rob(e~&p`Stt`S3WyjIcirN$yS@qHR7^*H|VO9 z&CI%orV4gnR~hhkvY^Xn@>FPm+xm|pPZyU@YVFfxr8Ei@#dk8iEbnxGx;ShP;usOV z)>Smu*WcvPR532A!Bn_XQ%SuGFHB!>UglMS*lb_do+Y2M>15X2ENI9hqT!dShgnNsc^&dwfMg zYYh}8(c_@7!b`)2 zo;=e;_98ct%JlI}CGXTvXWc7Kx+6jlN~4PT-*l~4#bt13Z-jc&{d`(`N#$Pvi}GeN zx8^g_)2Z012mMXtK82!_*nAItqrhn_?Of&q{?1owDYAttDC~2;NAI5BUN8H#cmAih zru|a(KP?yL*NXl=&H76@Zp=y#1ikO^^e7dq(A;?e)``8oAL%mC0g_Rsr%O!^FsbEX zYUalC-*UZQp6uJTMTeQ#0kXB^e{?C?a*Wl;HECCWJ<3+cLBDSl9S|4TC6<37KjK%e z6{|+o)!MTAYUg{=05~V#qo|AXTc6#h(CPJY#2*(QyV@l1iVXXC_%936hm<@yDg<%z zS|uu(C53Zc`+TgTd#}@n1(rq$s-lNP>m*QhG01_48;1P9uHgkhjV1KUBF_dzKK-6n z{?=Yqli-{CuBS|sRI>AP$GQV0Wt$;^J`;A$1>VA4< zpikiRk3V3Mg?`}~RV`PGFZzTM^5^*IZ(H*Vuq!|cdFFRx`OEPqhuP}J{SWv3K*|He zKmh2n679S|SofbbBTpwpz9d}+Slw5nGs6~35-@&UUh4nQ?6nOE0~y9L{vAo`hOi;5~R}nGPGDv!uSuf--qvaE_`fWUi|t` zy?n$NoY;F$$>V-o6J`+(0u!w-Nqp`AG@Ew@2=Oi{(VUL_;Bax!~FAum`kI7 zGI3ekPX7X=&*o-nbF8Jx%0fI@c05gBeNMRoF{w&bHXQJpVaug9hP@oqhw8Q2^#?YE z`Zi%H*^=fEoOz&8<=0-{nYFfzp1DyVOlLlH_3IeeFXE)C=UU*qUWh&O+CS$iHv)EU zEoB}w-m~u9HB`BgwS8_MefPKhi=BtjwVnHah)cu2x*v}HbE0zNmSt%nCY~_@#p{=I zI<>;1B?oDhA>vX9zVbp(ZYOy%^Uo^jMC)KAq^~r=)4i#RN-TRi#|2%s=|YA4ZZkr3 zc*M!YOMjc*e|s@ta^n^{?BO@sU#@*xcfgU#z0h}S?_qRF^n<1@IfuADJMp*~F>0mH zu{=2#ru?-e{z-RNQ&hT3gki2i4g@nRRvH={{qDMb#KljH!&nfq$1Y|TdlNA`Z*r8U*1>odx8nSJ!wuJP^m4kn;8X9Kd=zt! zStSz_n>UX-;-6>mb4C7NWW8lr6K)vxJ-WL?I!DOp?v#en-8s4uDe02V(To@!qXcP? zmJ~*ah)7DKBL3e!$NL^nz2Ek2Uv}TSuj@R|-&qVlk3h8anChuZp_(;Q8$?K-r zPkrY{-MJMc_yeh-g<}uM&^%ddXI6DWj(8jeh(7207o#-Pt6E+Isl8~lC_+Jan0`eh zzK^#Jey0XAg`wE*=;OA+OGw)e+m;Ijk2AVRT)19X)SBg$L~K|1RtjhE3vV=!PyXW` zMGE6alF>Qn+2{WZerEOTvCUwTKurP`S8xw z-L=^;zMli0;xJn+3B9y(iDmnkK&Zj5YI+#uCMdSn>s~i0yttzJk)wet+yvSau>{gC zh^+F?=~a#?(+mG~Y}TCf)deaUp^y(Xy}VgFb!O?hJ)p{*dw4DVJW79&+#BzS9o560 z&x?NCB)6*8e&VY_(3L_8_7@{O3K=qYt`Rv@<-mgz@+0!r0wSY>W;-p+_>JvLQE+%t3s-WFMM0g?@<<&kI6W{jvn{=2e&zMf?_>5 z-H#C%gTWOC7$d@p$qR1 zlQu^Q?tx;jza7NT;GH}Fe8iO~ewBZE1D$ZD=>J+nVF&)d&6_v3{r>?zMrGLa`989? zarW2_Hg!}4i7GxAle|XNPxkihs;fDUM08B3Q?9Pq8eSoNZ?zv+^$+93kwIM4D;?zi z6IaLj+%Jq^qh9_ObU zl3360jqjYbhA9!yeR1kW9!({ASzS8}2w! zMl+4i)L=Ep!O;{eNzOA|uf4G_v9eW$r9%Jmve^=|KSSz3i;mAX1onAtIU@zbWBZkwOOD zs@)}nm3!vI_&XYmVi;$O_>S}`4t{D?)~O^BCZlJzOO5!q;)Wg?(L3a%F4;oYoAop_ z4lKF`)J48ty}rFOSO;g}J3DO{IN$$3HD6RFaR$L5qijk8RM+5!yc%okzJ|Xl&z(!lTW`Se# z=ZJ*ybXve1k$L0-tw#*A`ya1cyH`g&0<>T8rez!2R_yp6U3M;3wK3Sq4#As2!byVT z>!>2HX`1ggPKe=#T&aLMjc*Fg826#B3VetE0YLA8eE+w4p!>%fu(yq0qSdFJA*~ti zEv&`j5R)#;)3#;D784oV9HL4lcdDatemajSP%tn7#rT9U4=)g?+^OiPkbRX$dsvRgZ+iJ46! z2*5z!pTt-J*2v}Cr(ay=1e3`A=;l0j;Ys;1L#EdLP_kZ2)5bwHUa_zGy*1%p1uCH$ zJL}25^m=5@%Vhgn*0d;6(!wpm@rUgX_(#t$k z$VmM~iSW$`Cl%`wQ5LrKlqL=kJDPzOe!Kc>9tuNA`sy$e=@?W`)!u`-niA7H&=e|P z2TTDJH?SNepx*lU)$I=Hhl-z?^}wWZ6p~k!`KXez|JMbF3jM=G8gMC5!8lylm|o>h@lsIkTMwgwd$xmap9Hru>c zaz$22yx2DeR8FLZYd=Msn7#DzA>B}Ui!Sul%Sa^B>Py$~QQ&z!Ubo&;{!(Wd1K1bG zFVa#)nyy&Vr0C75g?$q(q7qxt=@6~Z(HPsuS`aYWULpd4N%RUu>4NC8PGH>paIeT^7YV!p{km_ORAD+7 zu@}BXgAUg4#{2Gck5OnL*%{`HBw-?jVgL3UOoV*F6N+rwX1AvO<}51hnNlv=Kr10< zP6YMk}S!ba5wSZ55%O_Y*z{s*&wrc8T*0K zwpIH-RM9EPQ)P5p!|S`^D#&|BXNSVhE~nb2lHYxYHaW7IH5PwL?%$EoVeoS4pk;8n zF8mf-nB1^IM>^vHv4bWa#;vw(F|ALfbKF$ZWqF&AJO+@7h}mXvc5JqB+-%*&Wk$D2 z03)-NLxwE{Z?OdSO}jfn?%Ozh*-L3ZIdv|bMf41hmV%Apf_XpYPXA%2Z3{2x$-z*~n(bM8PHisiXj# zqxeC_py2TarPn*Ob=ogNa9P?ODwU3R7$(NRZSYD9dZq7bHqrU95*I4-Vcp=-Twm3+;L-9k%B3O+vxIn{$`# z%Mw0uz31;uuc!iZ^4BmPIla}si?$R@Z8xRRs#q*K6Ds{Qz>X9wr6LcM>So&GUMV=OM^ouA##ijaD3iuE$2)VoSumdQvS%G8gsr zJ2If9F^|s!Von!hl8H{hi+S+&m%*DH)K#uI=(FABM;m4k1$PNqe`3w#h*g^UU6vI) z2#8JBHT=J1-_&1-FAGnJt`;4|hl^I%q8h8ig^3JE#j$ZA7TThawQUC$&jVURrw6l{ zia!JUzq&PA@`TxeHCem8UOrnUBVZ|-+8wm>*IV0v~Vcc_sq%&vlq=G(=)|>T=Ot1rU|8Io_ZU{psKavPgiPmzOE^E zgyhq9mi?%6RJxk~Z6GW}{wXi~P)UMTh~AHgr3BM&hFVU?Q9ntVg>Ym>%1x~vXrWY$ z3SDo{q+>Ess?|^wn4s%)Fo`K@S$yYVOyEntZXnl57dix!y8{St*@!R*{bYeyoGEj} z!HTsx8tDe)ir1AP1QZWos+1;%nA-+iF%=Ti*FY=>N;0T{vpYUU0;asVlagHnUHT73 z6wXP~fE^&0N0?~8{J$gs%C-ODS`J&v3gcEDS)!O4)E1cdXW4Fp+)l#! zl>hXL>>VJ2C^MSG(q{I<1JeH}egq$-k5fAnex-U4%QA;=LbyTz)8zsPz|Qp~##o*mJ6N ze5HkJ4B1`U2@h6UK{0(g>+h^{=X3|HkehypB=28!ABA6g`fU!abM(M7OY^LpBZr%( zrAsM(dt@vOGhIrOn9*wkQTr>-eWOkqQ!*iQfJQNFem}7dIUen^13~%-SoXnw<$FQc zw@jye!!1lVL;4|z?<)kpB7_RC)@cRX8MzMwww>awl$@w$=?>WVW>-xQs+Qh#HDGq| zEvi01WMsq3n7d#uB((QMyp@udjH^z$v2g;lsqznjz&$t^R4XPax4PD`5LUdNNXtA1 zn_quan?tOT4``zc3H&m4jBJ*8_@-8G_I^eAD+r$AJxt}kXT4Gf)}l?U$2+s!+c?VC zsCB_F!AJT;3<9cZPtBK%PUsNL zLMSZq#Ezu+8Z4KPOP_>xn)ENZ!8_UXHBW&PcwJM)`IEl7L(IXqz~4dVXA22zmg|t{hOuwAMn`-+TAH#%uf{Yux3M z%$HLrdm`VnDir-_(c0bokDJ%;&Z*NWsA88Opq#7u)dkVs@TPmZ&#WiDzEGgGNBGs^ z)$pM;1Jd0RgE!&3XV3cBHV6J$TF z)5L*;6u?fd?HqJ_bWUez*DkNsY3vx=K9+nZ1BZ%og_$rZy#JZvh}Ix`h=6g$?Y2}u z;_ND&KIyGP(wy7gkE*LE2=lsM5ZE_hWg0$il>82&^Z)~9Vhyn)5*4qjMJx$>b)Mb> zmkT94+~sS^&DR(+9>W2o^}zV0%cm}oZyt;PQ5`xoWl-4GG~%DiuUas{^xZ8i|1N-aj9I%VC|%K4aR zE|Zw0Zp)l{uR$Z-uT=^unV$stU<>cjBV$6vVSvluaRrDq$OhR#I9vlK3}E!Y&kp$l z@hnLhae@*mSYq?C-^Pw50(<)e8siqZ6j=^*jQI+?7w78UqS&;I9k&8&MB=7qZ#RbM z@4h|BKMxEALj+=4r!0!TpfyI6cfKApm2f}Zt`aR`*+6BdZ9C7EQ9xf6;`(F?RZ$K{ z*Ggr*N=g4FfWJH?dHN?=cUrpJL&ds|6&@C{tbHY*-#Z@8d_NIXxjYZ;x8YzkSxFN@ z5K|e-%)UCY{y)6zIc5o%1_I+4_?X0D%R&Col-)ARy*=OGr zdw(*rgkMT{(GNG8T+D@iyVv4ipLoX(GTIop-(BBmv);Zi+CFnpTTqLWarcJzSep_tI+bNvQ-D^hkfo} zZc)A3ey(SlG@>8T{a`m;utn4V0Pb>cPZ9=9mkC(?M*JF2%UAr<9|s3y``RCqzsEe^ zyQys3C9wOoMhx*KYeCUJkChkcp)4+^X~;Y6S!36E0D2JGqZ+p!NUr|i&1$#I;*lVM zZ&(31o>x{bU&b^#vm5z2)MUR2@uQU0d6!P>K)0yV#!H*wSR&dY-im`ne~3zws|Yf6 z=n6Z;8UXN55Si2am@Fj8%{Rvgk|q)oR@XN@>5tXygq-V6buUQuD`g?d8!r?9zTWB# zA#n-|$bg(lO)i-us37jkP8{LWK5NE$Fu6tje?*eUoY)0D|ixcf8 zF%d{Ktt>@!|6F5f{^KOsI66Dk*-OUwj?shPUQ1qdeJagr*YrN3(m%DxgCWrUg$rTD zLamdIXySb({+(WK(K0)IL`inU>KKDM-WXU>_9U*-EZzBdv2Zp55!6=v zta)^(cBGrxC4&uR@u#eX*BJ@YvN$oiuj@ZR`^s}QBpcH`2X~P^wR~0g>1c;$YwHEQ zgCPh&r}C8@&;d>n?0Ph5Ta1GOxZ1B!uN9y8Sdir9+ug>f_j%7fHj3>D~hrfutvmX|fHpLW5Xy#(B2 z;sAuO^q*SC^1!$q5E;f;8bMM zQZjxF3P3~g+O-65aXB2`hNVzy=sWGd{4CO{{Itl;h&R(<9dz&?K!C>fxc&8YU;7AZ z22KAJk0VV2f8BqNC+Ke4Pr;m(l~2K}bg}#B`#w@4I7NSCUBh+Z3G(JJ88b#JhD&&= zXoKzY6sZQY`)bclW=7}t&+)=*U|TppJ7Z;ho2*1tZzcp~Xpy$LRMoP&2wKPN~9-qn5+ z3%nBIX{-60a(8z@N5J86b)*{AhJeV^csEFCWEc$1o^RO`^UbE&G7N|?WXPiUx~leo z96;s8Lq>Tu9<4zH*rlgVRXmB-V@(MI$rK#MfAulC-!@VXbTU|PT9rpV+ne$63A$Tj z=Y?xNiq8?)3~v0;2do953#YPY_g{{EW(Sv8W)eTX7txVGRDQGF9W47HlA{+yZPC3r zhJ{mq{uBra7RSfTeOyl*+&CY40?vh?{e918(r6~uE1Usn8wg+1pct~~8&qDr34T>i zL6^GL67;^`TY`|xCjsB;4wn{~eNysiGyJ$-~~bbf387lo0H*7N&8Xl2r1 z#GP_Ca52mj_)rX5j-tNkB1@THa{@;wuIv|OQ<>@Tvl;;IjSIdEjDH!7OSWV^v9NJVzC~(Lsi!h-M4KeqP7C!BB3kX16~- z-c^+s=YN1g#GiG<53xlUzZ-p5=M(V5wyza?0Q&t$gYB?{`VJA(9SqKR5%|cb*TD1X z=inG7C>K4nU^jDx(&U)YOVGYbC`{*x2iy4_Hs-RTuzmujULA*<;&-G6wm&TjLqG#w z1SJ3f(~LjpUL}k(Q7FQknJktSkEYyTyj5&q&+2R{D`NpG$BrC;l|~Lw|B2XOY*bLf zDiL#;txRh+_VWxVD<54o*_($>NYX{|?tijc{=a&8ocuG({{Ye-j?Aos9#5?b&i73? z&d?QIe1E|E3Y*Vq_f6A6##sQ^0ysdwiUEJJw%~s*(Q_~rWbc8rO*750I~;kOT5*vy4nn^VcSH zGVxTe-&#XLhTw1s8e{H((Y{FDKInknPLIf?7^3u*sh{*Mm84VT8~Pqw8UNPp*m?>$ zu#Eh{#Y^0$!HiQ;I&F)p3D9FORSM~FSZk1xS0d@{;%1!h36 zB2_YK3dF9#>Cs~~w%2^Utg&mvQo1DWJ-S00D`+B;<)Rx=ejDpzFh-5<|L%!evn*o9 zxEH(9Z)QRYq%R`Ocf-nb91hI%ZG#7PUPylFKQs)Io-4rSo=R-=;(i?dBM95=Y$jZK zySzpoo6aBUUbKSC!i+S;f27By(o|zDU;aw3OZ7o9dHlS&b9CSwsr}YwMR(45058iB zE~q-`(J?S+<+YL{9q47PDkT5-LLtiS%Vd&QkgW#woMN5O;5V(uLp;Y=@Z}28eBj+H%~qG%MPT#7R2*hpUn@J^D>e( z4};Rs)?@^Ew== z)%mH6wpvnR;cgJV#^OKQeM0|0^T^Mb4a6o43kP?UuZV7YalnTiUg1o$DJ4IEJNW&E z9e#&w{6Q+N5z)Pl{9aMN+Sr1`RN|v^J1`8sCBD6ZeIFOE<5Zf+<|eH6JD97GCIR(- zw(k7(veE6;2yNo?zM<6h)pP=xE_})P%$C+u6OaNRjAi1vpgn$=q_I=|?R)%$C}Z!(bjAC|<8-?J^7S=hhb=9WxDstTpG|IRy3ae*v>1=D zm)oEmQ)#w^4|3GIx`J7SrjbCyEb;sH2=u4alkqCvXzZqU0Zb7dWhYY^io35iKk*?mf@bf1dYdRf7x;VQF>p9l(&4miC zoPUcoq!WLJ-lxzWD4h)2`7C#8AeC(X?fUoX%}ns^($}!C3AN_*Z2x-oaK;e&$v+K> zxs=$fYf$^5(168gNxC^z+cr_42;9puCnW5RE5;EnWVI+%^` zM?Qf#Q1qkFhbJ%7DqN0o_5^d!UHr|ALFXBA#iro}f?D3^Zxx8jqfoeArgUH>ES^-2uxZM{W7y*XfpOL{9@}YICu`U58AGSV=$6BJI7wpzH^Mlvr#FgHPBq; z5}8?6erIG9dkqMbT2@kORh)`rL3fhIvlgKw{}Uf4d}zQ!yI}ArLWMrj9cDrp#ZD}S zsUlQTrAG;vI8;Q(DXPRP3tLv3@2FHmE1JXrEz3z72o^eUu}fp?{9yW@g&p{ru9c}M zQRwDHRQ+Yv4OZyv@NP6-VL!ymXKeeB9VSwLZ?W`nV?4gINvW}XY1Ha7`Ggkt;Q%B&xPF7PYzU6duZvDqKa&hYOwZQakG{wczY zk!@dsA1VeEW+-PPga3kThPtCx1$qbqKoGK|&Q_z4lVSRhxv;jA9ej3X)rD8<1;4I_ z9>vEy$7hR1b-?4lscrUPr6G#peSHx+#_I|>p1nO`4b(+^dYpM>SoDZ}v|j3suNEBl zFHl9G_)Zetg+MdE%M)8c{K`x8yB^9c7_7623OR>#aoVkVJwsG&OffUgMt47w6bhoYWGQ`jHj&!7ncw!Ozi0~7>Vs3Dqbk%Q9K&)7Re-r;**)i6<`YL6PUz{d zebXaBEg+$_Tm+bK$^glm%1!hsb&pa-U4^Y;GaVp99zTtr5RIu$cf#J_r2gDzzj)+X zfS}Ro1W@ra^ZqV8xtMd9g(=1Z=*C|{h+aPqydLaB4pJNGfdC(KIb8ebd}LoYI34;aZCW4X29O&So%{|}H$M`E}o@BP7LjW35A5FV|^ z^u{suPv{)8Audl#AO(7&eA~_A0wOfIvXA9hH6pS!k^wF}rd0XW_l@4xzT+g?aRU0q z8`IAhc{|h}m$_dx_qH2d$yjL<7PdC4b+3@V;p)~GD0Du_K5wXA1jOd!zt$8{vh6Xm z2d!{?63y!Ge9)bkao~mut$0~Em`851HP%P<^h&1Ric!6S7`~`ee^Yd%qjr#QVale? zmU?{IR=w-N!e&jF`!vGX82Iht>d1F+?4DSDNJt;iHm)E@eb(0{q7?VJVhmO^@@R1@ z2{ww+idBk&LZ_t+Ld0#LMd|XV#FzUB0{7XKLuLHzJv-m{=js|>2jfpxSeqrHH2#?^M(BJOkFFq@h7UNJBiV-F)t)h-$(I2kRy{6-#35jFC}(bIaV@T%ZW0 z4bZYPqG0Dtoh9!`SH~7AW&^Mv{wa++6r~PTNA0>DJ8a&^Zl8d>dDr|?`!-YNQbS)s zkdD)^=KZjigYCc<+6);(gUUDmV09+3)ACd$ZkO(MHiLymFQ|$@IJ>fHt~Rd1AvQ-f zJ4Ek;G3A>!-8b7VLPv3^g(XYI@j_k9zbN2ip0UoxNpF1hh*LXzvq+{mT7X8oL=47# zgfuQ{9;!_cjcG21853F%p3!$4t4ihceO_6e42jQoi%N5IO!oCXWUbbxKv&^Ne}*Zz5C1jb$h>R`OET^hu8tHxk6qg;LnG$MGPk9_Z7`b5)~-P%cBbnRmG`XGE?iM0i)f_?A* z1Vmj|(4_#B*{nFxI?DVXB~<^XwLrW{&eUr*-)(wP|g>6;j{ky$W6X$N@K6%kuw zq@RQA^6-(H#O!+7>p(9xTWvdH_w{B~JU8j;Z`OQRHQsCuCvrpr zci-+zG~?9Muv~v=jtKsn|KvLR`F zEbt#d6D-V%Fzv5El=M^m6-WTV*GD|**4JiQ3IknVU8RU)kl9cQAkBJrAbj+wSZo%Gz)i2?--J!G-<%x-b|cy0-XQ^lT6>wL1#`02Cl8!90_H80!%v51%Djkv0KNp#D-dKOAmOvQ)ekYEEb9TtsVrLiwqU$ZL!Bd(=rD{ z6e~jPc8^s(KRR;Us%bADbv!9iI&vby?;ipLXbp4 zpDo}v@GyTV>K-$ml+e`6gkjMAq52q|q}xcufbvW-+_1K;T?td^P>DY1o$8e2O*Qoq zRFQ^53Cr9KJocvEKp83!>jS0{$X9{HF--CpYB=TfoODU;xSvJy@`D z+SUIu;A`c70P5z>dbT(%Eaj^#Z|y5fEFF72QMTo3MHa;dZdGzu40|3RkV=!~R5BG`$pI3ds}RaQo{22-05_*RC(_)A;5 zf9uZN;&%IcXxJ{xD+wA-xMSdR;`hIA^kCC}nQut$jPv#?;;S?e^8l@rju(nB_qqGnpyPCe;&$7E6{siLIIu}D6pJ?=n0~IiJPU$a1FfOD*maykrP+ELTMBS9nnt*I^^EzQ(Jo>!$g_BRHf7iGpUI5)@70HbPtv9kwqNrQbPC5$Ou^@djDn z?HPKj3YOW2t?Ix-o^%m4Rn&FxGkV=LfMfh3&?DKWkTnrSvCMd%w9-i!&*)iXYAU%G z9F%U#Q{;t*K&vDSQ>t4{KpplLxO-+L-RNu@H?YEH%1q_dI)mP`=gn_TLV~O?H45r` zL63rY7ek?sVRZJ0~aymgo`Uwb(eY5~Xb#bgY#_3KA5_iBr zl-3|Ob_^x#18c2R!djC7eNCqDc7C;9BHW9r(i+7(jR~plg7wa7N%w7v_(QR+XZcP15f#vY*lolXH z#c`{@umGn>18WlwM_<-G^tDzpq<*+-nrH(1Qh09qG{L?Vz2nfpZ|o6|jGET$p8fJd zLW#Ll#CY3C3VL=VH++D*B1V?sP(T01^-l;xgNf8=W)SD=!QsD!eaM2hphCJh{Npcp z)$hkc2%bGwbaI=(Wus+U>>|&Y}RY==**E z$U)BnQVz!Snq=#Aqyuxx%n>u48a0HA!9+9=;z}QB%~WO*nLR}M;Ld^^WH3hZ+5 zCYA=dYB zkwesgep`$7rYe>g3#I`?>pzy2GGM)fs*YtciK@BGBP1#EO<1^D>~E`EPNiZnubd2p z>J|ne9O!6cDc10(q204V-&G~7f-P>k)f77y>k4^o;fcSxbDS9?jKEgLZ|k0cTZ+2_ zExW87JA?H8i7C@l(7=Q8VctmW%csk`9Ro(BfLQBw<8zy8diAp4XGY{ye`i{0TBUAB zqbo_i5U&$UrX;-}t1rlvQ2m`>CR4BxgUK=h8VkxjmsUun)CZD8n{{vR_1Q69meUES zo@w|q-ySE@BxaRabdaDbDM>=lx(bZ-d71;WJ`Uv(V`pcI|GRN=ve$J!N$B zdp@cncq(7);{5oIJBqlItrp$AueAU0y8<~}?A9naGFY0+%|8jk^avGQp zcZ&?!?Jo03oU~Hy4_%e^=aTD&TQRu!3E5U9SJ0P~v~GRyIhruiBh_jm1%zC1uaPkR zsApXl=wyr*qD$qP=sElPP{pCHUgV#6X6?525i4q0a+M-ZDl&PZabpMPB~Wl;t9$C} zA=x5|6W!Z=K(jv8d2Gqqk(*Cuh0NcOp9Knd5{p&{Ng8Yv`-o7HCfXlBvBFN0n_yr! zV{EqMMlsSa;^y?g)>3QbqU0%E${{|);ihzFCY7!`f=(UB@b3iJ%@i&{s*90M&5i<4 zu@EbKQkCoBpitt(opOz}pZKJlAV}GcBg{=pscUH{dJsq)Bvx{p?NLfiW=da4T7pT= zh(eEuA-3q%bCVLBn;r`@hI+=amCG9Gni+Iwt&vqOYi}L-OkY}!`dFVl5)JZ5`=B@B z;EQbEYMkK?j)kR?r9<3Y-@2(D{EgO za<$Zl6qw7Tn;zz{_e)3lDaGE<{s-vd7yFE^WE0Vz{*^c7W(#q_^)Zy6mO^|jhD9B$ zMdgEa-MNm_90Qm@o6!0q+!&%q{>y#q65=EN6N3_yZV9-X5e$DAkbi;8ZkRPy=lL7N zx3Sz#fcNh}HCrXdrhQF`TqRcpC!%!?sTGTLmH&8*DpgUP6x(Y4v)C@)U}jZ@6CRFP2+Ri_l7pC`9;@87E(qj=X3(U86O zuQx9q<=^d0NEMR6pPO=?PWwzEEv^33+Q%0IX%0LdIrgMqcp&bm}# zHax?PvYuQeK?j+lYN4$vz-y7Ld=}OBCdu=e+*3sYkvU1Wm`9XUV&4_32;)?Z(F+5E zNakq6*X4B~wpNV40vebB2}MVW>3=l8X`(k;@BJPeM4TbgCB;s zY(mjmMI`F7Sm(xikWGJ{-ee+{`geABoFlQ9O`yi+9WudFW14^|Mk005jhIzg*SL?> zDV1C?CFt&Wl{_p4tc%sCS3Qrc-N?@K-P3=7>LI3&f5E*(bJTzMP4Y)4^cg2*>$XN1 z;8kEidpmau#=}PB{Rf;69$#MDoZr=6(f$J85B_2PxbU}M3}c$3-%mmB_gmF>82R?y2jl5kfRG$|qJw()Sp*Mlf5`MP83m76KVPVX6E zVL<*bhd8tGQ5{72dAN|kzm>Pg+e1Q-oI#RawS@D`Rp8CRoAn7S06AlO}t6W=y3VN0wwuEHRTlmq4 zER8icKb|>T^jtO-tou}|Cezq|2in5rmuB}b(v0wia~DypwfmrddT`^&7OhS1#F-f? zIWr_&dcS)xp?$G^Ry+N=4AkNzasKVetbH?-2J3t=p)3|Xzq}LaFGnOJ-u{x$&WWX% zoxb$r->42qhS_CPqw<$H>vU{0Twbv3@X@bb&#C z_Sy1A`Ni;%5Qe+{Uc~6~5}5*`!^!qj%OkGFa1ThFN7uD#f&iSj{HQPpW?;10nrJPI&bsr88mE6?3rNIoH)QCHRKub8T} zmJnC!YAgc4=EprlpTQ#01dfL(-Bt?N&A;bkVxpW<+L2G3lrC?PI{6QP9rk-|b|7h3 zuZUMzY<|K&iwXSgledN7tI-e~+9_hLq9k$ST7zzkhgCDWUSaS2&e;k3KsaHO!)1hT z45E)r#H6u>!F0-^x>BPyab)JFKnE!|3pMVj9)8U}fV^0cIdsmwW)JgPL~(rJ0$UY~^MKfVOu)>% z=wU80;Jqx>f-1*a^+SsB&&WOB4ce@~({#mT!~$-_6?D3|EbhfAo5A9FJ|Y3`XqH=iHjKesh3Nc zGleowWJaa98D*I)SK~{7rCfjy5nlkyVxW3&LXB6i;!I|+P*IsD(`Md2rMB+d&;F(37 zwAY0rhY;<+z)}!tN~px&cQ(bdV6D6I!zMAuMe$~4O*`FY>a*Vo2R1s*&9Ru{{mnPd ze8gjB=Y)0OKmK&Ko&l&Y4o5{|`@Z9thPJ{*R9oMMc>udZUyz2}QPwlx*1z5!uby$8Jc9gphq#_I;Td z3`X`{*@jt66tc`H%V;p;cl&%k-`}5e@11kbeV*r>d(P`wUXO?01D-BLG`vQz5qv2z_XkIZC78*>o69^vCV(;22McS z2|?>I0zQAL-aTa&C5kH)0BuruSn`(pQcN^OeY3+vBx|mIgKmr$mG6ETuhhRA&>X9$ zW4V*fUJHfnK`LBN+5-`jvwO%Z01=(J!hd&i8w-n%L6592e)Sc`o#8b~8TN}S^nlHt zuK+wD?A|ylg}0J|57F*AcfU>}4&CPuue)ncUpJ^`@n`Fw`UNpzojhgg7x98O!`|+e zm6kANxf_4X6bI?-8%jB1K)YjBS~cS zhD&O^C(C)u#duEN(!7u*Hg)x;#7}p0^PiheVPDmDrbo*$=@he8<#ShH|Ck*K<4+^v za?kSwOrRb!%|o;j?(PPL3E_FovCPu-9{tv+lHU63~-=REsd>@IeLSA!KiByFxo3}0JA|FP3ZBwy({8bp*>QWyxyB`$QnTUtvI%9&(l@J2Zg8Bw zqWk-Ocv_9))SX(C2ciiX?<5{0b|=?^w_qSK$FljQ8&96gX)~Tk;oQhBF9C5t6jc2=}Y+u||>%c53qzo))4 z@o?J;c^{R|oM3CHGqFjp{UA6E6j#V^ux}K2^)cq!EzVQgrE2xjytThBX>wCtcq%5} zPFsqvyY?ppML-!Z)f?##X{xIcBz%M=WdOA)2SbB%kOp{4^zPA+#sQxfqfVdw7GV?72n08LC!J;97-%%+8V>~L#nyqbd-R+R$8Lvff| z{v?L@#NByM4uI@+`aZn3V7Bh)p$6gKFxS`71*2ZG9=a2ElOfqCySY z-ku8pJu4p~r|9RHjzJT3RT_uE7$UOZmn#P&JlyISgdh9grZwR^8|xE{1+RTb*?}Od zVcjvv!f1G(3N+f}3CQ8A2jXa$?uj_k$T|)Dq)Pm0&?Fy?(Y-wxFAM1GFX+#sG?pwj zY$gC69w6s`4k_|Wa(x{NzXb1tsZmUhKm~6bVec`uq5yhS6q%KOt|i)%&jCGds|Lkti;m}7nS>i{k5fZ!0} z$O4?CjmgI#K)umNBXo#N)iEfxx7YBCCvYRMs!(HeVs`1Y#w{S*7LdP11<;Pgh8;s} zgo7&cb}yuj>EG)N9D^3_?Eqz%0S%RACm#*bA(Ohax09z&9-Z%IQs6(*h*1oX_}8N* z>&jhbxxIgX&Cd2H7)4<@dn$G=oC8I|RGEN?d_YWpSlo&~9Sw!MNsmT2oGReeI90z5 zR6nq=cnrt{V`b05xWai7-r#vF3%IJUoM#CK%m~oW(mf14$&vA@nEM!XOT*gm7}V=R zp8zgIaqRHzeQ0c;Me{ukw5?Kl>r?T?5iam zumQS>$Ke3t{{OmryCb*P zd|Kqzi~rT%bw%94pQA5Z)M2V>{;D5JJf_tHNfvl%AFhY2s$3~pVc)o%gW^H|(aTOU z2D>zV=s9s(>1GxA8SoxANtUOX4+MJC2e2I2ziiu9jjki$PE*1lo9>};+F9rZbrNyRQnR-NKx0oij2+1daPl2myLfy%3?|zM5x>a?r zq}E{R_d40uQb#=YN2y!LmXz~cI#8y+A|xWlRAoS5Km%f%FPO0}<6`)lAcKEYQMrix z2GTd^@NH7Q(P=lmj?#?ru)ne0T^Eo+Me9K|v1bYTj#iId?2N>8`QJ%#63-2og0K32 zm&o(D=xZEWggWtOw&x7@8MKSC(&m{PV&_eC(@MzDbKl1VxkDUPvRh;oUT1KczPyg^ zx%y)kuMyngwsLGT(YujA?LsX5juz38*{juHZX!-3eh+fqmu~&wd5nkBR#i z_t)Z*V=HAW+PdOeP7BNL!JOSVW`q`1Bf4d<@yf}U^@|I5O5MGTgnwXIP&Pmd*2ZfC7-SJli(!ScmB3wL*71 z0?E`@>y%$h*YPA<2Zln@MoQ`~UW%0;Zr$4$@7-On#Jk`veCx^wL01M;rqlHfQrFeS zzcqQx5~EJ)p74&XUM27Sb>2-31t#j(YZtv)6uQxmO8v9qsZ>vLO~8pY70s)e$#L97 zU-D$Yip-1$q*7Pk^C{XnXw_uI1Y0>nu+!%A5mn%cK$Ik(bVZeuk|x8WM@i zx%sPJ4M3jfONA$y&JKPRKHRYg!~mI z7Wry_WbYb2p)znQ%-W*yLc>YsWd+5_7hYa5dcn|z4a$GEJ}Qr6nG?B(exq>)#y*|_ zLn(s30)C|c`_YBA20tr@lWski#bg6y^4*^=bXaWm#dNjoHrtpd^Z%XfWmtisbx^d| z^O?3@#tyW6dx$a!V55Ng?sE7(IjS|X$uyM^% zExL)rPftWkVCu1D9r+;8h&yeXMM8ejlvns&cXVDr`9XN3d_ z(`9wstPI^Q3BZHIG@gZ;elVn7jeC#5?VDwfg?KHy95OrYZmia2s@AzT5U@?m?Q28? zgiuQI@ZAwr?1QK@oAPPwDDS#Nm_P`O-1+d-`t|gN#*WVszjcs}k1`8?lSU_|t}aS@7w@Z(?(@Boe+?4h|2JKMIji2c%eMv}22xCp zI(8QJJMeA$hr->&aoj9Lu`>^k+~=6SVvjQ**iT+pSJgDKt8YajI`Otdurh3x^2x4Q z!Q(}g(_&`fp~VjC9>*HTm|9XJB;pZymWm!LnN_BM=dVra5Wthj`0LNYAA!VAA3j+8 zpK1o&|C{N;`ioRSt&!MH-exj2)4=gQjbxE=2?3MuWOJm4v!kG^GsmEhvrBL7$U=|w z&Ri6KPZK;pv7-q(SlhXIg7qM|Ckt>*x~g0KU$x|j+=II~r2=)htcF5ZG%k=A5;lx3 zh*yHfUX#UjxK2prF?(1n7yiXgiIj=RA5H8DxowjZDo`zRln46}jR&wK^=4g+MbbvgyB^$Q{Sh0XVeiqd=(@!%!4o8F$&Z9xAvVebGENM z<6zGeC;nBNNlQ&NPrWpCDo^FdnQ@7{e~TiM*5M;s;K3M4-H9f&!mc{@W^yDf3yGy?YkBs*%3%1B#?x%}V)-^_?wl zBR>Da#~JZ=>h9MFlYgp=-V`y6NIz;Ib-q1X+j(>JTBh47s|39C2TK0bM*P#gm|Apd+q-;@`4ec3>^B9yrWg5JD#Hqy0s`sVd2` zcqB1x8+S`Rjv+#75oKWekl*(j#;dDb&dSxJT*)6V1elKXyx}avcbOt_cF~`uTu*Rc z_re_RS(69`v90dpszy_E?X_?T>Ebe5X9FoiXk(@MqYY`!}?f738h z@f0U2B)i}F947`;UQzh{ji#c1e}4A*vxoIRj4hZW%S9`z&|5N`jYU7-i$;C6;rCwE z5`+})Nf$6_qC_PmPb-U__)=VDKiZe6Z8rJ-)<^=^^4OMB4SDRlw{#&ua6J=ZVADB+ z!k^10<2Iozja>WnapLBCF^k3FHqVBsI$KM2 zN^QJSyd>uXd47Gn3!yNoE2#)K*NjZeP|uK}RjCDUkGV8?Z<>G zm4zkz*WCC7DGiGHJ3XK`w_hhS(p2)c)LHFruc1nccR;I8ysy8_c^x*b#DFqgkDL*d z{s8hxBKu>mSwm@Q*|s#4H@@xZ=+nP~(}t*;rkDyO2G-4f_~sR}>y+pnN73|_iCSvD zbq$VXUazbcE?W}Y!_?p8wOIF~b(nlvcp*dJ@psQ!amQzduQzaeF>NwcH7N-PMX#e? zGxh$i5+dV+jw(HdP*N{hW7t^Ik~36VtH*ch*e@59OE=gCWmM&hq<&fZO0+ zp67+8P^N_0D@zZ}J&(NYYR6kztd(I0R!`g}*$S?A*Trls4EDHpBNlQh%)A3G-drwF zsm-JOj-SGYa{>GpgJQBaeew~VlcPt{;dnxhe$3b{!1tp;jFC^A5AraVbGA}jn*lkl z8i%{Qfpm`I8fQ02FCCMN64ZyX+m<8H66tU7HZQgQ^a+G->87qG=-U~P(oixf(PiEW zr|G)y6XmtZ*re%(nHJ-kmK6KsDC#?halm!bCG&uco1ZLsEPaJ5pQQ-D@0~=}DvuRC zGp286x*w;13^IEcGkfwPTe7-|$xLlWiA+zmVlw~(UM!1M$mbqjUGVEx4Gu@l=%EC6 z+yyfegC`N#jX{dyTZaTFHOKLyXjApFaeK$q%B=ogQ=egeg zFwcW|;{-=eBDtfSqO2}eDmd3b2%pnb3UeEJx-&7A=)*$);fvf~dbUb$up{s;r6JaD zOIihrVYycjyzCw%C_)KbKmlVDV^h~DmOxa6?u z+MqxZXepfaK-*Tjq=WgE;ysA~T2A>d-3oBSq22*I;wG%629fy~NLe>6gA`2{` z#d|W)i}sIN)o+VfF)K+hoR0Xa#J%e=NuI!e)~{Zn+8;5_zG| zRYS!nqT;}9cWaH+k70+Fi=g4g@u+#cm$Fd8J`7|(-5Ej zXuBZ|UAhs? z(PJAkEejm9m0lkS_XPVcOv|V9T5cde52ciM847aLhhL-Vtzm{W9?OPX&<2o6nO@LZ z0*=aI=NmEHzZhq8d?yh~Xs{wW1I{ z&Ba}yCax3FtIfdH;^4tLu&o@{7!*0|9ykUSE_@BE`vsh&(?vcWgZ5)Ec&#~xEBvS} zYz(-03}RrswD!D~)3L)MM@h6MpB?DJ7~>0y;^ITNxGnT<2-$#Yi!ARe!k$|4{-H_C zpyko@R^gc2vjZ*S0yH48?+*%{G z2nfo3kG}G=m#H^zoT&oiqNDB)eL~BI<4_8^y z^I2Rceh^wAUG`?*cDO~-)m_PF<~yA!^n83y1wIg+P;BElXW2H}!@pV@O~Kew&EYiG z-7nSFzRvAMektrssFBAmiQ{}dsDZNRyPfX zk;AoU`9#DSh$@n1%&iH6+JH{6ZupBlIkfmjD#Iuq?K#iPY}z*VjZZZ@oyVe-k<=km z1eZ^VqSkKoy60zB=AU*e(TK1=J39Nzm|WFB53=3$t?K7sWo6Wh7dpHs4*y-S^~9-x zJl17+<|d4Y8C9DcaBq==ji{ojR6ea~;1KY_Evnz?%2z)i9VB}9?KS|49lf2AqmzI| zdRKM*yu~(zsER145TeY#&>zPVRKxozN=wH2Z&=3qd!k@k4EaKu$n@pJ9@Np{&b1y? zWoeHaF%YTbnpxiD<-O*4`a3rpM+N;Htze^WL`0Ty4Eig!EKZ?UwLn!S&;+tvi!#p% zZFD+iZn}_zUmeGRpl*=vg+HOOuGD_pd$25In@z>LLa8-4e5gD0W6J|PpY@Iy?&X93 z8gh%H|M0MqHOfS6)IGOE9xz;J7{6xn8le*`=jiA>Q&oWqXhJowL(5E?N3y;SUsu1d z$4twn?XMQ31;S+lA#dFq>K7DC(S9Dz2Md>l;sg8<_KNI&=>00@H*6U+K+XMK@CM%Ql-ds z+$I)@e-Ma(&f@VV{w3YQb8Xlx;VDspbMKeAMN&G`e(Y&1bI|wkm@U{ZjZe%czBIho zHs*tJ+2^7>0lu*K(#=Yr3CWQgL1xLT+UEQt0MMN=Z+3QcY2H2@ z7o*kkZb)o;{(|YvbwrPhwB%2O*}B&Mf|x!&uoSkYTAfZARTfv@5+Apg5k<^Cp@}$%-WNvz@~1)6?zSGmbJ-#kXB+8V@NmJ^zH%u=nBM+wkKCnw3#(VHxAwvLi~KGb~boAG&P za!o5ZzGUPgYgAb%Vq7HDv0Mh3rGz*4xnO`2N(pO4pS#{xI24f-0l`{1xaa*3j~<=(4@vw!690Rc68^d-c?2R+zBJ_)ugF@?=? zq2`GS=)Ex;yPqZaWcMC7XyMhltnT1vG>@{&5dHL~Fj4gG{9?2Fo0E=tcVoz^1{MqT zwb~telPxthJrB+sn{*S&^b1a+hgRXD!;vyJGvZxKk|wnizXEW0-$3g@uzlr+aEaW+ z013$N92u+}oFI$alc_h-DES=sZcU{r0?*;Qho_1}3<2>#p9>6x&BXJ0!!y{O$Tr$7 zuT4HoVlzEA4%ghUfLmv*vI~jj z)9<_aXn#Y7=&!WAFz>=v`#DD2?PO4XfYhZbcHdv#RqGGd?U+q7!s?YM{Wv;$`+;@&q-sTZb*_+4gHBce$oZuPIV~e9fzKkwDTuX{BCxW-#cPV#=-O z6hr5&{tvg?zI6NC(YE=kxXkr0t~fz+D=hzRG8bC&K zY{PNXa~K*5qx40Yj&Izou_5dBn6S3U@t(f&VQkVYISJUqkVQtzcG!t%L@lwNCg;>b zuniLOX(Wlcv0k}aEQ5nVPc6hGT06X?=<4*I~&n>tb*otXDP@T|!2 zWqRVu>NrMLX`Pt3yl@zR4rLEK>+uyeGr0Px@^jRCBcPCkS82h$Bh*6RjsvVb!@j0ROLS+F0g6DPknSq@c?KTNdrmBaN z2oHQ0CR`Am)LuQAqE_GH;6Bz*6xE58V^Ef1+9sKbpWW2BM}6H28}R4|&L7G>GX=6i zdgr{$28i5ywztOMH;%q+mxU5w2K46e3~zja8EWX`VIAbn`GhYqtO^h$fl?=vfGER+ zuWDDh+m4>OStaqG)`9XmkoQf=z+~8!qCHeq_XCyu_dH8bF1qzy>qg>^a5je;$U$MywPjtw>Jc4yJaVb-MULdVNEA z=feA=H#Ba9q1tK3Alfs;Hg?3qlY-v&AlYDA$SX@Fqsn~H%8WnXt-<@0Yf4>!_i}9EAB;{! z9NmOmU=jfaC?c1M;}a;){rFJ7mX0Ex3ryl4z!vG;!hy6rwEGrTE(?c$YlOdj^=ZQ6 zhWhGzJtxkw&R{Y)(qxbDyR55*8PX(M1Y@}q?L4-6vJ%q+nGeuW36Q-lqIlr9%eQX6 zy8axGq@c|fNM4Oz(jO3chq*UG5)t#Ja{&OF9P0V)QVZFwDLn$Jnk&1tXLug$V<; zUF~#r%yvQv1skfgFw?OzJ8}ap^}>_DcIM(NMf}#PRtD|Gfj;0Avr~sgIM9+17#A{F zEn&keFvxt~xyAJ0;izPV^Z=6mU>|vLlDJgU`Pqv{vZJ2kwKD`95i^D|Qtc4C4qlz=sP2i5`v(b2Nnq19o?2_tP<` z5vXg_iZ47O{||Jgbx=pMqe-kRV7KiiP@zd~1hPpdjNCxJw$7s(^^JH8I(y0Rj|rKZ zbttbaa98SAMi}i=hoz8Vp6bq#Y>%6FMd(9!{WkkPg96+A=#K!u(oqeJJc1G?V}Z3w z-UTM!B!BC%#Kp&j^qM_*Yq$p)Y?ux^20cbj(BJ-MpM|93A+4auVjQE9FqwBp>N7A; zs&}d z6EQ+_cpwASaC`XD@fqD&x;~;l@`RtGTV&xM5nwr$wo}^=M+Fj(x@)$P6G#Zy2g*2@ zEef9I{l+w18S~8QPohrrk7*I4dfmQUO?Z{t_Bd%xY5o{g&tM7}Ys5oPS2(%BcC+AY zld@C(?}NVvM5M@J_4h|?4_2qq>AO(sXh-D?9wtqJAm3W7U&G<9>m+Z5v|rb_94-mS zzGxfHIQ&0&*StN&tX_hx+`K(KRd+9qi^tn{Um2oC?&y(ZPQCQmr)tqFvn+rp4R%4F zjFc%HnDmigGPG&KK1btbRzrpOXomOWAD6^l)Zi9#;Lb# zXKN>}L??;JDt`WC9Jkmt?K(I(sp$4CbEj0Hh$#K}QL*=ne%GKIErpQ-y!)=m*1Rnf z$eiZDQxS+qHL(B5RW-+L+njbf-#B%M2*K}g0b9=n8r;hX%F2EgB27Ta8LKf&HZQg?FDJ~$!@yh7m>{3w;Lqn0RZwfK5=96z~>zn*CFjG{t z(gCFk3!CX%RR5akuc(vpS(x1=AT@9J41IV!ahi&?dkdDC=rN>{{KO;5d*iyBHUxK* zp1l6}%>498 z+EbXD?3pN!@@YFwzo0U_ey)dYv_NKW=lxIwEwu9I$Fqf}zw0PgiP<{iN+-e1yx#;D z*wb(1D^?kFylgcWySOZ)Y^cZNe=@S`eI?wq(N5$f0@l}kzwm>Ekp0=EnwgCdeCCLE z5%CV{Oi^UZ?MVLQ*TH^OzXNu< zj+MI$#F9Y|$JSl!*9PY8*=;#Yz$_)uN9sQw`c4^Jeuu;3`4By8UV;Zi)S%#Tb{e+& z@8{+r--UQ@8J3s+>`bvMl1&oeMYVIati?RuCvSb}PoLSq*8Dwng7YHpSJ~&YNg*0P zsoxa-e6M=}jUj*`%50H|IwDTW>{G$-2B>cmuIjY=FWxy_4a2nE9VeEZWNvdQ@&;mg z+g^I$8@{2-k+Yw{h?7~*6~#BW>cBzjf6Q0#`h7E{*DR(!4t@?u3BsHm@V0|q81y*x zSgE_~X0W{ro6EI;rijz=uCD*_KswmY%5;1v@McbbzAF>#WuUmo62E9{>Ap9Kgsq*|p zLPVK9ybu@1eBQr5DEEkyOtxJI70JiAiU~qgcQf_C9_Gq&-Zm7}pD`~0ZVHNkrvk`>r@9vPl_tq9n+b*|{Ml`4eFKJ&H4L@od<*B=IO-Wjg$?S#-_;yFdy3m z*^|||6*-GJKhn;15(v}6t7{itMRjLxh(~BMAl4DZuy#>Z#Sg5EjJ9g3BPJsgKzgt% zTcv0j#zX@|HDU$p-Ih^zc@K@{S42qO-mSB`!1{jHDm1iUJZVNp$Bf*Oe1`Kf?65*u z%=}kUvr$;!Do1Xo1FffXVGDi}I=<8LoGIV~&of+#IT2yWR&|H%9L6x>)6vv6M;K#{ z7V3@MQV{~j^JP>x>@~XR_a-M_Jbfk6U&LtP7<3nIt}Fyjmw~A2j4yv-Z*4$zLjPMS zrYwO8zxMN$@wl6zHfYC>gP^jnr;Uhk! z!yIX|Zv&j#tQ7}odoC+=U_UJls|;hWWRX_cNF&>iOcP?%IIV%F(+ z;6vQEoocYcLFJ&EM`|0PcrTyZ?i_FR$v1Clgha0u{3+YhI|eyXHIDkX4rW+;RgXa- z3xVS_%$DjmNMPQ8k6%CwuMrq2YwJKR(YdeBT1cQ9(=vQ^@ou|+GN2vtZfy{p4H)uA zdUX6iV1#Eq zfhb*H=+|TGnR8WlY$4bYNUbddn^1iG_&<=fFOT@XNkKq7;;1~I(2*q(H0;ow5Qlu z1ii{*2q0?;3i8h44YwZmru=U}5r@_S15U$qhIQZ=wv>)Olv++>f?AX7v&nc(*+|9W zs&-jsFn{6Bu5j7Ux=IoCqg1Sj)P8(N+rrN`n3po>*{sOO{+Z>L>`!On3fGRl?P1pk z#xB>cx&!l-h{12Y2=#KGC3(tn5dBan*T!SetEWamDjY7`UbBW3@N1qzs3R0fb`vSv z$Ka`%BY@4lf{H0J#54E&`%Yy z(Z0)XVUY?B`mC9>iFJ)}AfSWP6uJ^Y4s6M5-<7G?gQZ%uo6nS>Jh^(;vN@Eswiwn2 z`+I)NwNoz5FnDI|JQ?p(=H)=nL#~#7x~fC4ZX5peD*D7L0396Vo7FqqKyP3aDCah2 zg*?|~=6Kt@1e@o1`$`;z56Zm+Ir5DHI}K@DD_g0d(fb_fp?M4Vwzdw{{yB?BMlV@W z-fGC`^pe6YAmDn>4fVh5Q}Nsgh&1`Sm?v6LMHTeo+Pv&0@5CxVmWmx;~11FSDmqs4a7#c5QMPR zO7qj;dKv!(MYl$o_$U2pdqxYlFKLwY%1uvvwEU@xg=)|##M6v-I>g@hJ2i5Z@iEM| zDx&%IIV^$-k_xe*@*icAI)TrMnVC$n|#w_`(_pGxa5!|S((U~wy`sBmO zT$0xldgT$@DA_$cY#6(}SB#(Xd9+qjULY;GzwNadq8A9PoNuee9uQ?6Q zX*elzmO#kOb_!hdb%`&QEK&@Pax-&Ts>F+^{X949NST3DYNJQNJie-bPP^G=H15B8 zo;o+L^Cl>sZ?w>WfUaxbOeSq^EGRPMaes@?-w@`R5SR|r&HVQC_PIgvb0Q0+><9^Y zV>6}i%z`ids<S6IvMu(j%&Vu*M`4lS`wQ>JCw3iOa7R& zr26H%m>^l=JgU=*Pkn|DniJJBO)E@lJ%0qU%?z~==WCSU@KIpk^nQ|wUG}j#ph22EZv}q%fH9n;e>L_ zM!3!c9*o>*JfXLu{7M>V+@a<%m?24dtPH4jsUP4qaKIRnlIIX$Zb zdu2{Fw>rqo?!56^~9NvEuj~>{_LG&&% z-rYifOmm&; zUF8sJyP`z4UTgCGVeKDqO@{Ym=8}|>0@<(oFt&*2TM16Fs4LpoY339{yksU()bUSc z=tI1oaYde9@H@U{J1=iV*Qxcm6Gc(A?D+{2mrfTYs&4=>$$=%#Q>sdL_-j)Jgroyt zhjvl(HsTS8pLypWzWFJ|OLl)U;uxqjO@iiazEcDXZjchqq1B%A`XhXTi&rv0$t>4S zU9BFv9$Ma!JsEY-B%SDEWGGOvO?pi8JxoLC#VUn1KHG0E6BmEUAxW~ENhEsp42I#4 zI>Rb}D0qK-paG4b8k2JfsoVrIw3gG5gBehpi?X;jXJ~RkW9$Alw)T+#JXNFg;fK(= zkQZI?hg!#=@1>3J>fqOoLHd*5%_x`29~m#;Zglg^x2U6>@Y`3?DVKli*wr;Ns-BwG zZTsxD1`*j>x;6kO8*UyQyLX87_JCOZA#mtlgZK!9C!rcQafW!#kiJ~}>p@J!~4F4^= zEg{48X3l@()ik6Qgd`n?m+e`f5*Zqp{C)sN2bRcC=z#nCw{@}Mw&QLu2i z5IZh#@=&`ZKF1>vMbJ_Dd1ETj#hZD3)Ks9;eG@&l55?dEG55m01iH06%cvyKXQ==qg2MQ)7;Q+@{NJ;wtscdZHrHv z8k!NBl=D@A;e=VZFO@_kk6qY8iVST{lE*%*wgndI=E{*ZD!)D_0rCTN=C3V`_-_2W zaD$<*o^=2}a#|Q&2|0YKaad!+dL&4{#lhMZSaVO~e>8d9l3~Jlh`nM(=ytS!`hTCkwe7dtIGsW1 z0P2MacTOn)VNz2U1}P%LNmKgGYZTk>{U&e^x}~YbbpTL11{pFx8rb(bqT&xaSmH%S zSf>ILYus|23G{ISZ%E zR3}&hg$o%uyiRHp?SuP~d-cm9mGV*aAnp zCO?+R33LgI{bs({U5>vixkFxbwaBHL0sqwA|@Axz0N?c5iuD z*0frEGUH2D2umRAHmt{C@mq?rnF`DZCt1#VNBZTW`Cg|1hNO*c+vg?(Umw+#?_z!} zEN_4^DT7M6j9~TqZwNAjIq!|BmPQQj@>Yv}_c8nKA()BCvU0xSTYh%%ccs{lA(IhM zF2#F0f{!VY{UaC7Su~~f7EEe*JWF&Pf zZb0ztr2QL(ds6!DXY4|}hvG)q6mHC$e05}HaTj3=e4stz+PNl1sS^0~B(Dp4RrmHx zyYb5=wNYnXmOE@*X$fu@2T?uRC^fB5WwXfq4MA^s$1q-+k|SMur56 z%naM;^^oiv8@JM}!ggZSvo>tU`=8d)QyAR;GBl<`&2f*%TN}&gTPq#e!bDY+o$ANk zGn3x53OMSs-luYNdfH|EFgP{hJQv*?aeGF!m0e8bgYn($$-iQ^@!3~@Z-?$$EJ)S^ z<&p-sxoq41dbHz3iQK{xzC*ALo;R#d zmKS-jb#BnRRJ3hELVUW+t$TX%o_7Uz_A;?nuNR<~^&33DtV_1Ueegg%uYsjIs*O-< zK3tBK5w|yZZdP$QH1I?5mf4y5?>FtwINdc-7*WTfBGp}pims<)m~Od zs()z#R&w?;yVzruhfhsYfA>HBS)vp!TpP32yFS(JDA|t4^RuKt$T*^nV<}W*vg-qg znWGa?J#_Ww7nJTVs;s1Bk~x3!qDfNv7C0>E>R~$M;=bjVyP%*Sj|IupK^GF4At*iM zDDeK~mB|3#E$XKGRZ2OeGx-k6NLcitwqs3N#RBzrDDgHvy7k)~Db6z&4e{2Dcwa+; z^JKM3KI$UZng1T04K~ir3(L%LP`i?QlTAZWr`CC?K@=a*+@9WNuK8TYy(#M_HG5k! zuPNr)N$Jbt5sGr_ofw6l8zfKhgB*nq%N8^6?2B98^+hVTbiKhw-zCSZ0}mC8W_KcC z%O{r3*E@%&B_ho`4q+=&6piyT)_mRRFr(8VndgIN+wz*0Z8xeHYl(X?mSN%_B>Nfz za^qjFzg97ZOFvrF*>-tFfacF7jO@joOgBr5`;n&cDJfA^$;y_T*G5DITlZvn_{8ZB z2T!;7tu6wjv-51sAA;5x^rtoO+gB)|29023NtA2KmD&q2cFzUK)Dee`HT3%VgkIiv zuK?!LGO&CNIXE$8PES1#w9xkW{--lyN)=UN1)YQiL};ledvziE>&F)j%xW7ZP+oD1 z0MD9*8w^*km+=tqd-J)U%>mH>ZFbVpr7XA&#eKv11b0f1;6htKPMV9Q#^Qz$Lu)u6Ma^IpK4v z_f0XaD@l*(AFbrlfHVn<7!P*?aakR;G(|PXn=c!?iB(t1uiQQhQopC~CX?D@)o{@L z{R)4gS^Dz#=a%MIF0hh7xnZIu)v%JLKR4{Rph_L5$==A5Zd?XfzK!&G4OyYEFYbq! z=RaR7c%6-Lpf{@7*&TFHx4P@dbK7|6O8zi>%xJk$WH)`emw(Y@fZYLU4Zy;Gjt37xLLH}j5Ni#6yYhre#)XAy5ZDyRtLBR@7weu$3N%M zNRc~oH>afYzj9>53~~G=CezCt&8sEG3;z9huZl?H6qSUFYy5zj6LGWBf+s@}bwPax zQ1{Y>xmIsgjf%(DgLTWc?;nHeaMcFOFXw&{U->qkj+mIVucmMvoPT9 zeNq8-`qbz>!!*TstT209*us8h&%`~K-^GqGp=h-p@zlEo$QxDbMatqR(&*Ujz0jmo z3PBG!|N4Y?SKN=+f2TVdIt$D;4=r9&o}isl#M$yGq(8MPa2zuD$GH13NZf@X=P11O zGB)|2T>3YSiPAT^@5z^KKVT?35Gkr2v4i$f_PVzjx*2q93lbSO*lbwhD6nk!GX@YT z^3uMZcCv?f1bGF1K7j01}eM;XCUm+ zu`l2peXq}vI0=Z`aUA1oWT235N_F`wY0-Xt2-D_}Kk!=#(&>06RhOO?p7gzzGO*G+ z*bK01^&WUMIj)?m>5}LFF28C)z-Zfgv{qhbib8f}i3!w%_QT&4q2mb<*KTplK-df$)^_RGwK2nZ4px}_&CygnWfIIQGv8UzUxe|;gh>M z(-Bk6_VC32N78x6v-y7iKW1$;Yf}`pYSi9}+M~9h_TI$aYOkX9tlF_jf>^a{7l{(F zRneeYyZZj+^ZoskN5&s_?(0tObDeWu=lSw9{+VT7?|daC%oC!RTSY|5k+C4?`2@yz zvGo=V$<*6`9ATY*iO%c$J#Qk!L;+ik$(UyRD^r4i+O#>br(K3fB7s<7=I@v9pI zX7kAj#P5{fhuYe0ie#am7ol4|=>h$7ToN(%Pc~sg$n&vA#s8gA@>OEFhGxoq#V@7w zjy!m5tqRr-6hm{qli2Ev`7@vJ#i5JSg(qqB( zg4g&xW7$7Gn%IU!6r^RVh?(ben#zs6vY!!zLKgBZwhV-$*M9@oPMfQ6(G$H~Qzl2U ze?^hHE$F<9{{U+*cC1dfZYFJeJO6KvEtTbmfakg0bLla}XB-{Af@~80_gY998dFX} z$=Hj(?(XLo*EZhQKy$`d4ZVKv!^m{Q5Ch(~w!giEP8uV6H{ss0ZaXCPg6g0f&zgtJ zpT-++pIS3WJSxMW)YP7QS@FT)4^`Ju0yTp&%}a!!A{zomtIY>l51$>DHpbH#?8wx8 z0tVoRqe_!)_;&K+o`}kWhsXEn*SUhpk5z<}K-Ml-1N|=`PU!WZ(=Jd7m+lOexI}3H zMBZ5)rMWFY{jw~MCN{$b>$jpKU#MQ4>>=@5Uq^Ekk^dG^iQO^F)xI9&)Tw!2l{#6@ zW!^lbNW1YQ+=+vKxM6`|&+J8XFVfz3i{7vusZlM$mHqcaS-t0xlI)7qvtX^B%Y2S- zHIK1z-Ti^@K1>&X{IO`9UfFJj?9QAlbl}LSvy_|-ueo6Z!u2;fx1(`D^LP6Y`tW(; z;BK=3F2{!C915?g2QX$GI73w zt<)S`8NmWEu3FLRbsB^ccAr5+m%|HFOZ7UK{{Xo&@Q6fvAF(Qi1{x*rXL6TUgH~Rf zAo@PfM$()h77i93857%!b3Nn%2EAC&DyG)>id2hn;30H;;=)S6=f{fgbOQ%XA&v19 zNSXgZWexQ)(6sj}r)7eZ3q+v&sF1ajlp}Nzx$@3nb5!>GrqejmA{ihYas>sBWOvVaFem=3ee2Z)z*(c{{g`N z0Ul(r69e_w+fkn4WDjo5a}GxTB%=blopR4V<%9pa9>ZCeYSY%9N?l$c=dkpg}w=bSXnoopuPTQblYa?6*_BlzLSo=9ao zX8+zp9}*EYplH*&)x8z>$S5_5lRL(5qEGWz@I7y`p*JiNhw-6b8rj(!amh~JzfE*- z6}J5R41s-qfLHlqXu25NZry=};jknpDJs64j<|f}-9I6EuveL#DOT~Ig7OvpcN+bF zAFxxx^BB*6FO*~7Hw?b-nff&%&sF)pzQthwxH4(ekIit7$zTXwcZcGM2qJlC%azu{}hz5_p27UzC_Gj5P9|J>6ieErYErvuV!22s@u zg&$OvfYE7{GWiD?$ZEaT?-(qkA^UH%!kNRZ_CszS(&>R3YDoS+ueouyyr(?;O9bKF3(@=mpqBtI74T zB6HXz>S6g%w|>az95pMFH@SeRGu~>Di~2_GkM~|WgOFkQdGvgH-TaSj9EZ^Je@7E- zEsnQ+HQq3%Tn(ptwcBO>`3G$zOjdJmEcDl&7P2e)w34>bGXOtVb65OeZ%2RT@*7BR zGF3cvEGAf@P%lX?>a%r*pUfmlujP=d#rLxa_50d=JAIBFd4nyh%jUPRmNupSpTL~q zN~k|LfBx#kx)co$N+J@Pkk=Efbi-b0K(5IG&7tmFHxP5jSn6Rm!>^B{AEBG4%hY4+ zWTC`$f*98FdjBCNElzGq7o#gP!PbX}OHi}TfS*g~0{UHqo>KxMEvZ%?TM2h7&(8Bs#kQ%hy_hM4#q}o+o-e=VOq} zhVHvn`g|&sEwe7NRO-5ak{r_u*eeDZ4i%_T82U z@o)ET5M>&2YY{r~bdnK>5EmW_)qtHngCrMyBx+o5uHyWgJ9p7u(bVmmFwep8Fw4b_ z1_Oh~gki6*o5GR*0ZMCf3d11i_C(os#sj6qfB{d`<->p!i_Sgyt>cjp@3Q#M;Yy|h z=ZLHfNC0TrU!{^^FCA){hkV(w$k zubI6+ZeE>83b7UQ*EwEWtS)V|&CkQXLSS-R81mWSG4%yM9kuW)*dhXcZ9#8U%jrL`Ufi<*pm01~A(S^k|WoL)e@8kJJ~`l##n?d$pT{$VSIWs3oDP4y~&M4XWp@l^P5Jk)ySi< z{H97iJ*7r4E^%6%MV=Q<#yIbz(P`fpl|8Yoxr=wI5u>cN9g z+OAh2x;8rr-KZHFN zWd5myU6Z%>t@UuqqdgVCh)>6uQ`FGC7W}pQk&d=me^&88?OZqA&AD5^JHgp4UI2KT9mtB+b z1pvAaBAPUr*0mU9i8*zjz5s)N+8Fvk_IHdLZmr6jBv%@4P0^8VBx)OWdIUWN2m})T zqJ66s+1vVA@;aW6EiYNRMQ29IRZDimf`~sp=*TE`+mWT|t#GCFJXm;x*g0LYHpA3U z#7@uR@Jfp}3FYqG;x4n7THK5%SoqPpxu*?)nLSE~QMcCF0;|uc=QDjX8-q5a;M-R+ z&2HsdM%G3|T^k~in-#JN`fM7lqcG2Y`qOLEaTjVN^v*33+fo@He%cy~s)R<~17avxd_g3^)N zbJ6#ggKTSY&cl-vkW3J~VaR6}<*=^m*x)2ueP+}Nhe_SJZmn>u{B`-zc}Ow%69@|e zbS3Xu>~Eyd#A~pku~aAZtWszz7({${Vwb zmr_YG(*|rt73kyz-xlDKhB})wZ3J%l+FSDj2_R~5r$wSa>uZ2l!A0pnAa`eHwGF^S z@dtn{##x6Oh!XCLu$}nSxN4NniWB;R%MycRjow^3ZH-=l7(de}I+*DC>pyg>fGs9O zqhLk?zDDw5V8x#Dp>L-Va>|d{lQ=Fa&rJVh#VoAV%_El+8cC?;E7~i)Eh3^f&KuMJ zcE`AWJ1{W5^-#o}JY7bz&lsIc$`~WDVBJTKj)k3VO>etk2fU81?7H{v@Bdl7eFu5; z^?Kzp`QqvsN)D*C((_aU6lE4wUWOW$E6M~+CCaG#fOM`zFxSZ;J-rUol*RjUJuX$Md2&o`wr^|;5Fvf6-_=+Bk1?L@q|7K z8rdHbc?OSAiRIAz>k;1e+k64OI*a@LBUond=SW54Uvz~*7(Akol<;Y44t^F#Mpme> zbzQ6YnFV?IYaE#g*B8)?;}ZpN)96<*2eq;L=gD0|>(RzimIgX9GE(0hyBg}ycya5 zxX8N6{%`&qd>uiIZ%nfZzIplR3TqR{j|z?t``>TGvmV+Lk8^KORP!Elb=84d53)LU zP*xUYael-VVzLM9vIDRS}$07gA|JOS*WN`TjsPh=v)(lj{LzTqvW@wfKIV{ z*Dd#w1kD%GPT3;z0t%CTJi*@TvwI`Wd2dkh>u8|lvnTAkx^^D>mY%#Il=V$I^SdR2 z#+)o}#7PnmG~dyK4k2xW=mKz(n#C9pmov@57);D-uY_|oTjfGP0vn5`VwV;4Tb|1v z3bG7k&@A{(J7qJqB;;UGnW| zb9Z~NxA5*wQy)oqOhS|!!5sI|LME?PYX}At-g|;P{>Dy5o*(KuNkCc=2{x}chDF?m z*$R3`bD+CFxBQ7!7r{Ty7|2(M7LO0c$aP|KUK^AGJRD*j-tuYEaVmXWW|a+j=oFs>$mAA`UB`UNF=3qcUVX6 zr~IKXC37B#2=w)t-4|z>IxusHeBP54{!A@aEnB+o!{_PKJM0eqwj@#rZjMPP<$gW} z;TPCgpqw6w>P}yO_D-5g z#7t%-CdYlKDp6>u>*&cC|zefu$kH)s<%4wxBRxIJvVJ@^} zV+rL2Y%Nf$m%!Q#R^G?rxB(3-)2%lTr0))DK9978s~!-E+V{k}9{TYgKwU!N#laJj`*rJs)7Yr)v4Qiw23^uTOapRE ztbbH`wD=>26TVQB3M?eXKZf?j{swbl8R_!8Am2Bh-yIH`HwuV&2r{InfGYZDMo*Z3vnj5Z zyAm(0FCu^1aQVllTXaVMF#&Dt6#UzVSCstA8RNwIm_7E(D8l93fb{{3Pv+eg*L&~x_>9;Zxob&lr=%*)K_hfx;H=8*jZ`N z>SY8si}}#+Cik9LE^_aU-I&USO#P`l=tR?BQuBg`L(QdRnkYVoHWjAQ)blktY8+s^ zF{O7nTx0~Aozf5Hy&(ni2oM$X-g-H|<$hJe{?IaDICzqOQQxH;wd z4Sj9;^3Z{0|LzZ%tFce~3=qIbGttWHvvK|h6;k>%jn0i)dM=DAHN7XnwJXTS|r%%oN73s9i`qGZyF?uzW5UdEAr_34|H-J(}*%6~-DD?9Kxz=Df%Cj%TH3u33u3_#R&Z$Afg+v^4npfo$Pj??hU{1{iBr3*G$ za}tsDyfmpRU)4SyyD?l%xg8ylc;`o^?##}4rtt3o)pGnS^q;7@-&?=awY{-CUgBTp zRi(kK>zoFH^MnowZK!*?lS#C^*k3+{Hm6&OjrcEW5&ynkK)`&A9~hbx*tUFqkg;Gk z+=eAhhVzCdnAFmexRawS-S35x`>&ULzMa*I{sWsEy+NOUS0UD5QtFqJSxT9YzA2jY zd|#S-R3}O!p~3nez#nGE;!n$BcAN7muBqxI_}_V9m3|Pb-Lbl<-D#nc=FyH38*`s+ z^v4Aylu8o%(2USc;fW{u#4y9o{+g+?HtTW#tgza{Ko$6c1lgy(B02X-izBXFPmgf7 z$wPpY+V9GkCe$>>(c_{3Pc~)eEJD$VnC=m2APP;UPDl@(DXNP7DfW^HidxlR7=Kjr z&Gx1=oOm*>MZ0sa5q4~~4z1k9bawtxYT zDcnV8fASqOje0HXzztXgTFwwxfYHqQd$SKH2kzZ7)G2x#y&25Z| z8huBjS1p3ggM+s|I@_bu#c^;wO?`EP$n$DcMmYs!N5=Yp1a;H#GS)qB8#vH{#-@%` zPc@!xnwvT?>4W^H%vUD-ZFrPfJT&~$9sze*wR)L?(uN*2BS)&N$X%CosrjF!@mSA$ z#4t(N;m-LvJm1lJ7NWyS2Zk&xVaLP;wptb25NinTIpP|fiU3eS_sP*v+xL5#qD;+ zV;XQSESaebdQ5&VffdFirq#WrHE3THGft>$KgucP2 z=Vsiq2@Qfl&&dzejH7Z<#ltj@pI63*ESwr>jG}>wDgh=*d81r<3eWZnCQt!2XuRf5 zIvi0Nv!8*LeHR@S>wJQrpAgVolVl<18=wvM>E@v4T~+ZaziQ79=iqqIJs`f0v+I(U zIBgMp1B$#h8JOexT0Hb^q5)ByyKhd@&!u{dQYf^S7 z=$;y}7LcCN{KH1U?2AB_MqS_AR$Ft4%mIuPE3r3+ri0i;eV4*uqfaZU7EGevPAghz z%(6F8{~;HofGUiysMIazNOa%3HjdxiA|W{44}dsLrv5AG7ac&dPJ)ElKe@cl6l3of z`uBq&&t(BD@BaCI9`^IuSLbr|B{d#i*`lor13J@z+EOXKnc(?m|6C239 zGaD(kwSwyu$C0*<=!WRJ8JGC4{$38lj55n5xtAxSig$;8&I$yt-0rg#Tew|Q!J?%R zZ^@<$&6W~Pd;Oyp%w!f4g-uW7E>qQe5g8#5l+vokRR9 zVxlOZ^Mf)ro?*@{e;}=O&t5W8>l3)t<}2K7@>3%+iy}^(o*UtkQfuv`)*ah+wTb#+ zY%2C`vF`MP)iR><6^Qw$i0PT^?#?FDx-mfOTJe<09Oz_Szj;ThC43p02yF&&h#pBh zD$<2I%wOkic~AAvI14eq+TiYfSSdnYTl%1vy~H`p#`51hO`TL?$`AjUc4{>cu$kNe z$lY9`cej3*ia+O~Qd{PKAH}J%z$9F5%_5z~^QnPTnI|cKBQ+1; z|I&n7Tm+bi8_zvbEVDRP-BWz&VE2{NM}Q!IJSzx?tez~UE^V}Lvrn8flA^GzgGIoi zbCPG586^dWX>2gN5=c9E8mBGzEWw@=cdJed(c`@-!}gK$i-yRUagw6x$kHSW)RTkB zEGsuz9_5<_GArA)Q}iEzCEkkPo_T{VW2Kpn@Q1JgP~W z0v0}n5XW2f)BI-!N-TWYAA{fK7LkzeAoXDZD}V2&{19ZJZ$KpT6l^7x=91*eW~5rUSC}MdKMZ^ z#4M{tg&d&kRfoBqRb^XMfxgct8qT*wuOFG&k*n;#jS1?Hcg%eB={BZErl(q8-c2zX zy1|}ENkeBR6`Zj4%U)Dv_kM6TnTMa^`D2F!+flza+Y@{WmF}BK$`srrpFGYOPAy+< z<0HnF{=R*KnDaa`CM+s3M@#9keH#go?*ylVO-*+U`U3Ojt4|2`+`Biddwo#2R}VYJ zG}e08ZnF)QEXM+wF-|}984TY*t=p+oj^K24_yJXCrB}Ih(@E@!zSM|K8j_gUmst?_0GopI7RO@W*}BD;+64(U>Q0FkxDq{bK0@Ov$QG zqaylZ872Aj%!hFxywnDIE+J@yBF8R~XQ+vEJsjc#98UK@V?MmhW!HlYO`*Tl{q*{c~ zx3aFU&zqDii(Pcru4Dk%>_<^Hn4yPsS;^blF~ zZ%D0n4(Y(CCn43DhaQ_=KU=XPc>mDHZ{v?s|2`k@+Y8?nv_^ZKuA^EDdI(EXChQn? zbWvJft&n>uii^>wIBLgiUz(@?fcnkgk}p)-70aC1Kte8->GtjB%AW^z$<#>$YPBz! zHnv3<_!@FAu-Bo0aY^tg^mF^vfgZWHe!nJzp2?UG9`7-knuA-jocG06yDuN#__WF- z7cEAt3j@|tqK&20d^GL$R){$WYLrT?^Vn0&{t5AsCPP5=U%Zk9Sy}_|n)c43vDVV5MctuR>UanhE;gb4zLMUaFU*90Pe89W)npXXDde57HvCs9{$cy2Ln$!-H?#SqsiryDO3th!%y$HCE>(BzN&d-@?BzMwpVt#C6+`25(bCBO zgqmJO+_+7&^`W)*Brp{9-5gOTCXndMB@Xj;fAKLk;0xPDoaLm}mF__Vh62jD|D3z+ zqdr@thsVL+ip_;!s2v)AvbN8IYt7if)%OeAEsFE9xI8u9RCSM~>3hN5e3;NoX=Q46 z0}qNXuZDfFXbuySAT*PK@e+8hnM<#D*GuVX@T7M@T1IH19~>8;kBh(SJ_2;`#(kNd z`lOxgoG0>kqj^hZ+}*q35Nf|+?}mR1XtUdy6f zGT{Az23~#RD4t_%-hhL^9{6M(4dGkUFHW39{Z|?Bajt)Z1r!S}zPdsO z=A@!I0GbYUSa9wfxNAbzMkua_HJ^fAG+t~P_k%?y#?=zPhJ}ko zUcf?UB+l(PK$&T_k@UKV&fLk;u{y0U37k_z_xx}&Srs`!O@2roX?UXQCdU1%gg_d16s6AFa0gL+&+(e6LE=az zaRF~4)-%b~P-#1jNJ>S#LGxpl#=#kv#LQeH;{cOM9wu$YV~sh&5E|?y7~A=6`}LkN ztbpg`Mu*djW__{9V~?&=)g=AO@1h#j4}<8OQcJ`X4nsg~vjpv*J7v5~mG4-9i39U{ zzvAhtb5vWdgsoCNM+rr?$F1OVf?S!!2u0L4FU$%nhhZ>w^KA%dqAH+Z!_eu?cv%zY za#u3d@I{oJX9p)J{tmeE?h@abey*2Y8j08>6$g0oodZh;bc(0u%uU>!%?fWfTHq(4{Y;nuUzb|9AkJt| z@L5^wku8Z*b2SyQYFF`7#&ti}jD9}}P@XbHyl?TMe>r z7wVba&!JJPraRv2_(k(|JgZW>C8x+eOBVvIWtlmvxqe1yL^*PLd{M{xy;B%sqs|Ph z(D@(WDjy8LIzF0HvHfTJ*0Em;muXtx5@8OO^A=HkPw69XVPOT5Pm=}!sv!t`53)g36eU^{9U9-Y_G4BDU>$ur{2ECJuZF4P`M!CpGo*gM0>%8b z*?8yX&0Fg%iG}V1(a=;ks!V52iRi)``9_DxXI&PDdRDv$HrmkxK4V0Ke-*=AyD`2D ziHS<)tJCT(-@}^7)n8zF$ns2%8rZ~2t`cEp^mP4J8u?lTj)_G zR5rnK+fI#XlnHEfL>=i?Ni3as&RN@IXmA{Q^Z+s6$4jSV%6Y1iZgDY#(vD>K?EJef zKk$X_C3n#XxkR){yoF3gYDuW3<+59-x_l+24E#TUm&R`EHoG_-cuTOd0Q)+`296FYxbhS&PjRzI@xlKUs}`hM<$ zy(EW>Z#-9(Rc^$GQAo5H==75#N@0xTJ+VZJ4SU8dzCTaAx1m>`O-ucTiE*O*L`&c| z4nYe7!|;!USP``s-Z4UY-q^DDVig+t424P;@v$P6(J|Q^`Y`03_D|*$KGlK|c;fKO zUqpJ~Mw`%*tSTj(d(W!aatI_61=*2HdLGSD*O1{ioThVQbAl=jGrXtRW{t-+q^T(Y zOk%%L2DUQol8N8md}yu zm>z&Yf%Ho6#o(2{JkMFc##&bE3f~U*%HG9WXpIl@?$SmTXBYvcuuwe8itey1qaLM`^5s*q01-Jx21R znEnB|$Xn*uLAFe$?;6P~*99yYE2GS$+^$)%Je;US;+4>gdd5b@yCaJY3%COs9HOAN zYZ}{ty!;9GT+xFI@7y&{;)vtcDh@)!04(|~uPiy{pK3B1Tb&>;ngx!SbgUV|FIn_# zv@RF&uO)#6m!xlq@n2yhjs2OkWwm!7`jva3lF4Bq%J^NSvy)@D2GOdf<0y+q+wWJx zd)~Yr6)-U!|HtlkU4J*?!hB#l4HClPOho@mTHXS8oZ*VyN{@eYWnUjP-YIa6a;$2ZAX{{$XUP*r{ z=(Mb7S^_S|vMn>kDA=9NezC7zm%b@B6h-L0bq)>!|C!B~8RDmPw+AH+>Fe6n>=^J+Bf9zhF~3G71CI3m)Taol*HsxMmP94Z%VIhdy6R&C4XJMamuZ%S?$hX0!xd|y>U zamVqsfpHc=Bl(vnmOv(rAPC||u3|w}m&7OpBn1$ie@tC0OQd^hSV5~EC7@DtL>;;q z=auiR^}$)4YeLEXcay3u>G@|(0jH|Et8?wJfHCY0t>urTx5mhKi z>~ie1jHxf(;O5$3cC}r^M#Fpnji+bxeqChP;;7_;Z&ei(_vLY%o~5*X)_^wjZxJiARn7NBWd8U3!DylHBG2F%%01d` zdd}H5-(ej?za-7`hsts#|o8up#O|!ksE3wW;=V@E3m6RgV>p>%TA|zk z;TA>q7*pm=g_Uu}OSoyWRY@-jup3@2HkVHyqaeq-)A(VC6B*C?LPl%F<-h>+He>Of z8&>``2u01hwhVTobdEX~PfJd17QxdDrd?J8Ltdce$c#Js-C{t~ue8IAzZXV{pA?lc z^_F+Iw+9^(#qy8iH-9>s8+@>D{8X-`sr4Wj7QJpunZUS`Ghbpl*+7QoKxHJ$k{C@P zpQMT#9INKtVf(`ml*tw7?8`BE31}M(J0lkr?E8Na?hPtC&Fx|3uR7@ebX(2FM{oJJ zM_dx70$Frvezul}yLwt%Numfhcp%Os+^>|yv;VBhys+)P=xQVNMWHb{JiCu4wNomE z2_b)T!+h7j9K4?J5zikLt%-S!^(d(L7W2%~GsJgA%0rlkK$(hAddKn#<#b~Zb+J-D z>Fpi_?4GV?z$00(#Jnue3GDfKI%&52GNO}ztI<0Hm|nnkBx$bt9$@h+&nzkg<@scW zViz&lQ;YvDmFH1~X=}N7jG6!7q$_jwWxjLXVbf-Z z{_5QmsUb4t1L4ozKEDL5bzt(4OQ~FWEnKrSk*+Alg^>y z0`z!{Ed0QCIbYYWY#^Ujq>~tFhHsHVh|A0Z=#hPRFm7#cxy){0U2`TLNg9)k5mBf+ z&AeM*)A!x=P5R4MV`HXc-~5`ECTT`xiJ_!%jUGZtxV)O!td@-E_e7{6lP0I%fl5Ny zAVFrkf}8)o=Nkzw@we^pcM<$1e9!WV(;R+hl5Uu;Ow&0$O$KPzi86ZILQ!sp;Ys!> zT$KDh$g^jX1am^6@wD;DRN2sy1+Nw}>Ywiydkkn2wGr*5A0nWqnaa<4;{Eb8JE!CV z#MU)HDURB~twjST!Cs3w$|ur6X>A* zZ>eC{o^1)I&=VMG?@Q);+qqV2yi`s%#o7y)`(j+$&0=^tTW*8Cyr*95s*qq_vMfQ= z46KGxmFQ)A$9A;qKY_4+%a-;B2K{_;TQ6ehBF7(n4Te(c`SM+=>F!*a)mn1?t6dh4 zWkh<F&1lTv7;XWTywS$%bA_moKc^)TvXG)s~)LWbor1-God# z(r*hGE;9>xm9`!tHCUQ{M2_h(2?#jVuNi^(R#%k0`20FvSkttznT)kF&%Qo-FO&8x zF`~4fC{r|9=Hmt28fvArqgUWg;^T1tJDdV@hlG+P4VzlBY>HhnUH)Jjd;x~L{8;}_-W#};RMdC z>HFy~ejnG+l3$J-bscx+GE13-c$;!{=barO-Z!92n1JHZHARgKR!~*N6Qs|^i1alm zIBbI*H&(2DUFLRkfQjx_dj^N{Ms0olib==XAZ*G!@WSFMtMPtX8UABi%D z4qx~;oMwISOub3ELYAyo)z2czGDoH6qP#AmRWInFYz+W_(@yR zy)$`7%|iYw(jM2N?lO1zX8WF>FF4GyNm@YXov1q$(8>Rz{*OzF)Z;(d85JgP3z9j2 zi`9(p9`YFnY=Qp%m}^pVp`GPps*2(QkKXV%<5S)osH*SHkI+o873^Se8@Zf zO3r-nOQREq8PmmMk=BB}HnuJ^xCNxYD_Tvk(NJ`3cID=Ujt|rl4IDr~^P08>xGFe% zuTGo-tqgj|V&eEwpuK5hkQ0x%Lx_3oi|wBK!pTPm5pi zNw8+Am)#Wpua*rA&$;ub?Q4tiu1p{=^ynDwiP}7ovS9YlVF`_%USRcE$S=2Hg(A`E zHWFjHU+79fy;QyHJlg<^Dw@+B@%b*-=iw*iJ>P7gKMO_`+VR<(%A$`~hK4K$!ptN~ z8)1^`I5bxz@0yP3@|5Ym<3!T{cG~P{}x*Xqnl2*h34kL zy3O`napFo*TIHeXvVFk9BYy4a3!tc06KES;VCm*K^NfDwUB>WK8~AJN*ySW!o5=NDvyglp)7y4TT%Ax z3RRin$>qcBGn2sP^dBI)wqFgtGri$0HQVQ1JI3dzotI_0yj9>+Ffr3-GvF~(JFdo^ zEH3@~<6Q6BLGOohC&|tE~(SvdV%$U%m7H z;7|wB6?_*ty?<7^-f9`>vd8!gkYE-(5v4>L{LsWwC0MYx@|wmtRO>4e;%>H7$Bn~q zV+I_h8zE%lOmU{E+)}aZBcvcw@-{Ys%w%oVKQ))-WcKz#pL`J})F|l`1TZq}WYUip zlszA&WR%+hLPCIGm}YNJPbZ`Z76OC0tixxipGJngp+9$h<-H=NJYjLjMn}JlviD~t z8n!=F?|5Q?YEOx)f4)bnC7J+&1^3E+i&gn5M$E{lA;V!sUor|>32z5fU2O?m zCHSx8C+ zY%4=S+d)5V{a8ViVZ~D8qnCT8wOf%5-=vYZbOs*;AE=X-rNzzCSq+>XtoD!%Wl`Bt zTk+8Yo73+(f4D8_l<*}LIx-iOE_*GT?tvYB^#BDWu!_<-aUWD1jJ@#QCYm*BroT4x zVo#F1OuVx1gvOM{hv}(B7+yE#N5FSG^PT-cGkHi!N@{5)gzm^dC=-c;-6)oENLd*zCkZ;UD^CW_Nn z+A-4}jqxaa)r_C}bdL|*6I>>9;@|AUhI(r6|B|#q+zJz#*t-UXJ<{up*W^AH*s;U_ z&(=MCjXh|Z4B{jztgjP8ggG~Cq=ja)Gd*5(=m?hD?E*MLO`aY2;WsBx#e!=;Zs672 zdhF_n4AP}8Ex%jwXxM1ik^HvL8pE`b&MVAM+SUyx)6Nf2IVh@MMOoirS+GIDDDXYj z8i>zRzaf@vJEif;@(EwOH0|?>iQwmiXEESMEv|u8cKPAGjVi+@%fP<$`JgYsbM~ zdScR9r6=d(V_!GPlsxXbQw<}&cgLpG)W0PL9_p=0-~}_H1)fjnawL2R z?*H)Jlt(7dCYtF)d?4J^_y45HF4f{j>iIs+%7MdG_oU- zqo7B%^{Id3sDSPF52GS{O<#oYT{#d`jrwZzcsMVCx~~9~c>j;7w+v{yZ~KQw!x%YY zOoY)ex)Cxh_w)ZhZ+WidSj2B__7`KC$C!#5Gp2CbMf;_8EJW}JDoRT_p!q&o z;5Yft1T^+{k_zC_ESZUV%$d^AY3Om@^5EkllUm2k=^Uwvm}1QUX4)K(59h`L2rr@L zOOFj=ol}H@hcV@wnz<7mcpBPQ1F8hetoN}_rm{@tiyb zw1473*jt!rlzh*TFdgLE8tPb3_{h1Z;Ob;M>wOuK^T1YNV8QjYLEJ2O^ zNel;cWmME|$Y$*Q8Id_$!=&f@d8)5q-oJ%6~)BRvFE%v&wtX|6%-UrpXs_}st7uDC=KaF=t`5Q zT)h@7nw=;%P0IfH@<;23-}?UU|NqNuxX;0g5ix@=wq?gIGX&tRb6unCsWpFOLeq#^2pd6*;$X!80DU)mEXg>P}4|4B1}_ zc6pRl*>g*S3{`bnU;?)SH} z(za5MtUwBsuRIBSb(PZpz@qon);@X0mlxkdw>q8sFKzI=@I_i$Tn6n*F4BR%%}k?K zQVZr2M;c*UhtEbS{0IUe?@2j6W4yWahonbE4va6zi$7TJrj_;BNy~wJ><>85uD`gp zBX+#MUn$F!87AnR^9u(s>|NEnm+CRm*>hG%jt;(iHe_vFG;(nq`{%BhDc(jeI2>49 zHq7U<5XpTDdqYF3mgQ_xmmjI^bAzn!eL4^(E$6Bs6ZJ1&r-#BrztnMC(Ez(v!*}Gh zpes^|J4#X%bN(`T5c{#4b}<7L7WnCWT4mDRA15X#`qOFgX~ZWc zwkp$-tfa4Y)S~B4=S#=Yk>03%Q&eVPnT+PC}?(vvARIMN+1ZKLFRr}l|uZ+YHt zbfn*+htc!edNND*vHkYvw|2kJOFr^$g$j)Empd<>6TJ01{SDVqF}(1f{5(?uKAM{3 zDMvJCtW>?OZAr;9GRvg1CDi7emaiTtb)0z$4OL{;fA`y(614m|{l%}X3#>U#%@AT{ z!}`fUmOW}_@E!Ti?@t?i--U5*T(ZVgx9a~XwEmxV@c;R&RUCb-v`GidCI&e@2WDN0 z5PYdWm1;Kwl8DaKkq5|iHrg6OW-#`1dQq`S#FUSbq#LUlYUpR3^P>y>qx0LtP7!=b zownp@wHVlY(uo#nts#rtXU7{dumxGu-C~A|X#8@RFTl)$dhT%yNXayrK#m99ROfX` z)_9&67&|SXET@$jwy9<8hilmCH8t9Ks@09p@%6T8yJFLpr4~lYj^h3}g_Sv1=J--+f$Q#_ zI>vX4ABZ156RXB}d2&6{fc2!$!t2ryUI_p)`6f8yJH-|mUZ$`uy*6*$UmbS+i0tE9 z)Nye$hrd{(gD;J5ba%9PV?|KC_r}QBf@-sxwt#q*tU5-jXV*?VdliZ!G}(`&6-3+i zMVaAD3^rzJ!U4F{eQm$sk5YfgOZiyt%(@bkzYy>dy2*l9QbH`a*N?n0QT*||Gsuz^ z8w=EPBcOBo<+*V;v2eh;|LIEl%vg<9GQL<#e3-3^D`^wkmdf0OZ_Y$&nj7-bwuTqY z{cG|@0&2%apb%8cbTPV;!CNR?>x1&SqUYsDw_Eyx=iJvP$HTj)StUVCEs%KD=9U8QdgekhHpRrm9!|2s4s{!63%zqiCcAyAdk94zbQg3cVl zL@$GCsZKhLav>8<0^*#A*=B9*5;9g9=WrblM{=7T>&vSb+&lZh$(i|D=FT3g!vjTFX5c>W&MCMtCr`(>GC)vcpV*xUdH9n@jM7IHsK>bv_w}s_={AmSApaG}SV(g!SXcNX zf5~OrXKsaf1k#pANy2B?TFF@U5|D4Lo`R0WU>~e2teQNp9=BKv7o{+t6fW9D_^xl~ z|24)j&eiBQ??C55;Vx#O8i+vjOaGxXDatx&AJRL}Q3)o50pok0Uqi(0UXmea8 z4HOELkeF#TP7D$aL6_!R^wz~ULmadm;cwLa+?Dtt!e~j)K*s%i4+Ox(oXsyNE(45sD<@FCKz_6GtdzTZ5T# z!&lbjhw-bvejFPz_}plZDd;4U$fqsTr|&s^{d8Ji$SX)e$vb1ftPDYh%e%xEfmlzU z;t=+;jyymKb}Gkv)gvsp3OGKaxL44-?R&9LXiZo=313vXTQ3OWO#vw1Vt6>qI-ZX% zEY#xTN}6!y?@wb`xiQTe1E3+0TT94#uplvsn~GA>X1h5!VG;UV>b-~L$_)Q~*++F) zzC$x~)8)?b;O#ak(ECL#t>`+j>9KXr&W!I~!Ku~K!AoJ_Vuhg11A|}%xs~lv7Nc!< z%9?MgLwHW>(`kVsQ2o>T-0rXaHB;Q&G68j{ALga{)5~40=_&1;P^jRmF zAD>Y5s<7FGZrLogzuU1<&uFZEI-c>#m9AvtBIcSVnMH61h+)FWlZpZYfYVE78NPyx zfq?qA7vKacdMgd>99nI={7b^ichAznb&<_+blTPYGt~_%(Pha0J1Alg)nF{FT`hFomozlG6V}+}F1Av9 zO8hzoam|-dN%lHIVet&N3V<-jy5b&ll}cR9?24N{bu=tdCM)n* z?Q24mKk0<*kF`TuM!XarcDGQySJzqCv|d1VloeR^8^*YL%-DzEL;98_E}rZ`JC#jW zlo|v@E;Q{j;=TTWNzr2$xpdw|dF$vY?^qUrOqw_i(#JX|mT6Vh_4!!}Wh*&IpaK?*1_;bhNc;3^ zG`lx3;4#;1OlneBPCy_i4Nf|D*;Hy#HGFA!7hDUKNLSiOb1SJk^!qIqs*+q2vji&woF4RmxnFk(^qoobL zTqNh6T4z@5l1?fWCL;qoNaC0N-Q)am&9Lu*;xkYsqyP=WTs^Q*g{0K(p0JrcSQc zA?bLgI#GriR-q9m^P?igJDX};*FkL$yL>eh&4gb8W1^E4d^iZA<~4csl19rvGKlpc zUH)TjPkL2d+Wdq*t>)9=`!6XyT9A^sv5==|A%%&+Z#VRK`--MP{gfqC2;}si+`wOK zf=Yi(*7Sa;2YzDP37PENZy#A?^U9vj@qt?Ic&*#^4(b0G4(x4}b1HLPC>71JX%;@T z1Jx>VFfdLtWKikM4oTR3{=`zNkc%`XMXQsH(MDn-23k>SOMrubizA{oWpUy!6<9m@7}XOTEJt7Z4tp5t8eCg0+8Mt zzkps94Hz-D$#nqnvI8*S^L+RKXZi;YYcYZSH{GZ=>fD@Vek=90W%MnVoHQ53EDNa3 z!95;JnN&z6e&VNBbp{$uTGJ!?qo2Hokb5a!Mv0UxlHmtdcc0It?pq$#9BJ3N3nIJs zOCKw5+4$9J(I}m7DN;eACId5 zWTD%A!a!lWKGacfsUj`EUW9)}{k=~w+C<`PHbWP@?-8KPR!Wji^O|*Zz$bo$hhwPlbS!Uc&;fvy3j9in=Upul(TM*Y}nO zZ~Hn%JdawK=WZlEZM5B-?zCU^zP>W_sxo%y5pJFlZ$8}k*U`!&@syt_mVIDh%IWYb zFQ`|lM8k<@#lz&ps?*T3i*~OY*ZA~EIgUfFu+5J_ciXY{LExp9rCT=2;VZ@v^DhqB zGNC*6z%fD%rpFG0N0oVmQ=z874mojm<+^HBO&}}0S9TL}re|WuCVD}-LL|&$dOSD0 zF!V`oD)viK^wgiNA;DYg-||yWI3CECy#g_2@ZtE>i<^+DsZyVSJWfxqD78KfNd8#Gw@z!+ z5j;_ytG48dsI$H{d}!*dv70A&nLwe_sM>f!jN~0i@^7Zd_Ea;INElSIq5(6zpcIu&qwvOBACLBc|iw55A<~Jdtm7fqwgF@{drctJYAe zjW5DkLA{#L310X4wI`gH20T$mf2T?d;7|p;QF|S}$u3r(`v$4&-{eZB>epa0MhFPY z46MbdOcC=_F|k0_^1>{W2pY+bh?L&erIStBi&xbT#_#fTyCt=+`ch~gn+mVeWK!7tnC!;4;=&h}# zY3x|hxy|H(@YI2l7mxnxt63^w1=Gk?kY~-6S6zc+uwH3Wg6_PKU_|0&S3*uaD>Si~ zx(V0m0@O}sEoZ<-jXr7bdYoW4`*emFMI_T1hAHA=F#k0WtcD!$LESPV9 z|2VT4#VMNMT;zq>cNUatMp3LDUW52ruN$)DHfe_<=3LIlLgQ))J~w&kPr3H}3X$kY z5rO>qPUXGNX2?88qfr7fQ)#$$>vcYqbIKY-iM1`+Qs5j^+B6mv`kxF0%PB68Wj1uJ z%DhV-J7_WC>8H#|_0^dRQFWLaSTB^ria0@fW~O{-;>J9s1i#|ya(YJ^o^n;Q!=45h ziCnF+1_JU+X+dV~r>UQiTcldwKqA7lz-Lo{@U&Jt3*>fi(~C$kl2?{+`6+8tu(U!< zL|Uq|L)ZO#EGPL`r^LaF`h=^LEH%wt$Z`|U5@1lZQWBYyKL;+bL_AZ;4Izh!oF3!e z`ZZO3o#i^u5Fpic8NAEUot+Ng-pV&_mK(K1At@bi6&>24MUpk2j}7d(6nJu?*~$4 zEwPV5L{s`!j|W57J+Jl=So{>HyQj?WTU+j54TRfnK7_hWes1~I5##9pn-6fw19I=; znfR?-aMx?^YVd3UZ9G&l$O6SpEa&Iw->yKUIM`&mnRT-y2{KWC;sYw&|AVVjNV6b2 zFAZw0EKw`h#qWL0Q}B4G6u$3Y6<=q$Fwn&3D+|cicIV)=_VvujhEy zEpJ(XWK{4#$fr+_Q75su^`3(!Wg*t>e}Evd%9bMJ)Wi&NQ%k3(7`~p#wnZbbbFy4L zzN8g4my5@FQ-V2$zI=FbtBN9;Y{c(yEeGq-5r{?Ar?IW2`(bpfs`KaBWtdTBn6X%% z&obLt?7%E7!K>;}5*yNuhs}<`GABPKuq*;YAu z*Nq5~FmQ^Zgmc9|rrL|qO}mASc$ccw2Dbgi74^kpGMUI!!2>_O4bRYAxT9RYsBbed z%}m6f>F_kvaN-;8j^5OKPy|vnkfr73F z-EDifYwI<59MF!fh^UOT-;%DNc3)kxSs*s|lvTBt>)3Osc_nm)`C?f3t7Pv;)w7HS zVyeU!dnL=Cu^U(GyMDeYv}0wyr*xcrZ{K7npE;x~wDD8keSUioB$!#ZsB{6imFG8& zZ&hgR%V>PwyFrNGKYyRP>dDpHqnArpG-p6ueYwNsRgh)hm}G?;+E?rAb> zOK^%vOPpv7Ba=0yiOb=Tyieflo9eI3?OMGZOR}JkD8al+E$15v1+=(r-Y=hu@C4Jn zHg>uk&aWkjd9^q5MP}l&iU48}H5+6_Vvqg@M4ss70LSc`Np|F3(sb<3mV zM;kIL-0>9s!_?{n%M>Y+a?+>_oG%-PKy3pI{|r>ld8r zY-E6I^whU^%qxTMx_AYSjDY!E=Wlztd6UcYC3S7R@{8sY@fO#!dmRwqD^{gv5PAkb zZc6;%=iA{ShoGul3Gyv(+Bd{ZwdH+~gnB3i0nxdK`%XU%@bhx`Sj zd1Q`XjBb>BbUJui>7u5mR_dotGaO&JM5@1hIcs=@S$xi>wfU9=s+~gqAAl)I!Ba0` zz8gpAdf02!@6<*~-b9FD0%;YVgYQ>v_fVj3_c>iz!(`52%%JMDRgEGy{Qk;0SNbh3 zi}U$?;d`2=G@tTWBdpi)WrP#n45Zmnk*a~9}u2uXxga= z?v#OZxft+7TGQC}dH$3-2qIbofi}SAR-235urpN3BM)&ll=sy1T58UiFHQjy_|lSk7oiZQ z&DlmBNx=|3uCzrkk@82`w^n;;EDMUSbo!PmT@|9`>gwH|VmA0>w6ezX zzN2Si;}DRWr9QiB*3(@?kPMiFY{{5b4PwkuuD%JIaiy6^Gry#1U>28fYI4zzrP^1Y z&Zs?}L{nE=#?~_?v&T;Pg7nob)r#i=s`-Ts>e6M5jol40Ocm+it#2NaOs&GmR$2^Q z9%bI6y->cl{Iw8zr1i}He&L}YS3RY+g+Iqz*(3IrPdOPs>>RxYy9IqVKaWLgutsin zTWrq^J$h0#`|Lzsi%rcw)a1>wb@`pqPDYhhV|P=T^dPef)ceZCI414_mX@Smuf-L5QPHSU;=SyS2AEQFh94tuFjQP# z-)IDXv@x1Df=8w6*X=VpLwhShd%P^5aLzWb70y zcE$c(`q?hY`bHvi6Ax_(%Sk+ez)9K>xuDx8mZB54inT-CT&{SWd)$+2M|=Gg@v29k z$}Xwbcb~+9xzW<0e=CMsc2mG)#BlS@K5DO3;z};glWW8@LudJGKTB;44vjBPi7*gs zG@*}lE5N++{(*If_NGUQw>Fp%_@^-G+o23-3xovnKyPLXGjs|ipHi~EGZrHQOq+Wq zdBE3a-{RAKZQLO-qE}jpVIp~z#V2X9$xyc{%rKx7H2dA$$I0*ZLb64izHWRYMsEC0 zLW%POo%Z6hy?w4>M_L1VK^Kie4-dCoCD9C5V*i42LJ53vdULp7^)=elal?WtzxCY9 zAst=x9*(5FuB^I>6`UIb>22A~o$v4SKi55jql0;t@@OP6-p;yS%bs~PhVPGLwk2Cj z2Io4)KKYo;FlT_xC9hr?T6d6BQ(^0QCWg}7%WW*d(f3~9qu>27*`iTzT*DPx4^S+arD;mcim2Rr%)|Qg_MWJ`qTN7;8jY7GmlO; z*2un0*Io0dGMgWMeM$AZjgLHpn=FOMR)HU`h6h)4{jZbyuVDC`W;t!$9>qg@cY7z6 z>rN!IFQK1=3=IA}^{90LPZ}QE_VS^>A5wtH(GsIZWI}I)*c5f1#(n*$bNZL@s+_J*P72F~DKeKYMIyTKRpqJVslIRD-%i@S8fpSR-deq7 zylpF-xcmESHN>l5GoqZmktK-IwA^*{8CJ7m@^jy+qwkV}LlQV2(q?z{X`S;bOV{`f zu0Qy{aw2@Yfhrg77W!gtQP|wqTI+m)R62qrIml+#M~H7dBvE`uzG)ml?V_CtR-0-D z7qO?+xxmNXi{_{`6vwU9sO7E$vpM8iE=uX~wK8FA6Ztu5U{zYbxtue%Mz)?@rj&2h zmN-yNoxyBb-PHeBMvrfa`41XHk-fcJ@kRy6gG=6+9^A&%DmmV7+Nw%GraMoyy6E3% zC9PB86PeYyCS->vWk;)1)MHg)0y%TcZr$j3z6YF9>!xvt6ygfYSp*}bxFDl)q=}O= zNqO#lo1nEvi4uBg?R%Fkv}T~OQxm}igdI$SfJ~9zVgh=hJBMFLA%1+S5#%RVLm`6V z6MWY*oq9%D+?-M`ef6kZH10@WPr{~O=aNHf#t_8YRb-cgPkQ8JbPOxX2Biu?)SQ!7 zVl4cAmD94DyP`#<(UnxLV51tH)`2aumBgI(>U7Ficotv-$bov4oRd?inU!hkX{}*b z4D`Y&c|+cgb(weDb5{bm75EYDeC1D!(Fk@zme6mEKVPY z5=Nk)HY@m-E-_kzN?k!~(jaIZ?X4q@?ZD(7N#?gEewWaBgpCmVtM*#1SV74PlZ7G0Eof_S{b!hj=oS+b2)B4Og3c>0* zD~uc37SV5tWVdgw{G8KLy%-k6x$9g^Y!0o5f)bjWR$%!#0K|l4Un8D}@}sTHPPFQN z?jACuHc4(EN6%(AptbYTM3)Mh*0eAlyPSf{D3))v5E_&iXVO<6_oGaYCJ z$|QjbHAmO-@sKG7tR$2OT~kb7R8LP&#VurL)dZG0VRy6$8ZJdsN;+Rgarg8 z(?RtOyenHl&&*zism7|$A~B-!F%8R&Bo(PgikJEh4Qrm9qvHINoThNc?Av-_a;cR% zO9<%A#R;E-q4PdC8BE9wH+SjDmEdKMyo8t5(~W(bg?2LaMjOavEuebY?}nM}qrqdF zQ!Cn)mz$GXx3X);6j5YrN}ydziOJY#QhTyZVth0o_On)j3C{y2vR3NUAO@rA$ev@S z-y38$SJFDu6SUb22K!dVz={^qXCknO@4sSC<6RLWX79)PPmNp=VhwVRPj1fA3RX&! zTdCMuVhH$3wg&vt4zaUdy;VMp_N0XTAanjF3-c>jxvLU9PhS>EXzGGBB}B@WubCl8 zaE8fGLS(F&OhBTn_BEZIS4Tf~G5RVwwd39>#ty_9n2l<;K6H`OJ+|UKxH|kiU^!)C z4lfN}9&&3fq7Oorw$}gZqy@ZW=5^)j6ZSoL@G1*(az!I@7c&0dU+fQBikU@g&E&qY zyt1Nw-Rn%WShBk`|K2aPd;pVXxpEigE|Jro<73c#V5R(0Zq@3imP7CGz8-$=+s5OR zR;KX~hEz#363;}TXZ>Fa^^jZ*U5=aTRl$gWrnB@KR$$S)gdGV&k#&8h-W3&t`+Cus1dD4_?E*v z9|6fpm$ibR?dORQ^TF>wpA833M|fB;TwUqb@&X}ep&PG6BZ3bzT)&2;&YVggeR1B| zL;_NU=NaGnJl$1$$@L!q=KjT=;o1*d{g+xCJCiG=(PkbYl2|28tXo*EqYrJY_|^xy z8})zgROfKjeteO#g)vX|VVc9IES~IxzvspJ-kv9{&5sObe1Y>S28|qDgp35+F`U%o?YBW zxWET)uEOjyD_L^IN(Pr_S_g-0*3Y2x=bi}@em67C&uRxQHz>{G6a&}qv^hU`vNF-B zjJ)=8+K>R$SkUdFEMtJUF!xzt2FmB zi5qnB2VFx8BjtJHw#9vDWpp_`&p9LGU#*?!fm#-o2}otCGE0fa9pcqzasON+ zjpq7HF4+2Ci^ML>0LZG5k8uWa)W%Q$5+;40=k)8!Wio525`zW8vjyB38QY3}kivo4 z>Z!43+E}U4jV6uJF~f9*B_2oNRa2RedC%enEXGK1nHX=$Da^>VpVi!mucI{MDG9G}9d$G&XN)YhC^RDuE@z@{}HW?C8G1 z&)QWrE?oUct)rY1iqUCtHF^j&t}BRhyNgkzbD>ac>6k4{!0#j>DCDii^!DvD(00kv zYSmXXm|es+;kN^L^~|m3D=_94rIMGLCvEp< zPq7%&8{ls0*LJT50-FiSjvvf>6}seKmS6p#5+34GaK{OVYYq`i9ITQ}Vu zd^|xUf}PgbTAm(i_6LDKKO`Qz;pv?g`{q(e?F^3k zrCyiSl7puumom2YZXRE7R+?TJ1nc00*6V0=_Vs$yzs+~d;gRE3vFnb+RVQXJB**rb z$@5`8`6S%;daZGd7(i~14f%^g4dBHDwaFlxZ^WDzcYT3G0=Tqa;ndmwk!I6OYI1?epY_~CsXUO2ENNaT+#T$@rVb

    s1Ywz4=@X% z>me|+&~{#|X3w({|F!hpqy(zb$IlOkD+$N@Ebp^#P4zokQZ_IV_wMAkd7u30yMx1J zDAJi5etEpu_1hT9{o888Unt~BbIpVVm32vGek+s>mVkT@%bMs8wYeehjMU~Zc(#Ya z6*GVM_9uVyCD+q&`KRX%@jt|o7n4xbyM*b$$4&(_G^)!cB%_+*dJ~a_e{225UPye6 zl(os#xZc-uclmvTOVSf4+WF@?2C;H-nr&bGD+~NTE`g^}!G(t`hz|jTspS8K<^PMu ztV|EKaI4wF^X4{#+~Ypb>l>;Zu};aDZCaM=6M*$4nD!V)ez75 z$jBRZ)u#fhMMd~9DTJNTq!kj9+#7%Y=&P$8FdLSchDxAbxB{(Fh&j$Y_R<@a&31e` z=_0T*vQSry$o%fFrwl@r0c(DRtt)$9hq>H!$}Pf|Es;DI^rUA;hNfTCnf~oyJ%o~g z%MjbaExOp3M6jHRw7LOYvnx%Lo@NHSbyz4hKBd)bq#aEUm@9vU`C~smL4Ymwl-h=c zqQ1|zUZNezRpZL#xEmv})(vrqWyGPrVwU@}rsLmE zxFlPcP_}4;2@)kdXz4CVnA|EXjiwuGi;}AWMdw%bMd>lz06Kj7ATB7f8kI3_7tU~I z%ONCbZkdVRUT1h;&U43!RJVJgu@991!M5F#NUKKJdB95K_Oxc|G{kSfbO@&oLM*{V zqm56CRyH>*xvEM_+EH)y{U0>kbR~y8-Po7GelXD`Rmm1BZl*g=2;z_f#*Z%*j~UrC zv8k%!Wzas_qM0pMS1MQWKb4^Nb&sn>C~3p;WFo5L_%3_b7JwK?j(Ty@sL%zTcEPE7 z>Xp@yQzFu`O!U~S7w=Vakbw*-zC3TS*&~A}dz65vX;Jk8c5R^9Trm@eG)a41KfCR} z7FM#+VsKh6yMhP_xXw-FfD-#R~A4Ip_8WaHLo?!0H&sy zz?A!M3(K#$bhm9rU!5W9F42Ge|I*X_ji{o>4m zK;O_jLM~$qml6)_w7gCXHKL#dP`JdEb94}JUocac^3+ZH;PKb_Ap)MmYb`Rlu?k+5K@|d8sF#Y&J;RB-a zX8_;2=HcE)sf;3%55p+QVX;fD1ML_zL-s#}ThH^cY>tWC^|h_6G;Wq0;Lo+^S#hmf zjzB+|X{hsCh97AFTF{9+drs+jji-W!CeXau5beyw`s2&z*2jo8 zROU!$ZVr9da}cCCD4*c#%S3Rl9QA+PRZPNJo01_MlKd~;134xNpiwqObEXN_eP#QA z7_^MOhQukLlf#@`M<8R=y0Hl}%&vhf9qaV5^(5364cu%0N_S+wW0#mm?LOiDPyhN+ z{<>lFVfw{ayx?(_kJ{wopPRWQ>A7-+dUwbF0}vEEF8gUKA}+JpoMGN3&gmfO=MZ@P zqyIPG`1}jb%L_E;nHB^wb;g^pEpKEz{@XW&9Mr?wp+v>#|>si4ZHUgn$Rn{jx z`wrq|=Ljz=FOzke*cAkkwC9`4v~#?ELIQJIw!D*4`L^xx zOUue)d%o;$G$~ADvp{&qf^Ewp2$@)JWN#oLDA6cFl7Ww}&AA2`Ur3}YE`OG@lA!9q z$^7GknQ6)h%wZ*ig6D+bJum8ya+|}LnaZP7JsL?psL{UE&Pw_Tc3=YlD_ROQ#?W(r zQ|U8SA975Qn3$&>N;JkK!yM%kY~h05roL6LxcJ<^$! ziD4O37@ z#hJdL-T(`&Pa9=%gj8T|9v#gUK3(8V!XqCNO>(Y=x zd#5FJ_tFe&oJsfGzP&D{Y*@S6clkh?G_LWQhLYIzDVw=^d9Bdi`yJmP8~Z&DW55Ts z2XA{a07R0Gvk{gdb0%7ita-6N#J|L?krCd_Pbw{m%?4pw#a;OKzufP{#q+F*a{K<~ zOZn0)_{Fnzw5w+yqFr3#a3%V5|4BfM8;LxHg6ST={_#LyZxu#iZOYM<%6Xe;jJ26c z@pFkOoJmN!&bIQ;YxTRj9})ine6Vh-$fx&EEF@M;6sc39p?K#>ub zo9`?)C7y_S#^mX7C3v5DU)myg))b6DTXzaIL>cdouRNSH^y@4IZBxG3J#H<%oNOk{ zS{74x*{*FBIyJ`2+BI&sW_W(+cyFxWUbf%sRq~0J*pauff{F6i{6DW*il);)SWi9d zISzeyOi7Ox)w6Msl9nr^L*o@VX|m9L?#9llVtmVL7P`~dfA6fxX~U)`i>jbJ@ewHL z1p7exO{ciabFHN^elD-3(saMMZ%sp~!q2?y_j04vd?jYQ%vJ}u4XWgus<-s#-3iex z7mGS~_|YzIn4MKc2|FU|fTzx?keIclmc4n-Ea3WG8m@}DgLDjMJ#50>Vu$=SI7#EQ z&(o|*<_59*Mp{gW4W_@W8b6$m4)-&8oxv>bcM+LRl!PNu7?f53rWvrgu;13%ZcasPS&zQ&87QhgKZ(!F>MB~$7? z&x1$JJ}lX_wEQ;XW$m3`SmDd4w!f#wOwa%O^hS1lNp`kz=)rbo!AI=EyDWDF??V{l ztlc$Xmz;-7>#uctyI$3nXjkZ>1q%F6_x2|nJe)mHkLrE>$$`_@pB^n! zWEU)GLK6 zgK~NQm4vUcCE7DVOtsHC+H|VYDd`>dCv%2hl>hctj$Y+Rrvcjy{!m=mb(Z#a8X9$E zDF>*!CK&u>x_`TOxdO2ua=O+JwNmvkW*bosNWHlG>Dt|3yZ65sHJ-BiqQHtlV>2dA zy@%!kyi$*86kyog2LM2>YCKBc8ph))!`8-c-itTaQzbne(HEf@co|-TTuTMT5LcoI zJ#@^X0rDTgIL;}5e9dj;B{!dq9Xq|&+SFx5Q1`?JO7C)|%R%E!kov@~@3Dp6GhB>7 zjiSWXWImGg_=74Q&tbF-vs?V5C%ziht}`W0mIXA7S~6kZs*kWSq)Hm;AJR9BO}&H) zku02Bo71IH-F5RW==3J*E+K~FqQ;clsuVMK@M<~8#xFeC6!r#;+ZL{{##$}{RN@vU zLC>VN#{dw5nffARZMYgelRmLW`RJ)ZA&?3pR9V5#g+7vacY$H9eC+vr*rUxqdSYdE|-Tc^9{kUA_IL zwQIygS%!3>B)qlP(?+pA+n=sBgTG!u*34uO1MPN5#u1m*CrI`edt~bp7m(03LXc>t zOHANoGAvG98L{Z?t<|scHFeM-HI6Mk?x!0vW2V!aURRrdk}d^t;9qbUU0}uDjCc}} z6+|2G*3QaZjq~@@O;$B90)!@=t^Dn?1#?}xG=4bfiF?axPttV@s zg=n|xl%Ka2eCI;1)!rZp9gQOe^wrK=NQ&J9eOjQ0P4J+J>9i$5?LlGOi)Z5&8+4Kj-WD6JK zA1y3b(k-C^t95lt`v?Tt4QjDGB%fPY-TjLWj^6jMktAvXw*fuT~voKMexDHx6HSN&;x$$G$mOf`-p+NzZUF=40DKtr3;9w`f76B z{o$&yLm1*8UVcKvn`K00~JoP*=Wf_x(Hkvl;A>dK6>@xT%zscdECqA!-y+fv?B@4#mE38r za{8P4BXt6ixOd?WPSAHQ$G**h6gBhPxg)s@s6}U??!(1SiE&U@VIX(aRR$N-#$3Ry zqNPX);IVH112IWD^I$3Vt943A9#t54@7b|=3wm!E8o{ggjQZjPg+jf6KA33UoM_6G zbQL~t*9(|Q#C0a!!MEb0c|?sNJ_FL0_{xfyudQ?4i>&_rn666^&R9yOW9!SlzUK5D zX^+0X*8*Ibt+E8=+V??S?4Q;v`QZG_qnLn zJR$`9VKT~jN26<>`{eXd3DsaNjh)=AcX?>w9q|2$B#^+U^1q+r|9$s~7O%6|)Fl7U zVopR9V%Zcco7%xa&y*R--E6jJ*J%Qfbucx`+B7AM`&?h&)^oMN6qUbW*!nZ8tHgbh z4aU5}gs=lq}fNbHLr3#|dZU z;3_}X#%pFu9BM%_KaHdc-@{1@h#Mi;GEoWo8e5lW7{O(#+18{IwFsSA4zu5}a_)J< zkDR~`AR#rpUYLMwmCd-OweSBa>^-2G>bkDc(0gwo(z~HZm4JXm3DOBA^xj)&f`atk zd+z}eLTFNhAXNmUca&a4DN+O=HzsE2pb8};m!&!wL^Kx>u_*W93R^N~)qvdtcA#w+zpHe~cq$gLssFYT^;mp$l+ z)!7^tDu>#+l{4`a1S-vC|Pu?BxG2aE~R5Frlb%uWUplK3O02?Vz!RR zhUO5R5R)yH3}myIxrjt!QetaucuM%LK+TJymowVTgQU3Flobi?h&WCd3H?;@n}ujZ z_~h<2>OEzSW0wnKLS)Ev;EV*~lRliG0W#yDe=##yi+`9QY$S@N0Bxl}7fKlTtf|R6_age6j{*~1?$Owl~xp_CQ(Ii=UOy3sI9eTl0%tea1 z1BHE+;;at6?uLF-`p|ODwDMe^UWnbJbo?lC2zjI~83RNa*T7n*00JW^H+I%= zV_G9V9Ic+O5GgL*_zDs(Apy(fsvqzUhG?_E#rAC*EK-&H?ip4kMW=UA?qQ?uI8i6l zOHC&GW`Juq74`IN+mr~U1K^K|Z7HE_9eNPegoG&80Qe?gFrpTek2&TQ&f~&X@zn63 zI$uRg806}0A%a=9p&cUV^DXHi(XZ?jygy@{+H`}wYaCyx&q53{5*yYxC52siR8<>f z$d~H<0botK5{5un{X|3kAX%=z2Z$AF2~$NdO|2e3yO4ydL*AR@HRo=a;hGxA1NEhX z#M(NV2U7%8^-SiB8+I98NoR~;)6WyGssatD43E=%G{lO(4%IQ6+HjC<>2$bAO}Cj={C8aYf5tfTw5=<*fm-uU6`aZasN3YLck$|shIb~b8F6yPj!rz<;)+t? z2MG)q8ZfCX39&#Sk8f3+c{FLl8QQJyE2we9tikeLHp!s+)$7Z)k0 zjA&PZ#t$*rm2c*b;Ax{r8QSXeCpP{BmhwCI$X(-Gv2B)%vv@i0Vwi<{mP)7g1}we| zC}S*t!`jzU-k2vh2C>r+6OoCrzew>A?)Tf;fFHa3c4cS(~BVDD|40?OR(D!ixMk$?Lb#v)o8jxDU|gD=D`WMh{) zhL)=YQ&_uC7ZW$M)t~91%7JM;rSxmXtiLF17gx;PJCog5$?ci9pHul8n595_`F1!M zQ_KxLHVkOn3mDj64Cy22Lu zV#RnfWVEBH=!pq$ep>PzKWkUhtiOz+2X9-=h+Ukd7y&EN0wQi?Sl8@Cdns=to_+d7 zX@8WsMAltVbk)5ZNx!%%{JMaETrIEH?&w#^dD~Pk2sn^>Q}&&x}`Q*9z^cK7|xA@6MxxR8(Qo z5uhV_#76l$CJ6Q%YXpVg(QJyTg^z!7)0_C((-qbqYA1(I(b7_buB`Kg`uD( zm{MT?vuXbM^H<%FA7weffC4`jSgD&$3itj4KgdAstUX`+4`g+6>19T{0}~sWX04HyT+LFA1!YEA17^mYRziJ9tih|L-Y~{MRL|H__q7> zX9MqlS-`$V%!}`8ySHv>+SL99+^=%8rqbCnR#SSJjw;7LXOoDJKVzIRk#f0m(^05A z9b4;~ayz;s@%FfA>;XHPTl?@>w4s7eh%Z4v9KR&@S_yeZbH?)HiIloG6+*4CzV1iw1({oGhURLgRYV{WyKpl$6n>3D#7ccg4| z|LM#7N^!RAR%!!MwQjJAk9g5#M*hj-BjtudBM76X1t`FcAr(K^Dcn?0=wccws2-69&?b6L zZ+IZ@6q)`WUft~07CBMOqNY^rBdtpTa0G;U0*YODwz%y}iIWm%7rNzHm~Kv0{j?>Q zV@5Uub{->S#`ZdA$5-=XZS&-%M#oh5=a(2oaP`=G!ty^d?E?BMcBEt*%x8(Mq}?8y zcT{X@E5FrZNMN)@cJbKFkt5CY zvv{wfDD8#t>*WtsH<|6D38E6>Ye4Ak%iQ#BjD&$o$?N1B1iwinS1hYqb@bad^L9NM zI`nIfxh;4PJ-!(iIR7bsOO(o~qwlzCCg6IQSGh5_g7N7BqZOUJ1Ax&b6tXH=J^lh(t&z-G)38scve) zGVg^L?mQjFStQt4<}8^{lR@sL%E(!f1wQZADXdE3(i9&r)ibg;#fC36E|b6X9DgV! zru?)bNNmL%`9ai&Rhm;>PBulezjGFV4~Q6_w_JFT^uRdEPt!r}X5MLJ>ZwbjU&C5~ zs%l+L%x}be@4*Dyeii7;up2NnyWLjRsnC>(Jmg}_uCsX)9B(0;9`#aL>||w(NfuNvjs!4P?+J! z!?_|jM{D0WH0p2!N$j#EwQ~`~XUbtB~-SP+_cHg!Xu}bBqP>7g*=ZC&8J@ z8YO`?nyjNGbuK$!=C)H^zSS_&d8>8S{1?U(t~vK&F6&v~ zwJZo)^TaMng8@Z!9 zE+L2QKlZMxXS}Y{9j>$kufkfq;&4?Z=i9%4Z%4yRiq5y#zkuq!-fF?WfK{uZ-Y*xq zIPcgmLut1uLDuy-dwb-RqMfb4cnE0eW!SK3*)#1WLpv^lDhOzGf8cy#Dwkq-Tg<$* zg2SBtVbHBcuXUiK&((t0Gda$msN zpMO>wC1|*g`=so@k$xq_TX!8pc>b?n)c+caw-oyL8!EL0*C0~Ailo?8UQ*t_N;}QA?9D3mG=*r31=k6e)g^yQv+Wa*) z24QZGQPhr7HF&g$-0hxKs(tiv1uvfKps?xwo4l)mmyC{?;$vj>FJ7IbR!w+V&IOj-0wlSs*T5fk7=@>%SdNmGGS-W9segHC6zjot$BZx>xS|p!h^FafLy9y&ik^?hftuW9ZJL%<;3S z983B0Qllf;_$7^(B*GC9@vmZzK-vCYQuL2@S&fW88FG6X+YSBwB75lpX!XbB}cV#Noav9%3{ki^1rYGH$K9 zc(89G=ky+IQ{yg3s#qxNwR=xEV|u{+`;r{0p`sF2z6`!0Chv<~Tg^PfeHR5v9Y!tw zqo%v4ZAs}IUx}XgGI&1c6*jefLGET#nB5i!$!Z-sH83vmw^aB3mwyJ@?heshiCXS} z=#3;Bt@3DokcfNI91BQUfe2QT;kNz2)s*jyQCoA_(pO(szBWqp_ADe@OEs@7uxC_E z%<%O$F-o-orwabbQV1wYa=l$0W-zbtqu#diK@3q;4Jhn+iueWd+C6&@Wd$lS#A-`N zd)@LV)npTrvLmG7- z#vQd7SJywLJ!1VFh)BP<_kJZEz<1x_wAAqZFW3ECZC(kz`rR6M{Tn{zx~e?01sQUG z2npC;I1)VqgE5l9@1mlHBHuXw%(__29TX>5#T4c?d3h3aG}lIENthk7uA8-Q3y!v! z*Shga*@sN!xRk1Q+|r@318v<^%PCyDX(gKP?%wr)*vt;tx?w!HxZTK`aN)hri3RK}!KRoTsDpH< zOZ{C)*X7ppUr4Iv`l8JK@SI7oUtXZk$%@%C^9Sbcp~e2t{Gm4&N3{a?>;(s!(f=@d zaV^(Ex*-F|4?d| zG0UmCMbqn^FlObo=S%y>Xai8&_({mHAA!e2thq7ZAzh!ng!v(_V&lLB)&uLin>6qR zg<=>fEFDa3�wTs1>y{ZAwVEUPXfu|B5F89|Q-IxIHc8lkLZb631#5#_=y(=*2N+ zMT^YaG5#5)b@7Rv6NR!t+C7_Kxp>wnCjNVtPqSAK+FECs2+bGr3hL#p-ay0-Cc5?< z{o7iEtMQbW9PP2@#dT`drY%$ivwgNlX!U!2O-_4nE$RG<2f_th7Ba;iICDqP4GBp91$4fI7Cn;nn zIBZ3ixWlEo--%_gJ<_aLc`14tL!e2lM!hocd@$pKV=W-u_@&H&<(#8&8^C=}5 zh%p-Y%IT$j`6p)E|$i%?pC|k^|r-7e-_7+D=R^a<4z9q ztOaj2Fq7*WOhund-j9V`Otf(%6~??9A$0i*sDwQ&6$$ad|oRbusMp=k5yKSMwJVWj>)3B~9HSiwm!bvA#?y`GbXZ z8`Prjp85orCs6vasq&Q#HHO}{hq84&YpZr&F0gtI212(3xAcD<^}aM{6iWj@C~HL% z{~hK2`yjJ&3;F~9--<1yRTjpl2rV+CTY&ExDuv{a8&Hz69$A`Z890+v&~Fl zlb+!Sy1b&!#Deq-72*eV%>Zw#pN_sJ9>h?yhV~t;RQczRcq4jRgSIKO7bCMm)j-O? z`2;*3?_a%+2w{?U)f`d?QFH7gGN%-0NieWumpB|hF-ihTU+GFhr!vc;V;5V-Nm>z4 z0K$V7NO0!H2QnIo4z2HwMWcxvwDJdhs$L<2+S>+zT=R-^L*N6Gre~G(2xSi$4gsNN z?)%R^X;{ID#gk%57}SSjI+pBa&05>19|=Y5>Q_2#e7nGb_vG-c%2J79ZNbkIu$1ol z&ZKA2+=B?d_rq1*D6~L%6*MXav~Z_&p=x<>Qfaj5MZpucpUK^=nuuWeq~-GjNCfOc z!jIl^a6Dj+VVQnY4?Rv7JyRtXA&any;qmvL62htPdxkF>DiygWe8)+fed>(!!xAiy zcwf6@y>(G-EfmD#Rb!G6b)`Wzv<)$Mkd`O2j9T{8dpO6k?jUMHnJk{PzV~7xd@7^4 zEG^n?G&7&3 zPP34H`M}ePebGJ%9Wi-H~64Pxh1=!pq9 zK>~G##QxA9<<;#hyhOoZ5UW+N9DEC8J|G9*q}>GJ`3dTeYq>s^q@? z^c8g1pjwn;l-q0*>&Z5dHIT#;r>NO)EOd@AaaSv}33^FxWN_MUM?S9=wdJAqGx=_9 z+;r>o0-kamfsGHNc(?FlekLstbNI9%7yyv0sEQ;D*99|2Dl-g3;dS|ZYAw_KR-2TL zY0mo70mo*!kpuX&WlF4ak0d9XOy}om6L*b)LvD4I?kI-n_Y#V@ZhZCAYd6F~8(l$f z^6lu1LhZjcthFoendH`?`W4^)2Z?DLwRd)0I6lZ_8J8QZ}i^WDd`S=cIbTD^et#(UT33i!5MpR z$QtM`*-BH2{C4G@r+a?%|rKWFxMu9Wf4 zxkDL=7JLBVDCzGXQuxvx@042_4h{=tNdag zd!$!2<88BV-;K7hzbduZK$j^V^=N#nUG+pZc%4{x%`6`srQ>xNV(Xh`U%$nxt?CsG zK04?8QdTT0e^vEWXU5Fq*_C8bP;j~P{Kl4aVT!yp&yCHWm%C3i<>P#hBJnF<_d4AjNFL+(48#7ex)9H&@iyJB7~(XTJ#c;v_Keh(Q!vZxDt7L{|(Ci*8$qF zak?}bf&T9>^&e~|+IAeIO)&GH4qO~O)3|y!nK%O_jF)EGIVMOLM(EkV6?EmpJ!+U) zK(nZ*@icM)fe=$pB}QrKLFkZB4!7D!A+Ae%j$Ty?t_1=Qj>g-mMX-La$gbgfXFrKC zYh{oNawBOEQPI-@J!MoGP64PVqj~Q!z@Tg?0H0)g5TS8a#=8;*9W7OcUFEU(QH4Fe zzM)96fe6Zi!Gwxv`Pgz5DYjm6Vfl3ynHOqNz=Z)l+BwNUJqB@JHkT$qIO+8;utMVP z__mryYAC`i!A3KdFa`2NUMeT7S@7p8}Q$O8ITT`#`fr_FNImg&a?>z+O6 zb;!gBfA;M-*lhkye^+YTisBf>tC!SP(sAwJZ+6zzKr9rcHcFo?@1tCV`{GtLo zOy*xB36wrnr?O0mJ{LL~4K?jI^(0uSZu-G(hOXJC-wbQ;@T2hECfvKAT zn=0^+UL%i<+ZJ#dG2d|!MK~41y4+}P(rkIOdqSs@M~$^ead)|lC5B1(yM)xQo+dn?JDf2hG$3PS3Us!2=gGHM9!8s@%no z9J5y&{Gy^~8^SH^2C8rgjqZM~-8`sMSRG5TQcoKDkzR*)pzLlC;<;=cTpsXJz)XFT z|HxQ~Fe#26rp27}B$`}|Ix7I)hm@6ojn24KptBC*W$xx6q5l=;aFV8{BVS`cnCyz7 zmTVfNrh%_;C+skhf!-T4(&8c|*=`Rm6w&V7KTkubZ}FLl11Mt+UB9P&F>ZG|VlV3q z_eY*sF6R$&bdrGLxZ2H?{HKn-H_BcG?YE4F`gOMvvb0KYocB_@n_k|oZU1q;@w)gL z`XKCSnEfAvuIJCFoHjI(O7#;T$aboeIKfL{&Hg{aaEr6;c?iQVt1yPKy^^HQ$8*b% zR>{8KX)4{`B#gSn|J<9F5^#01g#8(+d$VyBhCSX6T`$AI-!qHGf}X12x#e#sp~gqg zZz-I-ik7gRY`c^cOCGD#Ah66+X5jhJ zT;iXb(7%9|{hsbWY0f{YM~Yxrudvm`WA>q1BjWpgn`R*=BDD{nZ#dJP^&W*CUHKn{ z_BJM;gy;#N}!#hgX7+Dc2_!a^aVE16afw z;&F{T!{At^b62kZA#mA@keZzd72HWdD8`O#{^^z~3ar1~lY!w07Ajzc6&ZOx5FkEu z<0=?xsEg@nh%p_(0`0sjz9orNtUMYFuOCz|lwz>=i+L z$bzZ!z->&PzL|7`#lf8z7Lmvg)$`tGm_WmoAn$P`(3a{zO51r>6dU}hJ@?2wdnZ-d z(Atz-R@3i(t&i;w0iUnNtQ#LhzI`&nU0v7ov-<9qroR6`eb@bZnLKXf3Vq)sV5dZ; zfpx*yckk*c7kzEoZtd38rF<7Mr^t1N04Jx;RP@O~_t8fRPsRJ==!y|vWzz(vI|D>I zrQu}in9^!TZ4L;5V2m78mC97nOcz2zBuwOMh0 zqPtx6T(U}_Eo_8cqd;jHAjO!FC@Pi>%2hmhA(RhV=*fS?M;T){@T%1SToqX8_JtqV zsYaxu3=$}yJ2H225}Aw9R-j7|0B#4Q`nf|icvr+HYFhN&DszmsM5UIWohvCd?lERh z<;aHe%yAST2z4aAzgIdfw~4lx;`=+J|IEKi5?L`FV*hu$J4h zDU}yQK0DjO!Zk*zn`3Fs_zU0#O@pINzEH1^P909d%uRmE^sJXCiVYTIF|HfW)QH9? zqtq<$(DO;154Q~G5Y6ekHd{lnxvEMGzYw^X>yLB2S}rO;ze>|{9bC}jKV$xy18Ymq za{{tM5O!`VF= zuubxks&V^ohewN3V?Q1U^FsS$0z`(tUio)>THmV+?s~Q``Jv^0@``4N%)<+Z>c0Th zmW#gt|6tuKu{XEFUQ1;+PMu5>+ZjI|7Weg@5&wGX7&At=5@*0m;U+lhU3kfuc<4*Tm5SzZqLC%T;Vg?<`IvzW0;-A6&Z2>*l2KCbVn) z?7NbC?-|Khk=TNld&@F$5SF~{aDuN%KGu|UnEdR@>gM@*aBuZZ>0iK6$n&;hToc2- z)L+2Zp0&V*&e8fskzyJWz@KzKD`>R=-{TWEAsSykFRYJ*W?YrNO#5hgW$O#hCF&q3 zWFrh0DV^CB8_(b3R-P+khod{5Q_JmZSda0G_OVLE5wXF{@d*H#6JI{lVQ8+FXT|^T zuJvD_kf^z{lcnRP(mv;`HDc_ua6AER<3;rNk+Edzk54xeL=gm-Frq3>y8 zP5geU^SAPN`8>S59D-Q=;9v|Wv(NcA!V>TMJ28l!4F6-+(Eu2w28s{_Y*P~;S<&;c zen&reup@_9^m!2rbY@}_pF0UeSW(BR4IiV~EFvPyn&WL4cNi&%efU!K9#fHfCjzZ? zk8kEJsG>uDYT);8LHWZ`GFy1MpP=#;D)xgjKKd(fFs2_2{-{;hO#|qFdT_r82`Ioe zh6o(v%&kO+(ANsdhFPk1Dgsub2s26;w0)AIDsyLjUbBt8#RY{|!Ix$cA~V`{|K@RV)HC8Ff?Rodd7b~yStt>wO{UJwo+&T&)ePG|kL zI)Cuq)In8Zi&6W!wWz$c(_Cl?B0h3En(sF7O;iA( zx7J5eG_;~1KBqMdWZw9nRGExmo_qi@gK>m8gDddvy#t?Y8=*|1pEZOZiVwsNhOE_< z&OrQ+NEVV^k^`eu{us?VeBi}tz)?W^;s#S6i7PSD3w6I3V`*j@4D}Yja%+*>@@YfX z1Jpq_QN!egi*5@Y@u+aWALY?5gzd@;hUXMS2q3{hF_=GmA2=yZ=CS4~OGwt|9Ag*@ zNZu@?1dBZO8yBnRf1`IdSmHAcNQ@vblQX)X?L7mQf-Xspi;C{o{M-{ns=Yb{r*LBz z=RPY9ctVeZYHmfp8kv4+TChg**fofKH0}^J*B?B9>?a6oX@0DB_4Oy=v;1}L%)z8s zFsvy9{eCltb&NK^gMsZ z{89~HmjS+R6w?&@Qlw+L4r}>1JwLHbu<1n{C9!l|Q=Y$%3V^42z~y&WDN~(vu;s{z z0hMum6WjMI7dHxaZhK0J9~iekuhr~6rmdJ-8ZB|h>+NqDUg*7Xg+idU^b752dyP3x z320niC`AJ@8_HFb`HN!AH7&Jm>f^@jzI@qh&t+Rd09%?6Pb+=iAC7Gtv`_6_ zZ(MDh<6_myFZIQ+3~Te+QEF)RPQ%iDsb%bumn zhv(MTGgH5w<0QO)eh72zUTLddGjnJ0yzE4tKmn7GgoTWuj$fIUX|iiejaGA5&E}r+ zk1<7xQFbBsk5byI>?0$D$OOMPJak%Ly6ly`J;8=uJeWjYwBRgerj?4W8@eZ#p07U- ziCp{EJvp@D)rNhecR7Y^=vpK7A-hZ{e=WdgOL(PJn%8J$U5Aq_`4@bgId}HDfASYV z6ViNi#j)0gZT|RCyM4BA#_9cQCd3mi;gc6!2z@EN*dbbJ^+yIs%vj zSo46H;VzRjjZ6HTKw*AeEReO(izko_GN%$3L8or4OTph!2C63G*1 zF5pmQtr>cM9TPZ!Oms35FiQz1prvAr;2Ht`nSLMXlF*mD#~4FPHWc$jtDP!`u*gkr z8mer=0Zb%yq^x8MX=OcHR#640>=Z9plh}AGkfNA$R}zL|)S-L?@!u=tR*p)JCT6^Z zdD)?;2{*&$g~f}-i;LOGdV^TL4;co!WWU*)+R^U_B_*Wi$byhI)#|6%r=-QslZB?I z@LIbmZHc+;ALW~qXk>XX@G+jWpg%D{WyTx3e8A)WdjwBlvSXH?k$gLf0{-yiE;Ph!z94*{=J`v7yF6Zp-e^JcU=? zW0AvE0U4?BEYs`nKsaj$Y6Qs{x*JlLlkj}Z7l4=U>Cl1TY*Oqt(<>s<1cqfJp9j2f@a zU{C#Yc&M3V!t`JBWdRNJ3Zm2pBDvpyC>T5^BdP==POI{#Ma=*jkpYYTIJO_N9Xy5& zN6u&cq$cNJSBd7DR4wX@m&kEf7R!7l-22q z=8f3lYixT6M(##9@~aUd)lFBI_)1mf8Lqs%#%X?AeQoLfNNM(YO6-g{vsJ5u?wVCn6+bRZB)fj@MaRbcH?cqVTB_{2Zh>wSo&*{m3sg z8!4S~o(w=ungLl!HYtI!-yaiWB#zXPnF871U{Ll1!E zQ|g*cB4mAdd4mL!q=Zs>5IY z^Sbn-)waNOqc1reKZg9wnI%``9dx1|Gi`L{w&vk!6deXEo+Mj}5Unoi^gc77M$NutX4 z7Y5wzQz>LNd!|Z>pTTfYtPNXs1oNr#DNF07Yf-*J&p-=6q07~gYPr+I4bBOpu_FHN z@c?;U`ZiXLfik185XLoiaRszpCL3hX^+UB>Ed|1|Ga&?#od*uFF<@}Y@oH$<=a(~J z7qN8BVKxjWcK@m>bsAb8%&ay_lk&LV)H1885}iS*AY}3k>kV+ARons2ka`wH_+3Sj z^0L-OFV}0=KS}xvfU$gXtkQpBLu;H+{a$zhQS3*Gr6)#v1|B1G z!1<2B&ULi(UqGZ}U90^-VpKeD1nUHmq(2nMmb{?-n4Lr`E7|Z zT0-pIodE z#Od9z?vay!%$4XvxPdbllN=;5li#>~`$%yvi?t#v-kZ(uMR~t)nknTx9A`G~edaH^ z_KnZ;{!5PTRv;tiS4Qvaca(h%*3P;vJGa9#N*^wJBz_Q$U38V))HY=AH@Qw()P?jd zWwrLShYFvST|BhBrMUO|qU_rAFJNx{=-bKju9cA9_Ky#Gw)`|q4DgI>Ry+UjH@#0w z&x&zAylixy_zQS)+tqu;k}7|_w0NubM#rjQ<_jAjsV9{>@Vt_-6-i|L4yV`QI)+2%|6`*@jvu8j&GQGY(@RcZ9fQ|6 z5Wcjf?0$+OfQ$cwaVU^MrE|(Zq5s4V`kvFXih3R+x$jp(+_d+S&uYsTQTZseWnr!wvil{?M4lX|X5hsZwsEkW0 zP$`3m$knnUP>oxe>Wd$LPY<$pko&bTe0|LHsb$V+eppFH4Xdo+{S{6?6hC$smGXp5 zqN02ZU%Kx11P?LH6EY+%k?(;_P*fcrYN*D{IBIRH(v`4KczJowsy0LAnyRv*B|q?J zAqH$c~H@BS`!VGa#iZ_ceirjr&$ufxE`HQi}Ae#1*6_>jbx$zxi9U zYqYN@L_D0)R=}FJmdh<75wfi72leHbCWjpm4nu8CDbYU6U{;QvT{yk^>+>`4>(s4-F)EY8oYNdhh zYR`+FIBSu9nQ`Hx8^F|d2O6pgsL#Q&42d48)`sSI&~VDPOW0SSi3y0} z$v+ipIqp8z6Cs2V@fz4mFzGp^f7-rQM|UL5?Xv~I?^O#i#F3Y)n*trBVrUOvo{`b= zywo_Rm)w!jZ!n^8Rqr$86}INzF}j=Z)tH%QEgY*Ub;v@j@TH-JXT{y~;|=#K9h-Sm zsv+I>6#C)sPui=RKth=O9k}R!UTxfLWwQRIFhT6>ovzD(Gw`LKNCa|7BP@|(TTQ!c z2RrhWQu}jCSps15p{lwSOs*@dqefFzMIud6@XpV;E8Q=Oy+Pm1i!9sEzdl?>@0qem zzCKt%q|N8PS0^84qdXY)%);i;Ts&Odzc}v>3V4I#r!KYp@!AcY`*AUH)D_awutoJ| z%|gD>Dj?-K2jOqL@DYHpzI~%kR$W%z2X?o5+^hG0Sg|RN8*>P!|C27JegoJ3&p(3x zzpmI@@2=kHDR14ZqWQzRzTwDF|IRB%!U&n=Uq)-gH4eUG#M&FHW0ckN2MXODbCSE( zP&$Js=EaJIfR4(pR=ufsZKTax7sO!e*d{?iaR$SG&CECkLc__9>)EDV6w8E>)B1RgG$WpdExx&+k3W zb?dy*0i*T+?_D5yRU8x*Zp>DZ5UBrZ@kjj-;eI0Gw+Nc%3wa4}|vFg^!e zSf3z>t}-Ew7{Z7cE)Z|`)509|y1K!J>_k3NqiwwUHO=w~HNIYcXRl=8u(9Xa5<|~; z)~Z}I?d8;F-+)>H_6UTqWkN@^#WpHYWIpc=N0EnaKFZ6=lMwe5=^CuJ+-Lq&CS1EP zO4qqWOg{O!z_@1FWoh)xfma&m+gRaJEG@3h;E}Ki7P+Co{0zlhc0lPEO=}+6`IT6A z#SkXtp{aBx;;+mieJ!pdH_^!Z%81j$zr_l8;CAmg0EfQQv z05*Y(Q)|3TK_DTc{?XKay3f$VZoS66q@;TXb~wR588YTr@c6i-NkTbNa(k-~8nOTV z3==GHoaOIK995l{!ukhi!UZ5sG3uaInQBi6E|Gpxtz@G8NLbGqW81L}(Kd)VpjXWu zj)587sAtG`B#Ib_-s4emMtFsT_DDrhT(_<`llorN(?je$F(g^&wN=o-4_LRFjxS-z z&*UF1E~>d)J`nO8o~2PO0y&VhEf?t^Tt>O}I1NmvNvT3hLtgXPrOeO`&G_>r=_!U^ zdWcTJMP-XB+g`~Zzr>N*TZ^Z-Vx{o&lP=(lJ@vQMX}g2Sj$uh)?g_? k^B?`R5~no=Su4Mh_D{M8ijy$7J?4K?7ycVP{r&WR0mmamcK`qY literal 0 HcmV?d00001 diff --git a/docs/assets/multicraft/Installing_Multicraft_on_Ubuntu_smg.jpg b/docs/assets/multicraft/Installing_Multicraft_on_Ubuntu_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..667aa700302f87ac6f7bfbf780452df8be14b960 GIT binary patch literal 50193 zcma&N1zc25+dq7EVL?g}0TI;SN+{h+3AiAQARygHv%u1gEP^QAr4mZF(hZ7qDJiWe zC?MT}_|BsDeLw%_eg4n;jvw~SnVA#wo$LBuF~{E@e}94~mE;uVAQ&8iEWkhL_Ydg2 zjJr9;8-hWE5Cn;Xrq2Y(pCB(% zSd^Pjh*uEB$BE?UB;RWz>RgW=HU|+73JaO=i%q)0wcIwy&c`myto`)nf`SL8B14l7h5McTdX4ze@C|Bq-nIN;}XI@;Au!}33`@js4s)%13<;*#VaTyBqDuV4ki7sd;Cw=qJ;QmZu9X9$jS%_^6|+Ei}3Twibx9yp-@87 z!h!<)|GHMu(bdh&(cJQ1&$R{5{d+C{|9Y+1Z5K;3H>`^$7Hj`62~e}ax?x>yuujO^ z_k@tFDrV-kj`#*P`~v-%uZ*ROt%s$BoD0?gd5W-@?f>uwg2Gb#QYax|Spk$R{_RDj z<%Hy9`GsX0m|`v4LW-&@{mOH%tOFXFf=4lvlV3ecrt95_j8G zkoMxkw?p@W;+a`c*I$}vwaHji-VoLdmbG*jIe+>z7y+Ds2tf$m2|N&gV?HW=LU3bn z+dxJ{?29)aq+frgCfd{xxKHzY5+Wynf!Pq8hi*Y9DPp3y|GX_>4Aom(PI?6+dH2a3 zk`j;UdDSbp@n_DVV;5pXG3oIFJHOD*YilKOI$oFe^cCnRH8pifE9gCfS$MB!S`^uk z>PJB_M=3Ixs6g3wwPX1mA|t_z67k8HQxRCBbz`Oqt18G|&npFeEb}E`|#Jw;Fra^l~dRG4EMZ&OfbG=kp=W2O@b7kw6ep^X%*f6+{Y=tnNX3dp}!MacTufHTqw-<{*d=2Unm5_XbGq z9ie$46zn6YqC(K%_dkVxTc{vYUPLFgq1!#RZI$3|c+3P!_hOioVO!#!ClAUF5m?6 zHP+GENv(l!4sHypJwbo6$Ngt(PiomfPS@1|p+oJar!7wyUR8f(a#8~VfM%sc;$EQt z^Irc;Et9$MKe#DSowvYG@-K?e>fS!Iwzu}5%gCi@{+nM!s>PQFwsp+!$Kk2p}isLtuWWfJ6_>o9{&9V zt1@Pk1v?HRjA8xP>;5?cv4NmdsR7X8wElMD8~@J&LqZBbP9TU15f>b*ct$}(8i<;r zv>tWLAKd;39=JQI+c}NdEIUFlHYARBNRD2iO_9!)iQ?Z)A6|!4E>`k9p-)@6GP@zl zZ&B1R1`Q|e+R-+Bz1(U^kq<8*K$eJ#1e?lQg++WP(zvK01QoPOTYU)*Il}>02fY}w1CgVv@JHsXjJXI> z{CxjEio&0M0PX)=@DfE@2!R8Y40D!Y$SK}%*k4HtWIijg`t3bC%HrugLQ8FUe=EI%M+Rlm%L>ymDcuHg6-ymn znkr_5mXx47TJ8w`+QZg{i2Vn7d>Xoq$>-s#MN2umzOd4M+J~4M%w)_Yq(E1$ zfnWT3BL6O|4bV6og7N=0`+s2qM}r#cd1)Lt{I^1(fuSQJ%7V)gMv%}^@iLp*@uE(T z3atd;e!Dmkh7Z9m7A^gRMjT#5<$7wU*H|`9*jf=->+MV?7hI?)V>xSnpv5POy9{x; zmm{GNsVhqSg*g6i=rJveONufILB{gr!1=t1j@D_QxAD%IdrpCwo%Pt0?ov8qNITVJ-p&bOl2EohP7LT@s`+s{(}rl^T*- z5BZ029x)T*H3SDibT$aap#KKSe?Nt3{<}r6M>xtNg5)+_tu=v{g`5P&1ZuH?NM=)o z))C17x3 z=Sz}`vm>SbBx`!UJ}ppBfd-bxa|v<3HrUa`jZGIm5OG#Kbo*B*%_TD@sg@KD_siF) zlJ3VwJhE*dpyYovOLQqAu&|qDR?~H&4Q(^6Z+gD(88#%)_+&7-Z6v6{@+$j?)DKU3 zG(`Q78p_sC3}pJV(wqs3be!>oai7Z3U}``s{?e`j2|VFna|OC}1_5!#{OOYZe%hYh zrgncBM`y$PuTlT6BOB5-J}U{w3_(ClrLuwML4-l-uWXUd>*kdS&a*A-7KIx%sV+JK z(GKWNOx#{`{k}iW)9E0_w!*KSw5AU?xi(@)wsHH-L{MObjK^1Z z0vT!?n@;-3`6W;U`bKYzQd}2GsBc_`OGw5i?f29*^_}~W_mWkC7}$4v)9Y$+rV2EF zp`gScS)qR^ltOFl!|u~AAbL#Fa>0R0e+Ql(2xIgB`XtEF7#JD?f=fU_5)wqA9uf%7 z{?7u-T>koq8mE4S6+!|d2oaGII%CU+GJHch)ZaMFa%-F;^R4fkZ^1g#c!=8CKNTc? zVOv+*v6%wy{XjZ@$ z7&(?BTj;7pz-XLU%2*TRpx|NzDN5a zF9r9|=0*eDT?91eu59nmeehsXP&oUZ-3KzI6ePD5FQ9+0$RjNG#tl@AAm35JP+AwnV|J=`6gDINdh6@5Daf-VaOY5p-AsEqwh*1-n2)>y>~BojEAXz7+U#>bw%!B zWyRgke2A;>(ySjw3$h+0(&_(W{T?1!#9WDXA3}z8i=N4}&w9^+j0h7bgIH!WQpll9 z^bK2T2U5NUMFsk=NSKHVO_P)ClT0)}TDfk7;;e61iD+D?DF%y1)$rWSnxLTqLRsQi;qV|Mo5CA2-IG|LmHXoDnO{V22jAYE3Z+@Lzr1iqYBler&|926 z8Am-^sv(L%D`xehOQeZT>Apt zE3!PYr#vCX@{YUZrACGOb_ny>%1UaxO^3@0C=+*|@(729Mp)6Na2!QtMb|FD4VlXI zdFl=jJ!Br$QM*L;u2dP7(72b6P&%9zd+VP!0zbwiV7P1y#C@;}8(ldI#c z`MVxs7P3$Fk_l}e#ndZ6PH5^v4UNK1CLSkmZEn7HXNG3)bWA3_Wnd*A82u<4+Lm zk_s9VR3LydAMh~D)`_m~X|$5d$`IJ(=&22S;~(6a^8&da zY`-BABHJnlT?Rj&9C}#IRn6ZJuiUIVa#TN)Ut57DIb4?jWqBrZm6fa*Rya}_W8Q1| z>ph=7EPS5gBBihniy2a&JywAsNvT^dgFc>+&Z=Kwp7>T|6!amP>q-v7d>{idn`)cV z;P7C`>HN+vbaOo1^ltlnN+Qz9{mw`Wd(j<^P**)^f@jxOBSpolQ#Dn+p|^k#Xu9(-yzc`1WHl0i0{|WRW8hD* zSA&4cXU8y;Ar;|Wg23FsG?Dlb5X4M|Ck!UMtOLiJ5Q0bvN$9e{QV_neFg+asggg*^ zdOxs`KvP`0XIlRg!~s2mqdNxGNS0~7?ecsU(AG)D)*nR_y_wZJSZ}F}teCu&(Ma=g zEYdUBWd>zKiK%cm(=t&Zjr?eo9dxr#nILYgqK2|GvT1rN*e!QhKk$RjOAa<)!R+%{ zPlx%thRZYDX_DOLi6+)a<0#Cn(%huz8Ai_Rxo%X?g$**e5RLt)B8c0oxj6=} zvc$%&>;(4reWaUM?%~f9_9n6$kZdg(ae2tKn>GIG9OEEMx!$%DX~*&OFb_^P=V_&| zAW zVt^^41@r+!!cS!z-v$B{z#yz@*O1JtXuMSqR3iM#3&4edoH7cq0mOOzt z?W~6%3-gbFRjisqdj`7!$2=`N1w$q}7}G4%2Ot7+91fDG?`YuV=2h_BKn*dR&Thu*1|^ z*_AQth7r8V3-fH6k4)>l?qnhJSAh1lcETM;Hsl!u2@;=HfDmdpuoO734s@ImaKZ?@e?SeqHz*9aAAwAW(<{J5 z^AbEF;P9uAFj7&tV0}sSqi(ju9-k@ec9+Gr3sAh9C^hI+hZ*g4J;U|f%)D=biGw~Z zxVA>}Dc)#Xf>*vop1m{TbaW87aR*Tl(G#HY)Jq8|NXwBifm9S6o%t6gKrGCJI8uN=fEW}!r?cX@ z9Sy0)*mXm!7yb-|A@%UK6NZE!pftechB3cELl7~^cW)f@r?65IoC&_%FhP?)U-659 zu|>F9d6Oc=EmE_m-VnDit6K)j_YcPW6SXegx+;CN!GCZj%wRBQ)`UvHG1qbMt$Dg%M%Qv4;wIX z{W8IrZr{6n3e6TF_RO$6P>&G7}BzwV@VZX|WCiNPe3Cb>uAvuhfNZHxYz6>U#*}CnX z_P6xIshSEtFqr93!xFSw5$VC|l1MeY+kwwru;TYPA_Pexc+7i%b|&Cse9}TThKdk~ z{3$+q5NOaqgF5g>{#Z|1v>jX;_gBto(7ldJo=rq=(~%uaM<`S@?wF8!lf?IXs}%d_DOy z4aIKWH|@^yMMU2-bu8O5$oEe26HZQd{gn!IpZVvTNG{&3I-+_Gn_!~nhg5`^Qkjq1 zyA;Ss@A3nuGouGR123Fk_EbBR4spnBwPeL=i+rGo>zKO&E3mh#4=ighZe`e*_f8l` zW9%l3``JiJGbS9nMY*rPs_uOAr8vS!HdHI`T@dP7ydunDvWzN1d-rC}I&!~SNBdoB ze!tHZNpUSi#CUZrg9X5!S`)yF=aYS00s>^(fB>HwQz~>!_Nl3>cS71+MB7l%2?867 z24RK*Af$_EDliNXx&>wUWzf@w!kFeJBfVmhg+(C%Y`wwY1>D=HpT#ZH^$ zq|*g9|ndSIv;h#miCjHUR)UsVCUds z$ZO?v)qBa2KHQ&YZK{3A%yyp z!$bduefZ?D0txcey25*4%$hOm7633n8A&uZwgN2(yJ!_4)%W$8@97b67@80s9K#HU zU86-q_!Ys6KG26#-T31wBJfKEW1*FflYwZYfsF=AMyrT}&WY@bXX0;sS}qY1JkHlY z|Mc~@$?n{U%B^kfGA0W9E#2SrshM@`td*eN$saujrv~_5TWM9zomkbrdlGvMV(GClheTg)->x@-;Mkc8? ztsmlrECU*8#vdMDv64}mn*ZvbBdb^L8Th7U@Tr?c(dCrYy6VEsNm;D7r>%VG)lYoh z!oq6nWnQ%WO`;D&tv>xA^6+$5vTkH@6xK5GO0XG>-L`!}%RR|u^NQnxuG7}9k)DA{ zYt7DmYDHSqJ(jwp=1(^he=KX-_WM4RS54Qe8U$-HW z&p7E#*(F*QUx637wCG|u^!CYV+8NJ8B&-PFwE#a531CJ79x4ZowCeaCh+t|JK%afO zb}(kG1WK}8-1}4chZNz`RMauycz+)_oZx_Wk|+UzojOaP@eIUFss$_yDCb0W#7)8C zL6oF$G)@nqwkJV4?Q#>@b*3I`%cVas852O|f14I8{K}DNyT)FWDeJwgE-pt@ z{519+y?f0^Vl9`q^I)dR7S~E>Kh6}8mE5H$dY4k))4~x~J~6M!?v?(DNp<>+pvi^# z_ePc~{d{9|G+5_edULULzC^zM`YIQR^XwfWuZ+Iq29A7#bgoXWo;YD{wHXP2n0IyH2FIM@!v2wyzOFU+Ynmlk@sf>8O{Qw&Bz>Wi_SOg=LF(VvR723*5OZ$xkXr z$Y~jb-%*5PZQh#|I8RUkAqG)K!-f%IpS6Q!$9@X;Uc01Km;N@gvHK;tfd(~vkI>D`CV$2n_5Lhp z_@agGXk2g7Maoj2>LYj!hwVCfq4p1g`%gk1)_S_#YYnFtm1w@ESBS}%TQ1y()t3d+ zB=vGgzvtlO&k1&@NN*K!RcaVg7_oCGeG`)4Fr{{L!!7{~$w%9n86HKklW3!|zp0h< zFlm%eg@@ou5>g3rtAl$&Jqw7q1>>S3Oq`e+a&1#-SssL_yi$fSwrd_KQ2at)AYcQV zQotsH`Tr-UM`Q7qwohBxfLP+)nLq^~<8T1Hnk`Zfi5P-q{sA8e#RLbUf%M{&Qb2<7 zJP*)@ox%&3UJhL7Uh+~rMG-8SE_)Y?a8R3r+A17TNU}xc8~t_f-N3OI1Xg0PaREwKc15C_`?5Z`cPb(cWqS97LK2I$djg$QVONpBPq)r!TdDK$2BT6XnSZhDHc zRtV4x@pZ=Dw2`VZFj9)@6Fwvjt*sGa#fkrh;DaF{`eQ|(Y#*6!zT)$mhBd%#2_4f& zQH@-6*SYJf$=a%OBF24swR@s(-dyaPpegAkZO@g;;^LelO=$NfC^0V&IX_tMSbB-Q zQ$nCX$|#)Cjh%~&2hFc#+a)*Z*g;b!paL6|*=4Mv^mYt^_jYBMz-ZyMORwnG>gQfWP*tzN?hZL zF@EGlh~ggjIGU+^ah_Pkj9JrK>zs7Nunp7G-;jSf2fc)@wi3gcNH+MWU)R}((E^1c z0{YRyS5}#IET$6jm!>AwIC82Ga@<3>x6=~uG>g@%s6GKZ z1dZp3$O~)e&qGq~xJmjtNP!B+C5&yn;c$=WoJ9Ey&E88~cMd#u$WHh;}Wg|*5* z8yWK9*UoxOE4UU>xl>SK7(R=+G^R`(l6}40r(liX>BP$q)3SDhb?#+Qsonb1dlSdv z(8r7?b*UF8{3I-LL+c3MPjV5U>U%B_)fw%Y>3hZSX-W^dVKojEI;kdZqM^NT}!yPOJtpe~ZfN(=i!VQ53g6$cQyo`e@P*E@g&yko|g9VeEYPnUx)i}NCRdUHr@N2ztG?f-cM@C!A zHZYxoB~B?S-6xT5CRbLPk>mCesp$T>+DN&lqt&vGU%RPdWx~rEGam+q7y00{Y{+9S z&iJMed9Y?ii~tzx>oq5;aNF{s!xM9 zrS8`am;6IZj5vDrjq(=TFj`1#QiKqrRk=ZNb1yp4P8;LC_9EE%=9u0^T?^Z6nqWKJ zY966(VnUs3D`Re5!XqDFt42ZHe$OAAjrzyRmzGwA+detOq06QT0ZAk7ssV+EVA64? zIV%k%aPp^=cd^R=Oz|m0u-AaZH&Vl-(F$s$Aawdu5U27Dmo9#J?HU?~XJ)lbIK6__ zpI%Bp9`z6miB|}(EngE+un^=%%x0NwQX#Lg>bPw3>=YZqBtxSM*Uw(fvWVCj=Mk+U z@5Ns5wEiN(XT+4gwjq1J#6s2~%gIha>!zy>(X215f*~$TxHU+*V$n>0>lMqzLBN5V z>@JKQ9I7j^+G<6Yl?E$&RSQ{q!l`mK>tvZ^Vzqd=g}0Gn!%mvcYcDogbQkQXv$%LS zd1loU9jx19tV-^ujLh}P+P9y5|4!+9w8WhC$<~`>S_$W4*vFc9C(Wt`JmX9$jVZnQV1_KTxCJ3l zeBq*YgRY@+XwJrgn@4O&T?>YX0 zN%irxI;e8C_Z$y~qB-}_p_r_VNJ*A=hyMhw#y;-8I^K5pO+6&LH~AxxGABaWIzg(a z!-SI8H#o&m+?$B8$aS4@g{)Z>IjW<9TkDJ!4C{`+!T$biz&p`9krI)`bJV57s_x(2 zmP$1z@)K7Zdv811kLCbUVeg`3&rC#v5I)fR2}vLznLqIeK8FaE(=bD5{1+62uc)Lf z1MmH81GpC~=f9R&ocsttRx>ihG?vSS7x!Sz!!opM_QSRc{HOW9)tTzTHvi zQ`5JQM?o+22Vdn^RmZfpIorN%XX;hDBeXtIS!gF2X^*%dciolv<; zlkUM?f}M?LBRtfIynZya&TvE|UbWhP_RhH=Y{WKCeEDGw4P80M<@lb~&n^5F?|W6( zQsxBW)zj019#3k^Tj0i1`vqyt6FK(J>o!|wpI7FBaVULRCmnyl7*j?mJU04}!T`iO z+1VJC9>#`({+>z>PJypgnl4@0t{fIsNs(+!ci-DT)73GnT`-R7ZXc;o*sV)&MimQv zsWO*4|Gac7?72s*B7B7WApiv=wNgls`49;y*lz;`&d$SEh_-IH9 zeD4yZ9v5o;g2Gmh^P|qyb=1m(>m2I+{sXG=+ZXgZFHBn|Z=Wv~H!uh%y4-5@>WiHz zy*SE{Hglu|Gfm-Q6%rrml`Xv73`+LE}BqgLxmJ|z2!~N^T(OEeLFywn zhl}DpaUGbfxW;Zl&2dXx1$`P0_WN01^hip|h**v_L#|hAv%jz*@>&~C=!tB3(&DW( zRn_mQDn`qK%{372Tq3XM@Z6ziaITZOH2&lgaGqgM9CvY$;vd4{#KnPthz+=Wrye{0 zV?F>V;UmB@5RCcKbv%h7&=;nFPaOnm;+{a7Dbz50 zdWO>L#*kktNq+%M4_ZWvJ}eGaH7&VRlhE-wwaNlhqt@A@ViKO_e%bY~yTs41A#H}= zK=uWf-sQc%I@3t=+of3-wTqIYsmzKD3Rq{$ktyP#L3F~?#1b1bGtFD(8dZz!0TiXo zuPt5fVLgr_zUcQmU}p_g?0t2#`k5~1a)z=}pr)8(?w4>r?4uzqFw@H=D*M7uk-~8? zmRLuahd{wA)Q)fy^NzzrEKR|jY{8JkCYo`9biALdoP6V}mgOUdV`=@1>fwFyads7* zX&e*`E$20IMP1i0{du-13p?-S9fh#*u2wJF>im@YXsmZ&c=2zD*z3!?`+jK*T&1#o zEo>IbMz?}{roS7iU~_5XWZ#YTx!DHW+rEm>rEQe1U>9?8q@kANCwDAeF33eOjH`7t zP}rG!T-g=%BDv#Ox)<4LGt4lWqo@aBQI;Co8ZCzs#2EfPI%H8y?ef&d8_=0J-u zWq3CtftMKu)(awK#V;FRB(Qe(kV^0_=mpTaS9;f>KSZX4SGG*h3-pN*2fP3rgalCl z-fsd;cWcJb@UkADXXggDMI^%)Z`>rfG=c*@Fzb)E%#XaE?f*17>o45_ZtPO z+4e{wH&Y9#+!q*@N;;#HsiH=OLzpEVzamPgibJI3sWKMx8_&`)4LS~))pqKQBDC0E zGBLg!wIk}5)y{kOq?e}IflzzjdMCkjD(0-Yrc|j_tGQL4hI(Xi))U=M4ffGi+4-+z zS^BT|vovu18}sV@siJY5X2!OpQy3#c%R8x}ZfIk_#$L2ovY?Y-Z;>tU0$S<&cx`Q1 z`g2HlCa(f2vB0%=X_cfB*_pI5z6^T?{rGw|vcZX1g=GSRkk1L5V;AhbZ<`1*Ei|=uEJit%!b@$r*T9CmAJa97n-SUw%O_hAIT$FZe zo61_hqrt+{Wj342f~~6|u&_YQPCt>TYO(;4NPqW<=0cg1iXK^k6%keIN8GDtBS9=- znIm3H@8~-Y^2cIG3|EM_9lNiiO1wAk7qNtMDCaQVqpKe$q#ARV(oeElZ4GN2Ko2sE zNY^LOpvn{O6xhZUX#FxLG30ua^i;sI+~<;=T>V02rtVUxLVg?bD1mO#$FO0)@gLYv zG)dy)iN#&=@;Ci6wa$gAr?U^IoGm+d*@^plz0i>#_`;v1WCauDMSeFvATYYNptvY3 z@zX;Lw+w}`>_-ZDnZROi%J#9dg$jj*xZZ^8RTGso99DC+zVoFR9m8$3(;fHy_V4wSg9a*Ir6xf^AuF3Xz0mGC%C1#(^rNffsm4 zk1P}XmUjV*0f%ViKqy6u2G_xr{)-U-LXS8Dk`9mpjgTyUDIs*sEir#_zc^ElbF}eP zQjz;~E0ZYapxOIT%%h#$Dx;#c-Ou!6vxMd&1+7Lq8M<;(ZObG1b1Yi}2l7I1zq|L2 zpq{|!c`TZ;HL4q7ZhcKRusXEzyoRZDKU=UFX8(~H#sh(gvn!bb4 zb*YPb&)bhGu2hm2&mLZ9QmHb^G*rSOlzu4PREkXa#HiK1twE;n+0DhAeq6{;XkM8< zu`tDfpTe!E zfEkAufL~zSAu3sBavZ3i>))1pJnWam{qwwGQiXP~WuDO5fJkbIJX6K0g>7m7Kt!T$ zbr<7%rU$GG2pt4nAg8R{oR_8wrL}x(fdS``6q9Uvwkek-Iudh|!&SR^!0eYxnx3TW=Sxtv2_Jc=CYmew@ zXq=#V=>6fn{aAe$_FsfW^pk3`Ha@S!s>LR{@9P+)X~bpq4O$QE@Q(=9_ZcOUB; z=AKsX(Z+a)#AW%|!FemlsLIsDI2;7eRE1_ZzUQzz!~0-%PD-W*&S_fv$g$}Cb<|po zuF%Jlc+@C|N!hZ3LlyS9Oqr4j|6Js8ru8)dD4Qk_eLOV*3!sJnW*UO7&d#ax zs^y)-I?j`(P~*`?{MpjN+mAEsK7ay2C`T#_Wurl#2JTNF2;vb40xJp5z?b{7dO$mg zzjzuHnZMp~@T)_;*kushIl6P4JipL<*qw%<-*QZA`l3Uh)|DLt35JKH-{8iX&_rHr z_ivLE>MkH+KlxM~Pf}cD^{`yWp>yQ?YjYK4w)~CKxAdKfVi8%3tYw@CEndB@Vm2BI1j?+-lXc-{FzlFKiCV^=%)4l2#2sF0h!`zyV< z15aM5sfeg+Mx*T&f0M|1I|Yr7uhiA_S|SgOY~m{`#- zXQ`d;6$dQ-&mG)?xu`YHI5g`F-9b7aLWn>+jrduceP zWfb?xFSPf;*`la9F06sRpki)kHxKu7gHBBLk&2ypm0sed>oR(*Nb$)1=YD0cW-KPL zK1t*Z&(+HBH@zH9D9-zC#S@>pZsfh`?r-7Y)?6|4vvg)n%wzFcF-=9Meadu>MNU~% zPMY$MLBol)AM6mcU0;^+^B;v~F?X&tuAGV+_R36Amb$8vRMw?m_c7^Qd*(xp{qM!9 z4L&b5{4gl4T^Wo^nXb~wE>~UHGp?HRKMU+R)Y0wD(bP(aFo7wKg=*wAW8`J+bf-hN55?SJ%)u!WAom7P^No1c5VJC(&tg!OIWqmv(go?~;_ z+;!OX*mh;!@&CHEjUx#upvHxv!2`)=6H3Z_*@p@m^lBBk3>*@Th2^&M62-=TL)>lI z?nceOAVEY$ z>azZ5d8yzxt$tcZiLQeH_h0*+Usk^K9Zno)?fhf?8!GemYaD23AqhzP4H1>5Eng+y z@fP;ITr0HWS0^m;jay8(Ewylr`P-+H-_W3m$;I>l(dCu>e|~;5{B>oZ{yf#~C_ zM<^ak3K7XiegpoOpZAEQ+P)mnOXO;lmerD*?ZZ+L z8VJRKOt%l;ZOLX>nCTCTX0==_mW@R9iX2}R-JlRpRJm0)egES~V$E4Uy`uh*-EQN{ zBX&JHO*9NVakb0qzU&(1GsT}-W~X4`LYyOdd`8AeN7Y3tBKw&v`#1f(Iij!Y-(xvh z;Ib$_61@9lm;w4wKeOs2Ry^@~-eZ&lFHHI@<(x@JylpKLmMz!0IyjU4I1I)Hm+!>2 zmk)YMSNZltpDQ_R>-i<%vga>f@M+RfORJHyMyrM+#p#HAcTQlo-ucV&&#rBq{B-#r zE53JszO&x-KA!w_^*3}QYgnwgt?-j?^RwE{hAHqrPir$!-U&i2Y?gDnX|C2e9yJe4 z>a~si#X41cM;(SRwRx-T_u8As0u&1J`mao8-4v$peRd#0I+eK9M8W@Iw*>t#R9-tM{zo%?Oe0&-LApxwJNC8@UYFicF{_1}*yH z^k0=4Cg+Ojk2x#lt~!3LvJb!9bhF@xPwv#FkuXZw_ks1@iwsYo$r70x2cvix0QP*rn5ZlY3yn7xlymyqzInvvnR&$tnu}z zaJcPoefpedox8_|vyuLEQFyTEnu&SKKN=3vA9CwVr{eqC7tcm!6k0FQ38$31OH_Gp zuhQhPaBMA)AB+96NK@%36BgdU&SI+@u9OG0cypwG%CgbIv+=!JTBCW8E<8P;Fq?P%@_fdCIh?*}leEf2_~|TSux` zHuxKA97MMKhSDc~Lt{)C%iD+b526F&cf7XlT^IY>X=!J~q1_vFS92iB{;5As)M5Iz zjvABE0&SRmYS@ThukRwoY+E5V-Ew}MXnx7KK!3SJ?&MNk995WzmgpzP5vN6sb!l!p&Hr-UIQIlEug}<#%Pz z7JEI=6PfFC?IG{w6Qn2csDZ5W4~D)XPD^FQq4%d3m~{wA%dGeLz%dThE6;C(ZuO@oZ&Dmc;4Kmm!Gkh8*;Pwf&Ncm^*YC(YG z&%DlyJA&d@v4zbULEob@eNf5CJ%>eYC!?OXHtgIsrlX9#tHzh}Qh$!iEcuepa5x|M z)m7-HI&>@dYcVK)(^kIs!0|`?<>RZOqxHwXq1;)&ZF!w-{z-SP_2?=ueuK7+&EZA$ zvl#t~t2|saqr?557hS*qoZ-K*DIvC{dze>z)nKK`+I^U3Sjcnc9+7wvM^>@c#F$7` z$GKY>&s?vT)vPJHcP_~%i~WY=mK&zi|I98^a!Z@yak1~OR*O=b|c3q<9&9bMF6+^NloL5k%9Awu#RUl zrbelHGUvuZj&GcNP-%5@viR4|mSG8=ZPjguAaAA5ozd*2N;=n74P2V;1!qv}wObuB zEgO5TNa(!uW?S>P)JU;N97Nw$SVlE!|FS!)#Ype!1CivsPmNj2cc0gsSS?LSd{f^P zs@rC_>im4ac(kve{A5gGW@gTs%j>{@=J@2p zF9eo%hxFUAM1A^D-Jd*c_Mnt z!Obz?+~!dLm3e%7_TXE&Ql0xDl|GX1qqrM>Ll520El;#$-7k||{}wP~a&&hr!}?Rv z%g;YYb__*)59BR`JKNWG4u53~4X@v9d;>CC1aG!;x7~xXyl%=`*Uwqzj$gbn`#kQm zpO*K7_^;sqlWetLWD~}&Mm^@DO(H`$j69B|tuuA)_ z$i&%RcMlk?hlwu_k7aVJJxYd4oBExs7hB{rh%b~b?r-fi&-MQt9A8-zPmU5B{HJr) z_veYp=au6xWtQWw+y@dz#msf)?y>*yN@9GQviKoQ|$bsh+ zQt5H(f6YZ@zm91||dCE(JOp`-nO@0Qhla323WR<(l?-nh*e7B5C$8Y6l zd^B$QC4Xz1ZtEAS?A-XR@XZGy-o06l;tkbXy$zisd&;Qen|YVm{KmTb4dl7g*^7lG zzeG>%3tTx_>9jn2K;9&uvH#+0z)smurD&e<91)g?-)btCKj$=(S>PDNC38VZZq6=Jw!VQCWchNwUC~gQl}pOWePq-orhA z^R83@$rsgK>HfKfJc2cXg6FgF4t$`js~8GS1EY3kBBLLVJEJSNYVGx0cGx z>kn(JFKOkq1`>ptclOdle{7iq$j6U~hcBqsH2KaJ3~#P^suo6br428XA+qFrHhWjh z4G(=5Ey|L9x_=$ybmtK{tTAu?cu#UXZ>=QSI&7@b{N-TMt16WxnJV!UNtWfF-NVK- zRqyhn=E3(ri50##{PSj~smi0l(KG&Sk%Ox~%W?ny)pYMTA8~(ohsoozLP?)#Z%<71 zQknoZURZC1^q^X(u&9J{KCH*evCL;{JTY(5b?Z=I$afrjE_`9dKWjr&f_D4*c(zWT zh;ZSoU0dw>EGb6SPB^KEeq&)Fp;^1mT9x>p_vP66_1{oDSKmqUs$cxKvb|?!$(szA zRiCJi-m^znhO{;r$_?wcoyz+Awa(oxyLvalWy`A>wfM8wdyD&v-t&(E>DK)_ReQgo zd%MksO)V2A$!B#w^WOcX<-fiv=DK>>cfT~Pz2RdX&&_~DuBg>JCy$v6GUh8Je6{QL zqlw=?`3;%5|AuzGn|tEl?9}YvGWdR=2BZJ&-+<6O*dChaH92wrj z)eMc#IQu8WJ#^FJ)xNB2NvJ+hwM-mtn@LmTnLpltk#6`sVXJhobR45KS}xJSv9>rp zkj_yov$aw9gYVO#)d_co>&&6vfn=tq_uSww|3?=t#f;`>!)XWeaK+`Pt554Gx4gy>cR4+*Opn@MJ6;Havobo z^NlBL)-FOnmBx?izsLWE1h7l?CKrb<^zV*;m9TnKyK>cft0u|Ck?V1uJNfisB1U_3 zw2o#N6PEL%wj+;6xFmM!jq9`V`CmdSALfvjA1$Z8EG4{odQcM8P^iDQQ&G$r{DY0F>D#;_j zwy@^zaSL1XX&?&KqWUSqErz$dQ0l%qn~79Znzvs-@y&&0|JzjMI-8{{${2&&j$;nZ z+>-Izl33N%!OmX+*iXNB9*=k4!nTd?9UE&2^->gNINY?~Ms@3#>JQrc9@SoIZcbPa z9VtH&@f7T~)32_+bJ(bzF6?PHl{DsR>w~d6$?&fH*4eig)tvC!B;UbVSTAQ&zh;!( z)#Rb_0mVUc!STKBow-j(4L`;!LVsSxW^Fh5WhE7CV z=C20a`n3D2Z2s`1)2w!O(aY&}eNm-eM`+IBpm?-a?Oy#q+OuxPO;zp9GnS=;4go{+ zB_($3lT8U30nP<3ug7n(u5IT%V;k{2!tD6Z`rOy8<7ZwEb-gLseeXr-(VUgv1M&3N zhyA}Hg;{$xWk(u~hOn(V5UrUP*Y8W9hWov4eONd#M|Czx-nCwD{IV!9F7@%#jKk(V zRQbY2nu}1JVRdExZ-{zzJb-R{``z-Fo~@dEBjw`V=SH`L=4i#eIXu?o9kEFzd#^j6 zPKC}rR4mIharI*$KME_weD3rem82Le$v(+y=^Zu>h%S{hH_`w36tbLOkDXy!__0{Qn{T z@K4=N+*-QU^n`P%Uy|}?nf`-cDO*P^Bp_L``;UNw$C3Zo94-Co+LqS*V$x)!_cOk^ zxShG^c2Vzi{q3_WneM0&p^r<+j5)8jEYh`0HiE>bOLhnP{BL$&&2u+y7~gc8=@=*C z)MN7%PgqR<1DD8?yly*bE zw_gjbxG_)sv#zWD%aT^h3?r_WY@{|bNDjN#^zX`W#!M zmX4bT#~G~K-r^<<(HBQhs1x zR#2u-=Rst&`pm9>Gbd_dm|<$Zb#*Xl-$5+L>Od;p?>F?!-@m0ecHZHa#WweL(dwpo zThQ4lA-j8R3m$&emHvwdZ!*T~=T5|9ckYUN_sr@oiPTh1arOT{Je>sHCd}O`Nz5g=4x_tV7jlnP?q(L6xvvt-b-B!KW-)V{4I5^gt^d34 z_xt`~5no!7ZO58KPhLAK#eK-B={SJ-mrD%=E)XQ6YLFn_kSg|&>dp9IqZ zgH!R|H;1<5$2j{50@-RRr41wo=Qxm@NyErQ<=%%b#7r80q{-{A;k5i1d5}xB(?JOT zu!cp-?$V=uThKE$Ch2%+jQ0@SHWHD=%Uy8wuaX%Jmv)Hq`pM|YXZSu!w|He8W20D* zQlNfx5i-3yV+ppqII?ya2`lJciSkZ1bb_`*X&KIZGX54RV->?)1}tou+DF<}p5H~% z^hBehDzss|Ewy4bs1ovFxn=Fr>Kt;FtWZ9?0J8}k0{VZu>l#~BpfvyRHd95sg^qDL zZP}4G`9}n`6m~)k08{MaULh&pYJU23HE5kUsfNxCOk;w=6Nsxhi^8vrW1p@@M5Iy5#GH7+<`0!zbG=j{na!8+pw@YuHGI zaTQb@88XrOA*2^MZ!iHr=Ehf4-wXOw=jtk-%#onknML%&5q4y6ctLC4BL8(a^hH$d zw`LM4FR%e`IqHAFO4GrmO1>fA3%Z2w)2Eb?150`2{w)OIh5S{DzZ|T+2BaCh>CABY zxs;Z7AAK*8$n~t8_E6md-vDl(yqLTu0(?FD@l59}VlYseDts5C(r=@`j=sdzSWo%9 z8l%4I{8;$<{kxe@l|DK`TLPX~3qfb)^!^mA_W#_mI{Dc(ebD3rDK9I_m!kU*m(Gm6 z2R}2gFwHBZQ5rE!j)xbhHsH(nqX~R(ZmVz{FV6+hrncN$sVlKp3gU9M3h8o|h-GZ3 zLzG$a=i7M$kMG0MmzRW6TtkE%X_^P__bA5mTiB<++mtZV17Fwsci0Wi8_Dt=v+(O? zEOd#7Ia@c6_jRXER&D4env`3lby3 z+Im=^`Wk1&`f-ER)>W zNQ)VCF7F29Vd>p9D?GhMZJ&qgV`2EYITpXgL(H3EnD$46<$alm<2U&rpZpQAwI0M8 z*IWu;26yJ0lyKt+1u?MQLBuB{HM-7}T~JeJG^XMQDoxLAq0?Q#S~kUhb{#_>>w!s8 z8dLaR{h?VBwQUJ4#TnAklny9R&rWJG_#^VJSD22V6FRvu@w0G4-iACqUW*as8beDY0@Ha`Vh zld;@b-CCi1r$A%wU>+j2KcH@K6V*aT>{g*g4^hQ%8TE#-WFZBu9>g3>Q zHX&e;pn)9KO){s`uvz?BVlPmpoz?8>>v=w2@5g_rE9|Eetqoig`5Rq@QC~ri#g$m zf8`YlRy@D7?C+fycb{RfIz87;U9LLMoDKYv$BhXzN$;iPb>n5bsd){{0Wsk#p}fF> z;Jf4Aizkp>SVPQLgrvD8={ITcH_Sv3%Rn2h&)`^VaKK-z5m1am2??=yASF|{;XRMY z0%Cb!=In3#w#e?D$%{=kkhz29|0c9$@5LNX>@Jg5xv}Gb-09IayOo8FByG7%L7Ez& zcW8ILsQ@DntrnP_s33nNLe%=<4Zn|`+SNzB?LWEhseEGlMbf2N9;y+_LO4UZXAugq z?zlCQXYU+>*gdjAu>rRUD2{0H0hXbS&R?l;y4A{}pnc!l4VjpQ)3%cC3 zuZ)2^Fw__pyDz*e-v{D)ek8Ll3_D@|a3bP_z$VMirByvn*1MLs1MiJtSF;0}76RM^ zkpf7Ukwb|4q?hmVv2(P5P8jhfZ8jv&MzVa4-bQbph^*(sEt!yZy2QG|Pv;F7q%0J& zKAAjy9(FY|Kx1H}!q(MYH;UNm_|4epb!7f3J)nczYI3G1XK+bYe~l6%sN0Ai$a`(YAeK}C(VLD3q)87;e3Pw{WGh!4_c#ok&aAeuQI48|W3-ut<{w)K#80luHG0((;b z#YkPLRga$O-#6G>U_HUO(9%ag2zfwa43(xUYTXMd$=&L`LSyrLqKrq>jm()q2BWpq zSng)85M;v@6<7nGSh^7LM}!ZgSgwUN=)Y?2%nM5X-R)0PP2XXq?=h)>aS1xK_S^eg z9~~Sz>^ZjHR5G&rZMdYhr?J>v9-A#VFTjF_In7Ns_&Z9XC&IF2R;dZCoQ>SsNK^e* z%p!HczK=$+9t0mVcIqeU@6r!pkck+lC&rW+O%EeU#F@$%i(i(?lh?!kh|Fol>by3T zw?LD@bl4fWe}0ESF}2_Kpd|@TBmBd&V&PWgKO$FxjRd-zy3;tKNg}%-4lN|DasG%@ zPQ+Sy%83;ZGGiJA6b&L?UUpufws)E#WlaD8F3LjFZCOyjDxz(Tzf z^Gr-QF;Tq&-5z1VQX|6b#~+asG~-%}`y>NZjfdT0vrR?F;*|aykCHt~jcHWxDfeht z@J!7gkuGEG!YP}H4sIUU3}4}kJ>!^6@L7?;0*%m_P`MX1lVv@KMEiU#hvE!O zY411Jn=S?F@|kQH%o7*Kj9TS`&8VDw@p3;cvd2bmb+NyV971z|kcqW0UmT7Lh{_ta z0guP_ZvcmxkoIs6P%M)b3J1U2VjkvQX5Q{X9UI?p4xU7vjf_s*B-C12=R@`8$bgmw zi8+0v_Y9@TIGcb?6xL-JW?pevh8}+dMW4T2btcK71)TJb2Bjj-4*$sZtO2I z;+JyuCwCbc7KR@*{u{dm)^Ew->b5+@N~7Ei3R=?TT-ZeaPA!L!#G z)J|xbxI0Fkaj?#^!k8#eDWT7^2fJCz8Osf%=Dhq&iw9Nq73(gKHhq?-Z%I}apv&FW zA+-y9gL@sTO+Y6NRwbQ67G<7Eq2t&3ZSpRt3p~KHnnBEw^f4a7fi5fVBk+nf^Ng|a zR+nsI737)mT>)*8RA-+^F(Mll5I(OP|K^$QN^t!;}Q^LNXfYbjRl0&978{z&hSb|=BW`K;YHM?(WIjCkYP zrx}by#e9i;H=_A4N`_ld)iMD`hk#E*gNp-^Eu#z%RiZe`kL5A$e67DOWrD>HpX8aG zphpYUi((6Vw-(b0o4P=5CNZl&N_!Y9pv2u-7rJOoLwc8(>xHP<*|Cu5Fxn6LX3{#i zBl;Y-7uvXWd?jcZoWT-%S3WCO9NK^>uO=z_^)>sE2IBdBZtN=ZI=mvb33nDO_KL4x zQ4XU)f}^47>Dcd=Vu~X@99VsnZoVN&waQ}VTb6dMEjSrkk)`%NLYn$Mm=%tGA4xI6 zHpZ^o2xuuWu|Qp71O1b0*WJMTBjQlfk+rg_NI;NO_QEdF39GAh|L?s`{t=S=3%)!Aqa2h+)=HEHebT4frU2eHR>wZYfqxr#T zitcVDeZsd9c-Ay&!R&S~h8?!wJ}^Dhg4*fa-|n6@3YP6EaIRj5YjUr3lOHxj#@!xo zCN;Z8*~vLX4NFL%+?A=OlzWsauXShxlVHZKo{0hnEXd_^t@-W+3rh@Ya|Ej?qCt|d zcd)oHemq!4J#;oQYex92cHW?`8cWg--Ji1nq0Kc}(QpJ7w!4yZklR@bZwfFDq9tci zV6z8a4+dLDpJ0P>&KcGqT4WkHp^H4@{=pVQR>>eVE*v{H-jpQitO0KSIZb@>CEx_9 zz)hct^TvYWVWlx1G5IRb>Q0>bxVs&we1o@a2#`M_i~__8i~so2rhwi*yD_(E6gvr2 z_1mK;bc4VJTeSKB;l(0+5_*I1j;9_dc;PQN5Tn$vkpkn7e1$z^4Rd;0n?kCRtI09@ zp!EyH&bo>6+!@kHP{HTHBAwN%!5{Ih;gylm?%v06wljhDx}#yRYd;I1fj+bDnG_w_ zk~!^~2d<5tZBR_jm`7EAO7G-wVi@FOmBE&ZoQ({xVI$I{X*b{y;{-zLQfYGpES+hL zp5cv+wO`%}uRMpdZ2pmnVz?xS<|)dn;cWje?m;w`@@4k`-vvRt2`JCS-5^jo}fXz6`hFIZc&@JO+}e9>((Fu_m>=>ub&E1mPM?epjG! zNMB`H!JJQ1RLHs&b>iMnatKuy@32-sG&Nh0yB48dWwd-fvIO==q$olqb7Esmb$B2% z(%LYrww(z-NHo9re3Qu{WP01YjbQ`}Sq7df1}TOS)Re$j`As*9jfvzCV~z(VqDicR ztkf+6f3U83WZ+(~$ybw%pxBZ|#wK2jtHTBi4|;d)^5iXHM~JMqkU0)W{K_?~asS-% zB6`-w6o_MBB%ODPh#2x0a}OCJj}ph_-+N45jBG|&@J81R;j@UzLRrULeQmmPCoH*w znrLBA;j(}~L)$EE>t?QP8X^2x>&xi_eTb-5i0h~OVX)(w|g@utO zu*nuK52!JV%?L3@V$xsfa<}GNY_ze*P<8yoR==DJUmEg=O%5f+9E1WBR~r$HrL9pW z_+TFahcJbZMSBMbbYNtj%Jk`A$lVJCU>S?JXiipQXKB zwr}In2yA&^}9)Tg1;v8o|!mYD-HX8;7wUy-7SfI zE)k+v#a?sg?k(co*#`+Byn|<6d)S}WaEPK*@nCg=yx8GbG!vLj?T;=HIi35!&kj^ziQK(w#OhDdXW9Dw`k*)9z|gK==D z4G;S!NQ%p@20p>t$Y0`r0mcL0Z01l`yP-{Bpw#N-s+vOaj&JfL-7ir#xK@i&uE=|1_i-^@ zp*>)j{-q244Jy_N^Zdv~_R88t`KkL4>mKX<;>2WlIp!$}L+DOHAwjE~ON*4=c^22( zjeX{~fK~T43`%*)=A`T6+}Vy9ysEBI5UG#}$qS!$9%dqS3=yXsf=hJAgIE!a8ljC@ zVyE6*d8{P!V(70WHcnyz{Z1d9rJEnCZd)hmQQ8!hjC~dUsEE8Z=+eebF;-JIK${^t z4SKd@J<6ehv9l)14;Ns@qr-DbZjQ+A0GD=Eb^A)g=IDl>1qX#j{?VM>m)F}MFOHEU zLF10cq#Wh+S<^u-YWBqpQl#1-9N)=pk;F;P2+YzVW0A-8Csnv{<^EXNe?fFL8HXQL zON(6XDw(hW%9N~OaLamYiibxtRG>xVGlbG}qs$9;^jOm^Duzl#AL}HBcj3!cbP6=~ zXF(k|_8#A)DAX#G8V~2Sz)21Buw4)n)pRxfBNBQ-|MhGyTKrTP zgf`pgR?%NL5l1^k zJXE$+R4>)CVq>Yea^gq@5Qv@_5-i(58osrBv*>3l6+7rzUB@MG;bKhaQipUhb2#H? zEv?G%Vn%u%EwXHrwRj6VaKv?KYb2+cYL$<~j@dqR%&iQmnN66iIA2fH?kOdID}c+# z(E^sW{)l9ie%ok)nuLUeptbKs`Gs~NE$(Q5rMW7u=U!F`T_69(y~M{DsL!?rVwMZg z)ITCFf>W*M%OBX}_Xl6i9Pqi8VrYa{hoV*Tf^cKDu1a*pJIJtN@QI2XEX(D!aDd>- z9kB3_FeEi}&L+dHNa~qfq+4C3zVg<@LPLgc5$?saHDi2xj2kI7(1s@@E>IaLDh-A( z^j@fGCP26g0z}L;YE{*tr>H{!SI>?)U!yBd1%{?_}tm;8q#s$6>8@iT0u?Q^t0JJ5C z9~-%qRctc81)hH*h?6rSZxs+4{TDy1uga;>X)%pwCqv+CP+a~s_(T*w7PEmi=`Ryt zT9>zURA&jd?R^NT_=!r@t3fqv15ks&@dkW zDtM_ttBW_e-$zi2ezVGP-zV#MuQ_<6!|2JaP$2^FH}(PjX4N!4JRHktsfg6L&dIm# zufQjt0dR!xH&Y5+ctXmN$B_|md6@AHx{V9D6&+W2hnZ)237NTOEwLOUPT3<9%^8t{ zV+(RuniFTdW^H~v?5&T`X?j>5a6O*^IcKXc!<}<)T9$2%VoBa&EnBoTk^>a|I3qCg0u>+gBtJIt^ zNaxavO@rEgAEQHmvDqUXuiS-XPMm2PlZ-x+qNOI;+ zkedm(%CMK4XNSTkYEMNphv#7jrxhial@^H85ruJlL zL7%KUh9!UDkH{Ypdnn+1veAD;2ARU$2J85M*e&FGOm(C~e>AQC36r8mK>1ZSF*xgZ zN5~z77C!Sx3%v`~)zAu>8HtY0UWKabatsmVXMaRCx~Fgxuy>rC6@e-YKlI;d09}!1 z*hH{y{`Nw`ow)&3@A_C*y|wXjEgQ%L4Z0h~+DAumK$G`ML3F;wm}&<#5Zj&7vi@Uv z8bV?}1PA)HdH_CreL9txuV9yey6B2xOIkoqpxasjyArQZnC z0!pEr$3zIlLdU?rJ=zF=yTqSdG58Lv+8hl0Vja7+&``9DFv~<$So$M2{QcT!WMN`p zqlKK`sIGKmkFY7jr4#$D@3t%aJ`w{23@H1S49^x}E}BB2Y_MGsiDVLCNtp4Xsf)XeCb>1i z%^UG?sL#zOav2HUMGZ@@DmQ}kxJLQWCU&cc#wxZS&&*>~<&VgC5c9$;Mj?ac0+;fM z4$>3ake9TkQQWy&Cf+fBD^m!b)WrltUoBAdkX&P%5IPx+5Q2MwTyGpJ)};>n$Yw%a2!nKStwS8|-h{RuJwuyeatTeEM+J@*M|H{lj)SqJBTR zkJO#nU)FVXK98}heAlrr&R>ta^j%6z@=A5%vfPbMD0dufHC>Ms4WL!}+WU6^lc$~j ztN)CR+7=iO@9j}=^><20JL-0MH0^2E*KhwQqGY!J2*2mly|<(H!}ZyFK^YPJo?&iu zQ=f-iK*P}DYBNfIGufB!0nVbm=7*T*avTk@M4kyIkBY!DHVw&HAiA_{tCT<6kmM&e z)9zd0>`*oXs_+lWH?Yx-F^&|fc?8x{TX3u=p#|6>V05ATjG8jFb~er{Ev?X%(8HBQ zmL8pay%l2&-4Ngc!wgNl2$C>*oDa6x-B3lJ+!`H@(}EtcU=mw@G#$)B!X`UUZ$wHb z{O-hnFf#1&UZ-a516#?LMzGKNz+e*a8Bt-8F%&F=kHm>(^Mqrz9+U*MO0kPTmVxx` zGf?SmtDlQDq)e=YZ^(cHZM+kSSbjmpXYUEJqpaU}XR?P^>!Aq~AA{8%s<&E!eBB(} z`{RrNdj`BvAmxD3@^lXJWynDDu%hEBlVaf05W)f#UGMH2^W4N>P_Ea!TdGvE3yp}x z%H(TN^MwBbcMH(B3vQ=Hx(bRq1&(LfWkIX_7C9U5VU@})F|fL1sPD%-ylRXB5x1q_ zCAbHaQr;U136A3wmn~cgUGLU)39v2%S~G$Splkcgx{-n^~4- zM}sf%C^mfUu`a7cZ_C>l-7P}~$B@WEu^sO9Wx_`EvjrNJ!4fl$_2rP+aGtVEG{UZb zn&-(WcsGVt_qz2*WK~D#t4j?Aik<5Ak!tjEs7p@W8dTHoNkm<-eXHpwilaC>E1%Zg zHk2RPYB0bn;TJFaG><)qz#gZm1of|4$vFot)q?M=Q3yt{sP)P`>yPQOpB=>;QD-Z- zrLBL19e-%^q~4jr#1R$i<^Luu#hL1r#>0`0y9@335SYN-hs5b8bS%tn#E^z;&U&$T z-z>5EWK-rhJLRbXkHKaDHNWnyXU0dfM1BPx>)MKCF&W)0sS(03n zBAkeJiYB`mW~@kTMij{5?7s~_8=tfugv=YiTQB%H)QoE&2eK(a4XrG88Z%_3B(Xtu z%gApX+PrlOCZDqYjQ|G9ghUfgrk()bge663t~tbx^Gajm61hG2WSrKLYk<5hoi@c_ z$-D4&Ew(s{x!}!Ub#9?;x!teSZJJD|O39-X*B?!iwtH_Y~-f2pS~1%k!Y=^F0A z4w!FS)>@U3`m>JUY~7d#^d`}f#*9L5%Yt2di@Tj`{8^6k#7xGz^@A+QK{%t-iZlL4 zq<{2%R6gIBgZLwIaN>{1$Ih*e$kJLojM6=qyc}y8qQ0f&C5)42A6}fAW)uLjI=v;-J$}0*Wci zrfl-jqVfGPKV9b_V1Ndbdfvym-IY(dLP}xQa}9 ~Bcb<0>3eI)GW;%d3q*E-V^3 zt1^XiTZqtqRkzr^gW%zPBVrbwbjrhv<4i2*l@%ZSBcd3h%A%~rB-f2D>$w|7U!-9b zKiP9Gou0MvY9TQNN1oTPYq-H5XmqE@S!={|foGr@Tqs-hr4joeHvn}6E70DcE`d-Bq(bM-bx5o+G+UU?Mp%$T z1J8vPWPQ2C#F7m8(c%GMgrY2jZ7fwgI5fJt`h?C!bdz@sQ%(kAPw*VCO*k4)C(1=m zwOP#?fa+$=s|rrJ50Y2hCVlj2OV|{gOWoLHZn;~c)|iJ-4c2j;+)z7apgioiHtSDsyV<;n z;#hADSi&t4nUg=@|VOCa6s^h|vW3 zJ?}{IF6t&R22FBk`OJroIWLC9CJlTNn%wfGLmTR}yEotG>oAAox>W}%sv>&A_!xxo z$l7L1RF9m)I*vfTc5u03EqY_(e#hsjy68(A5eudyqB}J|VAi|Ifm7@49&^BgV3Npt z(QTmG*Vdh{;@M!{lw3jxe4*{jO=~rDK&4@Qa|?2e!Hhq`>vvXG>v zm^{lSEUXzavG`KbU^fPmL=EbW|V#uXi0R+$1ftG{g~&jvINu-A-p z(qVDChBsL=#pNzYk7ZMoZ>!j1fcA^5^gKxa)Z(p0-dx&-D=I6Ur_>FNpCbEjNc$Ni z>AYS@%Z9i*u=xBiqe)pka@X;?jWT*s~zU>#Pwdfj9@b>w<|vb5g+5O z#fy#!Z1x(TS_JyrJWA_q4)O!1mcz1y)-I-&VYJvO?LvKO941zG9em5kW(^ozBO$qJ zTrA(Ws}14b?I)B@jBrglV0tTL358V86~E*WXiTtNE+}yfZMi9+q8!ZEjJj$D^Fx~B z>k%}EVh!?EU~nF5!Nevme+F*Va)%Nb|Cw##xR7&!7`k^kGKKzlmBDR|Bq?SpvMpAK z84gjNpVRYDp%gv%qC!)LC@{Fc^S_=JK!iEEgGN`bUXJdupZa+s_{05(H^&Q<_a$ev z=I*p0UB0k4ZCm-t2+;AyCyn!)FEMscbsbMVJ%AK>dU4G7{(0||)gOiTdrD3#NV}j? zotoo)CE(M0O0#PyQzmSc37Oz zDVEGXY#p)-a%MnW5;3t~Z*2eliC5d7nilQ(dBCMi!Yc;cV{F;oOm;2v)9hdp=GwxD z=bMVdtIl-s(bZgk1e_rR&+{lg9LoNz@fgY+V@p7JJ;C6(`qRQ(QRo*L>}$cGG@sxz zhRu%RGhD;)M0zV6MP-H()@T%dthx}=9h4RBXLHPQOf}Sn>L4_HG!>MsP0-;h*4Q}G z4I38Fb`vwMRj4$QrCKU{Z(N#QiBxbGJUnp;1q1|Qx)kdegv**f?kzUT!H=xGY%J+G z&0tRddcTEy!Mimlq=ZAkViX|MFq_His-d-~i&itkI)g_tr7UQPAOrg_gh^G5u6pU; zS~Lf?C&tbj&5u3Dr4mSYJ6l@9_dyE1a+$?*N)vI(R_$A_#3X*fNYDN zus~mkswIw1wT)oEEGT5TKN8wm2l&r+mj+gk$Z-PU!RE%kBdQJq(TYmmRbC-fq)~2I zzU0Rxb|v2`W&epZp9gb$Ix3A!umjMzeW(lZoWV&trad z_A7M}=deE*J*!l6Ocv>%^bC4S4BWSLuNhP>3g+R#?uv1rph1Jzdh6UWsZpNDSZ4xS zCUmYlR(nC{HcvJ&NvMrgq?iJzg`8RFU=YbUQO#FiImZhktwShdeqnq| zi-RPI3)5~IRPzdOgY;aMapS$A=$8J-WO`QY=WmVO=Bz;_ztEP9hxc^qeFIiiWVq)y zP_AO?Ybp6@8>4=o86MX&%@Pt)I(O&Fz&a26tsbwI6GU~uxZa*ZKNe^U+@mh7fQB%E9=>DR zzO4te%LmNV8Y8&PsWhd+4V^xN*lXb5TG7EQUufX$dRUY1H0qpr1@)5y%2Cwe!`wT1 zsjrKy+obLt7XB*53mOhH2t=q*qo`K6BHGB2M)pi~?-v&0@)%R4eteDGDzi46v+^GVVd}@v9&`M4$T9(7)6_gI0?h2u+aG|x0al90A^T4Ix8j0d z=KxUXS<$yIpT6A*zzFsNY-ivN|3TVp1E2jKMV%d{YfJ6Cr@!sYSgQ3vGBI)|XlBoO zm1Csne^iyOxO!z|How1Sn{cYuR_0#D3F@1F#=JjB`QKML1d!N@g$v3ZdAFoO?*@5@ zCJpmi>{L`gW}b*RS&ep5usX&cPyH0~Rs-bz`|f1T4M?Bxszb^y%uu&qdd%eHZyjn% zfd0$Sv#-jXy`9pM$Z0nuAZ5oN60a&MxI7tPFitg{lPQ-|WtvK2E&Gw(7B=_LJ#xQ)@y$GxmG7XeD<+W_}_!2kTkfYhO+003-F8##yEDFh~ zqsSXa>D5IewCC6|TVQ{@TraeBxk@mJK|mMqxogA=n*xPnj(Nmp+yJjwYT~{_7cj$Z zN5h4oF;PInB_m>a(#S)-kq&=2nbF@EX#Ta@Z>8cAw+5q&^&9U18WbZolAzIo@UW35 z)g&2JNNd^tqd%qRF6-WfO{sjk-R4qB`+5Aq6!&X?*`o*TL(xj6Qt_WuOrydzooX7$ z?+?4U&pyb8pzm`nPC0&z@4GPp5eI)5SNu)POL3@^^m#m(A%4K6$W0q68Ke=Kc3a$` zNYbepQlH(3l)e3f`0{}D^#c#y9lfm)VwqSPXZsqhtfW?PYv;eB{SGI6pT7M1K0`^Z z#(ev$qap`@wQnMtCu{zy!1fAYlbwhtFk`swD$tX7^qJyzKsiMAo&ERhvy->C0a%Ow za(Do4fCyJxMsAafL1@^Xe*Qr@eqUun?(M_*&JMX1j}-I=KD$}D+A5yCS9!D2|3~8S z3zhCaHH+6o{rtZ<`_w)$ojU)#@73|TpOw{HBXQ+-8l(5Ne$DOZbohFhjJhq}fjxv8 z&1)P|^uyRoWKaDRh9xy#q%}DxIt|piHurt`K34TUe4CuB{^Au`yDOm;{rZP*gk?)d zyPCcdUp;X|DZ48#Z>)%Kn!WZ&Xz%~B(dw|%>GZS%onO9OOd{rpzTNZ8ZfL)t{lqp% z`yqe(+xD`zzb5Z_VW)8Odv$)qtAN7CCyMiSLh`Sc?ONM$(0iM!hMHHIIcbV`X!zDi zh3LjtNg&6Q{>XpoTtp#HFLCr_19zf2(8tI##11hPoA_P27{pg)>!&yK|2g(^b!G1u zc7i-pv3$NvkkZ*V4xb23k@$6c`^X!W)0>C?V%h-A2S8@|0MI}_{KdHdjs$>?ReLH@ z_IzISB=9}p0UY28Kn~A7h@1tu?f*H-pAVhWBHmQEnPzw6 z%LY%3oQhd3(VDw)WA)+=<(bS~?N5?3I`_eU_}*_$`(&E^^4qJ;*PpKKkQbY<)OL_M z4l%kfGQ2pGSSGw(-nY~DGT~TO=D+SLS~t9s5n68*s$L%7w0boh^0RvWYZs~F@_?Ca zP3c3cK&e_6+uZ7MPsWncLBE`gCl@BCpo&IiBXdkw?#1uU^*fFzBfm<#HG7_&PR7T#N0hA^*;6E@RjnZs5g+)+uOx6IEQ{I>wb_L1x?sw>_ib8->PdI zmYUt0C~jF&GiPyClubP6rvje#nUs{t8E={UoKZGR-+L1!^J^~QWM)^|-Wa9oA1@>t zKS<_#)jZXIJe4>y?WP)o^DG%hP5>!wiC^}&E9#$@T?UxTmU}P%#aaM=M7ACM3-#FfA~vy*$%wx=<`>9U;DT0?-!!C|L60HB{4&S&eXL=L+*TX zmh!%kkUWYi_tb7RKmRPl`A(e@mBfB2@f8!8M;?`EwY5#2{Ae3KJt%xbwL#-EW}-AmEA*%5fxG=lo&3a~<|vTUknyg@qIS^7~%*<99z zqzdBqIDGTIbW6X&)bJBNr6%|O`L(HeaYPI^zP*X}WO}l!I(M!5+|T6C0_*N|30)b; zhYzBcAN<|@Q1s09KadfCTlH5eSFQrmxD7CPL@!HuBM0Q0r`&I9X% z%0=E(00KDz;P_K--37LWeEcgPk!`E8eV}osQC+iP2PVz03HHM+9F%f;SZ}=iVwcw3 zmzVyPUv_o9t2mr-hoP)_D_CvC^v4AMv2wNlTMKt|+#{mr^k{Cp->_6QJo$-lX>w4B zW-)ida?^T|42paNAh@-w#!Dv>~&l3pB0FhX4CA< z_ldL7H&G85y}bZ&~3zV>BXIkh=m$^z8=`EZi)v|6F%{#9*Pi^D3P z#vbv_laP7R47KdK-gxz9RgH4*wyi>aV1v|&pr#;2lxg0Bq9Cn`L2nREQ^hbKVp~3_ zrb{2>a=JLnHpOz&!HX34XuuTH_%$;#TL}Y~e}eR5c7uYeQVorLi&8HPOMc6gQ7^hr zmzwHH_ZOFR4I6#p`0oP?4~zrXUMnCpd0EEE3EzRNR0ZF=*pYa@+b6mvN2A>F;J%XC zPgjX`21v_ChX<3lKHFE;Xm=e(=bV-bY|l+-zFY1YW;hf!EiS#~5_=Z-uV)m#1>M^D zpvG3xG_=$4+cPgw@9u!p+9~EPhordb9eZ9J11QM8OucSa8;(OK)+#JbLmFn-5=(*vlx8tFt{rcSyrCnB)Pv^{$4b zP>)_q$j%?A-t=U>l%I-CSxI)IA<=+6JQM-~+yxk2A|g9(1G|y`lJY7p1JC6DA)7zi2w7pf zK-A`Y91E{=@9+;MY0p|_cv?yJ{z$D@`z%CBr#Li85AQqNK)S&-*JEqLyqf^>dgJ@s4SRY^pu3k%z+c_RfD(V1PC zljdOdRprP55_IeJC&wH0M}5KqeqHHpMba487pmM;@@g#W$k)^Cke3779^}|!Cf#0| z`M4RsRl78MDBSU-v{!pefA&JF+h{|^$PYlbeaDp5pAEX@fCeNqLAMJX71B?6O>OhM zk^V;EYH=>L?Tu-~BJr*4xtC!KxwipYuIR5Agiwxhe*p~SFhLu;t4i9J0J}FYQ1i>f&goIt-mlyZ1IG?sxsNdfp<12is z7mN%(8+imHRihFS;QISU^6`;y?;|R;;>g=w$yExMlTQRHpG-D7m~pVA(8$OfuW1qQ zHaR;C(ki;wBC&mM!r9yBPTo27ROC%#*}l`;|DuI~x*Z@H;EvvQ^%)?ZvghU7-`b15 z{qME=-w_*8kwd3}-Gi5H9&HD9SOPz?{lkA?c}FBJ9|ENNo0Ml95~UyEX;nFxcD6Co ze5-IKT03{r^^{F>WA=G;zPJOOvHl|^wF}#CaUjpt`>{W_Jd-N_m?9cAq@$(y*8?l_GMdU&xzhdg!w zoT%EmKsm3W?6j_DuMp9V_D!q&)S(hQY_7fO(<$jhn)$uGp%StE(LxoY`0H?qW)+Qe zQ_A!HPhkB*-S@)ZyAIW(KfC~$e)^{xH7UOQ090E4+?OhoGx6#!tNtXdZi@XV9_8su zb~fHgY+GgCEdcK zU*!UPg`3;1Km7>6`JV3nUeiCel1}#6nQEyZ_4;x$-Z7# zYiVi)anT-$P&L%4n7v)D(A6T{6m;%Ay)vMEkAkg=XDB@Op6%CF@=VyRZv<(|-x})( z(kEr2x8=a~#YXC#nr7r}&59jLPn9p-^(UQi^#!&z4%0KF@3pt&>5hAsG(5sPe#=P) zjh-bxE1JmEa&16P+Rn_i=~e!o^DL?aNp9uuNkml?OxN@yWJ}FghBCF4{U6cub>dHv z<~g#+pD9(=Ns=ANgTGFo3e=4EcA2X+Uc7=fh_rrQ>HF>qMjw9!`B23U^Cko1Rk}y5 zP|dfszanMb?Pii5eNqCcfMlHNXnK6AVF^Hs&G+y0*KfG{czkVDDqXc2cP17qg3_>l zz`*m#zeDeA674T&Gt*j?GF!f<&N&9qRY$0W8p-s*@vA?+=pL_%>sovM=}FDr^u3K6 zFcFF4vV8q-p4w#ia^X#ZQuq2l6B|LO`A>ie*$X61oKGe{Jz4YiXhIhdmI31bk7)rG z`yM@a64=cItW4kj^XRja?*F?p{@y5mliNpt49mXrJ5w(Mk$?ekd2ACE+3^LiQCC(k zzFUOt?geL@`Cx`ft@1w{XX+yA8E$e&(|V%$GC_9P@G59BDm=?huC>oY{-dlymIuA* z6*j1p^Gc5sv3J9NE96qkK{7J>t*?eFEkla@e(_4a8ue-tcjD3EmkoPsMkTZl?P?0r za!G~)T{xYfsAe9ft+}l*D>w@DD@VmP`H9EBdYAo?Vdz8e>}-mZbtd7MXTS}@$;kKn zK81gz5~yi2X@6U*(CXVRpEHMS>*9|oC_2?W4N>}CiJ76Iw}T30x97jy`Fn5W*G|yq zoa;5VAOHEGd@*;2jXL3DM&RsYA1N)5^_TBYpl;&*^Hd1-r1;at@Ig;-Av#+2y_7D& z{1d1lh_2)s;I`v@!1(X)9aRvUV_v1!2A3{&tLRSdYW428DSlG=m$KRgU?T>85?BRA z33>&WRK;2LCrtR;b%eN6T&5G^Q_or?J>L2VLWCJaoa4NZ_VFgQVM)KQY7J(bCGuk) zS1!c3{D6!;?aRzNr|jtB@Te@aV%zncT||2~?fz%s5-KH)GdC-77PW#K)__4T{$P6L zx+pM)Df$l}W?NB9AmFq5yTa%%CGqLsbAS2l-?a`Bhn%;6PKg5Ziw7w|oTyT-g7ch#%&E`&&L47YvbcgwK@|kt z@5(fI1mHms%>a4K-{f}6d;X<$=49UUPvs}e{uZuI0_FkG3(ZrNPygc+{zpB49L|6J z%I$BRfe7RC|00k7(~_q<03ABJ9mu-=M@uRWi;9S-OgCu5=6<2Gq?kg`4QL%QGdL_c z43+!qh1g!fuh+_kVXzkmyq_n#xExUoalfmXf7_MKC3c+gRd({UE2jdWWT+H{$T_v$Lny*K!*_<>W#05kU@T-}6T$v+rc z|GmrS14ssS*d^e7T4m*mQsqk(Vig9QP5Os+X*d@f%1+SA2C!gLQbu?zX zoLKNAyuMfW{|fsKXgJrd?NN^)i3k!S${|Wdi<;nYs6K@4c^m?R`ncQsfDmml^_3ah)O= z>g9JuAm5=iboh1TqIfUdu6coUIg|GxZDiTAHUDsG^^cJ1u{6jmwq!Y&M`d$avnB7& z@Gqh}VYOjO#obxe5#>|%#Vy6$lCjxrqgpqbW)u<}#n~}Kl!Z3Cl`q1jJNFtgx}WWP zzP_ig{}-{7Mb=ZPTN9Rfc9SDroN_4fDe)M_NyXbf%jqH&>~SCFw8YSt&tWUw7*_24 zeDz@3pDqh6t3L<4f8ws=HUKSTeOtU8I)g$5395o?n@Zy!n1|9oLq~}KznnB&_yB#QJd)#bhK1 z;(RBWBr0E(uoqzLUb8nZAQ$>O+oPD+{TxFWVhRr0DsNa=V~r~5tt;qcqO>|Gd80p&x<8GRRTTN3G}_@exUeUjz=neJGRE%aTxCSf`9Z4^Zd5z)+(4gh8bj z`ZOr00*!p6Z0u`tLyEbj*IsDiWmkUV;~H< zz&4TYq;ZZPsMQ~i?26J>5eA9}5qj_w1JBi|KNKh(Dnia1t-Roc8$^hX1UcPr6-}W7 zq8USNFuj9eujyIW>q`++a9~7`mQ`zt zsv5c3QUiU7`jq@UFA$pY^KCX`obAJK8DWhY7F5N%?+W^QHayhZg4kM745RBlzWnj^5)1+fdH#_Vr+Uy|mw zzkmuZVDrE*^xOs4p)b{A7364%wk*M{Ur@jMI0n$U9XzUl)IY8&;dJNf)9S_)a zPX#y6z2PAEubZe%zS7`1{pQ)F7@SH~n|XJCKrm+F|db!ORw8fT{#BE8&73pgYm*BT zgP>_XeXh-fgfdXHIG>=08+KHi?fseiuIwGO@a>3Ga3~Tw@Zz}@(by5wI@Iwlj-DsF z!um;aEfvib+iRy0@C5h+Q2xUm@jBO(jCbE&`G?aO7hKr)(5JMi=7{NcB&kZV<+Y+i zl}P#WQQI%bbo*L9c5d|7wO#&jQ_a)Rgrqv(KhzA7-)JF%s&9c-5ikdUVnTSR^vN^m zWR)RlpTV-@_Zc8F_fOhe_X8+Mp8IQq+3!Ue0YJV5pS}=ia{;>`hQMTnPw|1w@3H*g z5ePFm`umZzt4TcJef!5H+PGj6<$}SmYMB`5C#|X5dV`y!2&ZN1A4jDkInigU5lBD5 z4dJddN~etVMx8Lq81D)GjOJIxoS1>L;1C#&xpxaDA&`N#W+)b*t{DFrDmdD^#ikco zr6ko<(q7T;a;nI_9gg{cUVQ{nYNeivwS-bQFs;JpGKqy#IZ1;R=Y z96(6q=vlx5YW=T30w^yK2fXAW(zpj91)^*C!ky9;qWQ_LJo_8_;^AL=U+p+_X46>Y zIT?s5?ue~t2^B0{&JwPMhKS6zRQHKHE_ZgNj+CPI^uJ}%)+cX^7j3?tNgPGQD)p`v z*cCt*qbuol)e?mYl0GmPTap@TK$FGmR2LC_l>)2W3x?`Zpa~z77Vx2R_oZtYoA{(8 z{nl6vk857+tC6fLl`QCztCna~{6IV!f7Nwo<)E6j_Bgk;IEFiVt?C9NvV_!Sxt-D; zLP}3e3CP5Ye|QJGZ439J_QrXo1F{75?VtgHg)b*J$YbgXUv02V&ky9Q#B;2DgXr@N z3EC_;<=#f7TccvVDOeF}+X9M2dhttjw030On%NSrd54jCPWgSx;ax!K!&s#0)An-1 z!|3Ai#i@}ju_O9l9CrG*=WDP-hue1%2iD~+YYB#GUsgPAre3t`y?;t)Wb*^PaU7vn zBhttXclc_fQvA&f<9#IrXp3UHv@H@CZ8FKlGIv-@vXqBkflV`ej?`Cb^83}Xg>yNT zu48NJ!1o169p}evst(BKa`I*s^oR)Xj`GC=knYHPbEN9fB*GX_C)BR7&6y~eFC*>o z;DyF%mbMlRw}n_%+rIN1T^WvLcf~Qn5l7L!Db}Z`B(_iod07hMyY#=4liwCYd`p8% z=exhW)_Y=5um$lYKKA%0JtQC0aS14Kq`|;22@$`cegJV zc6d@xrKC;x9RA=aGG`e1Sk`y&PKJE6kNIN{_EieBfvc;mdSeslj|g<-YU&uk1h@0< zkJ?l0E)GqZwf06x^2CiL{}Q|HqMg}ATC!B}=4Nb*k%czyN?yKXb!wr62#BB0df%=mmDG{k-R(;k5>8FLh zC`jhY8IGcR>eG6+RbX?EC&o_pGj@ICKu0<0&Q7+o%_=k!3uTP9Zs{ue(Adsy8;ep# zgzD%^1WDXq=IQ!rf1=6Bb;3Xvau82IXz->%7zoZ}foT9tjD>~_ zY&&EGI~@J#COn363`qOGLM6h$xMMy!d=3%*0iB35rug% z=8rSzjcn62v@N)ZGwN#I#*~#%*dZIa+xvhG^y!QUPAUe2*KSef>7x)a{$Z9?hEf4ludXw^tv^NBKCtSnRs*Ei)X884LN z^64O$%~GtarbOUn0rgNnop146>iOblu^*IduEz&v;7|!vZ<_> z>0n&UJ&h{TKMlv3Jy1g`Wwen_jk6U-S!wW*Gb+*qBDlqUfW>K&b`8tk{_(zyNaZV= z+WFPpbWK#VAJa`*^Tub##lOTPMBm#rowlB+#H?lN1&KD_N*B@zQU4V9BDO@{y6^ZL z^5ar8c~%qZkfX3!G0UT}|J;yGD@|IQ1lbqg3Tj-@(+QRacI{UjN6W5Onyd={B0F$g zmFq2e|eUF{QmF! z19%IH9hL?q8oWU4(IH-X?NLso`P1$NiX+x2Ws^L1*} zAKMgnoRqP%UB4<Hs>TSDPzBNit7>ook;N@X%_S>tDWj_T&;-MWo31nZ6h`4BnvS8$ONMn# zs&N%}1G*|i6E@h8R*0!u@8M18h?gy`KKnLL@UUC0$O5XbwBV_x_2!t7szpE25o)&UwSODQV2APL z`BL3#XKkd>I-+q*jHod3YV2++(p7sP5~Uem!OlkWwy0dZ#B7~nQAbOqI6dJxuX*}4 zg@~M9+Z~x&&9}WCLYQFN&~I6sLJJ~}aj3R0oIQ=brr*Kt*9#9+X?IB~E>kJ~am@Yo zOWOhNqeB?QpZU?vp+>@Q#mns6p^DPW=lS#)sIgbZIBnKsLiZ6#n@&yVNn?MLvRb67 zk)knRIBn|o>FK7XJ*16ItU{E($J{pIF6Rgcla?E)RV@R7p}wiX`de&SYFJ=o=Ob5v z29nH2X1emyr^hkOX%p*j^MG|Y!FZ^&{WEB|WI^5l7$Xn}E81U>g#akGlF<17E@}b& z=YW602n&Eve#QqGdSq1K*Hgh4-k|=m3%uqz{th$s8d)j*A*}vDatkafkWYhs*7!!kMWE#W z8*(7P@A?5?840vlQndifp^?TPtSMfQ>vvQD&j0JU{_aJLG0)-d$+YO8M})p74O*Ek zoesMc1jtnusqZYO`ENj%xGQ4o+NKVcw_K{av+bV~O9l%oVSnbi;GPtSA^T@qo$k~e zxh{@(eJY<6e|4k5_UlWlY@Mhj(eAE(ia*7df1VwZmD||hAv?4xKNUVvl}f*0cVG9h&yvMW zCsJd!%Nv-WJ<(?Z6^u(y7PRwbAz}u0rM!Zf(M3X-IEaOT*s1@|3B*XPkS6!{CFR$` z%?j$ZDnrPMX;Z{Jy^-4{EPYdiKL05HMb6$i4|+FA07$Z3G!@%L--TKTVexJ6XH1?MHf zKWhd?3c&@c1OK$JQ5%#ucRR@-+n5iu{g3i6I$^R`!N0KD|SOMS{ucu++~H>%i{)U&Ty+|Atq$CO28Ud{Xg= z97GoE^5EtlXYgO^3xP;eMC~JF(yrU>d#|oV_f)NADT^C)4;9EWKN@d`?*34RKZPq4 z-f;IJMYKt?MPB{lbUqQQ)vh(gFe1&TdbnJhcJFC?pojX>qaNe5Ddk;9)uGz z*IIl&>6A4(Xtglf*>9D1JHPFsUhjN4)3WW%!Y~V)=s1HKiMqYYO&NpwY1tZs_9DZT zGL6qfB5&6Tol}RgA7^*^k)?j|{yMsEL$Foe%{^r#klmtXk#(z!HawVxG2 zUB8hVgbUBdL)b~f(C$bdchAeWXOS?}M^z?pt zU?1d}Gl)6Kn>tiCj&dMeHh0lOLwREpM_00h+a-Y9w1vUrAR-a#?=arls@q8TB1KwC zUT+9@Xq^SU_4LQP&!0P$n$5Dh`Vm@(`NHL`dlIS3{tAh2biIUXe|q+^JhBbiX~$xU z4~^!e9!5q;%8!XSqEEC}bLj-S6PAt%zF93wCF+YfR)-|1zn~boNj^*&at7KSFHY~X zwjtAEPP)Rd6?U8ebx^pLV3_zc*wa-vV?bZHZt>=iBhmdI&4?pLwj{ebk`2OC7)vT3 z5OM)wHxTvRdJO9%nxR#K0Q_0@f4~Iz#6XE$Ru;sCJj7%myZ}{B|9^Re|5y<-@yx}+ zH1~{`WO&M=O{T86pW+W8P7M513W5FO&0I6jBUoGfkq|6Ahijv&zo~TF425=Y`Ke{#iS@*tzgp zY;5%&Vxm^_7Th3LF{%>dVPe`>t>C58?O{ecy?a(B+|~7qP(OziTN%kME*zm5U9j!1 zqgI!yW79Rnjn4P6u*mjYu150oKXclvmFOqptuD^V)j-PLcY2f!vqiO2+jO~*??3-O zWRY}R0bWLBv+!3@bu`$Cl$&VtcZiJT(^;!dJQ7%|54-L$W-4?)QRSA8rgF6tnCa58 z2sV1Sv$P|<&J$dyQr59n54Vo9Z>vy)@>te<+k0glXC%F=5faPw$pR$mDNy_47d`Te0zk_|q^}wyQ zs)4O7X$RVGI-J}}LZRzc!Dj0ZJB=oTRW(B4b|u2xWu(TuAHH;z+Yt!rkCX(%#r$r@ z)wXw4?1Vox^)k6Lw%#1)yH&vPRh>N1jIKJndLCoy z@2hM{1(z`&DSEGERef?dKAHn#?m8vT%|CXPKX(Y^V^%tjL-#ke)JT19){U%dWRi3! z(o+e)_V7a)2OqYs;MVxb4T1dE2Znm9a%-vWn)OUZrWcA2R2I7BN~C9SSFz);Tsb%e zZ(YNmB8~&0mBOFC+(zz4Jk?KS?dU}Jijvlz@anzQ3DxQMKm>X|EJ4teBAV^Yrc^$i zL*<&DS$AqD@{uAnLo^j?6RHL9R@)SoeQH!gbG^Ao0(lIL700- zXYK>EJGQj(MGiXk2C3E~S^Q-VmUU?+>2wzYl4NnxErQ1Lt>7ecr79*jWm*8WhTyN|(t-T)+#Peqh4wuIwO} z{~F5=MNX);#_37im2abS>cHr5QO0rzh!|>9@=WHrMPz;a(5dK=5@N#X)-@F!!mu(B zR%ay5Yx#x`hv;JtNzy>as?{PdQscW8Cta?ogSMm6Laqg0ib?yL1>1Sh}aKk>B zeqX6q+tJcSXTC1=Ws>@ExVpoDGmo|JbLV!$(_KY)d)87@T++5kKb_F1Q=O8}M_mqO zK?+J(Gs_e5CvUG%a>x0V)i31g7WHe^d$wQSupMY=Z)!*gyI|m#h}#j`Mjo)ieWPN_ zgx=V=Eg6ZQmjK__;reFZ)Rn<+iludeFmv+PpSKId4_`l>U&w$08);X3b2uHCzHS3T~G#hBB~pOfV$vwnpM?V#n= z8I>4vDv7%eQ(cQhHu5@?r2j=!rXAn9TIC=QWhgpnj6|K*;6)jTk_<$OzAYhsc4D{R0#LA{-tXAZQ=19##5z_MmpH zrbmJ?&AVQ70Zj3*Owdv5eU|ttf;Zx2#rU3#fbXuc{OZ)$snG*QbMXO5o$c3MzdB>M zeYCA4mLn!pD%Q?UrA?OkXP)#YJxyR%Ew~mQ@G}{DJf1!q#WT8^f1~Rp-+g8CB>A%N zL05gvX~6dizRA$d>bAkd5jn>_F04Dv>|y? zgqeAhM+5`mI+BEN&%2~q3LhF1HQ-c$+01A5DP8|c9&{-5dI0U8_eISgQLkpqzS5Ph z?Jebf@ZxMj*<55m*WMx>CdKnC4;fs!Vss&pY3(gj?eIau)Bf;Gx->nig25XoSDKZ? zO=#M5AM(`9hTBmT_%N-*@{YldQAG#CnqeeWK)0b9cZcvvj){&QB5uQ zmj~bI9#ufzJ}co)6IS?Y9zmUlte}w(&B@7KBUKNAV={XSsda)Uf&{2`iuTK)2v!dxk7r1+7ulUW|^j&%XjsD z2LLD_FY&xPYM@mbNQQSc_)G<&$BJeFEedpxsVVjUfu{b=q5!OU3II#tso69^1mtKu z6!rTc*!vq|c&fh1tacPzAimUH(*4mHRj!=7vYmHu`Al#;v3Ad+a+a>Q-`kJl<;39W z!U^yBhkeh(2hFRe{YmZdCT{1&3bL+&SN^ zOJ_;kTH(z3N50yr-IH18i_xZqqjiTRDZh;izo+{v>6>Y1-IHE1ZZc8KC-?eC`ejU< z9ZKge`oa8Te&b}Zos>nt@e794)`nfqCwZ5J*5S+-2%uSo@+pu?-vWc-GlUx3?@UcsKtVT)Z1m7^eKg5*g*xLx0a&Y9ssJf zo(ZN|BTkms+Y_6*#z1MeR`;$hoOIeNQ~~L#UAX~6BAY|+d43XEbLq{RIf#3neW#u8 zv{0euYJ=d3ms-m0mA!&-wBUN*(oP=a>G@5vs(`OhUI~>Ix^_ItUVdl*{ z2JYDJ!fogG41yFNH!Ev}e5j*jFyv>-8Ty3S1g)0+d|0ItP9xp?vjY`-v~Sj z3m$z*1%{pzAk}!6g5~bLKWP8~;J+V|vw|+zVef{aQ!D!;WCDqaYl-Ht%(oK#Vvj1< z^Jg*av7I_2rMn{&!YNl$9Jf8c+P;xYJohX~C6VZ0|tgkJr|Ep=Ux^-HCA&0OGr@AbA#ToNOBWcGKi&cZ{NX@R}^}Jn0Y2U9^ z=weC6;EKTbMN@?wGZ&AExx(PI!Tgl5VT@RgtF7zTMS+z3yvwVytITh?-t;{;kl%H6>m=V}@(|r82a>z8|ksvwk zo6p**6sdSVSE^!5%(q9hFDM{n=s!daA7C@tL`Aq$q;b5(f3e5pTGqA?K6qB~mzp2> z>Ry=bg@mKx9)0b|ie}-qN0k8wUnNG7*InppsK^*$wZ8Y`n&QzVg)eq3!-lc!4m(H^ zMJ7+gNX(dJ1ypFhfepmYcXTFa=o1|b95r#lTIKAL(*B~p%y-q_w2UO4*#>8U!hEJ_ zjU#0AnVVQ%87R#hCOvTUWekkWTvN39IazOUcxzGrr2X5+Yex9A&iSr8=vjc^)r|KId?fF=5a zWCP#mL)%F;FBd?V+v~GVkbd85=ZA_`n!F9X$9I><$49tr>1wu5 zOekQ(!!o`f+s_IalMIgWv&ma${k2;#8PXzaP!mD5inf>^O>RIg}Tb$j^ zQx}7OLjuDy6PXiC6GZPk+>8@h4`zYin{m?O$X`ccOP zdk*}FADGN!iC;n{j8(Q#AzH)8ss8V8*b|@m;)1ONP5eFq*@c5_c>LZ|!I%2CKCQ-zT~c-jpxZ*{@z8eh8sN7*46e6BB+7i)=Qw8}}u8)!IyFHm{x5<3eh> zXQ$sx@GXYB56`wsLGM{tJCvR+TiCSAWrY^azT3JLou7MQ84+pn`Km|4d7HT2V4O$n zSO9-xjJYBOy^RDwgKVC)i&xnunO9V5i5boBHYGU#*J?elXl&@^$zZ)xGdIiUBZZQQ z-dN~V^_H#QW~PR%UjWK!UL;_()2P1nC(j`JoI#+3ro|Ie&9B@rcDq;$^AUGitU(#f z=f*BJd$6%DNpteLwRmtA#pfirBM5$)JImR{5b+YSEzpLkS9ik2Zp4`S66>@~U}g7V zS=I3t{ng$qF*!JcY*)t92;(dX?+~?SRrA4B2Yr!lMyV&Z;`f>-YjZmJ9dgLaSV{o+ zOa{@W1>IEI5E=p!B^W@OW&Z(~(Mo9iR>*aQfJL8xHxT3?fHeCrK=K}hI6#Z=kO~6% zj3x%zDZYArm*P)I4xwzSEEm=F@XKvu*VSpE?8To3$wAezJ~Nytq{So1P0WPk0nl#SXvGNQ%3J`*;|?yu)Le7$!O z+E*_6#tfOzp=cdMbRB_y)`&nq>eyucD(-pcrDcbo@7D zeBQ%-r~o_Y-T5(Z>;8*1UzPdrZHI9TkVy^e2l-W=x0=~(SsV|R%D`LXxpBpnB z*G~Bc;W%G0zn4DSQ=wt?zk+_e$w4V-mN_KS63bILa3*uzG3C9(0e6(+py*+3b(Y!j zVz#u(KtjgmDyo-{G0Wjb?vFw-yB+sC#glpy=y*QDQ$jPKRXMp!P{;?cF+=Yx=qvXR z9fJck-m<->7>kzC^mh&>R~e!PLVS!Ee3B)8D6j8`h)whxz4W}EwizGy+%Nl11H8KY zLgFg-6=-5h-NdX>CJc8P^64Do{YXmWYGLEL94{2;r}*=h5!(($RH4Z z(YHerK7AkS)Vtbnt(#7!`Wv(bTk{ush)p=%pH8*}|Jn#3z{e0~$U{=837beD z^8e<8kYRFeX%Ppu%4x6wa+nq#uKC^B;t$RMvcoEyi^q4oe8A)2(Dd?^^@lLczQEr( zd;vNd{bmfZocF`Rhqb&Xy~o`OXtEavjGXzF3`G}bJfwI1)Gig>&UusfMggF5YcI&uS*IiSICNsMvLnj+Z%BYK?U~O?c;`x;@6Yq>88C@{ z_oR+kx8ORrFnd|pwY*pOyOtYdJ+o0R&JN+`; zO|suX_fn0^&+@|SmZG$#+k4cf!)m^LBBa`P|F4tSM4x zfS!IDH)V?JXXo7#;qefM$bX9h}o_+-I-I4ZB1rr1zAOIs_MazN< zxtK-oA7uN#+zJns)ZB0DclRfl{6(-ucq#i&_1hm@DH5_Q%#D96`WXE*2*dv1OD~@= zFE^UuQ$4lZp_IG&p%dMWzX&I?e9*2M)}A**pa-9(|lLRRxm7hS75$q=MUW+q&ux^ zOV(j%-`TI*s}Zu>u)bm`qi&tfibZ7J03 zs##$wW_*sqH&12?3+H8^N9RpTy>Tk-*zrx;!Z^14Qp>Um%agck}f&!uFxPB|mN_+IfXoK^8^FwdL&3t4BmFQ3gf+slh6D+b4%6YpONA=J+O zkX~z(n}y7OLzZVb6AI3g6TJ)6+ki|*^hNqs5=FXQHNW!2elNDrTLQ5=%At_7G3kcQ z?}|*&?|$#&YpLoJV$>>6wB0`AYfBEes$Xc{b`#_hWVXC@N*#3KTj2iagE$U(M(MKJ z>bU&$ukxf1{H58_zi#oSZSw5}db0h&t4wRN7)<&a&^>JpJc>*4N2v7zl3{Y8+_7TY9*_sfl>t)0NZ$RPwneS)j z>v=>#^{WIAMQt<^$f6+LvX~$$q9pThE6Y?r+LQJkiLkBy!+bvyk@GEg5os*^UsuGIVRA1JP#S1n(QDcYUrtm-Ppk<5tb;BO}!Y+C>7zxHzhMoDf&hJPu z$xyBw*Uygq4YAodmU1|7KlvL{8YPYMswn5)DmEZBYA9rnT3<5^ITYptME4cg;7arxHd)y#$)WCPSSheoZ)xYOMg!AJb z&0SbK>nkkM_vF`Vs+in#+_GtSX6V-K^+UTH9o|yNUS`j3ef7ejbbH35fxq>Xzi8Wa zZpYj6w8HOW>8g}Wwyn5Z_qBG@w+VJxs?gBVx)Vey+YmBWR8rQZ zqH+Ljn?&{oDT3es`6_E+O%dTQmM&m4FbWjF?OOrVN~$62j|O132EcG3z(asIk~|8-tE{johrUlO27vsbhfx9U zW_RSo9)C6FJlm=XdeSr7^y}Bwx%bXqg_sX#x3S9DevDDuo2g%m2ch24esi3MJI72i zoXH2PQYn#_^B0Q^55SOrNx!5^nT;cXQ@hJ?UCg9)%3o_WlwQb9Yxh&05Y7;h(na{W z6z@U7RnN=WX31okS!TsE+m*tK$V=BVKlO`y{qM|+`j^pKC*_sJy4RI3`U3E=wK!=n z{y5%DYn|P~?L-lv?v%HDURZ-`pWFe`eQ&r&obQ zn(9kSPtV;VV?kR@Uu@^S^#^DRe*g_(8pS4oHVVR$YDAbr2n&R;z+|-`w-#grXK3D& z%E4u*V3Dv6QkCMc20dLV+;SAJe7k`J$J>#MCp_zoMK3iUzbDQNh<{6l7PbInVjXfk z!5A&81saY>B8dYY&*8U8(Ao;Qq5TKdJsR>NIf#-bfd=hed=gLNkMCu}pMh8tLL>`$ z49J4STp3h=Z5{|1$q=ek5*Bdcoju~GQn*Yhx<1WXFl|CYJ!Plez|2S&7INv7`}$H4 zhf<8&0)y>Dy^@?IzWPNiO3QYp+edWfM2&}ukCr&Wvj1_G5yN1c&A*4?Gw2BK5hJyD*knf{#%R5!s5CH#pT%s5 zVibQjm{VdJx%vAq8hMmyWxvUS-TYQX<-M^-=C!a09TqM^hz_AYYYzBq`K?I^Bh>py z-g0xXw9U+F%AzpiBxGFI5J!~4OX%Cx)dU(kAky#3(TtQM1bst**asoe0~-{+H4K)@ z17Z0WDIByWzs-M~2Z@Ae6W#qnLrehvIG*v32Vd}~|L=of&*7n`{F!=>mv6=Qiig$q zwxfPnYflNSwc(N-$C2Vw<#MbYyx-`~o=0tigM>Qg9gl~#M^Z8q>xaGuyA8^_hn<_{ zw`Zjl@~fs_dXJYHv!$@_r#K<_uH1E74DRVDz1z9UHX{1_pI>ibc0DN~r(w;Zg|HMo zQX(+zdYi`z`-|Yp4JE=rErKVHDagp9Ni<-r=p#IuM4)tqL^}fHGZ~LGw8*%?dj}pg z_14E)!enAPNU8`cT26;BfSK8TkSi6yZQnEqBeaD9Ka~u&NyNnhh|L-RW59>17-9$) zF^Li?6|^+`Q~UA8uXRO14wOI0 zX;{G9F?#tMIzf~D(;5g{1Aia1kp86gQi6a@!GF^)8n}#G%0uK3K==C1*Tq-s{y&G` H-{b!WA^fTBzbkmEMy`Q>j8g z3`j2u2+|d$+5fc@aCF}JzW+Vvy3U$0B-wkf_O$ycD?dhlyoS+fYh2KPk&(k-_TWF* zj};ibny($|DvS(90fWI#gRiFdd0z4H@lX^KbMqFpv3IvcirTrmiUrtsh)IZwi@{Ex z3GlG7Lm_>*Y>|#mZpu9G8Xog-IoT`on9Ash>v^0R+@AMA<3W^PExP zIvt=G;OgOu^s(UzaCLF>Rt!+)A$G0^-a}uD@o*7u@j)r`oP|c^GSmB$>%6-cl1oNZ zR>V$1TAWKxK~zFkTv|p#m`hSzLQYIvMoe5*L|j5qTwYO9f@`<&fYH3{9Tbh!Gh9$zCZV99ASNy;CMhWb?hx_5>gHn;AmZlDyVrvn(%a6<$-~FV z-Hi+C(Z<%@*GHKL%#^eQR}VeCpB?|}Zn?Tb>muIm?PG-edm8_GxA(=X9!N1Gq_?}T zmmLz^&b#+8*t`FIAm~Og8$|;zCqNV%7d3Y~Ust4?&jmGQ9&km}-pO83O-)W(TIRg$ zIcZ5bS$PQw`STLeXJy2t)nw(*o!5{#x7WwNJ}WOHc~(taT0>G2JgF|HAg3XBR$fB# zyo83tIazs`y=O1DdHdM7*&+AFb%MqvJuCIUKC5`%3u)uy?sd`K-DQsh{=DMunHnvtnQ}Vi0@$!Y+GX0Um_j{$zge;ivc@ z-GIz^0pa+u2BRgiJk0(H5JIva0~8b#`za3W-+zGW0Qh%^^1uPgL(~Tk9y)lC znvR;-=%{HA(;cRzW@KbyVq`qZ!NGC#_|Hc6#~**tP}3ZtqdUUROwY{z^TL1o=EoBl zJtesxMddy+dKfu9**VD&!CuDw%!KlGvz!UVa zGq5ii(J$VF>?>aI)49#V?-64y#D?ygH8e5TdG5$4C91emS2hqXu)nCJ?kMGn*Q)Y# zv=sYp!=`uN&>a=RCAgX;V*OfbTqK(pigzw|V9PS2duv(`xvzb;vY=KuPWyrP)WFL= zxZpX(m5D2>w>)x;Jh+Zh{y|RG5;hnWXO-ZlE+X&kJ}Q$PEmAI#sZ}eRH-FTF$JF8u zdy~PKn~;NrcYMqT@!UerP@}pU8l}%OW;-;T>7<#^9XoDTYLI>INj-G#w7XvWG{O4ldmgwvJ=v2eu!QTdX*KA)1y!7?Jc$J{4PEGcV@e=ZgDuJ*@4Xe6e6*U2U?D)Hs0=}zlR32~aQbmY{3wYHN_ zPvw&}A6jf>jP)JG5ymM!)$*$w&9jvn@ne$yl-L`UWn?JHx%4m>Mj9DYi6}; zDcDH2kQ~qQK_o;l;U3`1T=4LBRLIvBah#e5!9MS9_>;XizkhS`P*oLY_3+wON?m2A z-$hCCxsj^ZIlA|K$M>02 z&5bUBKVXdKlB7g~R_dBl5OkeCU@Yd3P=yWcnb%o;-t00En0EYMsCW^#rXbxfSvA!` zmH3nDI_KUmMlD28XnPIEz)ufTH+J}?d%4%;mdbavZcLSU%3#c$CMT)Co^0^mB{f7w z&?Awg5LF~fq81|6#%a*D0|#Zk%<&9B1aW`UmQyS32Ql2f`jV75b&)r^(-!7JZ0_2P z&Rd^)9(m0B^(E0@y1P)kX0b|6TBWu}6Dw62Ac5X@LHQZm?M)l)_VSseVDZPe=!)Au z13Q`8Jv~)*tD#57Qztp}So#@b1L3vgCn=7PD;^hxkh9 zVHix6L9raGP^Ltg4j*chozs_ipzbbJ>g%~s+FQN8>{;@N3kKt&f>Dt1*1K%Xr!%s_ zH`iii?VoDjc67SuSaL_N%5C_LMV!@#yJ0YL*j?yW+Tvn3UX9>YC~_In@u;~~kp z)?xck;ubEY=nBtL4bGQ&@S};<$6lj9KlXJn#)toa^;}+cD1UjEA`DFFEKd2)L_49` zOux2mrj>B1)g=N)RUv0dn<>NFd;U?L!pDuS`u7k4&^yQ}FXN2tFuc(kaQkq)Cn|5EY$B)7BR$a_> zm3X(2QkhAglMxhhTgj35OzTID^VTXxUV$~bN;%?0ioyOEA=7YO{EOeFxbeU+ql34< z$hRJ~X&+>qQNP8rW#M@-H>UBlq3&%)rk%P%><^gn>D8>S?K9$2wUN^;<_y)UVASiJ z4-=Y?-$0(myBC8v0-!m~CcFxr`$z{>Q znf8_A(7yZIjoE=8L>Z{59{WHeonH zzoU+q@syrOXt8UL`}-{(0{kW6nDB>c?~jrr?#z+X-4_^=!(gzm6TdOwwLJ!eg@+Bq zCC}^#VE9B#RR9Che(+4P^cXKlotkR>9mm3Qur}QQ^ zCd{h{n6!2imMdVQ&=BP8`<~hL4V4V6N!Hr5Vw%uvw)Ll3&7_JzAh-vR(vg=r}9n84GQJ90*=LRgXspM z96w+ZH|sJQjEH@}U>G;@XKyAsqgHq^OqgQ4`c>b>yrI&(!M+g2*Nd~mp)WUh8xDT1 z(MPPcrG#4L&y2cP_#h0ZhtsbhFgEOefyu&PccP~bG`ie>B&B51i#3g9lYbSeblb&w zd|LRiQ*PewK;RF{>}>a_>qvry1vO?hy47U(T$;!Et6H&->XtK~BX2-_r|F|Xt_p6I zfh7fDt|Kq%dlAYG_Dt)nM20_n-SU_bsq|s)zPIcm6&ilplr~e-B}aNHu*Trj&{r{= zfKo+NLGvm53Cyz^vsiY}3nZarV_}oWpGsz1!at`KzIC{}QbEbbMKNJrHANMRwR?5Q z=Be^Ly!@zzub!iLt^nK9B`ix>^(+0Ud9T$(fKq_uP$&nHTc5){ob_}|NdEA;vF8;v zt-c<{DS|jxhLz<0nZN|P=po))40mBL_OJ_hd@ZBAg|$rF4mz@Q^d6>7QzLD9@Gwih zQhu+>%)kIejdMiAS*AqgrowWB%d=_&vnKk0l7jjiX3X6D7$VO{8k#%Q$gbDyd)Bk| zX8Uxj%nw*3zBTs}EtMrqHI9ni(<|#Z#a00j_qBoS%69^6GMzN_2^NBd{)so9 zFcab00kuuhMM!PXQN#oNrlXFF$`T4{w-fmRtLdoNjD6&>IjW+|GA_hdGJ&Fx@D*f^ zI8jPR5gByDrnzDgk^Eu$@y8=dh>|)k*e!}MpmxDx*trzph~q*pV$bncovtX6is-8? z9SrYfoAzf$aL6&YwTh0TJRPWc8V|#Dt(=3>vk~{;oq;2l#1~`QaI1Viw_ud8;|?D* zN_Tm!!2sg5K#pBrbNdMN93(!_Xfosz!B;Irnyo)zFl?^l%;6>Fx5ZzFe@I~SMh(kl z;VJUoY&w)L#KI`aRj;$>XlgU2rZ{UD%0|wG$h(Dx+;-@Zb?-d%?bMa=@_cW}&gNlH z2N&snAq`!_z#yk}hm@_ZcO#eR7UO(x2cqf{t5w0M#I~yH7V#R$nF5L1mgDKPRbh;t zft{E6B`5C$i$+jvr<>zET?b{dT4J*t|0td?$KXROg3<>>N4cOL4oN)d^tJbT=w!+wtExV zZ_^weud@aCpr)S+g~7;Z$O>8cp1wD5MvA~WYTuR$cXjA_4&$On^(=ze~)@Az;50*{6ICblnK+hk33AxDKO@lhVL)uWdar<3k@ z=GF^H+yy)ucEZ=hsM=hl4S)y${w#jL9OEu6vw2M~SDT4o;5w$bAzs=gBO%%gW?(>w zz3%_cUZg>w#n9L{R;UV>@c6z9Ov#wLx2c|CmwL#Q8hu;I&kT70lrde!sN-g zt$0LfJ4VcQ#9D+lW399}urOEn1q|4_1Ens>Ul}JHogZPH*KZ1NyleF+ivtTzeZ8Hb zs7f4)(p^=wvooc7d`<{ugPyE1bFN=7rloX$CrF@UeD*KmXrz~aauuY*U=UlCh0Qe_+ZjJb^-i+RV`jVSCuU@E7DtKwgQs|w^$=vbFGwYi1a?>Nme9iL5*@TZz~<+ zPQk((YfWP;O;@#ho2kX>9T$C-ii<+~oah-(4O>;bW>3K4$QyR_)KhlC@3a9k``GBgrNF(1e}#3W--n?K#V=9F?( zM#e5_qN}uaFd(fZr&kpQTPn`CueFFwZ^1Ug6|oft{}V8)1pRTZQH6iL_8T}0+glD% zPWG+rduSoA?E5n6wyPF8@~uLEJ%(w;yAKn&d?-Mopf2cHPt97RR3AgfX7~)jVe{3o zQ;t-o)#^E3W0-tDU*1oslZ@oPUA^V5DgrUq;3w^| z5hT_HetN9Do~iZ5ejdsB;c|BcG}VQ!rCuw-5g07mE0D`TozPmhx*{YOF4bH)a8M$r z(Y?*c!OQ~rHiEIoB;azLTDxRzQ0Q89pPSms4omcOlZ?8_>S`eR3bcVgo6?^g4|e#C z@zJl0nZB;{bEZsp32FgJqnNnFuyP^|AF8~LIn6kQbe?XCxkJ3&T&R966Dld$4mM$Z+BhGuLK%sVVU3r&8M$WVL&^+UuAFp8&((rP&bLXBWxis-Rc z#f?<{`{+qCtc#2v#8-3nwZK;;s;kG2cOY#wvs@jVR<@_E#(=t_0_q9|oiM0Y=mFO0M&lfOW^Le7O>24#yA=WZ!;kyme&til3EY3sX6p3lx?+w%Cbq zAG(L!O)Sd&0AvSU|J@EM1p$qv1(UWlsknp7&kz4Ho14`jKexqb*5YG~VM4orP7Y-w zvlP|x3~ybjh)(b7UFIPWYBeaLAa;S!N*MG9YE-fts_D)Zhr>^MO*qPVTZB5&O~xoP zvA=ju5arx#MwF&7W=31+bXZBpv?0}TUePlahF2N_-J=%zwo=`o9_WVta_Z>zd~eWA zLRnS##w`2cBAPaM_aXqdnHVWeBaRm|X?2Uo|9sv*HyPSgEGfJxP~qv^!QoutA_SR~ zpG|i9f;J|DdB`d4GhAERyf(Z= zu_Xazj1Cgd-(Oyjj=>b-qW+wf-gXmxB|aFJ*q9_$XE|QG^EBzsb}kOyQP#|We=qG5 z2CF$1Wg!wo4;XK2CA!rLLi?={+V>@){jBVIXXmxZNDH{|$_{g;P0F^qX(zjMlf$OE z!>FB7!B>8N!f~E4HMpS_JR9*g)q8ZrT8L&jr?O~istY(K?3OqOsF6;Z^iq;Hw&E}K1K9I8A2>d+scADVt9ana>Q3IgxZ9QPGyXyx~!@AV@0ZV`INjz-|8CqGJple8I4#w(q>KxvAOj( zf?$*xKJ~Cw(wkP->T2_*j;bU6MhRvf+FejbRHzdT&-m);!7_ODAo92Cur4sN3FtZjM#<2hxi_eT-s4#PQR@Tv3 zFteE*f6uSyrxg7n+PtcYv2%w7kEjg^q--L)&K!FQckcMi`_#Woy+o}R=_%eJGuC8+ z-+y&xD`~1R=suONdXm8nlw&|GFOny)H8$&769WoayZRn&6@;&c6V%F5pOlVMZ@B%7I zHR43KQjQCM$hXMWCu(8P^K2zcVA>(g*RQP;J|=Rzu1>jHs@A5nItkGuF=<@x{wPCj zZn*s03kXvI>j-$(>>WjiMb*2ws@K^cg-mHh>I-Vp43lDCZ(78_N8JnEedIfeo;zE$ zjd@_kw^~*f`IAj;%q6!r*OAgbx5&7FnJvQVwK*`qD-Pjk2*12}Dp1a!`svce4YxJ6 zn=gwNCMTr+C^CN0v=-TOEI(8r*WUyDHPBd_PE%U?*INkaWteqV<*(x5G zqWr&%KzgjaBxjhfn8%e8)7>WXibI)}DOzpQ3svinylv>0ZLHgheOY4741d^UsMDhm z(!QL+YJ$onutbHwZ1R{TJW@6i5PuwE(WJx|SLZ6(XUZC^KEf>L&pyxDv}y3)&gkJn z!yH(8iN@)*JK?B{-R9ikV?%*0KVT1no!g?fE5D?5uzj>~$*Z-9>9=`|tyMd@;Wpsu z(t7Rxe9SbM;1} zPqB>!M?aSHmYXl+#w%*&;gcLD3^Y)WQ2tl2ta0}^6~Dd350=?#)MMPG)_NYP%(%Lh z#&?}DrcvI23uU-wr1^V`)K1Q(v9gI|K++?o&k zN^F7wua{Mo_vv_M^_g;3aQ1i?tjSgO^K*Ju<9yXkh2Xun%5rM`v?eK!Uv$F1@i|fJ7@7oISDhEvTNZh#?bmt(<&?bP=@OYY&te*L%8noX zfq&F7WIgz_Z_1<)UyV(vuFV2`Fj6zu-&5h%=l??2l+0$=en?*N{)Wx0m^n1Z88P-L zcX_y5>2Tf0Gm&D+e#cSsYo$dN(zy)$IQVCtsv&FRrw0QvEHG(1jm;IC z;5KOXyYuU-xO8$wWw`fD8!K^JH2-tn?&_T2Nq5%*}kK=XusS zD)JJ%g3A8$21Y)0#pfF~eRG+(&G)T|>-xvXjBC5QevOVa>~Yd<|M~sybPRTUhbYOxgyP@3T(j~mReV8sZmpONdCH({T`#$|+JNG^o?h^IN|GJ93Mg4;%r~ZE!d6&)a@5;~p zJx2MB{imEPyHOq+1eJbHQIuG}WH9`jQ&_atVIQ+Fp&J8QO@=ym5-SuSnJ;A(v0z&(4x!ix#o8pz(&BDtE5azK@g zEoCv%rd9zF{~yNtWp{Viv^SAG8ToCAKL!40ce}Ttsy-$cwmyK^W1K!oOu|%Iny0Q? z`bv-B=go>_terdNBP!fVoXK4rs3hN2`LTtC%pRn@1es#@A$`^uMVu6<{4_q^z&<3$-Kx~ z$k~o!Ll&fe%D;17(@2%rt#Hm!xWGtcZBg~e?a={!K}{R&^M~Cpv3bTNw7y2qxWY4i z9ZQv-bpjvC6J+i%J368nAa#6qZ%#0no^JzR4us=#xa&?WL@cv?n9Z6(@CDz?vTC2< zG%V*4A3Rx7G#heTK2^rCdc+3G^4{WAJpoWUjQsMB!+jfu7!4aN&#^k4o0ZRNqCA(d z$ok3)9xGP{CpoQkXf2sMkGx8~w5 zLEX9vBDx)pNohLK6=8(}wdKO=C_S3|#XK%z9~w`HPV7>;hgqIlNww4wRCB(MJmH=r zt(ECYmd>G35q23rZ0md7!c^ww0=7@1rAk7r`m$$sI!BC#yw}EG&z@?xuU+G>y1g-g zVPbJ6yEKo)a}S-a zOa2mB-H=O94G$HL%sMcXJ3hHANW=A=Z^9})NUVc+G0}%lm zF2Txq=H0I2>+to&Oz#PcM|o~NKDzJ9aUg<0&!+BcK9FvkoRwWl7^NpB{Xn1ltWN}7 z9+#>~4W18_Lh#RjiD}KLiu51|N!z`_?Fh^XI#-UDDBGo8J+fFX@5X~Mg;Mil*|CKF zpQNKLDJMoS=uzr6HBZ&fnDwO!So9@vqP5-OPV^BbD7x8ma8yT4v`YHD2fg)apOW90 zF7~O9nb)A}%O($YT_MIwVKC9oXDRObEtqnI>mbV|8TA;)^yJvqgWE%a@0*WQfA)*+ zt*^xFywhWTIy5aZgXC~m9*sC|a&T@@xozuh@%Pvh7V_7G}OCr_uyPm6;9~b|8X$-$5}aV#1ceO^arT&x)#S-f+m$Bzw6MTk>*n zJeCUA%-6`s=2oyUNz3*rwm^JlwA@J{9JSz!H^DWzrfQT`T_J|Y0Fxn2w7ag5QU{VF zlL4EHz+orym~GNM4F8v2c|SFEn+ooSc6r$J;Z)IbtasREx!ybeMUbf#xgW!`-dfy9 zN>xCaPZEXWO0MYmG1t6y@Q+}{4YL`CY$-^a*M*O5ww;T6X9O}RkdlDGba^HS3^DrL zH3Hg8mP$R#LzaP|C|}!GwS!|IDVNJ3aQl592uRvs;enl^A0!4WJwP6z9E!R%*g;zW z8VHwXET<%bkRk}@nz_C=JUk>d*ERITws?pK)a3l(bK%@`e)Zf_F6DMK z3gVmGOFSuA3LE2?AhU$rGA=M3&=DCmm0qXw0m%(S zJ-DzqS*#Su=DRE^EyN$=)8bhj`es|gIoI$05q*8RSD*&Po>&L~O{Jq+YJMavfB`)8Wr0ZD|SE6PGaz>tLH?kYf^G{ zK^5(o5zkQu9CQ+boNO=a%DD?QZ;)nCOk}iQ~LNe%5c(kTvV}*7CllK&ybgr=z$I6(B(E z2zzBCNT^-%?2c(%X_PC3$^f99DJFW&)8*8&tb6fdUi_5&oYziviUWQgAv}vU^M>bVmcTVv}|I7 zm;+cMP;0f@#5y}?)^%*vMI1Q%X7iLDbMrkV7c%j6UPo(|e;?4)l^r<79`Hr?Z7P3P zZ)KOlqh7fwYwkhw84mYvqimg`%GWH&C!E)kZ|(I5{;D!?KBT#Otwt)_67xA-;4N}` zz81Sy%!Oy=!uwIIr^R`Z z%^pR3*(1*_dW5NZy-ikw2T>h^{e!Zrzm>ktH?kFsCET0Fub~EVO4DReA-7AE*_|-X zg)>;RGbm&$yb)w92(s`_eP;Ulk{{1|f}|EOMSiQ&K6%jE|85X#fJRg#FxJ`GbrnIE zJzhQF`tuWy!`9#RnB@#P21SHln= zVLJ2#%ifSk2lxU;lt5@9ppt0xaH~|R$S3>z_fjMD0H6Sz30>J&&%I=DD=JH{da^3z z6N|_BenGQ!o8m{=^J=xyzR>)Lsru})wc7ICyn(nwd~t#LZ+sbCe_79r}|VP%BUp?V9C(}_|INfRHb(V@aIowUX8 zZy15jNjpFk5jI``jMFFaYYK+`_fo?*rk_|6w}*^;!hA643uWze_VQM1W9FImZF)0f zz0 z_7`KqGS#KIj>q49#|yN_;W?fIEcJ1=XVN6f685t<=?^Gmm+PT>EAjS|iG!(;tp#;$Hm!UP6NgX466?kIenBB5 z`~htOjGD&G8t&*XhnrKM^0Vd`h@dD1-vT}kKQP8sT=DXqR60Hh*-%K0!N+&lBQI&GrTnUEz7fKhL&^_ z>dxh5h-Kjhpg^=#(>kNIc?_i@@s{}ugRN7>>0WLAFzjG9)m2B?G=91N<7{He0n<`>gKWd{GH7R1wuerA6$J^g?++Yw-3P2Y;_G@fWRtxoeX5(0&bF+Eco~a!Pvhq7rx@Ud*i^{x8`6x`hK{wZ(-MPRX08oZnGCwn;;-84bK)P^mlS-6SE) zYi@Y6N~9w`FN|3Hx;Mb8D(cR3`p%=mC1h$^qoNH(7<6U8Dw55$?Bt)DQ%GfG=hd|a zMptZ6NhNd%22*~5dg^pG7o2(M@eM~A!?hX}iE5=_!OVXX|W)wdCRmlj9CMs zq>>9Dfa3rG^gd2=r~&1i;F!+u6*^?sOAdjO;`!~P4;!B2Tb(^#r?e0)BYjK~fj-fZ zrrP<)SLK3We7p*3F2dcZq>76;3m}uPQ|TEgYaPTV*_(^m%jU1Hdg^@>Ja5<;f2T)5 zR~Lx3kg%T)yq8COrOfkC)rWv!#<6q@6EsihX*h{1U_qy60IP&Ymn1St&!t$2fR&W7!o|Aul>IC~W-F+RF2* zUYC|_R~_PO!^po{$X_~qRp&hC%f5?9(9^#}^T1Oi-moY#PYh-lVte7)Ah z*`t=R6`-Tw_xcxkhxnf;`;U)v;@d@{enkblK84jgV`71xzwXh3`<{%arbcdmO0*Q@ zNe(|Y)r2t2%_9djbZ*}!foEZL&4OX#%90isoC|bId(PCHcKLOLB6K%h_DW5$fqI_g6J5ArE?*8o+p1XJ4Ej3N{kB5O9V8D)LEc+2F z!Fh%v!#~eg*)=}56Xh5f^p>H%&lpI#Q0L&gadDk1I|{vq;+X4isR#;+dQf zExyyOa6=ei*FL3x5OnY4tWPb)4%W0F@bysNQ12M&FHsyeUz{;pYz7y+47wZyMNSZM z%jKycazVv^726Juryq%JR{7OvnyZqD2TK{?qSSN6hn+W3!?-*jul^tb>X0&a#TFPD z&zU@;%7?0#eFL6`91jFX5>TVl!gJ7K_DVa6BLiU%75IhpJR7MLlx0xd3gN#R)XRC2 zTosD$U9_EuU735OkR7{yp}TVeROrN>zX6BEzdSJh*k8jFpLA)c4KQjy6!7`mSEYS< z;Nf?+%#6?ir>h_$2+qBLtI%TFqBk;wdRFmC!C!lll9H$Lrw7g2xRP&?aX~kb@r<4H z4y?x1h-C6`95XKq4C?vf^=3n<@Kn{tZ3C;h!V;_d(i`?!nVDj=4`a_!X#uf5{H)um z_c0oEh8`Wy$vjPw2RZ_c4*WYoQu5&3R0v7QPeDo^@IKjLx7Tt;$(~aU0COLEjOBUC~wawXCQgps1|i|S+1O2Wx=CDM_t#dVPpr;IJKZ0?L$G2o1X9SBynxOeKb(>x?uT~HoQh zL7^KI@ZzPx>}q@+P%d}DCh%k?zPRC->!5Kr->EVGs+aS!gYrB$N=82xHtxT+@La(Q z^?3w63%HTEW4kY)0zKfCLE5GznHT*H z;Cf&5pi+9G=Pr^HAy+a1cfmXKh}JI*A3O3+h#sxD*;^?2Y}_4wWjV4{-$GmHR=(xb zlt6o0LmoIE0;mp@`Kul&1SqqH#GPs{NZZ*_TnhIMH{mHZ*nUN;vorY*lO%Z`=kIwNzPhjSOoSdIH zF!lrH@8FG3`~kCIMM?Vto>k1Tlr0=ldtd&n*IaVAC@(>K!zOobq5H}rBvy0>vV!kC zQf`ODdgq^F4Gl?bht}688jU_A@49$Ao6Ju^)h3CyTckq%eHu(mnJ@F_`qo4uJrm@X zTW~E*X!+(w*z+6 zO~>hong%)W>VIl!MCsQHtR#UZsVx$8CB6E%*>2A#N)EUAPJy5kRhq^29!LSx$KEcO#u+e1EU+@b zKgWiy#m=URJ}!%LBL!ywX~1HLui&!hSAa#Ozv)(gWQ|bsfC4OJu8CH!T~k+_ha3CS zJv;jx_%{Q$GnBYUgdm4BbyK^mgN3Y(?@$NsedkrP*s9@jR|T}j1V|AL(}$5k^`Li2 z(z>go8PrKg98z*zRKR4A;#UU_#9k5-bl^y_m`6S+11{MUkPu+0(E@sdZa8S8>3lr%0h&lBj~)V8mFk)9d@m zkV{;;37nvB#8Pp0;`S2PvX<^Ka^Hrr1smJ4lDE>Y<7vKOSKvuVYxoOn4-tFy{DQqe zDYmD>V1{zLD>YVAZLZ>2iAS-tfjVC%ATc22lYu+eCbDNB-uZg@@o@tte+dirtv%NH zm6Ff$OIzJ0d?Nhc{0*}Ob031(8wiSswBN|uus8R>`!?82>23sb-hwj^Tw?KBeFFR2 z_NJ0-Zz73^y8$uSZ??DI?iSc(GB@R5uVGwSe)jkb=NzK=^%_rQpPt0vJysu*c<-v< zenK$_Go0rR$i41AI-@eCIJ|4_q(kG#`k%f;(U!oRfEt z#t(9j+S*6PoSO7FJr#ib0D=7-Lf?f^k&|6$U%D=V?#NY?Srwdl6P4C*EDky{4GgCr6XExISedZAg$=M}OZVJzx_V#2*G3UJqIvw>{Me~KmL%RM^=tp`;GnkfQn@e=Z9xg)$WZA#qu!75Ky$xx@(nxDHP1F7DG;(VQT1PN?`L&8hflAeThH2)YcpzPo666$+1%&@h4siyi|D z4c!9>VscDyL2U!R)h2UEg?;Csny>eAxudWaaKppEsna^L-+kb_6k(A01SX#ZjY0Hd zmK6O!g6KyigjN4AX^p=GCD4Z2r0p-9+ELPmD^?D2dOeHd6eQX`O!U#I3Qr3Jx;M?r zl~8_KVhYYH49*hhBNH%FL^TUKhuy{jz5%*wI0D4BfRAGX1wCf}Gw4AEqACB7O^QP& zE8@+!sZwMu=xRg9BTQHaY9e`x?2sMOCR4G55dg*J=RM1{&3)G0K1(_ zri1&b&@D19*spMCZ4VB`$pEz5F}|y6p>Da|$W?cr;3@^>38$PNFcQj@*=a4B^;9|OMvp`_aPsvR z+-kIV)>E=%9-vVt66tHfl5`_VEV3uJ{zas1v#8+J3z_`mpKTSyh>>fxi^C<#$W+u6 z1fGF%0Qy`9{GfYWn#=?y~jf&7=_pl4toD+D?8jtp=%bbHPBOd(vVo?qItq9oV`RtD5C@jV?y%)`e9;7qDR zsUK?n)++;0w!j0~(zAX~0Q?eoDx#GJ!VCjGj3sw!^K|Z8HM>aiYHF(z_3z5>`WHst z6C}^Kl~Rk$?w)6{AFjF67~P#w@%niT$y~xH0A8ER0g9yRFt4?`@A>QRBs1pTzPdQ( zg-^P8KTbKe2{~B2&dG*Z6J5A;N3Cu)D0R12*1W>sr2N zU1^ToC14;W^vW&z17BI3ALN-?`oIw$zd5GOdzA{oX)D#nfux)?$;}}x3vw7pEqwpR zrNVHqlYqc|W_laokR;Cu0Aeme`*WZexpe*}?ztVUYr?pKWA$mND~*am3K1vrL5SJ; z+vG1HX26U9lqwnTGY%~?7j0GH>pd=#ZcbR7xUv{V8fpJXkc*I?(vEk^PEMmp;UYo< zm|B+NOqqa|;i!^LmKmk=&pQj{%P&nSs3I>}H*Tg#>*&ZJONZ?pSl(#Hw1Fg~zM>TA z{2@rW?L)F_pr<~9d}2*mIv@X=O=(}X%fv9oe?q3+7GffL&!y@wIq**6-Or zqe_q+1O4ycNirOiM29Ptq_RHk(6@?BOW7P3FRh*?u8E9% zqOL_QJKXUEX_%x)ixh$52Pfc_eY%b%kdyv*Na^|D);RlYE9ac8WJkvQK)RhPb{7Zl zG7b?9!}jT)sErYHRM}bTJJSX%CX_AuW!ouX)Csw)-Q9@rIryjaD=7V=4Am1r^-s3D z^!dy%ricjSOq_}Xx0K@#=fOJ7$ z{04}X55Ed{Ug7r9wOC(lsB>Mt_6LkztY+qt?xwffsMLjsuFqnx^#6LZ)Tr;v+WRQj zC%W1|H;r#nZs)%J*7vHqy0-Ut(}uc01GCWUZzf(H%JOP-bG#{VS{EmDD#=nzb7a`g zz)n1^wZANfkmhPJa7d=>bKR8&>YY?+P1kgGqGZoe)1=_HXh66E)%m=0tQVLWqUIvM zyph3Ucv||6sNyh{_J_BF^4X=2_v+lp2EAXSo8IX14ED%&9v{5JcHi%)cLT$VKKNoX7!>uCiA^=zALq#aeMA!)0r`*wLT3Mtbcb`NS61@{>sH+%kwu( zDZ$1tfQp|gTins?4Ws8F1H%VJGLtjbMCis++K7QqVBZ02pz-Dmz=XfNlOE>=)yhEX zfH+;E*7!XIP2Y;vHh&nNvc8pE`)F&toC%?#;JN~OtZM_mn)C}kqx+{)aBV{5mh(c? zA~onoNgz*g3UYV7azg#gIW&pCQL%d+AlaXKp5#Rd*_V!5UUZsW1$cKTYn-||DRVHj zHHVjyPY?t&VmygZ8z%@s?NBV*ske7kjBcUK<4tlHV8`n}wG6R;h;e}AkS&CMGXDWv z8&)~|1IBUZdmvw3XV2_*a{R<&v3p`7pF77Ywt}AhfR+4!-R8~s+En4baegcs{opkhiTpm47eL*L23fi7nl%d@Y=)hiG<*KR^_PwFjT%SQvrlXC&>K_#!vzr!0^?a`M&C9eb z%HH#s!59wAn-s}^PqeLGCG4zzv6CsC-M$vx{rPQfX)-UZcZ8tXMy$z;Vbk|7{kjF# zzs!Eu34NOxJIhyUp7_qd=xCajDwqfbj2!&oe0Zp;+VjIn@0^iw%B~ipn?~A(ffrm> zb@Mvmta(F|b_et4k(rtltV}P}&{^m8D*7W1U)5TAo9C|&lIL8z?ztogvxwCLM~D>Z zUIg~$Xm(kXue5I`7-Lu8!^jSKK#rrd-Bn;uCcC3Pjb3s6EvpIi6Nn4{8aPvzn907O z^PD^6!)wd^sKNM$eL%b30**O2AWo06DQvwM3Q+%MW6g6nm&Wrsb*+iSr~x!4smtA=Qk_re6XvX+!;S$nXBK|H2L1nrE8J=$|K0o}SyRgQ_-}qmc7^YaX zXuHM}0ADABTKZmSD>GX_1LFe&Mv(nv?jst1*x=N(?;l3qQC=#^n{d(pkFfU)ODkR5 zhTVH+Pj-?SooEt`u{?=mj}m*AJxSD2qmDgR#uj5iRIDJfXHtxPtk|7cVzm;+%7Gt{2 zeiKIoQGg$}0q2gD52_#G>S}`Gn$nxbLBZL%F}zo?-E`JrgjnHz`2wR1PFVKa-+B^{ zQr!~6<>^VldUUfr{I2hUht)rgA$6-Oe7$j9Ow-j>ivW7+rBGN4;C&Rp&G*bgiT(CH zsWgKazd&OtcA0l@+6d0v(l;^9vPLWsKL{iNi8r<;|2but>6?!IjgFKSz4cA^j6IZ1{rl19ug8^0|3x2U{Q zt?M#eubOi?Yaa9vFh{*9(dfiho}@41A3}*wnbs@l=np*&MU3&Sn_nJ_+#_6nSkI_d zg1qXcss_p^S?aAXK-?_=sdBD1km>l^t8Hl%(-$S-GS4F$mA_okx;Q4P4&7%`%t6h&M56>@!-p9NsdSd5QezLK)O+7;7Cq54p$$#B_M&CHN zKRXIOp1E^70&Dcz2kbng@?Zvh6NB|$Z_^KKdwvf=GXD>p{-IjoUjd6i{zf`N;{T5S z{sRttlLq-0XpXT58a-J2F9<8RnE(Cwryx83H_)Sux%gMSBJM}3iW?VjcDg)Odj5q4 zx0_2kbSFK0Rl|4`5aRKjq4|5RRpd53KCon|FfPd~M34s*ix-|O^@3}~)k{)eBpk&+TpU&9#b2c3*qUgZ}Ul z)A$<~kMi4ePET~!@n3CC32oIVS?P(pztYP4>g$QeKmGI%Q4>HDVxE?fzcJc6-Mp3M z@lYwK8+Sq8cjlMk{z|OEf7id>ev10DXLPCm{ceN&w|Jf~sQCkx5h9si+|7B;*W^jw zozD`{3gdvvWVCA7UGEJcTDur?&z4QbS@5Z|uUF2?BOL8OAw;wp+gZgxP%03oo5tIO z!EGz!h64Og4FZ8c^H#eaNT})9-bH~Rbe3a zS>`6Tl)d!mrjwk{O-(oM)FVO=EqfdnM%0s`BWCn|(}qA@ZQb2O zt_eY*B^I1%@a)#5<_*#BDy#?9>7k47&cVok{hH+vOp`J7$h3tiTgR>^TL9%|Ka$*8 z2*Z)Qnr-?1$O}B<1;qV{@pA8eVq9Ezw1sJ=Tvrw%Ae*XZrJ4T&qr~x5H|omm=DV)T z1c!(_<7L$?l(Nj5R+;nsndRE9z6{Y59`GX4KzG!&4(%NzCe=6X2<4j*F6@9sTdv8O zT`!X_YGz4qzV}uJ{`SOCbGEml<{S=w*>x$#B5FwgXKV7fc9-|yFn_$aN1nyTZ&9U<52vr9lU3*%9jQw`k- zgF|)Ne@aY(xTZl-p~N#J5?x+v^L<|aB)!V#Z^MdhnE!cNS;J1vj+Rx*)Y@c)PY#q+ z|J~meeLYtu+d5foqPkLav)CN!Ev`LR80#sNklKhH*?k)J$N1o%7+=3NGR<7&`;w}S zeuqeh6^>B`e6NI&aD|Ek9t0hz*+41ow))A_bX0rP6;N|R^~>@>kam-S*>L#Cg4%&9 zB*mnGfg-h;$nWz-PI1wfLXbe4mP;Wgq%45KhSxRFWY7ly`%~fa&FIZv-Zz#MJKJ|! zTK*W0F;K#$?-7FX@#``o+m}M}NN|lJh!`}IC?dU|>3P~5eHLdtW#1EJ=H~J!C9NG| zaYw1Dtf=XZ7qoEq^irr6DA%>LNF<-y_!+>Hw6^q@dcTqbs(5PqeI)BqD)vC)n7dEc zW$h32NVXVkf6?GN6W%Z{)&oT=+;UYmcvS5iX`i|*?HLV|T4}@?;Lh~=ik}Ww$gREQ zE$LqhVbujWPTAu&u8mju;(4aa_@&T^9h~2NDYTD13ZjT84%O_sdzeCYhFVN873Q8!H!gFW*y|fwm%Yb(%qnH;nPVL( z5)+K%>BA$qt*nC=#7rG&h(b$QuBzmJ!pxUV{}!2CnTF05n->v_LWN{fNEDK4#W3L-0IAM&An;!!_++0h(Bjvw|po(eeV za`xZqjZn*w(S(sQB_6?n?hZCx+$8ON)OP;{yLj1~Rdw#V_O^T#g>#;FYdb&pGTRy6 z8WC2%swb=isUEH2%l6H5A@QiWQR*QularQk!7H2&Lr&6oItQb=l?6)BvBr|S-Z`xg z(*j-46S<=6Df=FrGUHsI|AzUuIAZfVay$yMw^MXa&`uE`?Axczht{+}LQv zT>g%*a94Ch3rX#GJtYCKH%Cj_DMGLQ)TvQ0zV80-wMu~b*_8j5VxbO0*p+e6b8ZP; zSpzm>7s9lGXqn4-Z`=t%mUD7#2{K8EF|BalhQ@%M0n+8rC$H%CC`m_!kdsP2N zcVp{Vd`PqEq;kxCsl^VP?HhtwRnoE%7=0_1*qiTaW*04T&x+AOa2*tP+3$(SnQ7|S z&BzMnPnC~yiZO4#QPlXe_qt|BnC=rPwPtHC$4jBOw*lyYx)%ZtfN99ywo0u?A#^Ed zAbgsNLYQYwBOqX?`wrE$O-bm8hk}GB`^Y5ArD^CN;qs6xzDb2A2DS94B zYRNOL@7t6XD&j_XUR$&MD`23J_Ph-^eJSL}n6{5rl%q|#25N7+<*oU+wov?56+6t8!MSC{qKiH^P}KtURZW)Q zHdllLtM*4fD)UPao7Ee5t7I8_vG?jy=t~jIfm#l?)0=?-n_-|vgM>EBH=&Wc&7OLX zEv~EPEY*6p=SJ@l!OA)X0wpkyBX06x-VOAMX|%Mi-TguxUTHXlZJQE)f*3uOXQwvs z=69xE|2f!D8emNaSBO>q^=&U8SJZwz#Q&Gxl0}lmyH_p&v{gjVjePH9CWUf<-uj+e zV4%AWRrPT4eeO!Ln!1Jl%^uo>Bd)JsT&)_=;S{-tGu7eKEZ{vVVJl%(K_X6P{6^dT z$vEG=>{rnQFP+?M0pDr9&qWLHm)ZV9hOGUW7;UBeQ`vKeX3AbqeYK=$Q?ufzymVYi z=L39C=UI>BXwoS zer^Fe&J&S7;#FbwZ6(<$i{79KmFszZwq>w z5KR`KZx{E!eGgtiL=n^=yFXx&q(G|WZejT9ZSFGih$B&k)Lan~x7-ghRGG~uq%&MC9}y`*n^h29%HQl#9m!*T3@Qx^8PdNw5>+|+lG&2m2#mi<3gvw$lXS$K(!$8>m<> z8yzc3W4iO`q(O&7lXt4iKqTQ;aLim|eMBop%}>9b0Qx4yZ5m@9FgN4XwW{NFbHv5N zzsvl4_i?+upW1aA*EKKf>^PV)I+I=p#_v|KbrU+fPZr2|dcU4YNhEmZg?Sg1)i2kD zY+V%Dm_DNsKi<6`^K^oNK%<~xt`nFjgBlrU*GP)*-Wz{^tm4;;k?U}6a$gk#CViaN z_Z^=Bw@-qOmOJ_wRWK67Vl2F(PCr@!rz~oNjv^@0&tdqfljc7*xy&2SPtta^j(=dd z`jPL-p`j5FizELHVJuW)XHi_}LXUdNtAwL?$V;J=F>T!U>*qKxoGWR2zEttsKCY2L zr<$8_vuUknGu}_+(OqK~%!`UX>-eYE4Rh$xBs4k!QOjPfycB9LSZOZtba$f#p+z>r zVeVZ0exu~QJkxFOczBJ1xB7FP_-Clca*{iBM1+Imt97RSxLQq0XL52}Vl}-#llFG_ z^Z=astHJQpO|l6%*EKXa^Hw&<-!f&Q4$*X-VmBT`=&N24 z{7ATb3A_}#e$H)%kF~@<#SF9B2lF0X8w-r6wfhRD9MR-b9Gf@j*8U{$wT^018(8yO(}kEZzT} z65tIwC~VA+X~+k>*p#*>ls?Wh&ajwhVWsQz-<8kw5B#XuWhvhYtZE#QoIeheKS9SJ zDXyJ3Y7?LTP2Rd^@1;3%TDs@OO)jSN&BhRoU+*Cun<|4aHo2+|G zeR|UoE~n-}Lglwf@<9?0jhLTh=+#WT2l=4lW0XJf3|V$4YH?qKGp7{8Inw1 zJ#xqW>el|)2G*2#D_ZZT=qonQjl&?xDtE!ok;l%yhp$upIC{(q-x-BTm#VWkUpL${ zxGR4;UiJ)mR0Rd0I`;W*6Ol{^03f#{6V|F;T3_rORo6N9KNan1j!XT5zK9dvC<)*) zI506eh87o2)rU{5Lq;*pkhij{VLHsa8J3@dDW%*%D6#kq|gbi$&j=p+b#T6Xf& z?TV0Bz*%M-NSn?l2CjCV7n(%IU#==$S{Db&>RxfzSQ(lr<+0;q`BePn$wHXMGe zzCf?vSG!s0gN$&WGWIsjoDg|z_8HR&)ZSFRpI8drigR%mR)Ys#2~9K_+sjMb?Keo8 zkqHBQ?%R3RILyGtQ9K+R&`HTwY7m<+rJd=g{Yc2x^~FVuPQrWwk?m^hOh~IQ{*?2E zNs}Lz;J3G%VGVqkP9u?{c%-K3VnATygI+BIo9yy$A54!%4_ML$O_i*sB=BAt?g>!} z(c^N2k?`-B)pQ_hHbQb&8dVL7C&-L$cNXs87S{gU>_0A)fopKNaslkiq$cM3~ zX7X2m@gY4(^;4|LLj83ut*qbWOfWz{WQ5g}BI*^MIZEk|9mn8Q(1sJj0mctrf9vhz zbX=`KgPB={yiDG0&%BNPP&W1kdJy!Yz>Nh$T?z#oB*10NU0JkS%Xkw(pcw+Fr#^n; zam|@fLw+q^gfl)vv&oal#%Z>#(J5dI2@pimZM>7wFrXl#eTET9m7xvv^;uUi2SQTB zQso*A_R)~84lrY4$i0oa2EZ_`xcEiuewDk3F4*{?b;slO^8Dko0PZv+WX7v7X$P0W z9fCJ`Aq!=lkR|cfA31CK{TBE&nF+K2MKsg3u*l&#x-mku_~;W9nxk1=YH|;-Z@%LrFZmew*_INg!>{LNJU7867*e>E z+)JUz)u0~RIzRHXR$UsghxqzxwfsO?PMbwDa}DGtS+|a3;MUhejLyxWvlu?>QV6iZ z1{^iJT?%Q}@@;{KcYS5O&KGe6(6UGgr|@$ZCC61~b0NEh!ZGd(zSppBJ?NX}8cYUo z6^xWOM1JR2a&?+sP--yK)=w-BN|2d*@pd66@qAPHlJeqTHfOv{jg9u}f6ly~sIpY# zQMSO(UThoc#nqfcsugV)-CLwXw8S`m7beJM;UA~9dI~|Wf6dCVBambr>Z$s>B^~a= zn#HPG09AI*!Xf1VUT5uYqCKR`l84S`xUwnZ$VL)R;TH91HThC#oW#FKOpb5gAOv8v(xZstMh}W-HPT#~ zIypB8FA{6}@3-g{4n6*|jGWJpmepK)*B#jyGp}anm$Tm*vV|zcGfJ5Kpdx!^q5zM@OWz9O`mP|v$$?`@Fhy1lDF z*S{2(M3d}{Z&q@tz4B?Clmu`580%1eJ1#^oH_(1UL%zi;(?2u=J2{M%{g_uUXtk)= zsJe}?{1h*xRIWGG@XZ|;nEpwRr%H@T{f$H9Uv6ZRQcjK#j}J&)(k6)RB}(~*V~+Lg z9&8ES`CWT^UX=NmVpq(o;pa}BY}dkg?-IIc-md#z`TeZ|?nmc~mYSd`$%Dw3v-Uit zr%%;v^14J%O&T7F2epCBLY1X3v@_G_xrG_r(n`L=5!=~+ag!70*8<3>nHk(cG#&4q zvnG8GU(0BH^ru`mBzz?^w_5o+D=VXGbS}o#v*vs+*GEwTt7rA(!bn+6W`!W5+h})C z$X~58rU`2Yx0Ad|zraK~OFEEub`zn_8P5s}TPtO4JfGKr$AfU1^9ia9R67Ar=8@H6EP(5~cJuPc-B%aRB$o%#=Fi+M~-SI_qSwa9hC7c)WH$m1A=XmTg_ z0y}?ZiqvUgYJVn!x#+(&L~d?goJ6X@-djzwUz7;ycFS9&&U@Q%glTop5hn@5Cvc#4 zUEB@1yTAMTQh)LB2vaxLzNKqE{$)vCdCR0(z6gJJ{uc%)1NC79^}A9y5|?Q_$f{P=Pj#ra2eha9FR4XupVy&PSUw z7TUGa3zDAmZUiNJT?%no`?vIGMl z?B}-Y`TlOT55_9xzF~#7m>rR&;fzGtfe93KRkJsf{Uzg-dRgV5%i4J)UmX2Bb zSl<@nYYeJlXP#{D7t<1Y!o$5~q9soAO_5E0MXfg?9omw+$Mm+yy|F&If}qf>`LM|KfaA=i6~jrB3CY5`>;Fi4#oFCJ$yVP60&7wMGJ#^uGuW|EUW7n}?7C zdGe#yn*u*`)#TQ;K;!+1b#X_-S@^XH4YG%7cJr8ar`X_6g^kLcN#9ZIUvzpn21Zs) z3Xbv@RtTlp{y1KV3AC+TGGMCWFjk+4XLE>>yYkWpJ>nE4J9(?*^*4zN?th z89`)Za->=5mqPSCS>8)o!E^3p;&(ig)!n38IF^uj=EI4fY=z}Cw8YoSqiKBfH;q=o zrA3=WNk)nCE7W%xnx`?h8%ZYj^4Xy&c2Qe0)R*%vQL$7~-s$cyjrhv^4N}roH9xv1 zF+9?}$xmEep<^j!Ll=D4NPCE-!2q^ORhCDVnAR}AS<3ihn>$s1QvGe}Ub?pV@b07T zfx5?$A<6M@(a*&o>3d#@D{9gtx@KATxm@ z{c#_yxFx7zLd>9{oW?k>h$Iz*-`bq&KlKEU%K=PzN@c}h%saN<~ z-%~>$vs+CwuOsYJ_)mNi-NDTo-_NM{1eb)Slt$WWy~+-%X%DK!YUEBZ2EQP5K4And zM@8!BKNE0wz7WTQOP@6t@sz9yf6m*#DN(*Cqb`C=9He?G5R{nYiNPgSf3{bF#Cc z|K7$rB=DlME1iAg}tT>ocwur zBF0{&pJ+R+W3ObA6OJOWX)le*gY1jB2OStK4MHJ*KQJJ6CdJjF&e7~09zvCNT~ zc~pYk+`wybagnccnyhYQilmyi6GPRc{VG*0o{trq`%pEpU%36y6vdZQ?65eP-W^g7 zzAo(xV{t=8-e9!Xxl*nbZ_9I>_2ZP=oNwfFqD|8pWUKDExY~l0t$r>p?Q_vBA-3S$ zloe~=So>H%-EOFLa_pk6oo4#66y?X6SC&;G!!^(icZ-$$NC7%iI-|Q#@o#VD*t?sB zsm0TTk&tJ_tF@WO@bW$;C&a)~ zI=4?ypJxHjUgNgvA5!qdbCAV89MWCBs|e&*BAIE`@nGCe`3&pkZd~T?(~(D)hXWZ$DWmi7C^DNW&gWr8$1zY zuraF^TxJ&kqW6HG6Rex`dJ3%Oa#qQQ1_U6x#>n&f;(85{m@zKmPEj!X9q9tcO_`?i zMVYcN0pkg+%Za!YViry9C-he?Bh^7DVN?dsagWh}>M}0oLc^8%=TI4kuStn2Gq@_?#ZH-QiAAPjjcMp;Rnslx~Q8=f6VzcGe6Yq zupIX{bP?8BkzsX74g;~y2?2NN0#+3+0z}f7HYU1KI#Zr96z`p7F@tUN`7x}Dm$be7 zc)pKb2n}(4uz9`>0z0Ipqn16lsN$ZE5h+23s1xbL_9s!)9S?5^;6qf`PmF2n6K3kz z(Yr^e4R5aNGZHu-D8|uKAMyz*ENj|uQLG$0dbCWrx<**mvCsPZ21!*>Uh+#xtzOFy zotaUIY#Nk zoE26hLliMy9tWA)JKoTwDQw>xS+z3l>cr5~;{&JgxV-wS!Ap|Fp!TAnz}ztGR-2f2 zdBZBN8_7d$uAUhR^2l)yfm9Dlw(>JhWm$IY-fW??O_)wBG$E~5sX-yaAj+ng~zBac;2j3 zQeBUA!8$Zp6;+!F?j}3fZ&ZBxaa{Ki1YZk*Ex5ELhxB^7x1kym-2w*pfdByzE2qk3 zq=r&a9cgq#{ODXm^5MgEM=?sM#(A5C^(o2yQmCnf#Gbems@lM5a#1IjLM%9N6;Mx_ ziCeb$Y+PSRa|w8shZm9Ok@W!r#jlTQy2VeQ%**;geC(q4bmkMgt74`HYcK3lHy7ed z=+&4@At|Spwxg}JXoqEa<~u-+s_ zm4cV2M@^u-Zba7U?u#9rNsPPzaY>i09d#dj{PHJD>kc+Nnj@TXh*rwjRX}SxAz0(B0r4z)XW!41_+nvb@By~VM9sb`hh5Gm%mqO)emL!t< zlGq~np1ear6^({Iia$u*?eE$ZhPz0$F^19S7^u@+d$U?_&f2QtnpqwEDHb@CXtxS) zI<~zO$~UA?(XzdxnTNql@g`Vi&Y8%}3Afr7`0nZvEE+#7=<^*{I~Qv`6`R2chys8E z1g?9J6zbY(EH}L&0^~jh6ma~qicvsE1@2v{Kf|6#`=L|q_NIqH1M%#z>o^BK1vcC- zKTN2taKU=~7lhc7y?Rm3Z9*OsQ4+}u*Hu%O%p?}nXXu89Dou6{h4OfB z2?3|GGOK6eTiBpd!)^W&6u4WyCc8ef4|z1I$!4wUGVfFmqKq!%bDjEc-f~3fg5aNP;ZuXQ>6CNZuOkySvK<1@Hum#%nv?D&OIB>98PjLf9?QLMzurGBv%W$idOUJzNQ=mA`*|V#va^ z?oe-+SP$;nIX*o(#h;=zx`g-W`vcV*>$YIRlj@N*nc<-+gG96bxsI(M>5l22E{v0Y z+BykUhi7I@?!>N}9jv@l9~(D}%Y`R54%xZ7Zs-LO`#YDtcaceD#t}!CLNn~!skHtA zucsRUy7DS}FKspLpf=Kw`RJ9dM)$S?lz;PIj%A}(V%<0`pRiqJHU(JYmQ{_d<9big zPlODsu3BH`s(wvKi==B+z-X@?`Q{Nq?kfra@-W={HqbVbnyK{uS#7#=c2UNmLyWm& zIYnVS*1AG_R!%}dD<{?LocAuN7w)QOgUrTR2mbL$eX2$dBXCr{@|6rO#vz27{omj# za<8^l5PYeX7mcgqYGIKn@*fd>Gmq+m=d<%1>|sp}L6R6d>^jgD7uD4+v&y&>dVm&f zwn;7g{oP&U_kI0qyD&nz0c2G-BVDW& zXA`P?gE;N(fjLd=ZPk~Ko;4n~aZLxK)>fhJRr~fo+x3R5Ky2k1xQt|6=d$hd`)aan zs6MjC%Zppd@wYm?uhd~|ZS4rB53aI33Hb(Y$-31_lQuzM-4R2~qfgbn!9hCB>!0_} zdn+*2{i&yXN15=^Op5%esLS|4LK9e0~v9PWoOm)*ah7eE!t? zc-RkpSO)YXv+Ps{sGdC;pqK6qcV$#=eN;15!|Gv7n$BA>`03>y3P7)YE8zH2Xfl^7 z8}>mIrhMw|2S{N6V30%0qG0M4=dcFoESsBB?{$5$$=*GKy2X|%pp2WO zCA6~jdcOmJd$PJJo{0xv3U#R3dKvMP6XD#NCfI6GLVN;l>Q7Rj2#}0Gwwz{^Z=3vx z#|}0Wop{C;Pt{L$PJ{+May5F8lb!47xSkVi*X3|3Ep^sD+$PmOb19TiUSP-164258 z1+4U`!gJSkIwu_`a*)83tueuGCvNyfi)d~dL~RC~N=9l1c!|Ca=T!*`};H3LMe55I!rz0-Q!uAyfMMTrz7o=4$>MbHEt8$4}Ir#E#fQ{hW@(JNPA{4 z(!;*${IPyNIqm4;QmAL46p~4rcb<G%*EZjJ$$5HHDYMc8E6up z_<1WUk|x!?&_Vj^r!nA(npT+sTuWAQFVTwI;W~UU@)b+z6N+zxX4;&GpPHag@3A@M zRV;B$yWqI4;BuCM)G?ljBLGH$s7X*Sx7>@p86sHEfgg5oB61X@rfi38Y^$Ja^xwQ0 zLEGThYD39?Y5(rws}OYhp|Tdrq)E3#skAKz9&`IG*!_w6$VqEw0Oko*UawN^y9&AM zJH5%_*2s8|$I`i@&s-4+q6;>Gs&rh`zpSnPA^N|jYs?(IkS&1>Ci+}&PL^HH=luvy z!0<>X+nl&QZ*g z>&{`mo^@nnSRwQ76|L;k3^%8U$~=_-uq(;o=d>JjGA5kXkP-nuqrB64diGj}Q?{^= zvwU6ZcG#@vaI#cZdcJx^tMs(r$LYP>!y0Gj^t=TjEPO5d}xSYZC?l z5e@1r+F9TFPKZ26cp0ItE^QR0S+(xfzg0R%`@%p6XhN}n(hmX-09p-iq;R4cZg_f7 z_yE(%`*G&NQaRZN&PdZZKQ#jAp>`fP*T2|qL*V~tw^f6vK4>xpOfOrTzTc5e#MHVy zu7zT@<+lrNt&b%1*LkQcg;Z$Ty|z?V_C3fis%?vyk?05?ARiu#_<9&Jt9$Tefl-G& zUUIJ=sMijTS_87SLaql|uLon4!_{@}%HJ`g)x%}#f*XgT@=3%n6dL$V5rQ{e(_yE* zV~Wh2s9bAJi74$jrq})!$)MPrA7xDIY%EQu2LhyD6R`0IfgX_=mAhpwY)b3*>$#ymlHx-2Ks9R38AWrFJ0Xe_s zSg7OctCNcZbRVUL2rn^zodU$l5q3%@B*mg)jfWUJ!SQ5f~SEw7Q?}5jPjfJuw!6viO!-BmA|*wTSMz3OljZ(^tNECP1q*DrmV`Pbayg^RM{)Tn}?hm-U~T1KKsC{s2U z+ALr{c6k!S@~M>9=?2rf7moh#GOCqK)Jq)Gkrd62vTPFgImB%c2gN8FPB3FBdtBph zOG>0vL*omb2>!d(2E(m@$Cwp(S{rNlzA+aUe5^gm?8n~-xWh)W^Y0Kt8zP={K! zT7k6KxOn84E$EA>noV;cb~1m+sC~oJ*-Mh!S}Lzt_MDb{*5x1ImgVdcT3)L{PxGwo zSL?=R22Hm@0fGc8#13MMICjJVH4tj;=Qyp4M*SOGZVjAB)Rqt7qU>#*#!o}JtebsJ~snfGQr z)LUIpFm|M;0$#fMmKd~r`z_1Q1nIYoU8G{TcnUux`PU~WkyUjiN=*^AR=sNm;nf`- z5?vKWK_(!ZgAgstw~0lh31dN(GvnD|~;sq^kT8)74n3L8kJoBtne|7?cb;Q@V zsE>WT05O<1bdrP6;5w6AXIC6fr`}D)_pPeOyMn(sz#d)QUu(WTc?9A?A}e(%%x3SwOh(l( zaG0vbPssvGL{c_1RK07-IU94YTDZk&d}skxiEud6**TI8^@YSy(6-?c%A4@j5g5BcteV*L)#~^F{8ujNGigNigX_)Fe&f?ZKOjYHHaDCu#bTKWk7uIpRB~f>5RhVYPo` zm-PDBS$Q<9bkiHEd_Gr15@oIg+MptrdV)P&JZye{6{8lQ)Slni5WlwLJ;|`s+T@d5 z310RuC7V0le#Q@!&^tA2Sa`oYhZ4zL`4#t5(!)V>OiB!Scd51-v3fp2IWlyV%xIt) zfnzp)Sq*(LKDq&JuU7m!uP3CLFR`ztb(@+esA*bpiJ-ZgoMV!4xmGS^Je+Np=kFM* zS%QA!;(Qzda|C^zd%y9-IyK1;4*xo40J6KHk+A@`Xu+yY!~7_HruNes{W%51=+o8= z!~I#UmT^Ezovo4Mp=$g@hhSI)QMQ@byzw`V-;AG)H@y3(cKxxt$3yP^JdPfy!*2u9 z3;+{2MJ|r-JSe(2NfbSNzxFtE5g~d+!TT(fsIgodQF9KqURQODXuY^g7 zZY>-qNQR#M(aDBvoTTUCGf!9FaEfAQfd?ec#u`^vEVubpz>|_n8MQ!1qPo&<=O{LK zDsWp&OBTR1eZ4ozQ!eE{=IR#*QP0X}Whcq}g-apvQl?)`VsE}hiQk}S;ki5IA zOcBTe8Qd`uAgF6QB^u2U=`NF?WgUM->6@EU5)n>cfpMq4oSWQQA z6fcElS=-&x7UP&2L>#xGh)%u02XxFg#4IrJQ2|x4YKaOSYGQ+%mqJE|XAtr&!VO9K z#*H*Q&6L6*9fdu<4oMP@i9vanU5s))fsbIgR9!*u@E))hCw&oR4yo@x!c(@q*>+r-|S!cwp%H`$Oe5?#|DSoO0)PWX~<+g2N95k z4sb$W{GCcU18VWB1*IemWES}GkoTA3WIVR3vVb~G7#$TfNJGfG_$U2pSkXgmQs`qE z?r#TmwF_p4`b}`$2$Xz8<#?=EU&TyR#|R_ zs(`e*wtv{!(pdn_hZvZ(Pa9ykH~VcV1RRgK*EktURyIZ5xlSSJKb^~`yt-ysT64%o> zVJm{OU07zfmo_`KM)P4qO1>AUa}as_VUJG^5p$oC z-%He6hTW}Lk+R#_ShS6n0nf~Bfc&c`3_@$uQP=&czQHzwsj0)Y!o%l53y%K2ZhXj- zU8dLzHelXVB&a0L|8vq!ThF6mlPJoHm4lE-cH#>I8_WvH4FN~K*|N{m&Y_48TQ4uu zL)!Z>yPM3GB9pr(sdExXU1d?c{P0ysZE^ZH+;L!A*X!7(UqAvJSdadYBiNqnz4`#I7x9v92xjaGSV>k2QB=}_;!V^?pmJg{-4t>)XoQv6g6L88Eh}G^^Xk(_ zphz5d2 z#-<#L;E_dqs0+j+a?1Y6a(?8V-6Bc4Pj_=V*}`mbO#-;7N0gRBo0cDMh z!=JkLlE%CMu^v&bUzpruRO(yU-JX&WWw4!a^E`}^k2B1|hBBp}hLv>e ziR1zffu^I|iTkHd`#cb#!6z!C^+N=^nKVB&?Y#{F9#!QllSoVMTjPkAkw4C`&O<6P z0iEvslggpn8QvZJnG4)vR$vJK>;qq)EQt(OHhmy}K=omBuWO!Zdg*X0Y3@y0@K(i{8Tf(j%1zs1{gr{4 zhl>CSIp?hWo~zjq(HX;P!?Tc}pYm_@nH6I18VPJurH^2`0$=9UE0uxa6aW7^*AD+g z-bYOUd}=M{ z-`fJCwc2Z#IfM=up|!v~c1qjx|7Tdp6kL*=Qj6kfQS8%b7NTGwp?m zV9>w(uRFH?e*HgN!MkSLy8RDdv2QblcTB7*|344l|Gysdm%}%<5##a`Eb~~k+-3X8 z(JmPm`G%BEVPQ+tgZsYYi!&Mz&-zo(D{Bp1G`eKU8@Alz+D=4s1qgYnw>yd4g>415 zJ?IFj2D)~!bz^T$=>4Bl#d+86BtD*7z}Zb6Z9r3I8{b}pp*h!Y6VJmAp9~*O2L#3K z*1lsa^yh50QlGKJ#_LuCW?DbJAB)(@O)z5Euh^h-gHvWTP-Si6bFUg&uZ3sN{w!#} z<46WTzf&L<3}MCU5Y@x@^-r7oz98&|HCU5l(-3MS7giXEZe((Qr`q4kxjk;-h_fZC*j zpK}G=#&LjJ>ON&@raH!_X4wh1dm-)tcP4r%QDba?u6VJd({H1w?p|e82}E31AoTee zS@bj}sE9Ri@b)~lzNeNjmTvb|E*?T!DRRixF z7Sc1VS7Mh#7}vZVZD;+?UrNrMRcjD*OJ=)yWzhR##IvQDpg(v}w!i_nJ`J3iiqCgy zHNXZPxjqiB=+_shIn1{C?aw59s~bAuL$-t5N}D)C#4IRg9vk?=T1k-7b?jXo_;;rw zj{RbiO=M{pc~n)T<$(Scf!g=9C;BZqkO@rMrn;}-=<^Kh7>OV4bd%fp!+ z@{+9&I>AJ)(WJ4ql-lp}I&yHLh}Z5J-8|BNO0c*Si|r}&&N2aMu|PCl;yS-tjU2zd z1{`o_-=(k^v;Fke+qT}1?8B5tzE6SebO;)S$l8t0GZ&yCSMnAij80)bF=>vQ`ecO} zwi2_|N_DR(8!6JBFrm1&NtDT|O`Kb6y1815nf3@M;5)B26qSatSvekz!-u8bkfddv zvQ~VN_k9elKoELIN>K!N_8|T`@-T}Q-zFf�nS%s+{Vs9Jp2@Kznp-8sDIJyRdHR z?Z;+4>3Trw|HIdJ2Q-zmdq);m1q(%*iV8>#y%#}6npA1QP!}+?(2)-6x_~r6O6cNB zl|VpBLIB#?8?%$%8Lo;vgV40Ec`Yg`griwoP& z`}R}OPKgl+Zs}H`9KbNo&tI~Cf9BSbi<98uMQiQ*3VN;h8;196nRqIi3E8X{_p2j| zH0#h`t_4MVmq;QeN+Y$+nDI{bg%}^?9yQpNuVc>s*qA zrR4y&HQS!K=%Y(*IX+c|{SsH` zj&?cY^+qDna^zar@WuX>FZ~z3eU#b%e6%mU3mhCx>6$NZlohXa`xI&XSL_5_x_n_H zK74A%|IEU7hx+^N5i_AbfDT_iY@HtFC{<9`YL-dm)MR8Ri+fa(PaiqOS%6{$o3P$# zTS}&ka&Z@E%zyhqY?-uMZtUEYxi{C$hhlmn7|%9W&)%uY8}^eB#Qm z!bOqq4_qd{ODZt+&kRQE^2mWImKBhQ8n+3=0`K3 zZW*Dg&kgV4sg@(?O^4&S7a9fRAJ{WhA{lqmyXu{55UXL48iW0xC02(&xumJ?5&nVc zBrfdN>sZfDs1mazx+6oKhZt3ZKkZ)f;Nr*S5F$0!TMhhguDX=( zt9|j+Rxlf|8vWQ&*-aG}a0-7>;nb@{>ONh6ImyfnA-WBx!h!T?x4ByQXQ|2yrGh_7 zePd?RO6iu?*38^mONB(m+pSxKBdv>~(ea6m02vEYIGD&n6uhgnJgQ7l`W}s&t>&qbFRePMxE;5kNsWGh>JS5{O#!s_5}{2>mLIy z$Cvfxvz0%dDtc!hKGLIA&D*>BjA_-PPTpu>FZbdP-Kz>3Tdn~O-`#BWHVI2CBesk& zBjsAzPR30VxfLV!k!zdL0fF^PyZcQa0~QN!B|Z=&ywkbFm$HASLb2k_wUPDOb^i{% z-VnJZG2b-#lIRD4Bb^OJ827>_uJczfV!T@l!m_h`ta*m|%vpEu_OiyTqrZB$u%F-0 z-R8*K@XP!$w);n>`xA9o4O1XY@6viF^r6e?E}E{W8S zb^qP`rm0*?Oo(dSLF8rhg*o_ePFZwggwdK-NYt%_R9oH_g%1oH8 zn~FZC7~|=>vhB4fz8q<#@1VK$xM*`oXZ{-YTcDXtgtODtBAwiF$?r3&M{nVLisG%U zdjpEhPH_`t%WwouuN|JRCL;h)&08E#c1>~Xe#3+K0+BNi@xyK(-{+P^&pk<*GKL*!jiQT`ltnk~LG z>%s^tcl+~`y^j+!N}0kEm+DozXPyghRsSC%RUx>xvFeQ8%YU`w|4RZNRK!}4n=>tE zuxWYCVE3{8r^YJL)bs&mY>!QPSUtPC@xrUnydncji$R6y37kB$S@hF!^9BOQlU~f1 z9X~MoHhri!M>rZAHy*a4lX>c5wV~6betG^Gjd|Pex#Jf2`pjd43R9zg!h!m$tS>kJ z06)swLMokgAHsX*Cwa)pZ^@iaF^ZywUvk!ub?fF zp|%c#8M!CCoZ*6j$w4MD$GbQyl=Zd5L@-Z=W|~56Y3$@Hf4XJlcUb*0o=fB)B?~A30pC7P1 zJD#Mosc4|0po8uDjN0EU{;H?!kFl`Qh{>$uEVsh~H{F z+w%Wn^A$y}0fWM2fy@s|HN3(rB0N>* z3^pVhc=ylD?AH^_-J`Nz6Ty~VBaJP4zvf0ACdQPC_G=;k!2Yyr5najY^2!ag6|SdF z9mE(hXehxw5G#SWj7ozmcI6h^|W6Z#t=X-g%<^5sRObTKg`i~XW%u`I}gZ7{F;DaHxx(N@k zfz7*S7yrN0lu2$)=NBpjBuSkYpH0xPM25)0X&b&`E?#6lyJC5cTP8tH^lo;hN{o@2 zrwT2g==8x_67~J;^Dm^BM<)IMpgvtPVUs2sdPVX&_-iqH{J*L6kbaY;ior?=sVb4S zoEA%|6v`FrH6v(rF}wnYOYcQ-st#&Yl%pT~CxstA3l`qLt(X7%kEJKlxKT?IlTuul zj?InXscmXDHZst7j`hO@ZR0*QDkq;ZNDpSOHQgHg!b4iqy`LJf8+Ydkv=WHX%#)@a zaT^g|*ivoy5suw_cR>w?Uef;k9<{0B4bZIy|nKNcI^^{1hp31 zS2XPpD2X&HhqwL0o&Lvq1cRjislhr%##zZL!&6B>KlTf|FcD4PsL2{|K{Klo$Jou# z$W<=SB8Eulca*ET4KUhy3pp{}U0wpg>!)Ah3_G}V{lrc1KK*nM`}>s!n#k-g3{3m& zaz=-z08aC|eJ|2H!dLskKQPVGThg^G-b&iWA~jH=@VWHX87RG}Nwf(#qaRvUI^vw9 ztvOVs>RP~I=;x`2e0i|lSvl&&LEr=;;f4FtRN09PE(}Xv;lWe`zng#$|nZQLJ()t=7TSn#H=W@0L`lpYbQ7 zD!|j@Z;0 z&i-!!bMG;KcKz}3Y9K38{enn|&`gFV-X_58evi%gXevj6&)%IXjdKN&=C%e~y5HMB z%@pGz+|EYDe%uRWAFR;Y*=GT>6ko{lZiDX>SbEl@Xk^0MESZLy;aQ4R^S3d*{iV!$CbAocKj(7 zN0*|o8sciu_)skJ4gzeQWK_wHx91`}Xmp;0=dJJ62ZP)$trvDjkgI0q6#H zA!UUi`Taq||9(-xO3o6|mMn-dc19J(vKF+%mUZFDn1 zE(i&Z%JOBKX4aHx+##68K0R*o@F~ob`T~-kYP8Y}=Oq+o&SK?2i1dmZMGT?J9qLs? z;@kxi>T;|zBLr{RQ&=$;*0bmr_H`+Obh4lv_&bkNDA8PbdZfJg$X%ZJACy}0gto_S z**80lWc0jjA8U`su6<_4_zPUcKKqi;-C%`77qWGE%5ko7*`BDKe$_A2^3t`nQ;&lm zjx3u;o_F^vRn=4h34pam9TTQYfn~auYOm#{q?D1kh7l>bJ+9dTm>y#Iew{m4!AjAG z&&IjME*#jTGU;?N6I~J165%YK^BuDA`oYKwdwl**f9-p1{iG;ist1I;FfQ9YJ3I?I zTmIC$$M(Olr-|)7*x*|e=?LK#U(^ii-4cF;(|$tKjhjj+QZ42l*OyNAT`%D+^~{m0 z__TB>_q&E{D9Re8L8l)cS16@=M`2)K%byZaqCe{I6vK$Ce&BMc)cDP5h(g_*c zGq+{bOr5n8kHWso&i{4|TyUZCyJQNGV4`lIsNC#5CyPPfpHZ~knV z1IH<@AE6)?x{kb4YDmmdAMx`NNNt;nx5>AR0*RR5l8eN#`zV?mVZXMrZWFC}AAw5y zEG0$zqUp^0LlC+ID1;RJD6|y(rzQw53z=hRaJ=ayJvG%H_#-(wQ8+nupUP)?-@zZu@*tEg7j5%k|8uzcj^&gY*5`FP=Z)vIjFFcBNf z7+sz-fA3`gy^DK!N_wcPc}1*Drd&@nql0U{Ux;QBz}_8zX@NmI+!lC3H*P#s#qzG( zmI;#H#%nA%#mIQ9EXrWXR;H!uzjsjpEmpLgV#*(7h;ZF?*G2^00)d zOOtJe*Gbd+V&U2DJmqEMgfO&;QsvmF`fJcl8p?37VuU%v zPN6B^_c;s3ed##k7?A{j&#!&x^+BfjM3Jp_Z!ULuE-eLuL4P>9{eU< zHk?)S%zXaGsGOwHTof1MW`2T;_7AOsNs<-%nzJqck)0BI3M%T=3B_jmOlq_pakc|=(|6{E{F2!?Q!ws2WB59o^TQyq)UdYUE50zHx3J}K} z((`@J!ArydqIi5#BQ?UhfR9klv?f5;mq;uzx|hqd%5glUsi1JXW>!;-Q2z)(2^&28 zH<5P_NT@nlLkWHXgbwnLlgXWN;`P1!RDS|(ytm@JnN}?m_&Cw4qX@x(lZuJVACWYa z%X@p8NSE>&;^i6TDklyge_ER(;ooli}E2D z#tBKa18T3^1dwM!q%{7{DgRi7?Xi1WR5;u+xwXCB|;#?h`$SiF!~3U(X*Dl_r8CxS%Ch-)K^)_&aY?! z*VU`cmv|NhJ>+GY^Us`?MTbT8dwd?u75eBHHIi=n56r0^9B7$HAKhd7_(}$3Udiok z%8|HPuC)=k;er;TrP;jqDW{^@`jiqLY8XIV4O)CSn{K-OJ=wpb3XB%ObYma2A4ZQO zP?*n;y+&iF!f2`b(nWjfA!>tZUYX&1K^GQTW|4`ruPG27?n6c#prL|CpTb_(h5Gmq zHH$}Fj(Tf^1NFgPjhyM7L~wD31Q!|xzB#j9jYnB5>l;E`NPpu>wt|a4BJN3s? zibZ?CXPa%1jw9go`%)~lTp;RtwlZl}0o5v*i~UX6O9h-x+=yegbm-K!G{jWY|7n*H zUuQ~JK`HPW!ouZHk%I8E#$P^vmJrelr5=MiL&A3h{o?vcqd9e#H*s=Yi5TZ&b`Bdg z;f3ieNgXxq;1md>XV7%em*eCvP6$OagnHmVLl~c26*BdILK))g^q%PUy1+Y_!^-BK z0T`%KpGbgbM$%E344u;%5tf*R^gO~dqq9Hh33j9)Vg5$&t2Q?iuNVoG6VfY9V04?d zp&}*Yo~q92b-I-0=M37FxK9M*<_yzC_3O}ULdrKpqila->tFL;tz6j>{hE013UrBp zO$G3OHps~xZzn7q2qIo}+k(=i!XfeiSw!t*Y=Pv&e!MB`C2z^ui634ey*~`74sYqD z?OdST=-PLbKx*_|PZHP^Oo)_T+XhOneRQ)(+?$pTT~9^?gHY{KuN|b%*7a7r4)uZj z#sGgq_I7+ZZM;?nqvEqVQ7!{Q&!cv}B@@Y*4(a65u)7XrYDw7je5$nUNexp)Xg_;Z zif4cxi9DxH7glmM(y=q-)UzDocOE~Lw-^T4hoowVG9*Y>(i-yNZVxDW1>gY{ocB0i zK~y$iRN6!5@jt1Qk4J*4@(Vw}#%8p7~-r;wCDRjadt7PnJ#2>QF zxMF`UgF%YxYXXURvl^MC?$C-xKx|@=m7}J>)0$Q?z2GOCfZi39s?@SIFyt)e$%`Zf zkt7%a#|4)pw~q`6#NWT733r%tuhqF5K6A46s;g{1y0PYNM5lXRuf#TEhuX;Li}}7J z5GpVcq`3gP&#%e;K~4WZEy|TN+Q$sLT8zD8gmL*vCV_s+x4bX~rGt)}B!DmQFr*g9 zVNZ2L6w``kuk;Qn4U}oT3U81wq9P-w!vJ;WhnR$Siq>AWWE{*HtWe5HB!Vmilwf|< z`fWdC#B`)T*XIMc15j;1QvwU-w~Br#JT1m%o!U~9ZXJ`1a*F$)-ZnhPOtgw~Hq`zo zF|Mfy@J44`d{M8#BNU@~yM5%jJxW-bG6}k&?t=xu*yM5qFMsHZ=oJrY6`6at4D5-h7RVqXr4n5_968MlikV2E)g zZ1?zrj3UDl5H&rgZ5=IVX{nXDe2w7Q0+EDsh#0DWV7K6;<#J@uv$8f7KnfEGOzOIY zvH}nu3A>X#a?IVYq&qZ{@*$~z(1JVSDHS*Zbes;*;SqRBc z@;(&+=m5#@bu(XFCf!c~qZq6`!Pt0C$Hfv^3U>;Ep0MHC2Zw;wNJ8ew030Az0_N%ca zR>qAAh&ylDfb8uZ0VLkUZ$J$;H1xpq1c7 z8_aDg7>tpaoGcXK8S1V{<8P+NAc^JEBG7i*TH2_j#FHR9W7o2V%FO%>dXhF2122c zHf_mOwE}GxL_e~rw5-23(fLRwX=3N-|6RN9D^6#cW^MK>iWZErIkf1mOBz)^&rc8Y z0*CFKnB$c>^{f1r$4yT8vo$(>rd9$P8o79yIlE{#aJk}e!5i`Ds0d$kk{-9Jt%E?; z0ITKTHu4wJutw+>WTR|$R677WJ``jB;Dl}kiBFR_q%10wn}%f_qNO_=p|)&LTU)`9FB`{}8+s5)^vC=o2kDTj}zS%K*PtY6`wz7t_VY*8(HDSy#}<63|*M@`Y_J!c>To|E+gs233E$uYxsAAV3mqU_$( zd5)%XOjsk|C|WwfE9G5BdC0$@2Lh)+KG$0>DO1N!76c1?BQPY}qNm9bL`U=i!6jBJx;h$Xs>{x4Y|&uA=m_{Vxtz@^r?I>%fbJ>_3l`8^!y`{D z_bZBo=p*w}MP_pHLQBwu0E4ReYHC#Zz02_r|5NZH4Yk2)4Z{cp2oRbX8tIBpE@*Bg z1nz1`L8`_gaf}o2J z3zMM(Iz$<$4e7!W4*d=!o~+}*-;4cKV}_{*P0lKE^-^0$r2~u*v1j$i0&eGd#}JcJ z;h68M?=)|!FEy0Q$S>W=+3=)^vSX#pY2KW@lNh0l5WJ-kQozWht8PpWs$Mf7rfhH8aU2t*6HJ?Ic zcl+A;U=u==rdC=HTZdPJRlboqgA{jdZ2ytVq$VJSdinGcu50gjvNA5XFWv!Kn|GRi z+F0N^q{Ncw3w)CbG?l$8U_d65y`63q^2E^LfXSusFN1@@CIFwfo3Z7h#{~|cm~2s* zh{H!a`WgcHMu*E#tY4_IHFu@x6JmVauFTYw37wLteQsLHrr#!0G$sO=Yf18NvUIo@?6PuxS5Qx>A7iThaS_Jj7KXEDZv_f$T-t1xdpfJ zw>|9?H`D(r$v6hs;*>`&lX?z)KpNB|@@&qJmf5$G*e~G+6}ybBP9DZdaKQ_k`hY?- zYmyO*?njRr@y~DgE!KuP$hrFk5|{Dq%kPZYvh8VR5MN_U$WBdC)j;iAS1ag{d*49s zRPT8_NH1M9tMv9yk0;3rpajUlbdU}YAUK$Eed(ztiv`~1-*FRI?nX7Ew;JUN@mzB? z1T)tDs3^0&^Xxj#h|Mp=$}!%(6QSm1p&sRBn1`gs$km=GJniyMilOlr|M107zV0P1i zdP6=5&IZ*Z8|>_2GtH%ow!D{pZU&5ZQ~^6z{~*bJ%(x7s#-TUnCpQMm_i)S) z7t1OwU*8Y9zf1oh_YABlh&!?l8f5KMA5Yf%8jALMX_%$CKG<=#tE#l2t$n9MQ&s>O zMb9@QbU923it*&=PMQd?uL}Zj!+#6^iyffOVkA{>viabZ49|VcC?Vx0L(xvhnDCak zov1Tbpglf(kq;W2%OqQuw4Q%^X~YXGEP6-&Cs&19D)GTn|+d9QipJh8E z!lLIS)|foTFw4c}&=+7x9O>|tHiy&9XuZUw@b9t5bntCV=S#Y_B?nE`QxG>tgVfO| zR3dpoNR=`gT1)~zW*(ZWLyn_Di5*XZ*doo=FH44^$Ix{LB-578ZEh@apVVdwZ<2W% zp9N#mokKZxSS5c;7O;K{=@}H3CPwhw<0BV&KEvrl49kYx_*W!~6P$kvc2BDD$!9^N zNg^9=*7=azFKuw3!WP_l^ixm)N*tt)8Ywk&1HYAq>QXiH`X_UK}@`?wi zPl6hQ` zD?nhUY`CiTR$V|kct|7U0;d&l<;vWSAdt8_L}$R8zkInTnW$ngr2^q|^LO!4G-`|0 z7cRXH3wAOsOyjugldw@NjWW@)rR#>68?=%k8jH#&$$!L9!-Bd*t8z^de+E~7g4dW| zN!PS6i9bO@P4?rG9y$Dg=4Tm-xP8{FCS(l*Ul{^K+>WMFJ|vqMtb_WggMhhcyryfw`%KZzEB!|=#}L)>I2vD6Ovso7~DGVeX_)`x@?+8{r7EaFyeG~hzv zjS1k`PTO0+y$+^Fq=^4h^<97l5I6!@hQm$+e-X)Mb1W$N03-WJ`LRVc#LhhboDMmf zP-TagrBDaS^a=d|5jRB7WUx!>mn06SS<{(N{95hEpqKQuKS|M4X%)BWsQ+bx78xr4 z!)X~=9Ga?)Oa*Qa()1j*0KO00dC;6bgnot{#TZZT08}(EK~>NMDX9Zam$$s>Q=^MOsgP(qn5Vw-+ZQdojl{hOhuMGhSCHjY5n)rP=)9HFEbr;G)2 zZxn-1n_dSSAw=|JXS zfgkEunM3&y1`0IUkW@b`KgH#*6Y}ed89VpqRsO$tuE18YY3W67^nB)!{!0z?UzWaP zFeM}%>m>Emjxu+GTiq6HuK*m1-Ub$owL$8H^r)hQ30j)M3X&jTRjE{q z%$E$kgAM;ei{bk6;W5vf9YrfKBB#HdrHERvAH#DyPww?<2eJ%ay4vA}4Dl+8 zWHciACJ6w1`}asN;3e4qO+`DX2YlV2xJCMhAtA<#H~-R zt;H}jRmboYNh7d4;HFSZhf9RiD)=~1R2U6isHcE*1ZHZ9L0+wOMP%N2kv?szX~Jg~ zoqIjUrwh30p7A}fTa4_KF;Eb=zaZcKtd<_KRjw$pm-QfT1DmJo(RJAGM@b8ag)~_Z zJ&+4vS$-L`B8d+3+oHk+y*3#9I-6!E93$j6u5A>NZ=cceQ0{uQxwM^OB3(A_VsJ{s z_idxHtderR^Mi>Fuv@R>3^aUA^A;7G@=d-zE$Hk>HffyWJ`rx4NLNhK10G+=I&6!~ zz)nK)MGsg<;1!*`yg;A~h!}dl3+ef;t4fZcbG!(G{47hH@td%7xMh>}MI|D~O&z2& z3%BhXM&!Hl<3U4p2Pz|}UXt4Nvjx(25ZDo~Yb24AO%^#|wzRxxgz~!8FevZI? zF%cj(3V2*JJ&1ic1gFQ}v+-c@Fn-pL@oIhI#{RZ1E-GC7ZK)yVMtKp4Q%!cAp36OE zuPMB_hr~sntm|8wEKP*M???U&fFw`LeV`bC6$I4@6;M0Z&<9yWha0m|38TtwwDX2= zR#SFg7XBvp{jI1?{prHdDKiJ;NSI}6k6 z0?qC{1FcHh4saz+MYQRb(Xm}Eq-fu`TrIjRRNt7S$UGFkxfZU&@3h4OSo?nz3d1;) z&;~inyG~K*0<)I4vUX&3_0d65v=dQAe&(0LOkZuuV&ldA+Dh#RKJK4GQrLpNyW>W< zw;3DN3S>Cher5Y4@Zse>(U^{N`|7k_uR%kEAiN)@R6dH|B{IppMy{}@sx3)xaNYBh z9Wcg-b-8~5bt_DS8c}%pJ*{Z%GbC#Y@O7Y&P?&@?lRx_kh5{OmgZ1#MP`M7Hd`N#r zlnp=_CN=LFmjVKIFc$4XR4lNnmxgs> z5537hn>k#4K+qoy{xL&eF!Bw~#%hYZ4QwWHV-=b?Lk*viHyeyV0Bg$wonU>~IQX_OLTKpXKSeEdrF3F5l&BS?cLYa*ltdz}tI zJ};B)k{3)4;2O2vByl9Y*~@oCxYozp(84!H6o>mzI;6E06LSA~cs07;0r+nnr_bNj z1Y6`ZY=RUq!N5I!IO6|O9n=scFF=nemLI@@vd*B<*^a(&`6&$cdzBN#_hBp{K0VS& zKC298$B}nQ^s%78+?bN3a4}hyBn0cFOv4kz?oWo}5+}HrvV4B}?@8lua@?6ZaQ>sA{c4~IWDyn7p2v1PReUyr7 zW`8>x^OzE_AK3pQ#Yt5k=_`EjcVuQ2YfFWTe;YB*{@!w=_el-{%AmjncKkG)y`I9o{+^7# zRO~BIKUqb zQvpk)EC_I?Bf@{hfgo*InxMNOF4z|pHLK$GJSojm%+xi}EbuSxdzp{wdgH2eO#b{- ze)3|vujX{_Mb4T~cDLS}TJqF*5`~i60q^s(9LR0(KNKO9_dlKt?3iJzkS3#(yQ1h5 zE+>|bZ+_6$UeGzJ;bPCC;uvk={48inA%(xlu$h)FWvs!F(GEOJo$(LM#xSkbkP}ea z&k~o=bVKa18`dn7Pit!I33`R?PV&ua%@QwwT*M}8C-=sB2`XRXD1mrY9YR@AKsw#bx;jh(T6qd)h zUjftH!wm#fXWhFwstf>rQtS{LWtg5_kmae^rze8OEnbHO8CRO|w73nraPUvNzQ{?o z`I}Vbe}6!%gT$hK!!Eh|ZPS8v9UPYu4((n+0Lwx{0+!CDDEuTV>$j@qe(Q0BrG}B< zGESmENgeKTLJ#>jc-G`nBVV`gfky(W|3u^kuron($|_%L7ImvSXNsZJM@flTelNYj zwM_4V{P*D3ln+@IWlK2erM(^dqfgLev+3GIEyYduzY0UVH7@g~JPQnW7|i?pT>@>e zO^o2c6eLLsT93z{eIA6eBgnWe#&YvUC{;o`L=NyL@|i=a{3#Qf%~t!=InQ z1%IqMK0%+XJauXV2E&T*LRMJdJOcJ6b9| zEGCAe7r#Bf{llv2W74`&hqWrti&an6!D^i+2}_synK{&kPn+yk_pn}+%HH2tnpBOQ zi%I%c$3NHXtl;4#U%eynrSSuPYKLAt43R#+^(C-1GjQ!wUFPQcYW0qeXhOt-`)DMm z;Nt4Yi2#Y-x*52hny%F1iEWb1LifjJ`Er*Q*s3+DXMYF&<2exo%MNeL>dPyHh>|H=jNQ zYzxK+_LAkp`B!9&~asms2)MdB_s6~-zUe`P=*DWCbRrPB=jgzaF)TQ7qaD`B74YIOnCBI4G=6%(+1*0 z8(oUmp^K0z1sFYvlN?HWh>!gzSLvmt$wsFe)K+&$kVOLpFrTZ%-+iSO&dyIn7-6Tu z25`cf!507912Q2y%_s~^E+>2CaqxLpPX{4_;9(f;*20E&=6sL2z6QT~bRFsd%?XD$ z@LU157qlmrSPj4)qu;9Lih{!QdZ)v1%)$9G?vR@U+;_Cpm9?dHRD~g>O8>8SDhy4r z+4hB*SIkTzble0)A6*BxzzFvh3ud7BzPFj*%3aNTG?&Nn0ULoXgO_Dg>}~;E#E|~6 z1J@N?8ePRtu6@;8*S)#R_n7EhZDqx%!N~0ig6&_=he-6HT&7etUUm8u;kh2Z`;< zS`MLl+*HQ)kV)}N0qlSjk$_x`2h3mvZ0duUfdf34G|wfuh_B?837!Kk%f-^i)?|h- zVvN2M0~o?|_A-C3y>2Bb){QbI;=r4;Usy^Ji4%8!j+jknrzf9a!3Q*O_wXUAsngL zHp1FPE1Wf?H^p)?LqNFjHrh?bp3x)Iq+JbE2v`DHc<>jVJDBl)D|XlnBy!0_e+O zfh%z!^$7Zdr^eR%R>WYhTA5YvosQ8qFL>2=9xUQL$Q7u7<{GfV`#HH-ULn4QG%zn| zT$UzWqN9$Joi_4fy#MdIlT!_9X+@0g>Ijk$nY%%JK;d52&4zXhx@XdcqMhI~aa!Rl zBkd{#0}PcU$k)@rB}%xZPjtKtQ4s0OG>uSz_0O?g6t z;ig-9U_(x6_{3)oWNN@>PEO#z0HZaTQ*_91^K&~BH?Qo#-=+Z z(wnBx=Jx6`vySy+u6ARv^P9wfNQ@pGE(Fg9?G- zdr%y9U$08q*MM!u-dSM7EY;RyQJmMw9B`z*Jhtw(TGf5USKTrm5G&}!0anm&#c>>G zm|%MNIFL<7w$^arY%Gu$N*GcQfP5|B@%zcrxxI3VI@OqVBawQ++(4Fux^u;2agX9n z1DyROaeDSEgANgWm2SJ$Epj$uiLbw%5h*ORjX;-(yN;bP>>z%~N$uTsG|Lz*Zk+$> ze=%Wsda&&Nj(@b=SNg>1b^VUaEpJ?U&SKoIcgLpVPO|=3=f=8x?gtm=YFmN=ZO>Zt zXP=ADzj8ctuglC$o7Gnp-AwP)4COY}_g{RsFH_i#tNs2=q>x?Y40hYkbN4|;@ujip zeUm;`{jh<(sC1_%$`!;`9%OWYk7Hq*JSWqSnN^Xb#)-iaA=AcV70Y{nqP`!}A+qy4X-s<0dy5CQm=A09H(H<8-yNc~9c|1b6Mj@bv+47Ij z@4l2>bqVKdd&ga(>lGg%Nu?DaPO@@Rb1-*h4PiBI<)jGXT{rQL5iOR>SHxjJ7y9jG zSB7v{p_yOR@?A^wVN)9Pv}h#J0k;Bz986_&u_0A1S3-#)AaY{-;gG|T)-)Hr+g(j| zYxtG;gqOkWu6a0W5QQZdGI5dqraW@_*loy20{ZTFRz{f;FD*uEv4eE$Pdmrcbkt9j zive$ZK_aA~(wcEGLs+BJL?B0RHnSqgn#YTvP0!#~hIvF1P~;{~=Nor?P|D~_y*NP= zWC#wDK};5FuVGJz%goHT9tGOUe~{p*ztvNf*sTQz;>({F3MZPHPsMwy_vkd1fr!bV z!N=TSdYV2+4L*1SpxJ?V8D``iv6I&!jwHk|AWRJP7%U$Jsc$iJX{NdH9tO`Dm`ox! zN1x*uB$}$@?GrbmkHvip@5yD1LJRdUS>>cHni!?jKMv6HT()nrcmxQPh;mRr;y6G$I(&zpCSPm(84#rS=U zl~(Ten2AdZJ8Aw>TJ@?#|Mwj$6MYKC0UUdC(|(ELb$N4!Hk+;R`cH1GeT3z3Poti} zp!4C+$D_C9?sFrsO+%d9*CM|%?iwpS$X*=w%)Qnz8^57onRvC(B-)|+qNLA9gEF^1 zQGcI%_Ys?`0)95O-&OrTbg1-uU#86j-8sa|<~0IkEJ8vS*V#Mk_G_ z&EZ1qTQW%40D8FZynqv?DL<>4YCNe%_xn+lAaTHLd0_o?G-hq zkwtf07ZZLoxR>9Pw$A|3jRQLu(io52{D_$mk{@7|3nu0_H#X@#Be)Wmvh&?t!kouJmXnXES~ChRQaY9ORfCePdpr9a zm(~O6GrloNeN0O7xr*nc;>EJm5Su2%@ka~vjQtXRWcVw5F_9=(>dHasIPJi9pS$@l zFBDZhaIskXG3ipip`i1my;56>za>6bTU^>OLHr}vSbVksoiS0XJVQuym#7E76FPnV z(QBIWBbQ-G&FxRa()j&uI8G|Y4B!Y!v2U^FHX3U83S!5FquzP406hJmG`w zY0lrnjJbJ6)o)*qy-u16@Iik<8Zr`-h$Ea5ST?mZUi%DV@H60;WOe`WlU4Dw&IctT z*E??+9vm%AmWrX|80X*QO-7`;D3e&Ro1?&4W@~C#R2F1qN*sQtO@G#PGOLK%dPg|` z*(1m%e=*ukjM});Tbc_GEP|4JH_|S5Kq(~ZJ`q0nNs)8>J=NP#gls;41tfBFE(5MQ0v_BY5gW|@=|sz*#lYSw$;)wjM8w- z-A`Tl(ds>V58cnOZ$4bShp1(}pTGCu@tfE^%}!rKer&cfVW(Ecr8jG943BQEToJBO z(ot1d93n*MdC>1y2HuR}v!7)aYBWQi%e%E4Zu~|@YM)C^Ofs=^cXDYrq7|9`E&B7q znSkx39P7@-`H_Gz3ds#;l!}6afUk%J;fXuJqxi#A+P(A>fB!au|!M#;J=haih06=#SIylTi})KHWoK%X_-SF#vi#1IN(z*5qC>^ zY2(pH{bj*2`dlM6G1R={L}H?mkQk@W2^i-sTobeRc_w>iJ%?x30&kdsIlsvbS5C9r z4ZHJmdQL?C7fZ}Z7NEEeE&~bxpX4GNBmp)i08gf@7iTeTuoZU95z}y;BnF`yH2)Z3 zQR=`mxB60jB2OLJ1sb_XjsI-l&QdQUV)Qi(Vj=QIF{3?LS?I2CP z+!!zdg4}{!>b=Z2cn|2$Vay z&P-g?w-8z?^bEeTb5V0OdU0QMC9`qub_x83R7$r6{4+uOxtrJpjX~i`DUt5ZC_w@3 zG0yTZUxWL$+?A{sv#bS#R`Em6zDVaU$V>FzxtguYzAx&rxu;S?^Wf$4uVX(Nqiw#G zt4(b@c)Hj8HK6R9{r;Ezx-$}&oZjClbm7<77exPQF24RkY8TFsURWHri~H`+xtH&O z$l)qZtl!bGw{Tk#nL(z>5C0ulP#1af{C6zPvkJW7IbTiVl9$Aa?ACz9kP!#Gt~tZ^ z9u-_@Sn}i2>QY&4qkz;+&i>$Srz>p?`pz@lN*7!EBOGqrAQ5dQzl3A8&9zq zau;AhRF&K{>dQL`eI;3&h@nW#heQ1oc4WeJ7!A%?BE_B`TB-j!wSbadO*MTkpjOdU5r2v8-1M(*=(A)!OJJL5oD?J?8 za#TdemWGcOzj-jjUahb(Qp*;(>H9opo3^Sl8heTL6SYu&^7|*!YmNPJ3DrAWQO`S* zF`0AE2iLE~47(^=SufN)2+(|RtgaVfV{=#Lf#8d|FVu)v8A8g;OPM7jt3gaaFU0#( z>BU{k?AddfChX>0)xu|lu$xAzs=39V3A>X)Os65vJjHxNZ;OVy3frMfFQhBjp zR7~Hc9RD+xI_RR3XcXHhq?H^wUP%*{Cg5~~CYNu_DYlOdcH$RbC=BRGFo>~aoRmXw zmEE<}9#~+Zw6Sc;4-A^KD@`o*C288A9>}DP5e|#Q#p)U3W_js@1;jyc;84twn9J$R zQ;=B6K#8SC1RoFjW!wMDTl+yMdN{-F6%M|xtm#Op-&ovu%PZ0ZXg(s;uS2!Ns55s^ zwh11@Sg_^O^Ta}NjBr7N?dbt_wM0_Li6rTc-Hs~K<7A8<5%4;$Z22>r1ea)U3{R4` z)d-dbL^k0MN%cWO4vhzKxq{>#twU!f#ljDkJGK|{4x^HbVrXAxrN$ydc_{L9`Z)e& z`-I?yD`CW59<<`2z$>9&M!AxVS>XIcker`KzC;ymC+;Nb&U~p;jWZIg8mXUtm3HBU z1W&skzD4$aKhi0}{?^L-qO+SxO*QZRcSij~o7Sa!meXomb7ieD_kPf~yvD7+8z^xv z2rx2}7oREdm)PMfcD}{VS|zS;XjK-eboG@34JGt0cra zXXxl`H>bD`u7mQM{cqXUCciVJRGZRGD%M)kJ-V+O-&`kn!FW==mxuE*bPt846r)mx zH5|pjNm5uy!5!!VshocC`}Tj$9ckyn5w6z@H@1OV{EX*ykY?L*zZEk(kQHFx*g+A9 zFi%E!uo`S9*nuUqNDqP{N)4qa(&P|RbV?PZcm%lfXxPgpY#a;X>!SM9W#~zWi?FsL zLIHxge>)_*NGyd_MYdKgUb8A~+b*=B*bv(DNiibv+E6VD8$sS11v?HqQFhFEXy`Ah z?QBAGq6q|%VGNwBvONCOxhh?7X#wKbIL>8{+oqVb5NTptAb7!}Vsp==EB zn3aBec+f*YYNwjiIXfmvLbu~<@nCMvEmr2Vbb1`1NEJGzAIMf&jT&RYJR~R?1uXc$W z(^3t-K|T6^1ND4>fP=|(YWDI2YgVQUUyf}#bfF29WP#=6jF;;!ah840QFH}I6o;(6 zhKnU9FkpZHGJV0V^!&y)fh7;7&0V4s&yved4w4R8G;m8!k#a>i^#a0OiXH)Bpeg literal 0 HcmV?d00001 diff --git a/docs/assets/nodebalancer/NodeBalancer_Reference_Guide_smg.jpg b/docs/assets/nodebalancer/NodeBalancer_Reference_Guide_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..544c4a19f988de8f35502b5a7838979ae9f73425 GIT binary patch literal 72255 zcmeFZcUaS3w=Wn1Xh2j##{w7#B}fY$X(9m$JwWInT|feaUInCA>Am+ZQbNZ9C|$ZV zk=_xM-kj*~eb2pTo-=1={+fB7dpBRc?5w?ZUu&1oTH*KC-`@e`NI3;L009sHFvtG@ zes2T7vMy$}9smLW5dZ)X$CDNa9iKZpJBab{V4S#3%v;4 z?hYnqwieDzrWRJ#7zxOamJSG$wYdaDTTq!-+2M)BbL*#`SPKnL6-_fwTQgB}h?FFg zxVxCUor9f)vk8;C-3yG9n7ahzZ{cG2_#ZM4gy}Dfv#kW=@t<0mbd=SYp4ek8m;||n zxXkzjc$tJnx%q^61qAsXGQoNIgn4)cd3c4mc=^P5Ma1BIO#ccHd~H~BOEHwJ+`sC= zf0BUwt5a@nZrpDC-1b;29zIb~Q66464;;>g=iqYkz&M+@b77pA|6PKtg_9Z9+QHe{ z9>esfL=#hc7iS3wzNP?|62 zL}Y}71O&)UD?FU8uN$1@n?em>94E>*4ov=Tn=k*$MkoE#jO8}76=GF=10IE z3m^peh5xi(R7Orn4gnXIMId-(1o@vp{*~AKzZkWD~B_$OVCFQ-lckkX~{Et9z{rdHrWH;%^$?5J; zgQ@TQN5cQp$nSRmFbL>M^oEcC3;==&2*CuuI{_c?D+Q2{fPets(0>I2AR!U)wd)`} z@o)Gy9p96`DdYek0U?kGc%6s{bc2wDm;_G;6B0cj=6g(WO`X!j(H{b*y1o~iTl0Qc zhIs*Hihaw^0@@FV`|!l6R=}BBkVZ&2Ps8k^d0-tY?Z~SHs7QSNsBD3jiyRt^ZwwGf z03-$y5fkGp|5GKHkdNpA1^ltPBZSz5(m$4;Y7bws%<1LLe2X+CMRXIuScnj*LI@?;k&Q;J;%2NWj0Tr1+R0o{5wxh#VisKPW%; z04f4m;2$bJ$xn?#8eeJeRoe^O$0@*MmN&wzjMQKmnYlK-b#0C^xaVgNp85HJDs zPexKe9-a;Ghy37Af%sCSp@xVH_}Hyxc1;fosMWaesrQwX6g z!WeI`{a2mHg6RjkGa2_;(tKn20$8Ca_CE|rTJFwK8rB zQl*-@q9q?vMCP;6!vwqdxjy{E1!bM1CFd6x54zPJqN*W$?t031UVr)~#qOVE`WH*z zS~oD7FCtGTH0Mt`;M!B&7N|~F z{U$es9jU-*zNWe6Upn9^&CfODK{G8$A}Hq{%76dnqC?_q;-;{=89Id{{^2#c+;pE) zp7X^i_sZDTM-|Wp`4T*$Ca9~d;5Q&Layn|#{EgwK%qGDuE}Li#gGXI?I+1nw8ptLb zs|;+Bh^x`>_#O>Zlh5HW16j$$lY-r<2luzC@3p22_wUuQEJ3*#^J7QJ7dDePQyP9K zbK2%%>i0zTwR<*-ego2xE9tN8ORe>^V?UVP*3^T_;3t_TkWKh$G28cGlB6r4c?^dt ztAVYeZA{${Wq$G2nMdGzLY|kOKk%tVx)_Qvl#M+2-adt6$t+JAZ+U}?v>kxKU}3@6#jOtxoLeOp6o$Qqaz90&7v6bNPn1;8O1T!N(rj zl#Kcxc1PGMgl>2}R;%nX>15r*e&SSOx+VKm)UBpk&%R2GO{Gdc&X)I#x>c1-4lk%c zl-)24_nzR($7ybZil2<}7;)RKv)Ji0E~|7an|c>Wg|0T&(o8r`jJu(2?aBJquwJ{$ z?s!$ooO|8gs>^`?ae_kA4G48@T5ZdqlaF@E(jHAzLEN$YN0AwdZ(kXio0hHJ*Seiut6VN=Y^-gH zi@8Y|{{}BdLVSBaj4~(;`O@>^hwpQgO)LyqPLGH;n239e)`K`Fmw2L$NsEK%4+RcP zC5EzVYi%7D>9Ul6JQ~_OK5H)Rt>2Rj$rJI|-?Ox*1FFncMIbO0O--IVUfHM3E4#c@C~yUKV8jY zeMaWB6$A2D2Pd^P?7VtgpLZQhbXRqie$39SEy$czc$73VGAFU@eVOT{b$IByh4B`R56oqw zXQSul$a1TK;#WR`xVdy3=P=F4;whw4sjw2@VDkI@eq+2iX+_rqD60crhMO~d&%#{Xl_Y`z3YG(`K z=d^3Hm|$#c828L`uP(DW6FZ(5;7@-8AR)B9i)nK!?VD9MR4GQETtU zn{8%9NN%0(&ylV3*ew^0aLuDEpFe_B?^-14gypT8#=fL(Y<8(sU#VwhIJ1jz_+-;H zQ~z_xC{urrpE`A++=w|@{R#u$SI^j7Q39#msecSW3 zr@)DMocLB~FNX^Z#zPoA0JbVtwHf==)6+k-hEZ5j91Kj>{+V3KC}kN|zGbt6-gQzI zlVrPIYKyKiOv7QgHIj)U{z!TyZbyhx+sS++vShnES|y9ETpMkb9OCB5xp<#gG96Wm zfeBf_4hqWG$Ib-C_4ZEAg{NnG!=Ufh7XiSdD*SSyEO9u>GOl4XDpa9ls$bMou}TMT zs31$>&`pl_S54fV`tn1X`qYdkLUm|;0#-A8|PTlnTCY zy=|VeCSvUR_IVsoWHu_TT&Gh!eihs4EGxKiBVHP=_qhc_fxF|Zx)`CbCu*!^w}=*3 z(ZzBt7)LajoN7~O)pOrGqyKq)U@1PnH9novsaxne(1+S+qNV+$@!qE2J-MMFLeAs~ zm+;7jz_HzC#3U+M*GD(SBk)F)F{rzXQNX+~Xu1`kwXR5>p1I8NYv#BDio01uaf*h=J{q_BOhNWVCtVVhfin;1N=eG{F z`deGPw90cc>?j^d30(q6RVY@{o<*P5|ZTT|q0dlE@);O`)DA>5*q@1N07kZRT z`^`SjjN)0#+4(GFNN4~oF464e!~pGUi}D=VOz`PmFYL)uM42UjDf)~f&alO4nYK+2 z_v}$u^!UUY89vf+Z-A^{^o?uAD;BzERr+{i_jY#HI(e`d>}GP;M`aO)(2!_5c&@Bk zcyMS9Cz^6SYPk?2h6=CavvcIGn-R2Lel}cea#-p+B;dhQX7XdQ9a=Q1TvReig>|FA zT65`t_nWB+$h7b@gz+pG=uR{j8Q8Z!sMkRtX_A$3z2U`qb)oJ*8eWu^Iw3$gARMh$ zcft{c85iPBVZWC!q{DPg`16XLy|S?Pv_?Ia^sOG&ilpM>u)b`GTv8xZ_-R>9VCqN9 z35k+I&Y05Q0P6d;mAx~*O3_*hSc6-!bPnlCITblDP@a8paXiaMb<0Od&qf`Fe*>u2 zY#wQwk>#^D3(7gU^yd7Z7iA#wKT+uIzGAhKVslL^2KIUrOp}rM27|HM^sU8Nt-8g0 z3ABrvI!xri=bDCIV<sX!4nR^141RCL}UU0VfNttMs6G>A`ZAR+%Vw>6xc&>S4pf z_wjz;up0*1>0R!m>0m?@F6*HGV(6hY^xaH`KZP2MrGzOiF<&+9JAO4fRpc9_U07AI zolDEJKFO%gnRs5a4Rc&QMhOl;{k5OWcEAv)fl1y9KNtN2i)`#pT z{F8dJ;?pLxf9VHu?=7ZO?_E*o=Wh^zHiE6R;B4bCC~SO1!4~Uj zgC~PR!XG;dp)|kTnz1Yo!m#$f7<;4Vy6IWoVDqtF?Lu+(+h;np50hW!9$JS_Z{>@} zo}8v$GNL)WXHdDZr*f#r@Ww{|%7*y4=V1q@qOwm_(R@(DMN6C2F|LqSN1^QfSvF;lQA`mQvpa1@ z_Yv9`-!wY0HBx$?BJb$_Vx#xDk%dgoV}K&?&Jpnw6I7K7Z^8qZoTq|&YFZ~wzaQE0 zbNk-RL}jy?7|QMLa0g|NZ-we@->U6S4|8|dy?i?TkoHXPH3b)*$8A3D6&_A=GwG_q zqP-gF8JXsXFMfo?S*S@<6RCv<5Ek>ksl#aGD!WWKY^}6kv#b$s);9liGhF|3)aR+f zl5vq~XRQk&G;@GGe;>*r0e@MNiwMS+sK1uh1Q(DiS+Mt&amN|ZeOS@etHDYLGyf1a zs&i~8NzO}OrMC#PXW*DZYP$RqaG@T5WqDdlmX5`G;=0nEdVvH_-~?*#f?4kb)T^T= zz%CnnymNNEWglu?1{Dr8v`F_w2aDam)f(yB+$cu!I~s`UoA;NDaPo$9vP%Oi*c)S& zfl;Nx6Xk_u1NsrXL-$8&CcEyfR*koSlivL&Ed&6R|G)=$yZ{)A2NeE3e_#fJ=hF#I z>h4JoSRDrLI)vPGUc|uGgcT}yQH7QoM;GBCK{EJrhaU)viu_Vv=H$cYeHY}?^`r=v zcA+&^Q8t6A00M02b(jDpR7P{9vx$(h5Ac$yx_q`DeHj|xHBoL*p?MHaivfXm1hOes=l}^|aZS?vt+aPekZlik7el(e7UD<;7ChX0~Ff~u{3_DlsVs# zHEgpq|4`Pe*Hh>%nMIq2TCdm(Ens#cp9{>k%^XgIZc&HirTM~F44bgq&AY-J?zOs} zoI24|V*;;3U8?+%?T@d&gGoFSgybfGSm%0Xk~JBXTGdHHvkb-Urf2hQ24&r)Ja=63 z_xWu)TPKJ2gMZ=Z5wo>C@Nw&jXqt+T(Y)Oj0D!cn<9BMZaKDNPxP^^%kH>3;s^Eih zvdAnIiFFSBw4f02+Gl<2arAFtfmkcu!q2A7qARg zS{$s0n%qjP?!9_nll9aqk_8aKEy`kWkckNuWQ9nLfSNBM|NX{*dyoaDYeS)9uGzXO zD%K)z!I-n%+HTrJTc8ozEfYe&&Rt()0=Savy2DI@Bmo*w=aJr@vkuY z2>?S0jqO{B|A1wbf3T{53+F$Pl=nDUjfb&yag$-Dbm?!kclU(J@Y_-lMLY?I7K{oM zmqVP7K`HMkqI)AIXl4y0)&|~$I%OQjSBg-RlLJxgac^Jy$rgMI(@L<6N|DiQ{=ghfAk+b-$W`GLk4ogAD{HtUmNRM*GJsl_#}&8EJ&hI&PIuTgxzHq+RdJ3yi`sI0o?;|7G?b2KSI2$7 z{-LK)b0&s^ZFKt)0&>5!$SV7mii*~3#M>s}ePQk_g$^RSjY7zqu0j9&p8%jALfXOC zkKuL6g`ZO{_3cmqQ#e8PU4CW;h3Rx;z2owwc^}Orjq?kP$YidtN4Ykq&ajw(smoeO z)|sWq&*>&hhe8)+)`CVG$CQup^gsgw5GfocNE$4yT$JW)`-wh(LS@VsF`AaprEZ@S!_}5Uu1_k5Uge?O?ZR!Eju-DlZa%ALf1)7Mek0_=;d!f zOL2Fy;F2`o5QAet6Qk$tS4IJxU}_XQH4C_u1}r_wVm}+{slOS;o_E5;){B!B6H zb)EPJtKspwlKwIfzIQi3<~HQgKu!E+(<~*em9XS^^$W=@83&82hcXma81t5arJ4Py zNW|Gt$0;eP>LJd#R*pNPMKB>$PA ze&M~wJE4{@dI|+J5AS@W6qPm?AePN}7{CG{jgW)K=V@8ci!s}^x0yG}mQ++B?cbvk z9#cPtvX>B%(+GmHrKOo!UMRmG*r40r=LW}V=MpX0h@)%0eS+xjVqGv55DzNkBKQF? zhq!VkW4^h}nttrz(jankE6r$In>4UD`7N8v{kgHS;L{JkE6dNyi z!_l*7t2Y8Y(1}#4m06V(FkPZ{-LwMI;g>SyLFMs@j6@lB3hA(?dB{7# zsFEo}J_%9*Au2^&4w{L+(@<&f**Wk;J{y->0pVG5k?*S^ww%?s?ru|^=;7o~Dz|IK zp-&oQ0r5|X6x0Ctb~a%Rc_ZS7)jgdbO8303*|Qi;WZ7+Wk(-`~nn)Duu8yqN>)%^4 z$9N=vuWUM)3D1l48JjE$UgSNT)O@0$I-xD=2lx%pAtDk!IwTPHt8X-Dan!G;eH7=3 zfHicJq=fc2gLk4fzW!?0v*8lTAB8oueJ}0noG(5M;o0R(7FuaZ+C|QNZB!9M!ZmHb zn%%15lQc1sO_WvxLHs}fyG4u#-J$Ws<1%Mtr56cbmcdRLbgb5k5w@lrGRmD*O#5*x z+I8}$N2Nlvf{a30ndcz36Sf|jzlxC7goBufm8?WA;EvUIi0xV<=wU|ARNU-U>9MOP zHi0IVI&XRHr_|#O)#5f$2JEaLTY5D=Y9dYE5>f&$?P82V*Er9VH>e`cmFJ-3Q(p^P z*=3vww#&1t4{M_s!dqc!@eBYp!LR=%<*L!;sn=}X78i3}CDg0C`X9o!g=s}>?~INp z_(x}?Qr`pSt8;?9mC68;1Ztn(qztNASE5!v!w!Oa)tv|0?*-Hh&gM+V6@p+VU=%f3 zK!t!Gky?PyZB4m6ow>UCmSg%9%)@+T$1hP#e*ehx|NJ%*nmM2)fww+yAp%H**6S^3(QV_R0{ME>G@0Wnp)C1&lPPrRcAFF^O)v^Y4|uz9bU+{; z#Zq|#8*g+wMeb?iG`0+tU=;IOPINXQ-To-kkd*0798=ix)ogDB69FY%lNc1O9;>U4 zTU9P&jSu%s%qUuw*A#C=$jsRm-$^iC`t-wu1tFUVV1dZ6l+q<}<=s%PZqJagAzs0gvP6aj_UuWGci`&N|I6VwjHzhv$#Kb=|xT_wNs@}UD=XRfS zD0Ujc9FlL89hG4{=oFu@yu#LnQ#+8Ab%?=zqoyLY{kTtX8u*lSlL#HkIeL^m`fYJn zsSnLpvw|6)9yv&EZj|sA$vE1nY8)s`vphN&;kQ~h>N=x*vz=t(=B&sgDsYzkp|q;w zoj3R7%8vb=3+;<}tI8AiwHK?t>K`{4e`eP9{PaanCL)~=#(~KOaejM7yZ4t?c=F?#>st zy`S+&u2^0gbhUf_gJomrhn}PSxABG+=5gJ|8caY*UR zElRIuBm{!qz)53KM8uD&v$`#2gqdNS;T(k|HYFb#*kWQ5v62X`L4_tnU7`Y$MPl1;BHu2wY#-8wVqFRyN(g0F_HTDL7nx~NA zh8eA4NekMo$UE!fRa}9lSo<*P5+@*vtSCqUcq5cH@LnCVkUsZ@dW`0rF?(KZqJ=94 z#uMnSA-oQJm>61n`G}O_SFJ)(kHlk*9_SNdeV0FzU z!EzOa98w-*l8Ffu5Eb0X#qU_ie2R>seN6N%S zw3U?|Qu~Ov({Y89Z1S>oUtUqmJUszCrXZkFP;@e2pxNCY?OZ}50-pT;3ZSQ zL>K_%!0#jvZ(gQ9o5NMaB+pbJFT1)P@Pp}7J6UEZqb-hK7I)0;4wUE(?Oq>SO=w4} zA1CLx7 zEn2r~oI6_7ytPqbdRJap4R9wtYaF+m64yCYd-sT~o8t1OO^WkEAZxK9gbXTBNO>f_HW)DHllH*tMd3_H8k+=A$r}!L>bY62S)>qw!FQUM7`m$*9&d*2Mn!-pu1Mjv`VQ!%XSKpQTrz~;B zvo5Kg)@AhzC0kvapVt9ZIZw%n+9my%ZcNvE9(G~+@2%l=y`Y9(QAyU)SZA9tCw=gj z$np=8g@qA#)Jto39>#jr>$X3|4&7s#hg9{8aW5I|B%Q8?zGT)+-S3!5dT@`-y?j4L z=_g|sm;NC)+nSfeTzc_tHY3~ormqw_Mlhyj^+%R`BYqYE0FSGUZQuD_MY!(Cmn6j) z<<>N>{ru{>!^4&qfuR{mN!8o-`)9|ebw2aLYgNAiXE$13RCzo?B^f~svDRV;Tg?l0 z--zj}Id3Yr>E$F`3##-Lgyqq}*YY7b z?0^W+L2Q0JQvmEs#`i5+c_guUWTk<6;G|O1?1AS~PS^h2u2RHa+&Hm`Giks>f+tJ} zK_c#|^Wm-Iye4AtltBsfxB3aLP3oYcOnPbnJvD)PKRXq?Tn-yiW=_$}66dLyzD#Uk z_sK~06>0YuH9snN34kDnv#iX3P#sFSkk8LMhO87o0Q^|~3^~CwKLCK;faLIbU*PAC z51I*I_+OI%i1LEKy2uDj7=dqSrA2ouX=BT>Xcd(TAP4}uBb_&~z|oA*3bg#WGozKh*_e3`tearayvC;L%A=C- zfiDPnBU~V?corxw5jOsgHiJN4>gcZT_IfcH9ndz5M{dG7>qW2(e^ za^R>Q$BfY{$Py{!KDdRDEm+CZdS>_J7P+A=96cIk#$cDk#Fk8b!?E@@*T=|s7vFZ` zp`Hxy>75BJZ(Rb-5^YUQMF98#0Lpp-OJcHUyZ1sLo+UflSUPOUqrIe2>2lFKVHF&W zId|P&uF?4PW-(`{Xbx4)*!lw;%@DqE`g2v-xc?EeTK?WXD0|QUhIA>&uM~82KkQ)0 zXSc6cXCkfh)#dVhOWr}-E&X$IZwB}&dN3L2pOADn&-T*kbCIak=Wirb6$3G zncayR-JCqqzsOEM-`dFf4Vd;|oUXt{2wjwy>vcIfOI}4C%+MFKv-ZwwwLM~{ysEzE ztOfwW0OTO1o2`buD`CF-9P_1l-V!Pjaj3VX zaZGTI%NH%8UIyTAJ51!DH$66&eMsc3aAc&w;9A)0ovu&431$k&W}%4KYPUPv6p3Ov zCkkMPP8sqKk>TOC#XuNcBIpfRJE#XyWi58lPC#oj@U5uBO=>E_r38Jqq1f)AM?JO> z7)S^srXxBtRMTqx+<4HVh3n3d-QIWbQ8yT-jtu85`+0*yaiddeV3w1{?F**5mYhA0$iiBB%z)_ruH=+ zedM5GCmy58R7vDy)7RsYfP(ws0Cob-Fg0mq7zH}0NnztSk+!n2VDYTbP)$~4d2L^U z7Lr%$aPCf|3&S4@N$~~=L^+IKuG4h!hh$1$GQ8mPTQ*Rm{;`%Xw6o;XU^SYO2|z6S zrNrrwngaY>Mgxz!PN`>3)mkeXCStn0-b{vRz-If~*gYJ5Xbz6eiUE-V*U$=qPo+x$ z0xZlDtqP6EW&A)VCM1WMQs^=uD!gJ=N(C0<8b`}~!xQPa4Vzqj+*nrFhGu$5o@x>Q z!N!Oc6g|)0z5bl|{55@MiZ1TP6db*yP#3?rA%CVk5zk5frFSk_d5dlz*+0kZc%iA% zo=rGR73x})#cD8xMEU-*JE>LK2Y}z(Pz!>5+P^a!5oq)?5nR0yZcw7P!Zh&ZGZc%W zG8k`)R#}#Zu7ya9@)_TrHcYJfI(6=JgJ!OArg5iRJHw+F+1z1$@@@BYs=?CYtmBi* z5<0D0yx+r3m3bCGsO>N(wA0*Ky=MM|VOAs2iX~lL%h|yA%|^9WwMd0UALh(9a@v#; zHh0ye`+5Gwju#`+$TX;Db|ax+vm8;CAh{d!Q5I$Q*83tGf8@gadVbm1<%>O=xZh*g zS>yWh-cC2_u(9Zb5x5_rBqd)qRiSiYlF;`;G?~qo;_|b#h<-xeC5P6X0?T1CySgq* zv*lCn(Zg<$nSt$_XC!*R#9Q3*NAHOJT6xcyGk0Pz!c}=%g%i|Ej)qG9n)OUCeH!}ir{KC}9Dn}JR4Ubnw0NpV%3 zM%K+TGV|Yxg~duUg#(xZ2&f_pNn9Qu^f)|c={CG^w{EubBipwC--FYFOWAttik&g* z0rQP7iTxfPNsAjB@^`gwi6mN|MdA;7kAZcNcN6V?Wp&hP6IxqFn?7n+%;N+WH)x-g zLT`*Din-*VIUB6-P_?FQDs{~E=QklIZwg5`L6AT-LTTewZf6n2`50J`Vhu^hY;RSf z<8J^74HUmy-NA2v;b7^T1bVhd2VheTlEFJ&Bf01b*5#Gm=I01Bdb#AJs4PW`9U1zSYwkUycpYJ03kOWB1AJt8xq5wXB z7fzi}m?QgzKo_7P6Qk)nr)qC5?(reh~sQz=Z?OZv{iVTB_ugElx z0K{r=fB=B-uw~7Jf|jN>KxX z;sRh$B5E0=$CU;B_Tp@d_TGC$PtRU~mcAf$szs@rbBzu8sl~X9@Hhw0=O2cSx9Z3F z`_f;s9-bb~rN?`2Zbru-Y{4Jz12g<$q=^@aF7c|GLU~0_wM?Wf&9-w)(DBBqkI=2V zNAq%a+-ALWNiVO{>SNZ|0pt1>dAFJt*WFtdrE-SooT9wZjkxeKXDRxbQL&?Gw$)4f zC(bWMbz|b+cw}{93~-p)DucM7MmCN?WtO==3>l?PIjfKXudS_@_S-_cIv?Wt zdL4XdpN$4u=sB$VL{~5JxE~ttgmmusTGsI6eNwZt-{U?0u5#UIomNh#n&5c2%2b(H&wcCX%y^B$xF=2PcYUW{RSM9*&nK1 zg-hMW%}HtRID2s(1UucT^!ap^9e-8!a@g|FD}QsPW6HjugUYS%BMdpOY1R&l2yO=`}V_KDk@3@xpXJ8R=O+GhXEbzoh({ zZQy$IOlZH>yat|t%A9JJK^;_SNnW?zrzxIOZDzDBKMhR{--%JWxVl|9)n;>8GFK~z zogFt5X)bEJ$;e=8>d1rBN96OZ(n1>N7Fx{g3~|}XzKacssoisW%7f}Q9NMWH8=INw zwqQoun2u(_jk^8|sezMhk0IUj%FNenKiT zeIcZc%~}qm&6yVno0``(Vo6cgE^bJ+LHqy9OII}fsR--Yy z^AN_{aN&c8_JPf3K&S+1T$Tx?USL8uMMf#r%q21J(DH|VyV)j%Qi*5TkWLe*{**>@ zK2^elYqOeKBL0CTSr)e*Q-Gm>F!nmTUUjVE(+lPGMCVn!OLozf94qxSGI?!uEbhd1 zF_QRb{RVj0HKf^X zv?~qwHo)M=y`?R{mf?wQHZJa&9| zCRVpkj~iH+pPK0yD5m}m=$4xMrQ3`B7fPxzwgv{jUngw)ntfbMn*B-Z{7d$W%X>IS zM(rKL_LpDzI>w)zv0q3IIbRyrk4jnizW%z!yOGqs#IsE=wOOqCQ+HImS+dIOGU-fl zU)B3J;G6gK1isK4L#_<$68^+qYIU)JZ8n!ZhR5mGou}t7=et=m)*t+#^3aBBX_Rh4rwc>MKztUNHX7H@`=W&Xr*& zvQ-v<)G9(%?h7-eBV*%+*QsgwR_-{r7eWn1Vs+@LAbx=GSd|BApGzY%^lanHNLvyx zJ*)}l-`;)?<$Q#V@E&n4gOmV3#WTD3{rOtJ4LLjRr1(%xXS9UkE-+5hIY&z-5J*C* z2IPlD-vbs7pV3jNW{Q<9K%-vEmNbcR>BHc1G)q4W z@CGpHUZ|^z1m{z9sTw2*7zUzFctxN_2rU=pZhnl;@FBQMS#Nen@_eg#B22wYb289& zw&hXX)=Sbn1p;X#(qH`nAncHUGfHHvG*r4^-0mta~QAuo6_G zSvq0;i}zaFz8%hBYiy6*e-@g?mFHJg>`;d;tQS>yBn2sph540`26Fc8lWOm5frynf z5)w=^3g#$eD7+ARrKARf8`B(Rq-W;y4MbO1r&lrgnq8J7gVh0M*I3mn{n})z z7wLiM!QjlRjY&fvdGRe=!!VahpZ2_N^`1xR2Zwk(1d-W&m;0JTNPG;R_SLyot!L@K-%vnrx#m?O^CFQNLHzeEy=lD?-)sw!> zFrQByN&`Zzi;K!T$(+B0Ysdi9*rg!}1n9bD!a_lh3laq4>16uX6^D^*F29psVENN}$NWipxa8=EkU=3$t@|8On+A+QWgfL8)YWo5)J!Ohq+LSK;JLBKw1 zHs77CxF%N>RC-0a_h9tCPAJ|5YE8AZ>9%SN`JGMpy>3n85AcxuuMqkC9nAY(mF3o? zYY$f}+b?^?pjz4s$0<|IX-h&GP#<)*GQ^JOi(%A()U&S^zeEoPdg4^`jLD3vzj!kY ztyJ1motqqq&4)&wH4K#>oJb~{&Xv>T+w?PI#;BP=>v58ZN}-G)o?0Zr3``dy^>SyY z-1kFMSfg&#=Rt11Oo{c$_gAlQ#b!xzS{&wm5z?Olf)jo&qv(wyxS zZ0)vbL${@j%U`^x&=W~s@u4Xg;My%8sP#}Y7p0Og|LkkfEp2`c|HwPN<@^n>t`R8T zTv$2{Tl9_AKZz+nawVJW(fJL~zTLwZHnp2we&lJj9aF%6n13tv*-sx?YV^#T zG5b9It=qTx4lI2G^sZwfWZJsE@~*Py?HWb&e%heP&r1#6gKw;Fzk7-%*1k-!dXYl2qjwkY8onq$F0R0-@seFy-SfgBj}Y+z3CUBl^k;F&T-Z! zyi71qj#@amGypEQ+x{EST8acDHXgWi>p2-5GAl{L+<8^Ae%_5Cn+{^~d#(vC&bmRBCi66W-+o0P#l>pzBE+%>gJ>&P=X) z)`XNOeX0R7D~F&e@Plq}aLQAFzia}#bPj!m>0BEOp)n$&WEG-v*RDn9n2pOam*+jd zWCwRm`KM%7+j-j&=MZ`XsXtL75dk&y0sd=TY)^~k1I8-)gyimTyU@C*_i#YhUw)_8 zt@ucwD@`d!Xl$)6mH<==k~^BOU0pL+ufLYOUyvqSpT`WZE0}h?ZCmSF#0rU;DKGmW zmZh8-w#fKIUWIueORDh!-EI>pEX=Sm&M2%F4=;Un$8~dYTMu^vh{h8Ecc>|;W{?~W zr(DSBtDfn*Ny|$vT{E?YHrX1AQQ(N3N>P{bycvmV#B5tVZbzR;JY@pg93MY^LFuh3 z)ZY2+>xo2qbK<1Zg|Srbj(0zZ^`@>8RC|nEYn77ZFz}tG-Lsvhrpa8}J7dKh&01_D zZ7(`X!P&P9TtAJRyZ#3FG>>T0yosUv4Tu|}+1-}M^=%&h2GHAjbOeV?^eY*>kjSH9 z%1Q3ms^XfMWTdQK64INf8``+qaXUn3g;tnlA9*JgPr5s35fVQRD50Yy!M|X^@=vV3 zx*0CP=uU*#T%D|0^QOl~<0$#SsrzIDHH+dyJxA@GXM~tp=G0lN&4Go^(uWwNlS^Li z&lahqN^jd=Qo>(`@rK47B+Boh#VWsY*CL~AI(R?vi;AhyF0r>`=vN%>r_pD zF&3Xm8V#BG8!h?H@1+VA(K;*QyNMwcLy}YGQem3Bv^U&geRs1S0 zKYA6kOPA6%9K$)P9%+Wr>eAntKm};Vt*In_ z`s!2Fu>$$Vv#@u31wXskIxqj}ZRRvBd=tlthFA2$qoanuoT-aOe(a(R+wZK)WGLu+ zI`Il7@Gcw<8Y>g?W7WQ$=fgk6d#rSSa6;B5u6E?Ks+vC}gmCRxcz~7ftmW`*A2*&I z4DN7MalO&xb>AapOY6Qt+@0fz3+%6*Eq!Bg@v$WlMf_L(;uh12S6v*m{i$#Mxd#L2 z9Vy(#U6xMiaW_YkJLd2JsGunO!K}fZ(VyaC=adZ4gJTzn_s1@bJ`IK}F2i8)M5Ma^ z2)&PClssE)Z5k{}1(h)2Z*yc{zv6fXWWK$=sGd#fJ4hwo zc^Oy`PC&&DErps);BeC&VI;m2&F8v9lVPq=9+6F_bZ!-GTG}}i*fqXr9d^9Os4O{% zKwTQHqt#Sh(2qkarfh6B#z7q>6Ye=%#!^AvN#pM=IhuhK_I~satlM0oNe{$x?Z4ZNg}&bYG0kK%p~3% zkC#K^*U^fOJddQJvO?Wg@c%%AmLd=TwM;H!BDCSX`{`^Dt+@5@C8Os_b=pa#3b@;f zujOl`LOcAw}J7tnU4^Q(3Z1wpl|1`KQaZb0eH9nf|Q9GtnYtyf3*Cm&+?!jf9Wh|2r zzBfScvwHu*FQbJ?*Ph=1eW$Y*XP#|uPTFF;FAb*e!xsXAl<;#99X(THwKf}Q_ZV;c z$Gy`V*6FX;Q!XYyZeg=BG3lmkZ~h^#*QRAm`KcDiPZ!N7uPOs^!WgAZCKHbm<+XyB zQd3tBY{B7iSlH?El=B6j8?e(oh$Jia|V+%Uwyp+3rnLq4#i zysCI$rhPJ-r#`=2*>Ul{&NpMbTelTgrSw+|W9l{V=a13ffGI}feS?{kmo3Xzs{NBE zzX7$&F(0#~aBt2<3t}ADLTv8;T0(-P4txOH5hH^0@eI7+U|L@vHJGQ zyt`RzoTBM1XkKpl@}l;m_Gq?OHK#W{FXZR!`rFLt@PF3xZnz2)R#Hbm>s31nf7J}&g z_TKw?dHI7xB+qls^PF=&=Y86K656;tx}puAnmkBAUiDha-fG}zN_Ub(&Tqj6&>E1G zW4pnDKxkvf0>vqbB;QVbyDM*c#X8z{>9OyRBK*)jhuygXE>p?OcYWKUWrCTlo+Z32 zxtDQc9lwv7bUOP_Nrx!xg5q9C?DFC^W$n0h_fVB)orZQB6z~~rNKfJuK>t|8@2$b# zceQL6TE5hdxftpC>|qq*1}_YA_P(kXd>WJ{$_|RTT9E%Em7^I8ocaOCfzYo$*x0`y zk8OD4uLfE;XJbf#$w?wy@^ls6Wl{r~RD#5U^Fk;ZNz^pIwn?4jpj{|!7>?B*sP1)1aY5jCmY$AMQD5nzUlY&50j^JwKyO8OB znzr{m0;c$U_?S4|*{wC5xTY+tw5op{r^)S25<<+jCHEzrff^%5s((jpa{{4tD6Mvw zRTnKiKIDG8&Uu|jRhHIvU+c;KO>WGW-k6&_Yl^QPjDwd}jTQIvu_xgtp>f9wGp~S zW9i)0_YPO2SU?%x2BbKS{m>r-%lHaVfheQr+giu=Pz)shpCcZZZ_asq$R&KALNqOF zo#_~PlJ@kbSes;tj)+1%r6auu%Qc;8v1fF|U?j(NC7{L+{4~(Agf7Eb&FUkQ@7kh& z1hz{oqP_apz1%ZzZ_6-RfoK1M3M^3hN8&Q>^K+<;AofPOkdK?HMn%p((j)e5Bb8cj zc2kdekFO8RHC<})QDAP==z;l|i0dWVk0#wA#E3EiXT@2@)Yofi!?=^K>-U zbHdSF-%HE2FXuejM_E(s3GT*u-~g%m5B~^znYWPn%eD4*L*H(D!+FY2b<#x5Ax(fMfYuUpe_~Wefi6NgPe#|0Ub)qWH}%c?dp}6$1NyBY7T* zITJSIi4@P(@(Z^Pv*gy(y^mz~#v3I^3w->nUPUJU1?h6h%6| z$4-T6_r4%I&Z}wLdpsSk{dF)|*GQH7<##_>m|0T7er-nJ93%gNMnot+a{IJFKA*`` zuudA6hDfvwD|eH!eL=6y7@79zbThG3b*36+cmf`i2=1^GpKUS-4zk%7O0R*ImUk`{ zJ6o&ACuhW^qpMv54#DHGNspHa8=XtcELo)t0yCVfF~94qAjiL`nDM~Jrc*#wBaWuG zAIka{Br<=xnM4JB;o3_6;9eNmKNqx%_(p%p$Dh)MKRgfy0BHVyipsx{9^$SJS1G{YNfdYz zwNWAKvl=~+N0*#mapJpdlh6`w)ZXT z;^$wAj$!RRAEfk>m^?mxgEq*ra(UXSi@7~6YSu_H9gOgrX;)pN*@erfGWFS~xl9{C z?r?p!}h+$~QzF|AC?y+}1jkQjY((x7h=dG7GcPgbf{Wmly%MTE|!z*zU znyPt~M~Yl|fpKGPp7Cn6Rmh9Dn_!!%hrIl5USo7A_WDsT1?O$Pu!&YIT2_2b{6#== zgtl5{h)$zNN&*<`u{W@;Q%%s(QF2eKMw&09V83l(@W#+lUE})j$6_3>&mDO;#XyO{ z$u$z5XvacD=Rjw`ll^d=8p_~kOjJlEOPMO?N#SuJR@Fqg3>g8OmUl_W4Dg)Ajx6O6 zSu@91xZ9){L4chb*gL%^zo~xwt0W)j&vp@yB4iaj&X7K^*PKmAlLSlvsZc_nTdqi{Fu)h8{cM+0ycg=A!1O#V!^j z?vPN3W5qBttnrf)uI=+h&A40`Uy`6Z7p+5)HoqJE7sRk|I_ROA9?EbK++zt2UMcV0 ztm3(Th;O>`V$m=`OK~e%NKA05{B?U{*};@_LbX6`ghhtyLxjX+aV3%^giMoHaoNJT zO;>xhy5?y_DtMe1FjoHcqr0%c*iwgtC_GhhYx7&$>yqlG4*twRM4c^jeMev{PKvX8 zi2pe8Sb1B@Lep~@=Jk4KS8lwuM0KDGvboJ*+?0jlVhx8Pb&&7h8|1t*xSFM8$@9fh zHuz#Hg@ze&5^9uNIZ%-Mx)f~W8=@{VnXdixG%shw>vU+m0qmi$r?j;jXgbnWKQGLl zIz#Nd{TT%EIj?Y$;kZNrGwgKDdw*oAyRRze95dc{*@)Nrrk=E;D-&_a#y9x4xsM8A z(yQ8Y*fI6&+sh?2iY3czWTzE@jBN*)3QCb4t{{?nVi2jcgHYd;2_60I@eyR5`P zl`KwhmoSg7s#8)-jSC~_YFv(+=LgYJ-y&n#tm`8O8f$(Fw?3_<_Rl;HyT_hpw6%C8 zWI3pQxpq<3;2>e-pN}mQyK#8TCz<^I&Bz7ykI(Rv!^umrKZ@!x&-vc*^nr8S)y32W zlv~4lQ?VQ4-1om)ZS$C!SJ)*I*fus(k z(EbimahNVEbSEtFq${tn1{WL|Lgf@i&1Mt|v!9Iv5MD*z{9!S>e0jRtgM~h3 zUs!X8yy2QJkxJv(_oJ*+I(hbk$q6eIY=nDig~`mL(ZHRts(>1}`9uc~0|e9V=uJ|b*7Jki>=?nE9LU%a=K=Y~frGu!*S+YG_fPGHz}ksA z%H8{fCf(+Xgd z)1OqJ8!mi1I7l9UsL)u3(o$5N-Zz?LbeED`xs={%3%N=`l<~F|o;ua-Y~^$F8~kUUZ6y>=JK~&MsmvPSs5;I{ z*;Od2(Nk%ahPB*A3GI3qG&gfO6ga!x42kQB ztx5ms7@Yg%5!n#?GOroXp#B(y)@?H+)q_`ka_@M`I$*DUWnxBG$+`z@Qmwz~T!Yx` zee}|$qADutR&R@=(?sjctg=NNIyZXu-Mp-ilxbHus)DoNxbi>K1`3lQg~fNH%*!rT zq$rze@)hK9y;zrPk~73)%n=4zJyKxcaHjpMyPDh0?|Kh`a!v8p*|mfGx12ZEek7K< zZMF^k1&tv!ws!}&{(}7bH@njQg19Ile~tnJo}J?!M{e4z#Gmx*hqOt?G10E<)$hxh zPXnR88b7W35R-IT)tpaI%sFu&HBz}`_QjDY|MkNEW7Fw7CoJVj8OLJm24)=+H)^Zh zX$mW7YE}$KI%y#sQ9hbC8)88`#6e*~GtdaR38UVQ9Pcz*Vq*wHWjK$Tcpa70RcuD!vz`xSJlrsOY@&4VzuJe2hNSy!-CgMSB^l3G4+dm{ zH%5*O(vc%yYteDe`f5)NN95CwtMWhZ3LgbENd5(pOvWgX$w|r27F5gE)SrgC=Hrd9 z@a~zZ<^iWR(#onUj>xk?Z4f>t24*!D?+P4ZH*br_r9cEWZ)+k&8+BU}L;6B=TM~$N zgimxx39g0v@A>+=I_TKcd!lGRM5T`h-PSFt9Cu1y_NV1EaPW5K=bO0f5g=MK3c)gQ zB1s1(!|VM`@-cNM{dsGnCYKMZiePRWQ*-Tyh@P3z$>P5tmqsDH$(w2DMn|U?A$1+w zf0HR!#po%U(&@{4*mLJk`PLs`JyG9MS<&wPj@g&T^@AShJ2BV+H+n69t#Q4~!v;x6 zk#|vS+BQuU>F*A#sF{axOggNYXIbPYW!Y)HLGZo+bgVDsFDTbFE&tpCRL*}A901Eg zYo|5tdZZ79w92C#by7w?i-&&+OCX*>41z1?yeHf`n>RP_S{5t6oBqsfreI;Ykx>zN~M;b?xj=JoLW5- zpN_CU4asU7IIe7X!VC)k&lsrQK`~2%m)GpL_1~mgN-T`@DW$snJc#v}3g9xb77GY7 z@jAn4gJod~6o#>}v zgDQ)jL1P6s7&|xUSx%=@@g@wCrpI7Mvo|6zSRIr3r}pS4#n1H9ZauqI+ca*fW|OV^ z=lS(BX%k7GUhrezvM4DNn4@?WAUU4>Deo_Tf23Q|eF@UF?jM;ok+CeJddYW|wcRv4zZ{lT%Atoo!o)l?PkZ zM6Ty1RSWC#45f+G!66DIT38>2dM@hldb;=zU0vpo$X}2k5VH=8taPsyBRIRN2|-`i zL)Mu!Z|m!#&Mu`E#pu>KG5AcH$U-|YKrk&C7%bnm;@haybf+=U^T5FYc9?Lf&>_Ue zyXRW0Wxxe&7fd_z&7UCowd0V=x!=J4y7ayYa7926fHVYdG@|bo@7Q;zyHUSxYq2B{ zuc?O5z|*Z)$?2}~b^Neys$%?UNi%`~?C2ARwPu?DxN6v*!7_@W<%|GtP$-wqk1Nz9 z;I~XysK}+K2Y*4A^%j-$(u+b2#+Z2*8gf=Q1{*~rJH)(gv&zlYwsF4>UT>N=3lX{G zLKg@jBVXC#kEXE5}BN?mo{GL1I}xzZgk|`b+a(`dfi^TP4MkiAN%bfnx<&- z!yY{Mr57z(nlItg6BGSfMy)E{QjtOJ;Sgi$d@52pPW+hbHANU-ITbUVLY>r(jW^N@ zp*i)eA2`km5V#CVe}6tk5$9HbN|R`zdOhc*;g{VIt}i!sOx~S<~Az_2PemMb=99bE$swb z_`BiXeXM`MXc%o<5RcPor|!zYq(6Ud7p`dJ1=j6tWC(5tBQknEr1wT@h9~eH=774)N7}tfZ`VVg1B) zhjPWGWJh%Bn_d$0)gOl}Os0`N&kFAKd%TTjRdNp4x-9c(_&d*o0oM1ZGw*KifJJNy zG{i2R1sX?56FT3)ZAo>|e7d1|$`+5t1N`sH)O6^EuSVQ?*O3&v18&~5^@OelEm#j+ z#SWo{q^CQTBFVLN7yd8}8%|NxunDK6j{F)J;CRwCy~n5}D>1N-;yiC?)v#pY&vl`F z%r(`Pve#)Tw8=lNIWOm46{){Jmbq$HjIG#qXRqgA2MSDQo+$vOc#i57`Cx_NBU#v& zhM`LO$o+dyJlrXQi-A%ccZU?!rk-kcLV}^(LJ=M>yyDliz;BjBH*X@MW<%FlF-XN# zi7~aUEw{LO^CwaWdF~Irf4=p6a%(aGW6gu-zB#opE|KM@yyQ(`68*Ogi|b9|jn2_a zZpV3(s>jrTF5=wkKIsu(bI+D(llq#&qSHBQ#lvQ;Q`{HLeTVrL{Uy<~?1am1x(=fI zGlhKY7ZYgt`Bn3nlwjHN&j@Gh{F|RROG+vf9<(IWHBHU(X_lSPt!lyZh0?#LV1w^^ zRl=v8T-5T4JJ?IrB6i4HUtjmhqee9%jei1Yt=yA8!Lo4i9e+OQ0G~NT6sYI@m!1zT zBI4jrF~cFPIt&#saPvHV+xkciuF+1l{&HHpaw>Ne+OZ0E#U1dpALJ9??&1eSCa3&g z5tdYH?2{hWt|cf0)o0Z^^3Kmpr&*6gx7CF=EI3TYkXUcc142HO8L_#pgaBy@b`9v$ zup>4pre;VY(;$iwqW08WLi6@}K{LG$Y!%raA2R{gA4e99xjoHjuMASoVTo=IoVL~~ z#TK28@%Ps(xzRR|zhDYh6G)aVYH*M-DvdU@6F}ET*CH zL>#MLbeGX9w-p*Is;Xs6Z&$I;*k*6W;_uRPVk4L@=YPRrz(PT(J8~QmlZrVczo7Cm z3GlMVzkiU}HXfdMUOqGQ*Tp<2H9Xwi0OO~cPjRVlUho}r)#hfeaWCbO5V_w7)9XUB zz4XvFF!$52K8Hu;{skpA-jy3i+J{OdOoP99)FIhd5a(-Qy`T3DwClGSo>JamB)vQ~ zEizZ71a=@FR{REg1}O`K{1d!lUY2jIezo68KYV!wS!t{ZTkxqA&V}pzp3LZK&-B{z z7X|)cN|1_`Mp|fVtjUmu4}BuOBExJAiYz?Dapz=mredaIky+sgCk;S65LA7Tr?7pJ zg}xTt(N~l2xRw;^SQY9;09Jzw)B6CiWc$$KsEIrgK8Q4w!N*@%ua-4GoM06eKGNMV!6ACx2Huz&NQf zK;;U*WYS%*!=@zB+5}QGEN0r~L~MHKIjdhmdjQ;j5pe`jhy2>jLpfNgWp~4^VbqKG zHF%pZPBP==UC9n$85AlG)(_kcmfqyD8|SL8?Lh>FgP{AcTYWn_F64fS9Vcfcv57B% z0jiU>Y~A-Cz%ykH>HmIbi*)jpw0fK+e89LL^6>$Tz47AP7F}i~lb`Dru`HD`CO`>I zeg|3?o?p7{?;{n=a_2+tX7d#|-&NOi*>ybg68~S2ArDwz<)M7N5>Y%nFq+M1wm^I* zeRys9;aoUL!4P?4>kZ%}428{F^b#)U_IzB&%yMg1o0MdBsBg&+2CG|SqGZgYN{UrU zvhe8z;hXgmp9a%xaE}e%L|w@!bcf{KOWE2%`!y&oON=4H^uFF}(Y2|ovHqCxdB8ow zWXI8s%_aGBMgvrwd17CfogP}o8EHM*{llSZJe$3A+sFbHN0M`$U!K7xy8$wn+@gCM zHdW;|CJWTcn7W|V)`Xs_jX+nEzENY(_Vws_$23O^rP|jQALkGE#xD#mz-# ziP0HWx|(@DYdOo$G>Z(chADmLDUYM+|GS)SVP8CHs_vtQ&eL4?bE*RZH#h96Q=vB! z1x$OMqVk`Ah_dp)ZB&AT{V~)YfY8^qy+w`YpeaQN}n=!&c-E;3q&g zga}t4M%-{aG<7Wt!u77aZh=zJy7X0Vi#z+v%L2}Yv(}SBL2(ZUeVaca-$@PFnrgmq;9=!>UPpw|sD_-&p+h-$UMpaOwyz z=EN_t4&$EYOW?$*<#Y&t*8{Jl^yWQ-B6uf8?Q@Bfa6(|`9j_$gPbpd|FLJoAB?iS# z)h>L%z4vJMe#OOPWsb-~{JWIWuo!JMgjW>_Q^~Oh#z_++&fj zVOu`LohiGI$58>XaIm=F?tR=SGCzNxRZBra=*{F>+k1l{g#5XOXA-VGKi=NYF+z&= zb%l=}^B>3dA$H~#baP=I5nmwt5O_kAsw)Wwuw+er%|5cU20LdZdW8dmWb16MWddtZ7w?&_=KF`gRr41?wo2kj@hyl;^%M)avIqIM0e!=}19M_f&~cMQ#Qf6w z%D!rm!td>49VdsyIXE==J8f+x&h41FxJ`={vvSa&J%o1qsaJjBG4HmTFyzu8Ae~s+ z^W7)u6c_$`>(WhZI{iQGsWo)pi6KHQ1B;{FwY}P(%h?`IEG_wO7O;rbmk?y9mwe); z;~>ptA(I3={?KTbJQzGU?cTd|98+_m<7O*xJ3P|XO$I5xL6ff=YQ%^3AQlI#P^^UF&z2Xy(-$C`w%L(Xqu$2`993sffrpe4^dB6VVLk>5j zcT|EL(2vW@4dYHeBtS}K)Z;d#mV5yt`CpTT`9Oh zM9}kUeo1&!$e>zNy>nWbJPV1%R97URz7a_u$HP3AHZAXyWJ&YHIc%b@7byPm*z>SV zqSa1P?JD!&l;+d5#QCw=V&ag~hgh4jzB!kIN4PgsOP&f92*^inKCkDRdO=Ha+($ zQCa;t(-)4A(6u2zXM&Q&5RT-0=^Z%KmW%`q*K?Td@Rz-c<-?egCKZj8=YrVOT)F zxTc``=yCAn5&VCc^<Yh*2>FwlhKkLYntJJ%z}P>2-SBFv#3X8J%l)A4deWyW znBW(`1W>8W?mzm9_*v;DjHt!%3PDvwfhB{)bRx5Ss@_s1>*nMdVjwOGLO4)6U;bEj z#f^=}|D)PR?EPEkhAGR(Is2!{UekN~&BFE4O#;Fo@8BrQfMXq%xTv0~Lm0$?r+8p& zKuzVz-s$_i@}eKqOr?DND`#!CyT)ToQXHqjnUk2kk0+Fn)8!`eYB0w__x{_E-8EL4 zKJExJ3KK?^?>2BABq`8eHOey*Y@_y=|G$VB`FIU*^q-1X)`sqx25?@Emp7s< z9OG)#emiJ(d;?#@%l;;B$*o@GkNk0!a$}cpy}y>cPW9e3|NGvI8Fv!xi_-RxvUUtP zH5t{K|uEIp%*#$F6l2wZ|^-3oN_67bMDAj zv6FVGxOgKl*zzTDx+pm7*=6?+jK;sFf6Xg8t;$$g)R=7AIyP3ia~2Kmi|+IE1J;`H z!Yug<R(tdlO|3J*~!?Z0DC3lSKkF?CP@cK|5Z7Y@T^l}#tgH(2Ax=%{pG}|KYGa$ zIuW9Ee$c11?>fJu-^}Ao>Q)%!#(TI%m2IXKXZY4+T@Pg3DcCOiQ1jF2LBmEm@q#eO znd>h~@0K#z*h26Zoe38EoLbGxLqm#hB%}-yirMq?-UgOZ|AJn_+i*IrZRpv>iXWmH z1P2F|?%Ed#mS-zeoD(iuNLz0j{{>~JWUu1R2WCx}UC?=G7#LlBOoi2D6^0xhR&5N% z3qHWI>7LzAcrK1*%hQx%338wL3-X1dsTooVR-sX4u_72*9&>)Vvfy%2~tu7wzA zlnH@m*%#|5YflaH7O%-Z9(*R4OVGU5wh&i(2PN833zMr1UA;zKr_u(4@xv6kuCMDL z>hh?_Q7LLawBX3f+KxzpZ9bY|cp3fZjsnQO9KIhFxl}0K<8wuH|CkkS6^^iz@$1UO zb!JueSC-x+%FB(EyX+D<=Wa@|isRB_yez}7=CrtIIWhgOI7%WFAo(*e&Ng93XyGi@ zqz8?9n94cBhF3l&XmWQKoYw+9xvUBjt222abpv&y z5R|UW1k@p7k0)pQ!H@^je?$qIvIj=W2MrA(U zvb2y=*Q&KW<}P2FM-Log0(%F9+*;tH)?5|}M@K{K)Bul(>e_7vfgl=b*t_B3Y_$Tt z*lj!FE%y&!?HN~(8BS3QhM0eL#v%I`Gzz;%jmtZ;)NpW`$*_%izD5epg5YjYt6x_u z4Bn{*rnQ{&xCk(VO;%-QFTEJtFBiK|8ZWaj|)p;G7`&wx8-Gk%|E2*N41 zGn6>|^hVp=1o-#QXHA&s+MUb8Xdy7yT_DYR@UqG)NY&iAoz5gp7jYry*o%_PhRCYp zA28f@GRb^)p_f;d^-&M~eJfhCVMT$@B(^5&ZlsY+{SSKRW-Di94I1eoY?r30%3iQI zS8%TuM7(GUer{9w857j>;ZVIxl=O7wrbjb)N z^)aZ*+ephlro541S4Fv_1)et3sa^Y`{@kdcjZAQ1OJ@3ZXS8NmItu1v!4kvj!xu_YwX{iY|BIX3@g_p$PfBzJTSfO zgQu#c<2Jl!$cVV^)AC~-gVtY%AD$VCf`Zl`SI1lp;IztUI)eS2j3MsHXv!&l*Z%xu zH+_M2Fmt4%tbk&f3r;pR-$gX`0@7!df$Kej>F{y^_9lA{+tejQGmFwq?1bLZ?u>{= z`YB5gQjYjLMC;xeuggE5F=*it<{i$Y;*){9*(8#VFoED1%wk=@gTMgNvo1W9uiban`-p|z!D#3G{>-He=+x<&EDZ6g=|9cAmQ z$DvWbIaN!}EhBX?Ysna(kXF1NvN71Sm|ncc8UE-Q1DbfAh7r9V_InB)J=47I;JBct zUB({a(vicInv&7Bn%U53IV0LgZF!!rC4-cL7yKY_o;FW5YFin+|9z%+Lug74Iwuz~ zyq=(Ioi4Y6TSKqRW1RAuWkQhLC!4cLlTG$(FsZ@MZMO~If-cNIWJ|Hvc=40@(yu5w z0|d9!je^&p^Jn5aRwo+nepz7EO<;pr*Bltty8X@oDtkW=vffU8bEpxIp*`7S1*2VT ziKjnk;Xrab*tNx^^kres-hKebo@>+~0$E<;%*iD&E%l~xve)F{%8A(?fm{A%OGIj4 z)w{Ug=g8DEW}XkCUYP5C(HMjB(IA|KaLuJDiWKfNXJxq$Cd$CKe|FvYdaa4M+Nq&} z6$AnqJq+)UbL|Ei4m(Az1k;)E4t4ltn1p>^%=&j`>F)FVyJ2R$=rn)%hjHn^HD;-M z-z5Cg308I7_}Mp*M5?JLK}nyZnJmlbDHyaV{r3*$$3%Cgv5xvm1n zbTyQ{>CMV+(Jf%^l6Wlf9Br^_xe{SzDLGmPzQ|#AYj3n*Y2)B7AY^k3k;m8hXw`u< z1HeZY%kU-IdE{3XET=$Ne_67cYEnx}jYUkY7#v#n146Q@fFEa9?kvwJ}51AxA}s zzMj10u9C-L?5$?B@`=fbUd0Viv%6=|4>2g@OC*;AHl_bI@g1+{<;j+As5duNGT}j| zab-jh)`Ulzk0sFUHsW_ldz<(lWuJpL6Zq<-QU{*0`V&hj>rPI{dPW|8p>JbHjF|yF z%fcx9;D+Apl+PFzZaKrt!Pw>i7covh;T@|kwI+BXikO?AqFU%*N)C<_;VIMNA;H;1!d2Ky zKATl7&Ng2pS(XPAI4$@|b$&frh)df z%G6tgT_{Sf9@#%@dHp~^izU#jEMHlxmSUb_>HdhXrQaGgk z*6-V;Ukpx@cV`*{8#Q)TKO9Q6HuE7XQDbbeHY2FYp*K2A2Sw^?()IZ*Im_U9#E#%Z zwE)6C`*KkY*1T`ve!4lg1W=3x1O4aX)4X2Jw~x#7!vJOIh$YwxC0S$XV+%r}7tf2J z@e=^yV$PGL@{&M#(#imc4}~BPUaWI#rH_}=l7f@tTu|qLcW1OCACaSd@2rBG4Fkn zFZv3X=^$6{3aphe)uiFa7z*c|?1*MDcyXOV*E?%*NiKcby!!$HRgP@S-ZQmz+UjEF zH8YIBlmgmj6TYw4xWv`{T3)kklTLPyb)I}Pl$=!@K;YC}C;q=dE2>33s3B{$x6 zu6c@Q2lXzFC(0j`@sh_vI`0Y+*W11Zv6S}e`;NRciY^bf_pI*u?a^_~q^evGDJFj~bhRTKC)MLhOB?Tj?_(NO&HJ-ncS; z#!5>g9(ZOIX90c9Ts)$-Z%TYst?hfJwtLT-n(MEh3Br^UZJ13V4k#zOJc# z?U2{!xQqh*9 zqxdRI%6z55!b3f;??yz&$Je#78ZXE_8nfwcM_O$eRdc{|S8iCsr(YCNzdXB1)cx>0Oe+E z#PrgAjFkK%!%E(SM+nWb`&C_!ZSQ4hgJbSV6xzZkIg34}U8b)p3pMWCPj{JL@CGn- z%y*<{fuQD6mM2V3uvHM4gCyKEMVQapeXNj*F8;lG2z#V#%YsW?8o=-kAI*4K`CdP{S={n8->+hz9XrQYOc#I&-i!Moh^Xd2zGej3!V1VMciZ<`r26u{5 zpSphf0=jY*)N?_}nDTFMw7F~SVfm5wA}-<~$Nffh^oK&_>^LP^ z_);2TM|d{DJ1BsaPIIX+P;YcpOz^)C7eHr%E!70*s<{4Lr3#n zf(!fly9&c=-`G=F&f4Xia~xa6`|0SM)zA|}NiJAE($Rp_x%O&nmwqy}FX$J4d*1MA z0Wk08%mp(o)T`E5x1%dz`ftyI&PP5B1F-4hx&>(_d*|anJ_9LrxLnlde|^3>=h3e* zizj`FSH3a>Qm*r$ejB5Rd6xl)pI0G3{FwgK%T_`99+A-34T(Y_-|Yg3#9s6*pH=eOz;YNh^fGx4S05B=EA6XZ zTg`A{K*R1HnN3>tPtNTsEYSP!f*k=)^lXEhZ;MJ)9+O7u!d(4W&HcUlCKpI*%FdRx zX@ec`h~2Eo%1Nl`LYxcXL%u*(zxo_8+nh>!u(_XonrLJYw7XK3(r_BdyVD=AUrl z=yM7vIix(+_d`C@E*x_PW%&DVWeL%TQCAjirOFj+Pe z3^&?LYKRF^cc1CHVj1;eSgWIxX`!v1vL7rF*xm>$tJ0TXi1#@TVsLGrtNyu(5TYj6 ztQRL!2PECq<&n3d;Y)DOIWm4pNNuvgk%SInLPMXdeHe*O(htfWl`OIA=GuHA7JD1TMD7ju4uT}IyPsgAQKNn=q&G+ZPcTaym6=;4_v}(9pbFASr zRq`faxC@#Ii`Ou#(_I~%acw`!I8Jj_i_;()ldb;o?XOtY3GrM8u68Xv zIEnB`9>LuSsfo6}WPD<2^G&GmgOT}S6-951G?dm5k~??|YhHN6u7LCaZs-SRf|JXp z($P>Rw3q(Rc;}+ED*K4uJ{$cU^yGxU_d$cP8$M}#+VwUcpE~K+a{a`QQi1e#aGg9I z$BMuFrAKNHn%ubfL`oz6yS#XyJSSq`y&bP6;uiXR4#gEBPXk(!0I@37aaEdH z%yg2&JDOM8pOWkTcl_FfUYFZga`%@cHwZ`qL~oge$vUW*Z|U6+ zRveEUaV0)N#>rXtbz6|#}<^U^IXxpk;qCRXV{vj z9G0SOK9g4pE3S}h3#dW4rAs!l_@JK~lzVFw_Pt?MUQ?(FA`=n# z7ldB)^M+%{ia#(qp1~extS7g9gd2nXy~TIPo$Jdo&(-za{Z@@a7`H_x8V5zt+D+Wj z@ZckKBa~&e(PnzR&my4KxJ25%*cc2EuN$92Xz^G>(~uga7VSEvyTOt_`hqxJ9m(M3 z+3G21N#lx9zIR9Jz?5r@BSM{0SzR;Uh>h_xpMIH**u$?~408IVJ#7j zRsHW`cUKi}yUYZ4wL(U!^B=z%Pb|v4xbWaGFOJm~ObrSep}ZXGa+u|1e)Pv)y4rB8 za0pd9pArNU@4DUqUP?!2$3TtW;09{5g;NaT3=5USZLN7{DUE$GJ46=xr_&j+`9rpS zyxwj>Jj@SaZvJsfn$4QSFdxS2wKTz_80p7l0E;}ns5F&Nb%Ax0Z$*OEiAhIMj=?&L zwPd+GTWYht}_d402H9 zNNZ49V4B739bg3QO44afbuaoKOwaOe`l&|6ua=mUbZr_eU)N4Q$!$eb^$#>ngL%y#{*^cJl#w@7`ryQH5ua^cUua=DyI96%*j}Vt-n&*0*T~>1V^0U<{ z5eKrT?#QWis(jgeSZ3H)dCT?S+EmF?Io5dre;(`G{SRZeUuUs90_Nc|(S`XMBykM9U@dVT2+19+yLWM%AaT_P?_tOK&kBFY#8j{a~diG-x!`e{YDemNUy->$U9Fb zT2tPv`(2REH8bdsQ>t1rPoCPeerz?hIlmiMocVQcZQw%x2wF;>U8{49H`oQ8;I6)R zHwRj}FU2NuA!k2xZykNJ4LdQW>G+V_nzxHgKK3kM{zI-agSspLk__)f{@Stv<(x6n zXCj0PUq$_#oa{b_3=8cZ=xm69M?#Da)u&eu!Kn{cOjEMh()zq7+Q`lGgFh=oYx){X z0wt43lETyPT~+FHSgIb(@}#;vc8+5d&UgCL=CKK@=<;+!l$pki31-$4zS&JYPiiq-V*fQCMvMZ`D`%$^mh)}Yy`*YzFmI({m#7t zqrk5=m0TZhBVHMOe@f@^*}2%CV3TweWOg22bHw@=^f8$06j-v3S+IxQoJi&9X+~&V z)R<-Oq?9W@xg!wYU1!Vq3C`SMj>pg!pjkV`wUf401vLZx`?PHqnlor}4Udh!lpfFQ>mNV4RW^LB$XhFahy&m- z^2x1N=i&eb5T`coAYpyg-C9IYu-isvPjLL(n1D9gO`|w}dygZux`th`InQfp^>|@5 z)aBsQn73Y6Wn7*19E4@rkzahxwTQ!Aar`;Xkd~IQPfo+ukeM6d7%43H15CVaa9Zm6 z0<0@$h0G>G-}!(>3VrHf5uY|M9N8K5srf@tuv|VP<90wjEFd)%-RgOS38v|h!M$~H z5p@DMZ;zK{vz!m^Kkgic@#`BT)piQyB{#-NHc4U_+&4P>cGjSdOZdBaJseo{{cFK+ zhn|@Xp|;-K%}>jg%(4y}q=l~3sP=Y(1Z_3RE+lzMv$PKT`q8o{z_Ykx{l6i z9+~NQ%c&0*s+C$aS)#RKB??zBa0DK!hR(S`q5WQD3p?G;nk7X<)uzL&7v!2eGwtiL$rY7bK5tZj(%f%p^V1 zJ9&Ngi_3i2LJp4m9sP}_+1bt9VsUPh%_xNyZ9ww8lE}lRB3v^ZovVIgw2-~F(%}P! zFVpYg85hW^Lsox5tMHx*yVjY1TiIKf2*XRWu}Qhrtd+L3P9NFb`X9F5JD%+Nf4oSiBThh2(=r;CU&2Ef6w#h z^Uvq6ysoTsuIpUqyhlb?&$=E?#$qnG-An<6w>YK*^KR9*Rk&@4d30 z2ep=^6elA*m7V;3jHajskb{a$WRc%UXZ>LyvZtP+(Z5GP(q|=RILSJnGq_o7#Cz8u zw=`Otq|&H3#x6LFDekR`%f+nwQuycDCXbZt-r2k~*<$Ahq}tz5bo$_A=wX0@bhm|y zX+Zn7)Lp49J!1G-zHYR6GaKsT%IHmBWy2!esLShG%~-k1*F-DK$Vb2Oaq9+$Jw+YJ z&;Y{rUZ^d>v&IS|Cr)UBj~S)O4S+nA&ZJ$l&dOACl@*RQVlL|BF1W3gGuHXt*C12J z0eKlM;A7P4w|$7ffXqgTy{8~waZPPftaDVNw@#_=;4ojqJ^Gs9g1RkCd^04YZsFbt z7_rYXofHF5o@^=PtHiNtYO9*p)bzs_d7>Q=HKJMtaSHQVyAqBEOQ=%CXQ}z@LbFCe zC%<~Bv2kHJx|vu!Lb*8sDpigpn#wArxqq~s3tdBCDW!(OIe zW~}BgSH@W=>8&gX7I0CzI?M(nKo19VDlhj}!2RA&XO7G9x9~H;mPZm*qPrOb$CJ*xuG&UM4Zjvud?TQi0H};j~L2H zTede(XLyrus!{*XP`e8k$`I^Vg%F=wRjd;n%y{LdJ8K{>NY>@DQ+H^L$_H@; zFXFQjIGyrxLG6jd?HVU4`c$};Yg}yeqhTV$wjSVV+AP#muO{vLxxRfMKC1W00&0mQ zl{<2LNgwbznxLFSka5Qyzjr-;kQ_go6YV0ey$lodNG;|2gNfRIJ99K5C2nHdvXQ{e zC9t`voU-nS)7@y1bPYI@8NJKod&XS2MNBb_D#UVZDUz5x> ztbGVA8YtBlNw+GTZD zR1H1N$Y{cHwI~AT2+;y4H$^TXs#c|ziH0w3dgw6pv8tc+xV_+mBZ6wji1oG<1wgB6 zcxHEJi{KT|hhPgxX9ubkCGXqt6`C8x6`Rz4j<+68d|D!1qeGl8)8=|l`wj)Hq81*H<{+taTZ=g2Hj*|8t%GMQl9I_X7+ zFR_pi&kyy(WFPfAwj9Oot)oA;CL%<4aC!RqABr-O<*` zRB5yAR6g$pvr=xWR=<8xu#irflV+8uG6!?TFxg0}8&U4<8rQWlZ`79k9zrGA$%rVq zxUg{rH3*;OG^V=j4I5&V<+Ret%-YiMS)$^Z3~MKph^wVWGa6 zqZ~Sq-tWm^Q3ezL0mIdKPW}XLH@8V(e`aaun;@@`mk08)vM%q4zJaDPuoM#7vwKZ( zlG*}ujyLpPtw;p7s3_@YL{QmMDs~-*M(c@VA)DmEI8|YxOA_QBx%q2foIPZlA$Log z9-Ag8y#N=AF4h>ZRJ}ewg@Z0FQbN@N@4ArZMt;mHMPdDkBCmyog*<>C?4UyK2&Th0 zJEp2uXZKBVj)mOI}`32i(yvpqmOyzTB%LrCRaV&w-J$*+y8 z@Zvcu_UZdn4Hfm2E9U|e`XPG$ll-iU!&cTgbw=UA5{9IZ)ZlnUWuNFE>(dM7O!r-; zZTzCC7HE_cWA%+$?3$aqDXtyHqAPFV7>r9Qz1V<;$%_Ep%<|$7kC<`O>Kn(~{iQl&~@ot8h0y7z+}%1*O%r9nv?9 zPu$w4QnN=csmZl+Wtt*xG^9aylFuBt`a2n334w;!t@F6P>I2yB=9Jg1sD zb=!f^(DBIlEvg>9A=+`ju6;_XG_+Jq_Oewa<1q3s%{?k*=-B6S?B+d{VQmBAhsn(K>xH!0!MzBS7~ zXKWBeY1+0&?io)9^3ss$qjq2NaE1_x_xcUe((7sD zK4Vnm$Y_;lK-RGiIS=1N;Ugl|kLCtZK_snLGWO6(Wwg7_VoI|BphJT{z3!2UBfZb+ zC?}7o*x+2?hWtE&Xx)CV=$*Eyq{y;41_B-J=zNsB#M|4-Rh)-$Vb?RqyXdz(qyDrp zoA*$6hE;vQNV`NuO1jFD^Nc}Usa*3bGV{$Xgg6JiCg{ViIKP*%CXqgzv-}gy4NI#l zv~~adp(-@rrJa8D9YND*`svM!s;^S77o>!5>%1scqUlkM`W`cW7^b6UOmipZfzgXn zns@&_7Kph{wJJ8h_U6TvmtO^pU#Jy*dc%Js9_Ny|L?dSrPoaT zPV|d6)KNiU=rN!^bQ^STy|j9yymzLoPwG29ZZki8-69K|I>iS15+L4l2s;id)@w>|xwK$Y$yOoeVwfq}T}1x=PG zA5i_UxAFDjtdTLN3+TTz{pB+`Fg=4#B2S2iaW$1=>|wGSZ-7_#%Di9?lsPzcJPe%8 z1Y@v-04CQD!srlkwCA9wsKO-i405kl+fZJ^MO8B(3K6Om0!3XA&Zf7Vdj{j){1zNt zt?X|XYk!Cu$KmvVN+H%g!qO*o6|?)icaMGx&3`N7@IG__L(2wp$CeQrIhM$ z9PQ;8K^5dJmtss*dc6uFQqb;x0u;Jy*@%Lara7XGJ;vUJS3{Dt`zMt#_~XHmlSE<} zr(XILs!By3>$v`xW^`zzRn`?e{}Ef~D8ytJpJXRE{LCY+RA5*#45DzhRTVbcCdiUT z_Hq2M%8#A8klP$NY2379vRomdOxJ}@%y6H_)env8y$VClAwv_5b?0MKXoZM)kX zZR3d<-UAsKQFWpOYyt1xIiLJyD9=Rcrt;&Bb=Y@`W4Ld#kC?XNCk2coTr#WVH@&bD}21!_bd}7I)Lpnt6~;I$ChJJ#klg?|0Y~w z29LkE&LIW|L-|Wi`Ke4pMcGU0mefO(XrC87R4wOPT3il(c?uwMU}p_ykLDKA32|gg zWL-)N=8s24vjALoooLa^Cpo-@sder7Uj9Cqf2(G8OGmM0VHPh{2exd!y-@DcyOawB zfU*RI)X(M`BZhDY55|u2T4zfsSJWkD%hH!?Ty%KYs%UGKD(Xj8F!c+X8XcVd_j8Q+D5s;vq7ZH^pm-60qqqJ>4TcqTE=B^Tb!!Z z?dUn0euw(IZY^S5n7w|?Al($G#_6I{=(B|KU#DW0Xper)^z1wsSOO#=B_>ltLPbYK zPSm;1HpDs%Ve5Z3Lmq@}5Ag~P2=dDdl)%KqqV_QFPC&n?q-FvY7AEd>kl%(s4?T%Y zq1I;Nm!;TK+!y59#oNtX<)PZI?b2>fw8kW3+Zo5^!`hhK;7;*=nJXhGv%J*kg+t=- z@IqqU^7NGG6e17OU5ujIe7I^jt1NoN3qC&P6k1a84}|CXul!bg?R>hH)JEvv%3I@l z+h>aoL))S$g`^dpN-snd%HOb?YFt@_Jr zbUP77Eml5U(3i9yyAaxU+%I@S+d|3`KLm4Ss?@n0DmJMuh7LwkeY?gZ2gsp@pz_P) z(1luRvC`3XP#{cwZ7r;LnoAQK7~1k3DZWiV%jC7yJ1n*#XdBSrED=9rnTHZoxqZ-d zI=zl;Mn+{GD>Y6t&P%8=PbtnL%V!n&`z@N_AcXIndX_du%#=W}Rx9b5h$qje{@0S|_$G!Z$;*EA4w%Yp17hk~X#$MuBA^q})gSosiD4P4>ZFH!}^j?;AlwduoqR(eNe@wb>?!{*AJaZ zaL}MLomNaf2_k87-jO-(8w#uRs>)W$Y`}r0`*K&7QQMBa&(}2Vk@96auqH| z!VB%W^*Fq#SK)tOktf&Eis~y7n&V}i^p{59QV&E4B1+0yDvviU&n2jz=V5CC?tekC z#S?(1Uyh+ozet4IG8e954jpLG_-U&jrCjGSuujE|X>akw$_i5+68UgpewB;vEF`r0 zls^A|K%VWT{o2uXZr_ZFdwqz@Z_1rV>KkZiKiW~DyIhbzQ88XS2{!pyTO~C(=TGcL zw`Q&iQ(N~q#39K3G_grWx4h-dg$Ml8d5dnzUJ+2NWmG9>iKc&R{WLK}XGk=2mCNBE z7XPTb?a@IX6m@XcM#;x*Y4y>saiDehAn9oYF}?A1sDO3&p-$*AXgppY`EcNaV)FPP9Dqj z$mscJkP_AiUW$<@eiyqre&jNdgpO>s#a1b}*XmFTpHf9k_DB-u`>eq_lVDDM`m1%p zlBaNCJn&-PoN2QPCh;S8jlVMivI(x(ALZXrocC=%#;uj*73|d$@!=_TQ%zoy5WY$7-7G76)-j#aBwN{3-j1qAzgc(haH6 z4{R2NQ8&}+n%UHEwX^88nJ>7P8iKtmawfz4WoVzJp`g~I@dg#qg@$%t$Wk5I55+OE zuCWmwZ)56LGeG3pvt!g0R57r~f-jCol}HDBnGMcaa1pyyjuuc9J}?3A>6p}1iKdWN zhZLdOE6>-^625CaR*oeuEwwz4vAN#0f4*f<;;JplHO zsBfqO#$}b1Gg`&4XpB|)F89=LgHZ;jfqf$DKOZ2)$;#NVtyWrZh zTF2LZjTF(vA!5}dLp0m7TsNy2Xm27hJP4Xc4@S=^X;SY(^eT>Bm50J4>dBw*Yf93~ z4Sb;(j`d6+e5&7Ludy!Wp0Mr{i^5RFcs{d?qrqzrM7PGP(uP%s)fr@t8YEzRQhuyvl1<=b;!0vsu7mKZ0kI8LJAM2M%Wj$pr_ zouk>TO8q+**t$KJ-4p8v1%|6dqy@u`=^7rU+EfDU!?26%E6Qa)h3Uq$2xeqmW-Xz5 zW__SP72etXp?F(0FwAAK|Ex}G@q0T$f)gx0NL*>bj5O`-F|CC9B3J`VWob*teaUE- zQmq=T%K_-GQz$HEH*$dBO2}=V%B6yWxVJnnagc**qcOKGARJXw_8a=60byDn6br-ngb&&m^YQ zsc2U^__Fo^t;>db&|q6etG48{6xA#k`*=hD7r7zK^H85YgQ_^hLCqqUmCZ}rgb=Z} z+i20VF@&##wv)dgUqM6nfv*e2ewj3*Eax3k7R=DItvokLcJvJNwLr1SPQU|x<-RAx zC2t^?ctJ)7thn}3mM+WFx_Yl%WjDK{tx-ZA#_P4&I(D^~Zc*t)<6Ob@J*-$q` zU;##?r?NOcT(DC+B^N}L8!-`OJJZaV*Eod=&xi*>g$9kED0q0}KJ?kGTDCsOY`m;K zM5k+Ep;vAVQgW`5g!jNsPd8P z%Au={+>wOqRG*gJ42s2E3+JuQ`&iXr4O+OPTBb}w`cgRxHERTvVqISku>k@Lc;p=> zZr<)ysDnj5S_QhJ{MMbVag ze{)}8D4{!TrQtPQ^b5oF>c=8dqCBqLVfTMl2*9`tJ+3+^ba%H*eC&Gb`Le8Ydm4=q5IS zbx{R$8kE_+|3)rK04XL(yumeubo8OI^d5@LTjH^%fniFM7@lh1v9U9#=HF*%sfx?Ol&-*;sN~HSs3ow79((FH!?7z9gS|@H1C_2x`YfX5wQ|` z)r6AlVjsjU+45-N8pQ9m4WNW%&v#0>&(V6yw4ZQOQc5*kNN+qujMyUpnBunv5AyoX zwCapv&pLv&d{3E7mF%gkBeR|La~G~3BS#b7mlVf8yBB?P)}ymtaVX5dku&lXPRKDp zF`e|zGQ2OS6&8D$Wp+1Dj++lE zPlRAD-X?JO{iVqycxo3s+ucMLjFM`P%elyv8L%^A=EsE#htsUcyGadgR?eHmel)Tg zn3AFu1ON|}sux*sj{pn!cu@5!VmCegG|pzx|IPZf7UT@ZH%$Yeq67*zL8olOhEp;q zA+^L*g3eOLVn0XG8g|H!Q4Hj;Bj@D(wCyvA_s}>jJ)fF2r0(@hk;>UHhz%ZKdl;vN z5&cV3t7-t5agQ*GeHcm-UFztEww&UBdnRD4%bV+gvH@H7wu1&v-~^d1@XF4>W{!b= zOjrmDoLa%Sm?f}_23mMYZh#An(G=U6YI2SqX>UsI0%%ge!?~icx+V@?Y3`pibTieT zrt19M)BN9i9@~SgsD^+S+td*kRf+xbb||v^=jFcJ$a!I;@J2aKFQMRMNo%)EhC38m z55ZW6iXZY&^YJo~wat(7tlhpEzNT{IbI@WZJnm_b7-rWgtf$2p;{vzqwi!MXb(50! zLu;{>4uH)Mf9N(XENjTZ)v>XW0L(p~5(^Xg&5f~32c;I5&AEJ@NX>v#@}ZP> z{igExGF)3s%FK7cL9g|^$1=(LQY0z+P`a;6)Dl%6B4_jClz8}>{^2l3{GN8N5+hpM z{}|6Z&ZuraixBJ|&&|_Ow)Rqzx|sZ#U_lVaiJeYER*5qd-dN?{{eeMJU$3*DeXnsE zvbZnoV?3c&$BSJa-vC{EG%{LBWI=Vw zn6h)&m?tVJi;Wx-)-|Rh+25>nNfH~=npX(%glJxEpR@XmqYJ`RvsalWXuT^M_p>;xCVgI*-mG*SK8szzKs^zwy{COVz=AM$)8cpMF({r8@E z{0m>2IdL^V=5@m(wLVT@Sw&zH33Z-hW z@#`$LwhEJVX5H>9F1qDX*l{wKxk?F`4I(p*f?R6QJ!NbSR27X?$rQU=6b`@&5YQaYx_!wemWRnG9*`sA?*lz> zR{gx0pQZ}P#*nEu$3(ASwQarC$TSQDRWGptN>9{};TV<;;wq)leG_kMm?{W_HyuEEVR380cmrgq6B=7%{N!LBW=7s?)oopDegf z*gdag$vFT}1N6|3iES1%U}}unWf2WPNu@`Zz58)6dir@D9y+Isr(W`wLyrbShE#VG zm-Wu5eOc9^uG}^G0WYeXAR#pe23{w)lJ2iaZrV~%0k(F8-tKu6dytF7JB00|_3^6* zRy-`dPQ2?93YDt2F7=XHb{F|Vb8^rSbPefiJxU3CGA$%@hw2nGSD+0upaN!#V880j zqIOyIt!9FTEzdMVC}mh@8DGqX)Z=dN1SLrSjLs;;`W>*_3z==1>07pek9M4GE2Uhn zxD8uE)@b`V`?gMMl#zy4hNaA;1X{IFN*8ozu$N>J96fJ4qdD$c2`_e=EI)YAM&tp5(5 ztQmqenC2`2AQ<{B`FRuYpaK94>uzaQHC8FwdSFIDe~~THi??hd%M`?-eobc|BD!~w zo11;&c7)v)B-*fLML5MXw^Rr@o99ee0zK+z2_Zob)J}QC)j5~8Sb8)R%dG4e-}Hc5 zl68_P338FeI8|8%a=)S9)7jGMQhu0Qym^HKh<}(!Vb`5reZNBN8Gt!o#3rLW0G;nV zk|$1g-yC%7EKiQFXGH?J04k-O_*8VHcqw1ia&GhGxE?4Pdj<~W58d(&n)CCSqvXx) zVOrLf9f|Q!#}r>b3;lQnLizU%3w8fEd5e9BqX-({N#PuI_C3nOOSvI@4rfuZNxt3o zLWcFGE00_5y1<*`;Jy}eSrMXy;Ca~qLNgj7ZyAr(>Yb?HwrUqB9}rtgliqo1$P?B1 zf9vIdy!`k^A->2w0(CuKYrvELTaUNgIIUS-_O(o@W2VJsqleV3SwG^wU#b{{kYKvt zIp%>7LF2`n%3%h6yh7pzRb&6Rp3<=S5oC2sG#L`8v6Av>c|%|dEuf*7N+~LMi>b)K zTY6oWv1rxfz!p${39Bz*=txmP506yai{uzxYHfg>wv15!vIc!@xD8@IiVcBdTV@uhv%(#BaxL)ti1S|438eJTy&4whUWH}k8L##5=v)5Lt zUbSUEhI7kBxFIK3O)~;1C2&Rk(Am6l&PedeyoZN#YPq$5Dx_TiL~I|nvNUh@_ghGc z3|W=YMOpe)54_6-6&W}c`;UkLE2DQdmoK!p&*S_O{hFlms=OO(wMA>+7EKf&GUKIB z6sV3!?9FGPzJ7W{n^&-LI~d)p z=}kpZSj{fz#gTwb+r2R{8CESg<`SqKODB|^yM}cXZ$0aidb}zIyl7fp0$R(uT4UQ4 zy<%4c2EfuAPhF~mo>UT?R_%+Cj$3RYR-WG_A&Vcneq(GsQPP*sE$kcB`cmO#{9Wx$ zl)p64ExBzj*}y?e0{$&ru|DoY>(e4UpmFW-2G>m&NbA0c@7WSYWF{VFdAS0?HC1#z z7;I+32p{qE7DiJrFDQ+tUq=2fjv@!d*kLx$TNN}n0-dAoQ+ooXKc2!o{y4LwJutVv!uz7=O=S%1s;y8o ztMfw|T1jZOJ?PDyq!+aRU8VAGXlVYWy{-Mt`X#r$yWEqMJ59eTVy@}lNsd5>Tzw%( zVSM}C%X_%>3cuw zM#o>Pp!8=V${dI*Jp+$>JVe3i;&0{f+!J|vBMQ}(0<@oKuAornd1rH00sFj7kh-j{ zQL~xqSMeJ>VVlrm{h>gDa&)->iT{U2r}ug8+g6wKT=-BR_KU(KFz|Jbwu0BHx0lO` z=!2H~lWT>eCG9_Njc0tnZJ|s<0$Vz0EF`g+n)pnHA&Tm` zTL8P2i}|zXPc{<@hAnamY+bzncnA@pM{JjDa#S-5+oAu3*3D%zN<1H_e4L`8>yDa{*H_ql0p79aQuJN?$zuAMjJ?kC|74 zU%71>qa{O$$QDm_l%|VTxPwX#9u9*!#hfyr+Eg4INIhGG3hovOwYY1WB z&Sx_?goj;u#`x zx}Cu;5zg}9BsA=Hs9S3?cY&MJ4HwgLc>#4(eKk`DVAsb@Cs2LOa{o+KwUJ3}SvIHT zku87Ms9xiYlnPrw@MrrO&j!D$MH2((v;)&J9)v2>T4mI(_@n0E^PL!BStDH;!~thh z<68$#*SC7SMGQ1F_p0?H{trPdnprmU=Eugud+l|@^sn+3Q@*8=bC$tTJ-um_iI%nG z*GBxVadtSj3*&q6F z45i-ci%T9odkS4)dtv`Q<<{oqj{e4sdW`+dYkgNPy00pv>ycQJReh@q_+38L zq1-jj@7m07XMQm+7AHhynMv6v0d;|Ezy1?Y*R}{Zf9b^sxcZ+RAA?7+(7)ekXun#p zCNtf+^3Z~j*W!lfyDRSsUtH1DXXJH)>iK$?-wTUt5kXvit#BLrd9qawlpbw%@8A3C zufP6hne*XMd)2~^^n$x@1~H;ki4#C_${>{X*)n3WIG!tE;4CQ=$2KGNAu;+zi z8K$;5-7>obn5MjM^@)A*vX_rLMc5;LP0hEKUixA< z_^0XfTcgRvg~E zZ|tw(U2%~vP2tEn@1obha*f0{_wL^(zT?u^q*e6j%-1Kk`yDj&5K#9I4uuCXHj9BT zR6OQ0C*hD-Y`ntK#MnWBK3wW~&~Ue!^-9RRThmrY7x`$1N}lBUc9(EGPDMoXHU+DO!r$D#^7;AM z4~q2{#IUk?Lt;xxoaNF472}{33_CtRA39|nD%ULp{!m&A`YnJ-#pt%1&!H|7+OvjMiPGiR`8VBsYT@aE=i(F2EE(BD#{C)MFaJa)*kNy}8NH(( zXA?YcN^I@NzK_H+Y&okRx5SHa-df%2NS?n=3DluAhj|F97rz^9HU#biQ;MTBKC%Dk zcUJg3)fHyac0+`u$7W!4iIe=(Y?I}=zu0ox+yHm%8u8zoj468FsU7{M$myF}X(1yj z^7>>|)ii$u3|snR@qj1EAmP-SuBWXjv zXcf*8z~+@{8vfz%3d8eQ4LYk^3TXAH-u;@I2yqn-A3PSBK>t?!A+0%RYfoCwe7d`J z?p5_nNWtKNQu0LV$3NikHx(a~pH%%}Bz>d_R366eqE`B1tvX}*a=;t{&%o$5 z{Q*EPCIooeHmm=-N0nJ&liixN$tEV;k%r2fZje7^jvDAzX6ko%R@Y_G5HSsHG?}zu z&re(WagSsEw8Up(fBRSt0G97K-UVfi@pk@NUhPe_!i8RKLq4hUHh6Xy$WDWW;6CIw zV|4EKRG+%pmmuR+6aLaX4ceN=Y?015_Nkc=bk^R!{`JyUCBtauB(FWNe>UXLG7ma}wC>mhpc=v?p*ZarQQ!FP)j-2(nWjw>s*uMFo1XU6C;SRMWZ2!T| zXTFEBDeBx*YoR=Ye&F^9+tr|k9}I|0ZFXKM*Xk>ugjyAuR6NksM}2yvk30GLAPgJcAucwEWeAP zx$5_in6(y^*2-shVf<-=P9hz-{XdoB5hV;_K|K0~d~lLM=PX$8gI0}_kYDw202n07 z`pV#W=Y928wYN4Z`ApfopZ&qcwfkdIxvnmfRDy;f>$-e-{?Ops9)Ct&cnDq_?7l$x zXqL{$?o>W`;Rs;3eoK^PqGAZ5kYpXCz7^XX2YH{oHQ|5byH8K+Uby06&Z=m?)MTp@GAU(|%x zer8RtYV}V-;ND0}w#j%Wu*0#}(u}A*Z%3vqun1ThGm#jA9tLEYhgNvMJZf2M2C$?VYnY(v^}#bR>U_>&1m;O&@Yj~UUaq~07$g(n+ z;76xlgnzXTfGx$B-HhHSta$wpPB39Q!{Fi#jN6!+j$-V^$J7+xuZtUt< zKu0v<=d$*@M%wkOq}ba)De-=f_Yt0AlCfoNi91{x{NmSi9>xYq3#OY9bP^xd$$YSY zp4>3!>F^SkY7PB2>!m8weFGK`O!XUnP zfqRXz^|^Hbzq8Lr^4i_1LN$MlmXEXMTQ>|J(9m3=@sO>V_%X{P*eQggbkv5oYb$Qd zOP|VtH+ow8#IK`|CPRpRW$x>-IO*!(ILf%I`67m|VdbY&xn>UsEAakmmz3}?$%EiT zsyQHPovJy>QEP{?JWVVvkT|4Ks-+H7nh1wF2b?u1adDTZpdCu9^T6%PdRosfz#^g6 z7wcdHjDj$#I)3a0=Jb&7M)JY`*LVmm}}h8;aQ-r-1T~;I^5G4DMxN{*6WN zXpc;rv`TSZ7%@CtSF zD^J)a+palSR^fD_AAg9grGdY#jn7G72V?2^j7`kFpgYp(9%)PVuhW8`_J?6{CdQ zs7dB`Z{pRIZ>SzV1AYl_hB|c)v3f@v{Hglc>>(?t0l-W`g*iEOX84BqAD?zUYjx6w zR%sNn@+4lX)XvI+2$hhfyNns5J6k{X+Y$i9`VU1EIm8N*dPqVkCW2`N{|F}rPcEH# zDe7QpnTZ4-&k~ucQBeWcA`4O<$BsEF=|p)V`eO^Ez*h&KcRXuS^FlDY-Air~2?P zYB^&pQ0g-IFAcRMeHt`3k2!#b^abr<-gBvJ@B8z{(-?cb#)$?^U0bKZ4D*nc=LtnnXDsB%W3J=xc>3J#B`Er}`Rsmj#cyhR~X@LC=%R5PV9w4*`9XOGk4I zUS!v`X2Hk*aMECHu=+!(%G{^wuM3;PlHWh*s&I}~@%{*tpaw~p0P00WT7pZIS%VB6 zAtlS_)dXAZf9KRM^kAi8a3u2AnHN%o{2c%(70DMqQSA)6AY1@>B7cqI4^Hx}_XiI? z+5Y^ANOSup{IdpkmY^VYTI<&YmM3zK#Ij4rV_|te`6F?OzPcSA~8%^l1)I z40^qms`8~L^?^3v#S_BX%P(RP_!3BA^(x!dIcA$3`Z*+-umPJd@yZ zS-Zju46q~RR;qH}`US%Q)6-1Pm1_hAIUcN#)*d!yQ8Lqnki2MYG3#^YfBOl(2ZWY@ zSPOP3I5)0p?A2R*hUGRU5|Ub)t*bJ2vc2B?P}H{4N$srZO8jT#StFpOO3RtmHRxkx zPs>TBuOaN~+al^-!N~jVxE)1^E`Kg_{Z(O)s=3h}xyA=q0FnRP|8D%O3j6uCam9U_ zR?~1MnrqsPSJ{3eguQ?@R-Qrm#+X`sCwf>lzmW4C;p5HLK)6~z%X6aQrIsYwvp-MmfU@t(e z+hh#VxjZjfk5xSEO9l1lK5*eQ9A6mD7s-Y3svW+Wv$_!ZieQ01;IoLbH~m@pN7tPX zKx^2rQ0bZJyVwLO=LC>n-#p`rUuhJqNqhGz?ASzzl9 zlyl#mmdgmQSo=w*DCYoh&5g`~d9jtA;HE3|53@_x#f(@Cri+W!-?pG#ZR-db(Zf6B z8URM-AR<3mOCLJMJv{m6 z)a_MZ{Z)+cl&d!fpdAq+8S$|YfcWgYI1_9Ci(Z&{J}ZV=;Ah0oolV}>8~$gsN-;5d z3pa5*y^r#fTC8PFN`juZ)C>*e(z_bbGXaYm(aCaqX3e@M`fBG~ck+RKAl#}v6iO`6 zj9xfkF$@1G*m3wuyDk~`{8(yLr8U5Eg^D_TR*?Fl3!rG%J%n6>-fl6_&Mx+zmR=Zf z$evSbHQk?LO=rvJ-hY2sWJMp+hI1^S&p}l}cUL(r`ET-bTFbs4Kjduc-r2K{eFN8p z8i{x{&ELEIY~ocCM6BX#{S;X4bjT*I7z?|2{R^7IGQ}#pGU`lln{e>B{V1bi`s}XQ zLF)b^1Y->>@%x@D*;H=tXq_}SdmP!&G3EaKTUw5jc53QLLq~7}1f&Cu8IPDB5Wh;- zq+;M7@^5ED9b}e$_0)#ZT&v~jSFND=R&<)ZbvmE$MYmAS?m+{|=KvZsBAzkzKQ(iD zVcUxhBY3miaelSZ*by6jfc8Lm90KR$1eyUBV^Ng_(oktXzBbXW+20?2I}$efvNPf= zOESLi08`An+tM*AP8699{hbkf)NOl}>N4*@utetF7|$ z#+DgjTb!MPz3@%7?U(DPfII$h{g9eL{pg*OGbpk)bN`-RUthCZ6L_YXsdQVsO=R9> zh=mGzH{{YkFA!r|?57y`n7Ml15JZJ7%I*8|Kcd%*S>???x=xT<*QpX%F%L&Lux)8G6*V{7+F@HQ zyRODUTIZj|rI!x8v9TQzLF)mC^4SUO<%5-Mw_P+kyXhtZKB@!y@#IBg9yjaY64PFd zr%$UIU9z}MabE0V8mF-qDzxOCfHiqa&1v%Cf1w*^&;7cov)5s%UinKD1I@{M(et^!#P`n9e8T&lxLAicWCO5-c#ci$QdN`QgXvC9HJ+o`x-3 zmaU=7=Q5`KN3k_wUFOaT#??>0aYx?rQOLBI?vmf*Ci)*@T=gT z|GX%v(NJkHxGjlf^F#}g3c;PGN~p9(FYiw1eJfr|-NKaHt&6jO8_D<6?X*4`n{x|f ze7ltrXHO}h&Q58po19$7K9Dq}eLIN6BrZdMja z2fQ}KO33S|S(yuz{(G z9at@)*X=@WVKbPW;uxP1`cOAofblF1K0CRaAA37P3V!vQ@1c3Rvf+7FHul$lW?GeY z@K$uBV>Z5PCz(KVVw#6?&?X73zVp#}$#WGe$X(k6_YDz!rs_%a&ZFJb52d>A4mmRb zkBODNutce}ybUq>KuZHetX^>FYJOXW>+pwU0`ZFz4aUkBx z8E*7B*egy#VM8i6z%{69=lti4iiy8?_sxOY>&KrTH9%&qR+m`%0D=m<8x?%+dzhX% zg2QaN9V_gFVNAzNd=h$aNJZW(a&lbE;Cq6wYk>)rf|d{37iS67At9sko70wq$-1bZ zJT%|r;NGZj(eyZ7NJ)S|e%c|gWwD`!bVtVR^}zh$t)J$k&cRUh!p+|Nl&+a|XxsYU z(V=2~B61G@i)@L2&NMq!c3M=5>Zho1IrA$?1{Lj`1utXGsGm0Es^FKEkO|gjr{e`)%Qy1h^c501wNK8ojbSH5`2NTK$id*?3;mgs^s%~D#fG0oC z#rP;q5?s8*?Vp>rzIIz_n~+}_zlnuXy=VX5=N;?+3BGu4ras}6OpmHt;qze47($Pu z?UJlS_;qxalE-0Ve`#JGDqySvsMKTx;n2Spv0xq3(tl^?2|V?!&0IKy zUL2!h{WIVQs-~piOseC}PJ?35=fwi5c6&baiJRu{x0x!IqsO%W-}57Z46mQ_8?pRe zoKoA`WKw0CR@gl4YWKU_soD~kD7u{nOl<14ent%~kb8e*uF|CWrVhvT9>@0_Sw7l1MC{i;<__34CH0J=2mE~KiaB`FtMNE$c<~_ zYibw)lnt@k;cz+F{9992#}CXIqiU|X(3v`?N`myS|J-0#I$Dw0(y;RWkd0ur|06kR zoQC*KTLrJ$pfIvA7nP7WZ`d^3_+ztSV&<7jiRR3AJ130b0>4-n6g1*Z{Nu#jM}x)m zfv$7xi~WB-7$00yxFc?_t{cMTo*I5$YLOxwcJiXriI zAQI9!LxX^{3?0%)w{%N)Nemsz5W*1B!Vr?u-SxQ#Ki}{D-FyFlyPtW^oU>1@bIx9C z$6EV+C$_9RF_g^BnQq^AbrkGcNpwG3%LN`KL~vUwmz@btp;V)??a57465`ZX zB0KfqGzw_XI&CmME@$AP&EZ?UQA{Biv#HS40g&LZQZ1M>N;L`)A5B_6=NEV+b9B#_ ziwr0?4At=Tq(Sf7uW~7#szJ5j_-uQ5GJMAyKLXIRo~uvwJk7G(#kie=K>Uxu>hW$N z^prO76k)WdR9N65(@U9Q9vOKOkU+!iOIs5h?pCP1^`c!w?hUp|sH8auKR~gIt(oB3 zipzhvvSV7a3U3ok)SOtLt}R4bhJrsFG2~fJP zwd48M+!CZLt6loNK|5LqdEK)pnqo1ttGw7!>?yIq$m@mr?LIjTzX;8Cw@JVJvwG?7 zi*ML zDL%7}wtQLPy~5^qAsXlHUs!ulKnwWK_=R*Wa|gzx`E3*X0vUqcFa8;S;mgpgK^^ zvo)_@?ydjIo=1V6W9YjPj}Cv`xtOK#mh$5RT^LZ?gUo zNWaU=ZjX<<;^vjIft*q&`NgDso@tZYc8+HxY!3e9gRk@h*gG_^5tLH%RBPgvi6 zk1LZ2lTQ&aY8YR4bwIvqEkBFP1e04R2r}wwXs$*Q4)&W!JlEdMiEnEtG5?uE(9NhR z;?1hiJYSZ;`KW6}@0BcG9l(cxFC8nz$(qI!!K=Fdgu@1t&!6m_jkv|!&utBk(d@8P zgNk%-yfTRGGGMlR06#=A4Ew`bbhu#i-+)!B%T}amYiU^T+7DL2H9VX>7>~%qYU)hj|Vgh6=r79Y0lO zi?#sVc4-}cQ_l=U(+!DKKJ9n>ZNOXoi1W}7hp(gIgY1Gd=dyfo_|b_1+wrSV1$0j} zk};Wg!-hhfDg-A2F0ou6GT#Kc^RF5{%Ukz+#Y??2@VWEJ;VU1;G0z$5C8YYMu@>7O zRs=wZH2>?g$Mx{mlKbn4)fYn!gO=tCi7(rp++O3~IpEt09jiXbbpYH<6p`+X9E%QohP59nb$Hm^OtgzyHEkBms zFWzUIYh;OBhV3sba030+^7Tv6WLd*aqyDBpPOw_Lsmd)MwhC!eT0C!^#O*Tn0Nd?{ zBQeo(kKL08V&{8&QV}reeJ?cY}~TW2c|yYH&yAGuY%R>4;whD0TlSslNM zTeDAz4PD2hVT|9Ysi00@~rTvObZNk@NlXOA)oBh7Iq^7sEWY_R}(|CMT}G zFByl5d9zxNo^n%Ecp5$BbQ&D)*jt@<&V<9@;?bOde{FqHK;(;7ZV@ghmyeW!a4Hb@ zyNGQr%hOu5_3&Q7nV3zmI1d=l_)hM6-%?NG<>ir0`4TabKl!CvNbTal=`kB@%J zba~%DbBYlN@yA&A@THr9?dA=CCi~55_GNKvu7uYgUj^}B*^>urtg5fiEa;fc*`gSz z$4;X#Vf`Byr0GlBqOV=`e*6O>xmiJ=)@i>q_AENeMQ_TzC0zQgrQZFRe0?*8gJv5s z^zoQm`y==JAy1uCcFt2h0{JbCDmV{b!v`Z*LxuXEgOeq#6-gR?0X>`jW3OqL`KuLi z66LLKB~utw5>hI5j@M|tJ)CJ1CQ^-)TwG7^h`7TP%j42Q@@6c*X6vTG+8Xd$K)BIL z!$j9kU~NvgG9LtJMhs`ZNWn>3aqVEl)?L0GNK1M9FbBkOfoUVog#v+cv6i^40HuA; zU)J~ow_aTjiw?x8jO!2LDUne|Cw;9guZ}5?WnTJD9r10umHsRi}YQM_#aWaP>rb?H$N= zRVC(2AS6^&5hKY(sQas7pT^`XW%KZIs9K^&-q)bn-w(_l373(s*ISBCq73iwQSP2u zcuFsO(v*Zhvzgn>`qxSt6l`Z#hZVI zG|v=0V|3Kui0wX+Zc8rD^6c4|R&{lLDN9|a^EI+6hp43fgrq8-+y1t$B@0VQ4|TiAyzfm=k)#7IR0Yj%k)0=VD%cbOlI_ygcKg z+Oi@o2^dAiR?cZ>LfPs_q7w22_$K7Zr|}>c>PO7Awhjlr?=a z{(kWWbsSii{h}jd^ui!M&p8@=Mq5dP+&(<;Xr-b0aNLtkxVKn@`UeD?3(c}Kf;&|S z+j;#wg+_)JTXZ%jzA^r3 zS=q`B_Sa*jiWH_S@TgX*QsQ_l)%Xzwe~;7hZv$Z+)5Ps!2H}uL4O&fBEHs?n;5C@z za@3Ha=_sdOyW2$K5=-_5g?w0wEk;{wAQqe6VCy5rvu94~dY)+mSL^^B`oiSdAY#_7 zZ}N6|0aEdy_!zo6R=6OjXU$yIk!bn2b2P zJWI#QlHT(dzMqm$rB#PA`cD|ZAstJuCcjtBUzC0%Uvn-F_Jnw(S6G-*&e$tk_^L*@ z6HLx8uU#iUpY3VLh~_R+$Q0)R8wKv!+}JS)h#P+axKkRkX`ih$K0aDJ&gXQm-5Vai z1*p@Eoj;svRx1FMstra9+e%Hkk9RjkhLsyjQ8>C`rbnwy8vq@fdC(s!FE+rr4vhA6 zq)${i%UZ#i(s`)YUWo?;^^c!jdxi&c7{mwJT%_P@BQ@NirH%qTqfkl}Uj+X)1%#EI zty2GYcrbFzt=hys3z1l{qURV>rOjNxklb-n;xPZKsA;gV-0)0=lc3QpcC514JUBC| zdRH{KMQHqXLhnEea(3I-x8rVC*Z2MOYB9D_Y$W4Vda}Qk`$)%Z&m=3NSdp0J5m-+MwtN(oXTPsDB<0`R5o3Y|eaAk5`#;O5-v<_s& zx>JqP42w=Tvx+jWeM0uUmqi5ptFXzW&4ab);p%vi4rzU2qNy++xYA zRRoYF!5QU4*rn80p=upW*t?l&h?w$tf#=D~4)gFhoWiOii>f#aO>Qv1?F6g}x)u@} zSD^4v0oOoHJ_J4og~!g>@;E~&2G*LbHU`pM9O}lK^1;e4(%^=iHIq^K%sMUkQHXJX zrLCZY2#3dT?Rw^FW|o>6LVo+2>!DP?jqAi)^jzYP6dCjk#s4hp@$tCc0x~nXF6UNi0?1yer(eNBLUq6Y| za7cI6FbLuADFoQ*t~y(Hp>`(kdqrLxCfBy=75*-OUvGH`--$P7_Jw<1{R8^k(bUIx zEoXNQL(B=yedYB%V;7nEk^niYzYXo3pYG^%-gCWnLG7lv_n%PHCiI_xj(kAUH7jgQ z103qsr7~OTzU)y29rg=!(hZfPA5o$qkKfo06Fa%B854x}0WMqPBcbZZkD!^YqwWuy>NRdgIirqm41+Zl*RH`isH(X@73yOuCU6L=e%*AdI^!T%)P-c6GTnI zlXqL=KN(Sv8gLubbsfb|Zf}AqoYM!n){Lm>o@~&q-1xBo!PhV14a-WYbl-G0nSQ7X z0;054wZ0nk{-I^C*))uHC(l-$KRcsLbwfH^Lgwr^oQ)#|tPZ&V(qJQ0{i3~HY(`J* z_I4x5k=Lv7Q{QUU+RnEw-YI9YGzJT+_0#ry0D_1`E8;S0vwWUTo8}Jb!+a^{@eioP z@U-sKHI|?ss%OKU-nHh6+0Kj*p=Ow5!>bt>pUg99stt#i@>L>9D%dx2n?fJ;CELBC z%?$-p-yx+O#<8xNB-ELwqAjoFLk(KIcm&6X zbp|_-GmBD(&sXrWPEQ+JlDQjYGw#HuLxX&eSI#6D1(v_i>C3H%i?Uvb7l$^OnV7wK zLO$`~S3`>#j3b!>>nVV=B)a5&ggRG_}M3tX@>R-Rdq1mmsN#buKnrq=rnhkF)eGe~tbu z6dOtNHoV=<5OX9zi*s7*Kb=cR%qAcCfEa-?lg|?(G`VVOJ8i>#xKw&ttP%c*=jN^y zw!Eq{r^e4Wf!Uoe4$e9rUx}oY03N~yNoVuRbz$`)H*OqWV(`$k|`Oa+3f z^*rf0674ow%TR*1sC99}y8j$hTP1}dZ5HszD;A2*g;^UJChvUg%!s4$@^E5XuSwsse=u{;z_aCoF+W+Cd%0no2Q$s)S^ zY49g0)zByiA#!5tdJAHZDt)o7(e?aiNtR^2CEHhlt}Snu_o+5q{k=>O+#gzRi6@~s zwoNCN9O@DC+ri zFOXaaw_zEis$6kE=1b|uopn?eX%^F^K<4O_kdS`a31t|}5|QBu-D$T!2I9S|@^i^a z#z+%M6O_q`&3Np#Uy)clynGW>1Mf>Y0QxKVt(pZ-REd?qBujN>4()c=3r7b6;BcG9 zRF@s|*;eW7_TPYhicTGJ>4%=$PU#8M6vD_X=F+Y{5<%4sE(0PNx?$g|d|Aq0SWF_b zV;?*na$0ps;W(Q6i72HmPhQ+xtS|wX9;Al%ipi_JsuHI|LrF-gS2v$_Sf){Sl(bY^ z;@ZepkvD`pisoOnKFaRY>g;*t^Y)lW^iOEELfE-jKZq#gv~%_b`)OsIZAd{FSF5$- zGF12ATx?LZra9J0&Cz=FrA-qh+;oA3Dwa-rs#RdSV&~1;bqH~%&2#lePh4>u+unMO z@jlHpHwnsYK_8XQ)m`H!$8_u0EdA}fqEloQLoGLew_U4+B-X%(IAT(8B(~15^hL_d zWJ@a}I7JS5B9KwKCh_1Lbd(*4A?LZf+vthfdj}(jY?Dl~_VO2!E?)||OxI3i_VIYR zOq=@%0am1a4b|A{)x^6y?JMf+Sw-qu)c#mdLUS7Rl#@Jk&22kf&sGePG+h*GN#^>_ zJor*ht_)1vJu1*lsVJvCsKjk*;=#djZ2BxiLE#4oPkXmiw(Tdvr7>|ApL<}^TYX?o zv9ie*03CL9>mBECM0{Orm{9G9osUczS8iWU8yEQH10us8!>Wv3+L=?J zvVqz?`WRoLs>D^44TNkAa{B$oS8qh=bKfqy_95zMTT_ZD^kXAoVSifRYjl*lRa#6% z^zq-C%-$9^xZN$E?1+Os9AJK5~F z?Ewy)sz=z=u$8^&*hYu7gr-$l9>I;iNR^XCW(tVUA45I6kKJ!Vc2A}$>pR#NjrE;{ z=>$kDs)X>`r!EXrjtiQ2rGRmd!%<`5wL>quIQWfbk1==uNPmAu(q^-^9-Rt2Z0Y!G zZ|RSU8bgR}cdAQ8trRZj7?j27t27$1L4R<#r_soTlf=Da_0a8(K-)Mar#;SQ?0li) zK|Ck_J}_6V`DygbCV{I*egX7Z7XYNGvSxY}8R9fCk zgTKPm5=_S+iDuGrF*&$W(b&ZkcB=eteaIu5S246S(w^Y7GA{EQ_H5XaTXb8?hI-B0 zR&m)B`4;&ek%Os*1xl5dm2bz!Tk>i)$URROtFx#}fK^UZX4uA^Bq!ej*(R z(ftiy%4kKuq24RpCc+Ui$?6wST2q!(53rI;jf)S_laxd^(IAs!;^TxO86M_HvS9|{ zVq%^93x;c0z0-Y}@Gu@kj$Y@B6_kWaPY-(3yYu;bGK8sXjb7oMvK3K;ool*J=XiXR^Zg^+U%7knuJ5FW621#`A++Uk6%8eE$eQQ@V|<>ri!3u&YT zW|7Ty>RTcF9i>6NJC;IIZ2+c^MMY2Tu*pvVA4_OeYj`pipwdICXxgP)m^YgH?gEa? z_qkL`26@|0WVOtbU1rs?(R+xeQ!RR$DIrz7p9HLI8jwJcGvTa4^`~_mW@PlQ%e{1X z?!xHOdc~!sQ^N9~$vE4?@EfkL2?&)b^X(^3Bg+m-$IN&fUo44MZd&TX#}D6>&mUH+ zViZO6SU|7&SKw?d^6D3~jePW4ra$7em_r85aF z^BJdA>flFw}-~7Xq^sTUzwd<5f zSbZPena8S^5p}^Q&~!6Pp;mXxl$cP>5lKW;{YiQ(5WHg|IH|Cnjt8QsHc;T^egg@i zDeTOKZ;R-M=G{nGoJDuuL1sFC10;4c(l*wEcS)U>*(bijBZ=VuOE3rFFitwD2K5``gCY}rsDdj#dUh6y_R>zzUx=is zB-;(AF#j&fv_%Hnd=#C?ut^OquJkCHo%Qf-jMB;jz-sy-;GtKl1D!hAY@GTMqV}jA z(aTGr!w=ObfK`&)Pmrm!7!L!;>w3%tUU*w}babHLluKu;20XILVyJNW`X(2B>#+|0 z>)6WaoA)C?fIMs8j<1GgZ|C|&$bRRZSA*eT8*04O^Q5IpMY#bb-VUCM3kw~rA1W5g zM5;Ty6e;qT(L-lu*80UjIj;5C421cjA>H8Z*WC}o_GVJc#eHLUTX%K+oy6OUO2U8G zho)32e$OT{l!N#9yA);Qi#1_(nYMAxih%;pmrAmEiee$9JsUFUWs@L;n`2ax2UVCe zJWi~6Kv3`5rtKvEx6=uF?Do?#uIDh_n$4eFlayBGqaeBhM$-L4M7YD?Ot?t@Cs1#8hjoY%i~b7``qQ_RW?9n;yzjcq6v%w$wgBXJSbEW)s`5F529%!&985K&aVG#l$?}Rz(WR#4~-8|YF zk&*+oP4Rg+{JkCAQUX>7sF_$XL)SO(q1AuB|L*`994EN^x8b7|BXfbCURr7%LFq)}fa@V=~Ch z$sJLNtx!j|p^d&L%s2U&mR__*C#pL!+jb991>}SeR;^M{+e!0c&KSf;% zp@vZQI`PIE#ZSZk0VP&y9*WD3bT7O}O_{1*=llo6G3b{u;@)^3mJD6=!!YgnLWAts zA68g{xd@J{N15#juS^Wz`t_JPe;fh$X^)cI9p9eZRfo*AJDvV&R%WT70>nR8i6Yg3H)krL>FYrfiez(D)y2VoT*0G+ZtE|Z4Z zP(8C{(EQA|2k0WF!2#ZudBD7_lkb*vbzj{yqkVB0wJi_htWTj1_k=CX zK8~C9p1GUns{1qzvo*Z&DE+48E0|$xfjM$s{k-GkYr6VjZ!v4&(UT$)Hst91UPOCFN8@A`=T3y|mH;xpo^{?0tt*DYj$8-Nk z)KWD0hlaMKhTXRpe3Mp!p}LUCJi#ggq{xigWCW1Z_- zlkJb47MyR0x3%JO7_p^(>zHc6g>kgw%o+5bw^C9f3Uo5G?Sv-J%ae4;Qe*sa2~E-`DtI47B$}9Nmpw{icGQ$Kmqk5{AX1mc{E0<~OJB%_ zbrsgk0R*KEa6s7n)rqCYPY7jjnF1skf=N`zBn1ONXuzlwCW#sv2=rPFU4itSB#ByB zae#E+@@vXwqWT=BFoZZuYNF#$oPvl{+1Q^3MUTThtcVE4bJe{h$Z$BR8=@M}h%a=p5ZxT`{cssC zZcOp>Cl5Ow>`ZjP#xI5`!nNcZRX#-X-xNVODr*6>&aSO5EfS!ylZ54nkzl?2N6Ax@ zs@aWatBMXo7rwJQfM@3@q#u|!5q&qnx^jNKdz!NSa&fHsAJFr=m=QUY@r1J*B6N|+ zwyqHXO|3D$3w*h8KE3_;RrRJmpc?;xdcuAUxDN9n6XYAlt;oysMV zJfl@>|5NmdpvE8Ejki(t4#e)%LabM2XS&b?z;HL$2|UO5%pLDV<=Pl(oG&tt z*fm>Na@Xf0LOC*zhRLB-V91l#aT%0gmM>odg_g>WP$CUzirJ62@E`PKm~aq#6OlR= z_v9a-=_-2D06K_*6EEf$eLQzvmQINZ!oe8N9efu5h zZ~I8>?cutrh9_xKvs}c_W+iq}$N2H^l4Oet=(si;(5W|9LrN0y1}78i*y(L&*vFM7 zn?7|6A`k1;@7ks`@XXDm%`7`0gX?Uc-4S2adh(S=R5FF=roL;BX+q4xm?LE=xo#fD zzj;O)Q4xQLVd`-ZWHb4mVMv*@K+pE`z*5LMaq9sGe@|LETf-$nw+ic2U?V${%Z#Fo zIX4p?X38qD9a!pjLu;E2$*$jg{s|Ka4_I-O>+uE7Q=eV9YD9z4 zi90WJ&Liyy)H_iEP?+ud%Bu3{v5~=q@jP$a6^-A3lGja#yV;=xjq?rjLFF<0JUW5H zW9HX1*8qM|G5MF6q?;GnwnkSA0>l@s>^3Ug6e+aok$N;5%n2XlEm5k!|>lAJTplH7zdCfnZq-}9L^cEk%6=%D)k8_j!@mg`n z#r7P#6iLd^)bZXW%}}OMI*_ZTPuc5x_}5*R8!_}X*}SdvT(VEAFZE2uSh*qtbU^(U zJ*a6?`f}E92`^~84MXJFSG{W2NQUbC`pc$#d7|5Fg?{H#6vPV7nvZcl^x#>kAOv*c zk{geJSGTM|Rij7zL%$3MlTu@dqMM0Ri|sN?Ut!4VOQvPYBq>gb;AHGaLL66x-;cSF z;HbKi9(5T9ft0sp+gOGdNt}aUD!>~9i>yzr)vcvGYdfOY*?Kl5!S*xiK8nH0(#?Y= z@pL%MC3-pzRqyclpboCuMmSWVD zJ!Lg)zAGpMo1`M&;R=7l6Ua+24lmGzzP9?_sRorH4QrAola~Q&bms+tazL1B|C+1+ zS^9s&1APOrrGpF<_$i4&@8o3+>rb&s)vULmx+~wJS;7w6+||4FD`wrAvHsX(QWOT;Cp}q_pCaDUmJVmeJ-12>g+}%|&XO zOGF(@3TpSaY_jU^1(sQ}4T%v}xP@&p9K|2ui@nXG9gB-ncQ^pvTP%*FRpjRTKF4D+ z>54bvs+jF8HuKHU1yMipusU|45(EsqC+4lw@WWCa6Lw_X1wJ$|)n9D?t z+x++Gi=i)JS>25Cp(T3-B8{WCEO(ZfuOEhA_?vGK zDac3)Wzkl~dGE5$AS*H()#S*jZh`Z?56VEppz$SaSi^)TYDyhCla>_roYXwSS~2i_ zBmM}%Y^O@aitdhGJjKLOhX%?=?B!}pmET%}uUwtLb@Is2)o`ZVt~MQO{)={c>W<&L z(Xma>p*;KH)EVlo!M2n#SIp$;FKtma0R5oTd|n14c~l3+V)p#G+qW3mrP_W=GxkP% zs@a52ipD|{RnN>Tubdl`>;OqRgL+?)uEGj(PkA!!d41!wB$xFsn zwML3w4+n*Q|HzJH`hTi#w*iihdo7y1uQIw?OpE@#E3{`L6wu>!c39Z>xTF zmWH%fw*{h!GAS#^QK*x(}H=Wn`9j;}4t9zT9o8yO~KzKu` zarp?UZ&zP}b-8u;5rcvRzKeu0$8@-)e$+LN2x+lA3J9-M-u9yi)G%WI_IPDX!0?FI|8;p9Kjhdl;|lIH8m1-g{3 z%+#7sB}O$kE&mZrE`HhQYG>M5(fuo84NgW;?b2(=K*UTApWb~PZ^mt#db4s)6>e%9 zNCOtiCSo_zIZEID`89bhShfv!7>BLoqP9DMmdIv2e%!xCcD|J`a9T5SW{Ts-!k5^C zxO!o&F1|T{+)gs4myg>+u9)c&1Q7HOAvK zP~zqmZf%ML!L-_Q!=_Rdi#&?@uN*vB7W7;14VWFvMpM{BfO!hu9+h}VwL$Z*AmUWA zgeZtna8TwO=}i4eM~Y{y}f zSys+d&%5Cqg%n=8Da_K_j{Pa@4p}8n18s7fuRVo%`PD6@#uy)+!wkWy@|o~Ys^xOu z4_{XZ3N*BekXpO+JIUF36;W4KudW(>|Iz2eZzz9|yIb_5UhJ%j!p81XA)gin2i|jo z_~hV$?&qg~?WsW1DCjbIB%A5WTo0 z#dT$yi;T2sI|b`|TClG64#<>)vm=LqfR2vw-82Lv9o@P+h0v7itws5bPPLPu!C2{{ zJM8>WU}=4Hbh>&_*6!E~WAF?FD%_s>fJ#D*N4GjoX=bQLoHj5JTM~r%SYGusicxpW z&Jo+?P#V$1jk_ttoAbRTNPVrtDFGrSF|;nkD4#noM-n%n+SkTt3(&-5(q@JN)&Q#SYGs9$R(Jxa zrY|8DRN;ofa(tX>5d&J2iSOdKT+J;Xlte^JhG2T(K8Dl#gKz?fU1YxXs)6`0?tiaA zIDn4%|GUA5fo=r=$bfQ4BpH&>0CbtZbv`p6SHWxZ5)ezyTRt?-pO_Qa{tDjTTAG*f zs){!sC7HW_dp8i>pd|t-;Y$xvaKXlBFACtRhp8|t0Y3SZieaj7-MP0WPCcSS8%<=H zHO<1^4<(g#Fu&DiNFq!ZRAUM1D0Gso=E{tCfzV>&FZIbeW?vK(;+72rgx)3fD?+W4 zbU|3J6N`RAa^2Kj4HQy8pazx<#c;qnjYIL;`4roTov3cGknQ|HVum{4{0L9x*w(cH z`uUCDt(4$_B@fg{CNRZQdU$oh<)fNs^bM$Otu-L!mPJ{y8Nu~8ndN7&8Q&9Q)x&1m zmRaUrGd!Lx*#nah?F<&Zh*G^R8BR5pP6u3n)dO@hCr9g2!D&HFf{!zF+Sl0)Fugka zXY;6M;;pI91-VRjOc~0(9naVQjWGkpe#@)pX3D!&Y>#}ycCyQTD(5M#j6)VPCUU+W z@yIBsD5~!0VW=^@3aAPKbFOvr8zOYdOCyFMnV?RxMxnYZUmCEecsqHWG z6itmDM>&W0=@2?AUKxOQs4Kl!5=FvA(kfyV{XEITaUwFXgoj9tAy*Qo9&5$*z#Au! z^K{Y?7%X!BMrmf(2qhvzQ)2-1BF6+I3F27AvQhtAhtQMK0}d}uHBz7)qbcy+|Dk^a z_F$a)14|-FV95r;Q4TPt=PJSUM>B3jO^|^l-{J;nJ7uDq8#O;+t4&|Wt0Kik1EXnS zPCT24pJ1vP*nd%5#}<9*kb)k^RntsKR8grV30w|0Ktf=2)7;{{uA!dRyHoG+X$?VF z&=$I<|Ca*7GIZ+YrbLtGBxMGj5DQ53+B7#c5rhmCqv!T|gz~A`(@Vh1X(bsYs%JU%fB6ppewCE=k_#yw}b7vMu)q@v%T8qnZHa+OGTmc=1zZ9X~SeI4^L^p z0NWy2D0k~-m4LOc=l7lj` zRfvE)o zMKl+XaJUZSGYtF*f5Hjv$SDdSQY)174+cep%0H9AawP9B1K7}FdJu@|ejP~Y0k~M; zhiX{pi6*#MY?#38QU4rVOg8i=ERec?KAJ3M(YM+-nX+$$AQ82^808>I5J(S*cf*<} z!z0im-y~#p+JFJ8HP()OQ z!NdcXz96)STAq~Zu8;v~;VSHCS2S6CK(G(!9dUAOw9|Ld=xFsS^O>a2pCz{havcIX z4%ps2oYL3*&KUTE5fC0ATFG_*rc%K|hKm+*2X3vgF4P{}G)%x7GMJ0*SZiqUSyR^C zEc%tqQYl-q;VPMfDJ=ak7|==}SSGr`ya0{fRY-hw!Ofs)&92$qkylQYe{hajVJb;$ zTm_rAtT9TDya8?r&Q#oARP}3v@u&!d|IDhB;#yfhZ;# z@Ubdy_4G|P!ZLR9Y^c+rYtEtK&%1>fSr%!norS;(b8>Ga)YOr;Twf;tIpSS3-}?IU zyJbTpvh^uN1H&KBlX*spD(>2DrQv7XR$+r3oTm@2``($zEW1^hrLcc5g*`EQQ6j&2 z-Rh)nS2(PvogkiVd^m0|d~j(P+b``g{pZxzcd<3wbCG`yfGM9JXgfLPRUVdybR=o# zO@I1%O?3(d9C<(5i^c&4fPSGLn5E!vcr{Jw({FSw$C{AzKkx$hg}C0$x11V2KNMN~ z@J3x*mG1FmNuk1!W88X2fAaFv2ViB}zI|+xCu|KX-x$SsS&JorNE+hyw?9D-6DJ@F zX(m~J^mx!HP#<#Yu_>Rq=HZpOGODweXjDA3@5Xa#RTfDBX5|U3b(au1pm8WWU@%#v z>Li8b5Mqj`v1lct*h)bl;tWYcg*K@m5Sckd|6%!uPhh|>zGM4#UmUU62=j5(gOt(p z{O>dJAF8pJNJX(r220+?KSQsqi1{@&9U!MY1?-yx~1nyn%R(!E~$ z16Ks$@lwLCx=fOV+kB5qoKif+F|c)tU6B)7W`MOOM5j_#-{J??@^KqZ@}z9M9RGk2 z(B?S1A0m%Q%H675)uH2PZC#yjk-LPAdDq=y5~~e( ztEXwMLRtJ3bSnjJ^YPr(x>l^!ddJvcz3xVwAg_8~W}c1*h59PCzv5z4d?{|fDQ0|U z=sdWz1F(h&nT2^Dw~H6MOSqX2pZUItE|$SlgsInH(b5QQ-JO^2j7}Cc9USiM7{6a1 zJK}EGn%CWQlmtXUvl^;a*D#4QP-3C1)M<794KWy0UViepNPHePt73G#o*lm4Fq52D z*&VNC@L2g?c$c%FuF+<;fFxtpIKF16cKvu5R7Aex86k)rs9{|uC=3k`u{HK`%wsg2 z9tJ%DP61)*@mn#>TSbIQphpB?-shlerK5X(%Kh>1{u46z-@nQG?EfSjz$FV8NZ%06X6yRk8JJDy9ATDRL(YHy)E;MAras< zu_64=?Lb(dbWAFPfFP{5Adn<6F!xmBHK+t#^8R9gYY6B=0*?Yx2B}5dKN<-4Z*TMO zDu@(#Ykyw>VEloj=z(njKlVT4U4*!pzyYM_Xi}gbgurgH`<)B{pxpoLzu)}75}tNV zrJ=IC&1HIJ5wS`C;H>4tX4DjC+(yyP(ct88qWKef4uLjB4*&n2g_Tb!KgLm^6cfTS z?qplG9_JnNWFDA-t!*?6E>~CJ48{JqYn_}&sZ{cxGyW!g9^GH&zWCyT9%@R0YaO^2CdjviV zD8b=>%QOfF!~Q9(-7P6H+S~gv6h&C`xL0V=0=ZTA{^M?~c~i)w*kc>OVS`J`!1@#Y z3vh7`TvB>cHbVOB!G~;W5ufRSGIZbkAjG`-SNt46tp7W$ozn!n+h*h?G_nn`Zg2Vp ziruyhZfCxtu~pLV8!+No7k=RvKN6}uD%O!4bD|pg4@jt;%B85|f%|B<+gZop;yJDY z#a>U!T{3{IR=QzKa>kg|FjbxL>!u;vV5H1f{m7ktIl8j0X9J4vSra)_;{5?bIbE^ zIlZjX7PDlQDsfrnZQg~*&BIsVHboLV>~FvcmNnsS+lCyasc^sob^ti~M3p_zkyqzR z2NRH=Q5y2hd85=$vu}ZB`~CgzB>`^qA3^XXK{@|XTC{(4;=aI4{BJ4mpXRywuj4~| z-G4yCQtC#NZ-k?|5uUr7^{N9#kKxn79|evYqm&R;16Ou@C-VWT?OTq`4+ngu3t>+3 zaJB)lr%U+!t&RU0P2Zeg7()EgVg9r8UB5Pl0bRI1pI)174;!t zOaP?@j=#4sSm=QK|4ou?g#cHLY&=9JQi zE)_XjCmLTsrpw~+(!)!})6#ir^iRirg1WZee1_X3BWbMIAkxF&$Nzf=K!O}eG&Dfa ze}%obdj1e}&_n8o|C*4$)dc}j^YUEpP%Dm1NwWfUtKPw0!HZz{9IR|FaNv0+YsyXS z*Xmcde`(kgZX5zrOS$+NZ+xjGHoBYov6XB%qi-{NjqfV_kFQ-UBSY`2Qlm~Mp-Q>s z%-IN|DV^{yPm5ZOfH3y9Zy3OJ~$zh`v2!c_t?86NFOf;{nJFe4JX zvb{OP5B#|vuJAlEF+EC~e4dEEhEg7o8z)D@pX~=Jn_2+S6ubdz?IE$3E92@nAG>( zOI%Vksb{jJIk=?2ebHpqa6Jk&w+Jl+04Tx_fR!hOfZlKkWloC=I(z!&cF z->sbLqMjXVCx3AP_;xmy*nJ;xxE3#8%u9S*xN{pR5;vy17IWT<9y?p29_+6uezG^4 zZb)=zswZ=$zBm57%KOa;_{O(veEjXnKcLvyp`8N(#5T?~WST|ikol-;QKx2h@l>gowz8+bT`<%}6nuL8I=R>3@M-d4R+CEOA4Tga zq5Og;b*I_97Td-t3**y36Ktfxoz@rs+2kJ`fVb{~ceO+I^o-khiu(Lyvu=d=%*$fM z(xLZwS5{sAWPo37tbb?$%l@&DUD#>lx{;;z|3 zF^&S@i>1^yKGHqzWHhd2T|L>Tzp|vmQ@!?U{jtzjX#SXb<+t~)m-F&RAEQPm-sOcq zZ|;4v9`PPiEzh^*-_MObn)nA~eHCr|UOS=jl17hlFS~V(x+DDSnbA1hWj@i@_POn! zIX%{!u!Gojj|Te;-_JM2?nfy1i?i`HU_SVhdC^`sq3!HIQzJ;Dr)J_x!J?i@(%O!A za@JI|qmFOv;k>6lgjd{hY?*tU2l_15bEVmWczI4!jx0ZLE1-vBLW)X>_D-^4sw4I7yiI z{(!IPsP%MpuSj<6fxYR;z(;L{_^2a$m+?>~izT|Qhu2wby(OmJP#_Si(r;X1@7Jpj z{{P>;)c<=UjOLlkDDae{23T*z2v%RJ*+>YTG$~;U}^W zi?05Ac=p8cS-X>h`h8El7Q3P}SH3;m_{FP_5uHzepFetjxo>8^c*o-(r`e9*zCG=8 z{pq8vx~~7e{n^q|y9c;Pa_^&!Pl3(4>(|%i+SLhuEUoTOJbZI~a#F;U+&END67$KL(ft#ejOoWI+@F1F?)Mg zFyiyeoXB!1xf>(4Wm>jhEfekUzkNgKdu~+3wdIzX z5~~h+1=Y_^=bbqlc!>7C_pAPPA2)slw9#B#4|sw?>7Rb>^;~7SH@CghD*bY*sMz!M z<@c+M-~F>+Z@T2y;_263U%F*_wD|k8^q0r`Kc#FI37@>d0H9}weW0LLJFYV8d&3rxcXuRj!btewp`c+i4a`L>b zLD_e<0e3S36Quotk8kc9KeDLv|0F+S-}`O*bM4R7?f+6-y*Rz{_PLm~r#V)IQsr+xrFMqf7 z?cH`x@zbxp*14aLDgzH_^PjV0+rzr>btzBod^TENvU0~NC&S*VMAiqp=F9qDD&6&Q z)sFV-N3$c=CX4oeoSAA1?6?jnV4hu^vp>Cf`;Of2%1NJIg@-J@viHXh;7ybHRa+kZ zs)_BJlQaKo`QKBwCVL-C{x^A!c~0`7^TEF7o*uti_U3N7WyQ&PbE{T+909KX{;Oos zKUwqQ1dx9iO@PC`41vJ*m;$I-ia@|VEU4Al0BYq)!rGr5k{|(KHvrgzTLe<;!qfq3 z6+%Q{Ek1}8#4xA=pc)`zoCH)2vI|Lt1JrDwxr~#5R-&i?IRYpF(E~Ex2y7054{2ip pMS*%xI*5P_I||0lQ91ws literal 0 HcmV?d00001 diff --git a/docs/assets/phpmyadmin-debian-mysql/How_to_Install_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg b/docs/assets/phpmyadmin-debian-mysql/How_to_Install_MySQL_with_phpMyAdmin_on_Debian_7_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..bcb361d8dd3c4efdc5c188c174bc37efd34774de GIT binary patch literal 82439 zcma&Nd0did`#y{)if9IixTFmt7$BIUR@#OLCSU~!CTOJwre;($lST6szh7UTapc?ftvy?HJk_s=d_ z8y4e3r>}~OS5-No65<_@y!YF-ITF@u77ZF@LWIoTsoZw_Ml~M zPtQu&MoZ81`tKQ7^2~J^DVwuWHl^dH&zO+7DLZR19*p$gx3F>Z^5y??;{Ww&ZQMA0 zU;pf#nI)9}Kg0N6_s$e;-z=XilxJ?r&R8c0yLt<10&%g|Jxj0|SG?<}m~5^XDz__g@g^9~c_s7s#5ofEgAZ#Qg6$ z{!M_I{AOEn*y%; zpJRjnug8XjWylk>V937)M9< zS+i!j|L{LA3mY4o8TK<=kVqFdCzO-h|9tWP_s!quASgI=t5vI|1quR1Sy-Yh{_cYe zKp>VD|GdCR|NXLnT3W%ZZQ%dj4F3N23y^32`34EGu(X6)Sz6gxSzFtHTe5(lpq^+; zf2&YI0&I(;bzT{s{-(CAmx-|%dm!{m%rFIHI=xj9g66^Vbz$v+Snu=e_K1ki<5A_; zWLe_u`7S662o!2z3AF$Z2MV*Yw18Nkz{NcM(V;Lw!j|b1ItExzpHqk#d%(=_3Uqp# zsEWdZ(-BPP$KU;Z8)6R*f}$)@kfo46qu>2>cFAJp)j(bUrD{RqJGCaKk*yq8E<7(t zd|WrMMlC&a#VEX0qTt4^I;6+$j_1ZY7wE1$V6DY#7*N6Erus%a5jT~3bj^8D&H+7S#t6BB$ID@@X z>e@*%wWO=Ztf`r-Z%tB5BUP$_VWU~Iiilm+#F6h1$hSwUhTf@T0=}t~ULiglnM|m( z-Z>;l{1%{}Qx?}UoB3{=o>*E*(De_p_pwafQYt#n)xn9(NeTGe#4hh?OfZ(*B$jd- z8LHA!xEqOq!^}|PXq3HB>pVKS`%`V=L$&UqI_9)akbHFIjy9O?S+vrhpl?5;Cn^WI zu?vUPlAC8JW^);ETRO_yM(DkYWvgaBPI|s!+=7nxn`wmap13O3oPdtRnLfp>{ zU>t#FSynK!pcbMzER%P!j`J@V!)OJCK=myoHc!g8n>XoFtXys#*ijf$thvkV+fKbB zuq(lI>acjz1hYV3*n<*Y*WmRXTogh&Ud0Zww7~8mxsfa&xeVOfxpsF}!ty8~z`pfu zTev(2K6uFBMkK$6b7P@$Qu|phwePvQvuQ%#e)<Vn{Y@hrImaT0Ewfxk99G7f2azBo#&3iRHe* zK@Pde-5u+5#N@PBq|SAo4}n7^aH-oBq_(F-Y|SuuYC~p?FPBrc`3;wPlFXsoK5R^( zho`-EA2t87fJiK>HfzFDI4QtVCB@U0CRPlM$uk79q}vrK)HCPQk~J;F%BnF^+YW(D z)`DGCL8kt3UM-1hOngj@<6?7o)dJaLob6Kq)S}cOH;aTLPB^dK~*ec-$W zlz~G*t*&SkiJjW8>X@xoru}NE|7@;wyg-n$&gG%Lh05Cfk!Dc98#l73p-Hz3lcD=r zE{Gsx?d;T8k=7$z163m9Ne$X$7j_T^hlE?%BGHYTEC$y+yVAauRpq0~%NEx!>}q81 zJISKP&2D5L>75>O;(g$sFklRB?0i95pGtF$s&0(Nomvv9Z1B@OQ-3|tW}EiPCo2X9 zuUHy{z07uCBG5*Dx@g8Iel^B32`<>kFc@u$DFvD&yA4o}#OQkqhMtrQXayI1vpRD= zaH(t1N`D*^I~O5Hd~hBlmfVMGjeWizJQevinQlC(g;?=~OpSX~ER@8x5S2Z8Vp*w7 z*IOE`y0$|oas3!wK2V}MNVvON%JUgcRZG@RicH;h&YrR-b_5>WY6ga61+@?hr#<`J zC*7#oBnih&NyiE^d88Qh1@pGXRM+#Etsi)#!iGXK-CZ?o)ynV8sA*wgSNU)fMnRxZU*qU%&D?0Ea|Nkw z`%`sHPfrs&kFLiyjVt}V`nj}KV`|;C40B8uk#?B(yk2M2Qu6NhlG%fy`Px(qjAtlz zKSYZjve%dsNiM}SQkYK3MLyNEAyAL?#$4lmVPC4gnOVTR+`+X7*I}TPa}cT-m5{&= za@zxkSu&>W3blabEeO58aIW@iy)9#mdITAQwHhWu&+s88Yz{^nC(I?NU5M-$l`?*C zkKSQtl}Ebg#)5ZFH{8QFB!pN$cOfzJ_t!Ks7{Qa4-6SX{^t8bR=EN)}_vGvT>Z{l= zW7Q&!2eM2)l(13%!7lK4hWejWb*LO9ReVeqHDpd{7l^|{(aPmh<1qnKYRxjdaJyw- z{k!EKC#5U#0aJ>~Lu$nibIe&X^+dGNr&y3Mt|X>Vr$?{7F2WbgP)Au-8)3-B+dM-H z*>%V%kk-PgCCuK-w8&*Djo`M%oK_oJmi#+;LufIE#*;4OYWQZN+Dbyz4)A4MBL6_4 zP#nfu?-d@67Rs9F zuv(vkI|yc(7mrSK8lMuxxe`W}o)jjtaX>kyIXG&hae zMVrR2Lwzzdc#a|X`81C_-daa6oNcqLUjuz}ag5_?0A`D@cl*~)I z|CZhUsW#ziVC=$!FjCtVW`Dn(b2jtB$LW9l_xP=U@>`$SIb)`0pW*YklbPq1iG}+* zkRcd%&rrtQc3gzj3$NmH~M-9F}J7>n%1p9w3f(1zNkGSGV%q;`t7-77BRezdoBZGs`nkUwP-Mr2XZ zMKX?TeOV*9$u}HrQuOGOrZ<&Q3l_UHy9d#W% zsXtUBCib#m73^d{8eMk7g}EWk>NJHlN$oQ2JLlMX_yG!r zM%A=<9#94lL9A)E9Z`?*q+XVTv5VNpRnqZCu&Tk7=;m9@iH-o9a*bB8uz_nr> zP}Bv?3%Z-9jsHxpAi+Mk4DzfHY{33t#OBOS6(l|aTedt^cfNCOd8obTM1t=dqlJ+K zE{ZfLRgR)~Fl!I>s$T~1j(ao{MvnHJaq9*6&@5Ph9U>)fhE!2q5<9IeKUmNy$K0itK`Dj zh5|8@UbmUcG8VinB0QM}8RF7>PT4g!|FAaUBg;w$X7EA}sF-OL#9qkL7nevl6+xB= zZXXPD3p)dI%S{i_8DQ8FI*mkfLC|K=Y1VAu|K!|JlAtx*K*yk#Bj9{KhK297s#*|T z21_9*w}he(S*j+OyrbKVy;&s^jgaocS5?0iSHTOe6tbKobtSfMgffYeoHpX`nRdvV zr8@}|7WUOHON~h+%V&|y(fXs_1N;tZoy%1sEhWq~dk#^5Td$`qm^iGdhEt`Z9nO7y zh`B{BH`ps3QT(?t7xgELo88qNwegQNf}0@eB7g;@U-B^R{c9w`>-#j@iATM0qK>yq zY1Fz_qM8c4b;6{mQ%T267*~Y7!V%{Jl2#s+Xy;6XWtcT{0VLs4TB{I#NS&O! zPOXV8sPyJ6JTYe9=KEVps8|nwE4*HEFcaTr^R2WFVF9!GT!5{_&M;3Wxa0 z#tmF#ssZdEyk1=r537-i&;C1UU<*v;Bp@(Q z+JS%0oh7`k*r$>(FAM^c>RUYY)Y=pt*9Uz)uZRaPut3z(tp)}}1SS#X+bA=lp@oVJ zbHNikhrAGN7UQ`M+u15~GvlN!cdl*dFKA`vzSY=#j4N}GC#zqi?YESH`M{b5F4eXX zLq0q#NW~rZm5BaScKVHUKV20guMwvt_oaL?G+8hPvba8iNH!HpieivVwT1x*YI&(> znYE;%p;lfO8c!YM70!GaQz5}{Dz_^7k&xmX4;1MkrmSvEUd__frqoc(5axj~orHT} zNpYk;@ZC-7?eUG#L;e`kfeV8?l1m1U)E7JrU|}_+-?KXO7wy~W<~H;Yz-gk6x_9G4 z{xDjy9+t=z#ScZckk!(K!XbZW5Q=@K1LuGR59dpev^T=rb#2tT4(eNMqa1kP%GKcsC$6kT8o5RhrD6nlG4y+mn*$|yB;2hEB7&n(JzTj zxj#rjg;hn?7GG|$W)`p1erkfooE3|$F;7iy5d5L%+O{7urXhe?5Uq_5Q8huR#s|l* zw-cbL+fAOA*n~J9*)LFet-4R?bx2%Xbds&9Mb1tYrK*9S^-I+5xg{?dos2d!co}+3LM%&SUL%2d$i%?Aj zbV+|#*=35;7~-+iZ}n($V76M9*()Ve#nO2cOrn)u-B#SRgty$wT2e)-e>K#*EQKNo z#}94@hbrvQL;gQB(vp9tNS1plizHRjlw?Uq9f%c7e28*cN|s3h0=t#GA>0!Lfx=>;mqwofb$`{{6H@fF5sBB~XP=SN*hcOP;hFB3pfc({8MybvJwGDPL z^m=kC{1Y|eTK@U+zn(~VMpPh}Q3=nD1mhr#QOHI!J?R)%5kRtXguR9@rzKO=7)1~R zROTyCRCJ?!+doB<&v`-oRh3z?MjdmO)czi=8hB!{D7ybu5U7@m9(JzBaTh5bklxKs zRClh!3)cS&ukN&Ff|^}jH*i8Fyj?J%yK-OM2}qPUJvLpjkKLMogt4$7CL;;@)b0cU zIs0Rn1?-JZ39yeJru7_|7*vAwj;;=$c^^clw+lTq;#6^`z(galdK9E}!s}`raDfuK z#%vuj>CKI$w%DyCbkv#O@kmk-s^|6UCJ_i%jj#nF-OHcHJOCgSu=GMOpRswQJ35*L z#*_zl^kk<>`5nTdQtf~`vWPXLcf`TPWN*ryKw#WUs?H++=<}YU`qHA%3J}xvx6$K; z7gU`Bsc^jTK=CbBB6?h5yfuA}M1>uQ{b?vRospS` ztnb};Ke?NO9;eq)N62WS<9im*Sim)`D3Xa8NCeK4Psbqbix>toFnnz&qZE!dAQ82W ze^sQwODXyCxfzpKm4JFg1fZgnGu0T+tC~_&JOXswo7*5WH?d1=K>4|LlJsujknkp& z%s%pjoVH!TrLDuIHuBbuIH)_@h@|%J3EhOPP&0z8P1-Nn(~k+sFN-9NA9};L&T|?p zy*KBx@6B@zoEAYjU#ulzqt!OAg>o^#v~AIH>kp_HeFJ^Fb8PN8nbaStZ}Ig9ksMPz zGRRFr(BKzY^@Gbdrow8XI(V?gcr$TdYD}8e6}!K*&VpU&he|%juaiYVNDaV^kzOK8 zfSg>Raz2=C?S$jysg0~eqrjg9g1kiBnOq_^sS-8naKvq4q}Z&D-%ivM_c;NJYX?(U zgK|5uSr@O_resQ(=QR9jU}h_~10P2JDGlHLYW&z06R=UNJ6B2p+#uHK2&jDkmDLWz z_Le>BwUY;rE4Q7GtsxBij@hOiNx|5>rcmztjB%pt#EKM4c2!I;vb4Fr176CZ>@D7f zaVU(jHgvWLbR$g+Ow{Zr5T<8eqt6Cq&xmGJHB7q5PDcxNOnP4AayCBj-JtH>=qmvf z9^fW?*kvTm3V^u)^5;L#n=a2`jD8HMpb$x5T6Py?%FvEoJAKK3f7^XNi$7hy4$;Ma+qA~X13w!8(L0==K%f^R3uY?s=QPV+= z82BJ9gjDjvP`Jsh8Eky&WY)EABdWvQi#yd+m4uZDtZcogLW(`gmGY+(N9>iN>EfB+s#ho4ZdiG= zhj`*kZpWIG8YkPhsppIJS0dv?rR4~si8IRI_+#w4>hwO`(qp& zeu4)U0d_HtN74?f_(iiJZPNVlcY$Me{M{59KwWx^=LW_NBh8$r8rg5*1@$mGNu0omi4FdiEfGV8czi8tI;!}9 z-|JEkwGyYR^v69fpfRx8Q1*8GaqD!8>^(G1@knz*6myn_n8mRL5mE6f{Dz^7EuGyzDx zOX{qOa7siz(s8Tv{$uRvX!d3l!chplBSozdSL0E(rQRZ4e94%!MQ_KSF$uZHx6d_$ zDorw7MtATQu^Tt6EJr{6sbz^+d0u#=7ch_LT*7LVW?~BPoz{`+&LWw#kY>HsnXSF+ znL=ld%YGBs$+tvT{50RY2_3c^8_OzgEvItk8gCi~LlfC*-Oyht?6QH|KUQcT&7p8M zTG-K>&=Q)UOrp9D56V_u*vGuh47=SBzxY>%;ozxy${_o1q%E4Hd;{e`QEbvDLmIlTqEAh|F=EiM%9W!5S_N8 zetd^%N@+g39Z(V`Y-wBzX9G+V-Tw#Z=M1T1fT7o@CBJ~em59v&v@gJc1(pYrZQxKQ zEVEX|HAEDMIRvxNbWTK!6vXU!8>gcuWz4u=z}G6$ttXcH~gzI@5#xTm)yWL#22 z7xq;hA+t$UoU-YjPKKCPPwY+PZFF_2QnY8jZi5-RZZ4~CgLAw;_(j6ljT|~yN zLcf7mr{KfIw*$d5+^-|G;Y;y-F;?20&j zx%FZ0khuUdmLy+}#URSLalNs1-bWgNe!qOjKjF9f#eRPj!1Bx zB*QP0W~cHOO}wT4aSkvLHV4~C9cuum_$O#LWDAuGzv*d8m2zRR0E9Zg7q{-JB_YK9 zNQXw*w9kNy4w4e+4w;kP0Mqc3yVIv%tw3t1#oRT_QYj$=CSlv)yx5EATecr#YniFj z$Hx$HCMQyCgpFsCyeX^CFYd|4fXcHm`8QXr=wTAiYcq;HNYh-a^nSEFmi2RfUoisV z)}uPUh3kamj_i+*WwcW=2nyUf{3)cWOxom?w#CkoauZg7r!-qYLp)jd9X=`Hcueap zsEi9i=O$74@H|L_jG716_yYR<02j=@PCRglDSdgZJUccYyJAvI-Glm!^C-0{Kwmtb zZ*&EOqtp*0Mt}|h3nL9cYxr$|D-d3IcV2oVkE+E539nZqKi2ReLLY%t?ipEyUHfKZf$J^>&ior9AjObkVB zytQzWvLEjui`l>XSX(HAObgq_GCiZWUPsA`G@2k|uBTg|Wv1`~Bm|+$;{%G4go`wy z;Aq@KgG#J-Up!!O898CG8y;C!iWrae!gI%Cx;hP#kbuV?Gx6Qhm7W=b$G+S}duku& z5N9)%gGM5to6eFtY#Vux6L*PpSKePHr}a(f-z_{Zyw%0LVE6}#0sBI%aF?!43F;WQ zg(U^h+7M#7 zPO=z9JsF+f^`2|_Gsd#OelwenfrnLh8c|PP3zGeF){{Ky-|D1CKtXB2u1nO70e0Er z2q-{d-l7o@m*LbF^{l%J0PUVPx6A?*r6(7~x5AGVHp*T8v8FY`R;yV5Os*7+|{MGs44LG60D`J^V0qs zi%hAW1|>|HikTUNRl6IE@mddTKDk|A+dd^~4ZvX-St1o{4lA+{mWtz4h_zi9RuNjv zb4Y()v_2EGQP2WMd^0weLouZnmitYOr36sMy`KWo{WF*Pip&AUIv^4`>z`tD=LST& z32%(P{b$gEzpKY4a(GGJdYWN5=%N$!;$QlK%~hJqQ@Wd3QCTyl5$G)4P5yi~=xkE& zVSk+g`}E|E;oPDz5wtk1HXKS~%jq5V-N%i;K?*!1s%rN%EKO3{pBxu|-^n}t%|)Km z71<_uY4?aZim-H|+1`6~I?C6~XB0&j3{)g=Jtb}|>W~@IY*&~dE{h`-Lq6js*qK$* z4KB?iMuRS&iy2}zZ5Euf5r&T)bSkPy{va=Ph%nX}iV*4`X7OQ^1rZe_hPx&kITLO= zLS?p4STexE16)i-%T}_Jbvtk@W8SYKTT8ZmE}P$7#nwCP1(6Z&xTKpsN@T(p!vr%| zkdjD|j-P{&%<*&$Uq`c&&SSXj&Cs0KS@p;@_9VS09KG*UV_B+$MdU!1wEOlb$|xPX z{d~HoR9YvK+AG8R*?_Pq)(HE91d_*u7RJ+KeXEjPZ}-vca<9GUP2wiwdy}qvGK&MV zDb|=7P=}$>F2-A-JP`|3g!m_Pg*?$L@0(vAw&iJei__{!sUJ!N5{4iwQ>P)HFI*|o z4%&vsq4Q7QZ1Lo-5Et?|HAH;mWUV)MT(ZzujvFe`p=-|~A$zltpoNVW-tRyT6vo%< zh(tpHM~s%W;8*kGgjI8x{k`O}&0D!ME(O{{l&RTn zMf@^^@K!!Txn3l;B{PqN>zL%8|H3!WDSVsnxvOSpHbgfDUtF5R+NZ63<7`Wa>@kgXeN=`%_yEJU1VgZ#rw zZ#Hr*WDTQxk3<8)pwM(#EfcVPQ}DINl3-Xhbic4b)DcS(z~2Mw0=j-ex~^-;%MsP6d$D((>d_@j zGW_6<*XnD5uY2LS8|$V*PR`4?8x}2*+ABZ~0Mv^z6c)R}C>`CDN-0PNB?wi68J>wz z>|8swa_cX@&zrTnVSG*8sdkfu%y2ufz2|k4%g(LVw4u3-m`Yt`tWY9{}>F%q$$P51P z2z>v{_3f>hr!M^Zqc;bB>BoX{zWurHtAdMmEy{VYxM6m|9Q#uACC>#%h-mm{#lDzB zrN$Gu3Rnyb@TKYYN^XhGwcGVWeN^_)$k4T&+d?PTQ8k|JQWt7YdQoW|+-xHz2=n5c zv>_H#MF|&7ML-8Z+(XIc@S^Sp3eubzWwxTQGZl>G zP`FQInUxV|EXWIKb_AY^)=Bn=cngiSpwvzmL}H?>6n1=Hoxur9j5kagoZO1wEf(1o zR$k$Vd{BuilxqESuRIQb%=gi%-ZCz2zLhovboHb64dty-PA$ovl`@7^!$jmr(5|nI z7_61{9j8vMN-j7g`}Mh$9B=Rt*+W!OXy4?3*~i*)BC}l7W@9(cta437cz-790}HT8(KXvM+)iw5gY*^HGv0Da zUm{|twh4u~8Y_nUQa*nbR2|U;QQORzw9H~=F(T3pXiubJxkv^vuyRrAp>?^@I34;y zuap%bMplXH{5+{#>s%S>mRp^>njEd5B|5oGaw_!nVl9Ho%>8VbgkVxV8G^AC!G7SZ z;--1#%ECFE2(HkM@65FN5~1pM7$^Oz9Dd-~JW3Fm%%Uc=r6K14d(Nf z?wc=PET->@(Qo^6(QZZNF2wxI@8qkWcX53pa(zB;Bhy>FoEKx0Qeq1s-6I{#EjD7M zGg!8k*^sG%=LOF-zMvt2(Ux=rMbAllwWb^|=J6CMHC{kOaAY(@XH}Z4#b0?s5Hucd zW5b|~VnhBgQvf%P08BMyE+VO1MR=6DLKw;Z1H)ao9T%-`g{#?HzGVv{Q}?^!>x`=L zE(23nZ`Ql<1$D4u1R8K=93X2WLf@$K->9YO(VG4jocQ5lfgChyH7gnu&J*`Be+|K} z8aq|`GHO5%hj~X=BmzW(ln4*WLr!#^j|`TtUKPV#{&P1d2R#sc8#Xbet51?BD~zS8 zg@IFszJUrO7Xq>xT!(?vL{iS|nKJ@fYTDA?13{ zE(V^6#1jUUK3pJNAr!JGXzS2LC<~jSPdJT8n`fd~^XuS~)MOJCsxz?F9elYPpzaDc z*Bkppskn2NY|PklHtr8TS>tw!-t4gRE3A3j^QEc3?OiNUhvV(xKVB&92#|+(S#18H zAmt&z3b!hQ0GrJQ_{y?goxrNI7y~%_x*9b44ch01tDe{vmVNZT-oI*J?!A!H_WFCw zq4oV5|Enaw%?pmbJaPNk*t=a9X4==ua&~pz$eHo<687N_zG;bT-hRI^*KJp1z`Md@ z%HiK@);#KXEotQuOfU7b>d2GEl-HBAEk#9NXWuFu-Jdm0xGr_vYJ9S< zIrwdGyW@lQ(;rCtntopUuYE!1*CsT3X+N9#hWS%_{VY#Jl?xDrko_?%2Zaik&6@-I z{Eh`YP9;$&3uc*BEyVJQl$trr!SlqjIRYK=(9AIy2_`zwoTq^Gktwhlg2=MLQ1#{L zTC^F0VT#erW}U#;=1DiWA`4kMbHzq-Bt&4V{J@&Wpj(u}8-_3qa?DslC|g(@ue+HI ziu!-lD@Q;x8f#zij}o%v9OxA|>4x3_S(5Fv(rgnF@nOv~N;2-ZdFI`cR7^+RsoO)C zqOk#K{^9O{8^ynu(4P>qnE%SqDMYgp_W_Ma!w3wEt-AVB3T9upCl`Z&=3(j|Q&1Qk z1`^u2;H{+M_zJ(?EgIb{1eMH5MR0ZfSRw`@h^!uCIe2tcxB^DU>F#8`7omPm(`GTX z$O0LM5PFAII>npcJi9Ei5mEb8`LNR1F_zCyEyDb6l0&{Mt_d1uFHD%LHZ z3=xZhgrZTtuGpX;1X-+s&&m*_I8rGcmX>pFuzOfl^MxH@BOhm`dt7Z#@6^9KY`bT} zW`o>NT{%1axX)A3R$8c2~jL zaKnweBi+Lbzf)BvRM9`Tyn|l^!&?_~**tKTCf4u#{0? zwQP;gV8Esp1QB=zAd=_6HSV4=`5=1ep-~coV;qt4@LXa=ugFBVFPawgj8Ewgl>xP0 z1q`YsdfW1n^SpV&(lL2mHkNSdrZSO@>y&j%nIbqUJgQ$*){CTD-7Q00nv8W?M^0f4 z2>o)5Y3^3bcUJ3KIaS?CS9xtX9!#+cxEU!p50r5-x;AFjNvtr+L zuQE;n=m!Vnsl%SmK9h2fddO`cax)GSVcd0<%u~gY3rt5=rAZFO$DAm%bTBCMM>-q| zXD0S_u<@6wLnG#XpJa;c^A4WO&-GPUH#&fhm8rrd6X*a&Ep8==&$wo4s%N&zLd%cA z5|PV9>JCK}4h=;E-Di!@i-$l_*bNkgfh_Y~aYNdm4$F)iuktCzMh!rWZMG?nR@Hl- zI_WM?@EjC}NHM4Hsyp316UNd)a9KdECV zk!vCk2*U8yN*V8jy|zeGEl$OCuC3}n{^)7PmyFm-Ur9vwSk5K4Bso5^ zgKeZ+3VxRyirrMA*|p+me@XSeIH~`P-tEtt!oSgt>AK!JMyiTRYE3pmm2?+=U<$*U z(0pL$`v(tu9@+Y4yq5a576hmMf%FUhZVvtWy7AN3vq4kti=Uk;d-7VIw5$D(zA2YC z)ZZEcwyfMgcrk0^{zKosEoEI${lTxoRqtFaG*^>h;;~w~vPX$?#G8vWcjI+|?h~KXID7=gMSAXZXmj zwa2%nzfg96y4?AFR_sw!m3xts-6c&>;P)L{FK)ZI);XcVbY{ zOSEe6PoO{L@*u{D%@`JUMRQmHd8^3Og{k+#e~8Y@A!zS0dPy!dsd`)WF}5ME-V#=Y zHH|XvIk^&gWAbn1M@VU@G$7Mv+2`dx_t3&T!HRE26BVgak31Tw z1byDzlt9OD_YUEx$T=cY7H^?SH8_grx5|Qznws;(gMP%>tc(n!Ip+OLg6`blWm5YY zGCR-z@>tp{=3UL-5d99?^%59D6kDvC2pyWpPZ&Hrb=Nu0wbK2O@pp9J1-xa~=N40< z)t^I>1;QBauwDi$bFz6|)`tFyWG2RayCT2v(B+P=Gc z_^vX3`Q}M3t$w*jBF~2A*k^KluF{M~#Oj75ReN;`-G_#>l7m4h)D!X)>K|89g)wMb z4&7c=_0C77wB~T+i}L*!eQiReq(@dkzBKHfJ=>>wS#Ql6*E22tQ-2_;LN|^aZNBFm z)XKT9*aw8LPZc$_z^`%0AScFNW3jyGO(;HDb-z35ZiwB9zXm)k52jV z{EL#TohMkk=XkmAp4pAIzq`OU>)Y`yi*^e4b|tP}NA~bfc-YOoGx%{|(!rdUvyK=x z1&04Y_q;7I_L!QFrms2Kcf;@N((&CNNssPsUG&71pf)A!L;mpShu?hfy!p6o*U6ln z#BXHP`>5Y;$9=~(QV)A3zOrR>BSVN412J9i!6E^$%3x56$_Zj-7$tbC8KaOJBFvPn z`d&;fQ%^{>wN@fpMbvxjR#`8p6YaYy!XZ$|3&5e(acT%>5n4f_!YatK5$D~*{*m+o znHe4?AZ%fzqTnV&l@CakpGG$UdFHeeYI!N^0SL}tD}ebh{$H<`TYV+ zewhE4t~&Bz9sV(BE<~RB{aHqCkxTsw{;oajsT;aoKl%sH?vo!~Ag>CduHC;4HgAMA zzRuxGW#MAy>eUw6{1B{RxU!8)Yff=XZTCr%xpH|vT|~k_&sntU2AUD08o8RU)`YVw z3X_K3_LJWEbn63T^53IX=PCp1+q-syB^$5i^rHJ8fTbI^$nNcfyC&mj_TTU66ULUT zh&?h;vh?)6o2PFaSp1{@?2K;QF6HIw3$exLj|@nDrioB*p=OVMa%2RVnI}kO_hLr< zbiKMmjYcZ-53HE^69w6d$n~d4$NWUvWdtdJ-U#LxWfnb`(bZGy*dOD1)f1Q79GbrU zah+vUzCkUf z7Pvb#)P{-O_$uXwY;u^vh20Lb-rg``t>56{9an$q*6Y;?uC71-aJ((GG;SNw+V;=q zOMckk^*7{hOK;7+$2*riZ~u<{t?tRXzairJZ+6) z&zFzic}35kdj0a=g*#{aVJYbNUl%f274XFUI{DQ$g;eD=v$7nGZ?h3smFgAFH~Mz(thFI)-kV*U6qGY?^pgM`&Y)t2cOy+cP@$C?eKhPA@Adi6Q3Pk zZ&YR${Isa8XHNh2^=_57FD*FKl`I!WpHnH6#n=_wjgp^(kRiAoA-2S!S|<(x$WoBS z@tCkiz9ZE}lwUQO+%T$SC(8H&@rUnx3wF4~bltDyk+8#yT}DudN-eBQ?dYVdxk4q9 zBQ^jg2Po9-912-^MxFf;DTJhA8H=)oo#ytEgW-$*S_g3(x?>NSRqWfE!w0 zfOR@hb4)j>J)6|}f{P4-0C|JMk|#|+<`E`vA-GHaPZ~i(A}&~|I{ok&H7GImg}5^^ zbxAdD+=DV;+r9OgptpX*hcc=;r zmZ|I^)VH~2atfjhF*z7kr-WV=nAqX+P2Y8@YVU%t@n@d&CGT8S7d?N{Tl)JJ_n3!E zF-=}$>ylP^wc3SkzTfpZb%b+Xk%w24oXDYzgnK%^=oNf{2&!@tOOvspbArSf#eu0l zj0MeVEo$ZOf@m*xjnqEZQ>^Vj!ocSiCZom;bC&aHUbat8{5;dCtKa==#=vR*X1j(3 z?P(=-zx&85?)$K{DsG!)+-4g-(7rq`i5SbM+8A7ywk(*IK8%=yz&hS6aUgBR(+dX+z78keh&DIr;A@5#&f8^`#eDoOi$~QkQ z^#qxH=7*SXJ9B=zwg{EbeR0#B;csDz?TTw_#B=BStbCZT=49c^-7T+ws=hS)-rY|D zM}M7F`r$DCw&lAM-3hMQ`>tFYy1Me#P{@++rf+rToWdp77QByfO{nnxLH9`GIP-W@ z`GG6rA6LtNnHGG5{)vrOuP1s4^fl}i9>$n0a3jP3X3~IE1-)!LeZup+LzYmMzRbcn z0O1Fc+^pPh5wm)H%Pjg@8LmXD=QhmA86wq$te25TFb1M6k^r1`csob}%XPMKZ4LqI zgP07U3(!Px15yHvW@+SPJx4{XA4Ct1fl~8=QM1AcY%pt9i0hqLt&IuH3qYzCEL8Ub zPPhk~>a*U4>p(esKkHKgGCO17QE=l)2C5%bgAd%mXoN@bJNe@-JixCdPFsKLeMMf_N4ZV z+{pTI;Z9`lftw=L_@WoD*HGUbKHjuttaV<#jnjzf!DZ3RJ{`)_&e^KIimy^%u9(mX zBM+}c*Xx_HV~IR}N+TzJphqYEDBUsmA*tEkGy#QTq6po3)9m*5?;z^=A%6&$>wMjx=9nO6UtPtJl@f$w~8i zQ>b`Wm9@965VSrK6kQx$WrV{p_?uZkoe7k?4Vkzsun@~T4d9zE4>jkX8J}ymR9YI# zVU6e2nkt@dB6QQ-iNyzJZvTD!j_gauL8Zg;jn#|(*ze!&w)5xpAC?*B{PO9}(PyPR z>(Tz>b6HXWMvg65_nJeFCz)L*!nd!4H4FJR5W{4PysQqUD%5c( zMT0oJxX}HNRSZBtdy=VOm5k!VQ@cRTK4Nl5K18xeF~~`LteXZ^Z8?E}M`^)&pa%xP z@}_}BLM3N#P|90Aqz7%uIKTp`371pBYSI>BSy^=H>dT~QI`VKiix*`mc)*|FKe61b zMWxZT8M+!h_PN=06}x5^G6w6WEgBn?=3S`q{Cwie1@w~ut79$Mg_$PU5MRrC_f$(% z`8zGKMfn6c#MKOx$A`S|wd)Ky8~1F!L&~pNC%+`_#;5jwup29hs@e0krbLGt`}iQ- z{oam{b(TM`Q##OZ_TO6fzViExn)Il}->C~3sYiMFhsq6_@_E6Zd~DgXxRz)ab+bryu1@mi=((qPUDx{nBUNQXiLe%DVZK=QlSVtZ@Dzxch@= zm+z06Q*ARNtdG;2D~v)CD$A5tnANeMkx04WFs;YmcU@yPT$CC>JC2(eLYfH88y1NR z2PaGiJk=F3TjdpX?#0~kTNBcSF<{9@Wkc~TuDNjo!?GV+lCVA1d6ho%7EFF5A6Q~C-AO^M zYP{cOl3w)SLl9G|T={)!F+>X|X^$q`kZOmZ&5DZ4topVbq&n9AD@XT>pXTA<{6&>I zymI*;P8?0y*w^Ozq4j0vZ(E{qCiJtDgrs{ekkYvKvFY~(nLK}-I(B6E&XZGjukO0@ z@Yec2|FTJb{M$J9j`~5=<_{0>iMI9;hR5x`*R>K$G)36@>c?LPUIwI}X;&u{Rb9eb z<*gy3GA?f4);IkA+P6JZYhD~1_b$w9D?C;l(o_)Q! zWMS?_|Dx57Ue1`$Z=>lK?LVa7`h0Bri{B6Y4Ow?*%kQUdU3@ezWP2`Z1@ug%eS`Oo zB@HF?OKw9OU*wuz9*2;S>y4D$T^Rd?+2IC1u^9V_?75fkhnz2mst@^u**g20M^3s5 zqbEQHrwEgTxGJA}Qn@#?k==Iqa7$kR{fba-C@@#$wh$XWN2{*9!_;?#$8kC9fBZr! z$3I?F{BB?A8N+tF(s$14m7d$f2IBUW#T9{7xFP!b!I%Q`FDHv*&NQ(r`bnk?u#k{Q zGFQP;s3FAZ`X0y@EG#o}(Tq5?4QcwP)4ewR$>k42k%N|%OIFM@{#N2ofB$}DpYO}F zE*FjppT5W24tlM8usZce|Fn$H?hr>;=!F$N+g=9uUps+vV-<*Q5mi)hxnc?BP1ovS+!L)Ds^VzVMg42t&8M50nv zWo6LRK5Qpxr-(*Ee!YGlajKB9_d5z=L?Cbsk@ycJ`Ed!Jv!t)EZJ73ozI$%vmt{e> zgCd>|9^$fcN59>OIlq^6PLu0Z<+FNM_?r@?|3o{LdzyZ~>%pGx$v>RkGn*=M;&X#6 z*Z5pjcOY+1DwCz?A$S7>EPZR-fHdqCMyvaQ9?jf90fMye7!pLuE8&(?5ub6skrZ*DY*(_Z zH|&2RAPCZ_bT@7&(%m5462fR{l#r6H!N?7yq*LiG=@=m*ASE$Ich}&*@9+NK$NhjE z2M<0wV0*_E=lQxc@;43mwW)`jJ#_8jyn9y&!p|u`YYXVczH|tUpfJFB{v{Lw78xO@ zR+23wCeb$y`m~H@Ub+>yF<+?GRHh&B8YDkfyaE;$l{tg}fb2+Qte=s2WgP$2nMCx7imO-ChB`xSsMwjz|OgznF~x1(xB z<&yu!XnD52F1m46DMB!ULTgwOTmCdHR$)=qXnAUE)>Rn^EN<&NdkKdORt-L=Z~a}d z%Nriph!=qlzBNcSykQZyTu)eHP>XC-Gu9VoRPw*2A2;F)ljt4RA{$K4;RcTy_0?=} z#$e>YKfmhO@`WS=)$Kn|W3A`+Pygq=bf`w9@?~oSVn9wz7@Y@b2tfb1K2S2oTKm7v zGOezfh-YHCucq#^xRz$NtT~6^H00I6cYU_u`^W@H(AjPasr8*}`@v0%r#i%^RIvnQ z0Jo)Xy1nt}8o@3Q4d9HdM}D)Ye63tSo)T?8gfH;Q?F{(4OHJC1#%@$om+cnH!(bu( zRzDrx<+gD3Y*Dz<@Of=2q4yCa$hi=bW!|w(KD%K*x#fHT`?6x8-o#{-Yd4S$vUYjq zte!IM5jxGPrq{2cV1CZ8C#;aF&L*=3qf2@#nr|}D)nKPPukg&ba>R5-n|zui66R9F-oBvZ|5)1nMnF`Fy;Jps-jPqgC}asZbjp<+yEy4*oZhNzq$R|x``XO<1c z$O$l<1gw$CFL6pkI?-wT<&HGf7>A3gZa-jzAG2QoCpwNY9?Y_`ieWmK9v9|=H~8kH zUqfpTr4YzU_c9&eu+J0Hdg0UD#SF1I`b>E+8zG;dy9tc@WX=zWR#z0lp?K5r$cZ4_ zELQq8hhgSZK7I*7z0XyQb|N(h(lNdtF1RyvfBgLDa(mBwf1%$lERlG7lDcoK%JvmZ zVB`kSu(QA)&VG%5YmtJ4Nn|k_c%RmD4$B~Y{q?R+JT_0Or8rxIie0?vd!>GhtJ|kQ0?F0F&f_kJqUjq$JE?!cx*9Pl9g;gv=ug|QuI0Nj@1WG}3orCYTdC`ZbE$>Hc2`Rc z(5)r@w&28RU`a6J508tWm#m=uLrc3{;6m(UItJUQ*Xzq&bil0IuLJb2cM%c=bk-Xt z6aIi8QlCFv%%f=A0<)QRd+9~A;ES_?#kJEBAbRfsATGU1u<-ymb$$R`Ab0({u8J9F zrS;7Gx5$1IcIFbCN5-eTV{z{)W*{=!&i<>oD&^XoD3e$!Mw*YdqeW&Z8ISdKy~!bm zjB4ojM5vXnOAZ$*eia<>lr~zevNQG#oC_*Z-ma|c0i7HYeeZM=r^$S60^gQw%clDd zY-IUz*B*Rhk%o*OGv$Nl`-cQe1IX~jmnUBEIm?1|YX+?hgb`8JTrOt5H6 z{-WGFQI+F&(RNeZ)oSW?1mATv%GV2P{3LXf{}AAi^`p3IK^Q~p&UY$|uhnu|O@_@< zpI(<6KP~(;>4Ij$;RiN`M$pJ)xt%~v8PLF^L=Y^N7zcr%CxVwFrXShu1Yl zHtdDP+%4q|n>&B#3G#@?AX`}gBX)I3D8mxjGlJ<=vi=&7z{F6Bk)Y#EpC7cvHOcqb zf$de^CC%=1C!|jFSsvsA%cjxhnY2^iNF7X7WlDGQ`SIte`34d==&+xLt_1jGM;E*@}q7v-Eqi41P6uaka@(~ZKBQ;!=}cplK3ou6i?hpU(wz3+ozTcB||1@ z&(WdZ^MMsqkwfG>;X^zTa$kzS=BZV1>Cq4P{v;*WIaR;lUyXor3Ol0UeGVPXNRpVR zp}%1jUjzy(aDN#H4ik+ge%=zToaA~T^07C+_s3TXVi(h{0bS#e3!dfcEQ3ZH+ zuPq#1;SMg`V|Fu4Bp+AGe>Eh}M08Np{HJdF;#4{6GSYj;xYJ0)%iRf5D4 zTM0LbBxI6^HdK*G-)*{v)y?h8;sr*Vul*4QUkG3eL@q}S#?nmAQw zEok`0e^K*tDjm!%W!@rE_)MKR_0}lYM!)ltz#i6o&8W@|>XV;YJ2dZQ=xuOq@*_~D z0tFU_?HbYSpqixV>?}i3!xAm_FxyR0T9tG5@rplpi(_LQhq5S|j<*d-$d8}(LF48* zIdn5aK|{}|pZw!?s$?%rkI=zRE_X=!O?ptTmRe2>qSfM<7G0%llaWv^HFEXyynev2GVzwj9ygd0a+1vFks zZQsOxaz2`-2L7`l<=LLnxlFqh4vJkx&3i%@HUcW8^*veJ6|#%UU+f|k19Q*X-LJ_T zJx^k9r8)QKBoWJ-Da9|Nk280c9b>o6d?{}_GW4ZI-a!UD>jUybf|=3EhoYX|<1`a@ z#uGF5(7l{lD5IGz@BzSK*<8Ipu9iG$9++}AZdMsgZgaJZJ{fGiJ&^D_>XE2J|5`ZF zvGcr}-S$Gi=ua=r$`67b1<(cSdkR*9H3OP$AvM3Yj8@UexeNEY%2uRg(anU*rG%*Q zKS@x+(SmK(0GRfgy|?@}xF`_G?=SsW^p-YoIoXo;oVXF3!x#q%tn|N|P)ndbi(1X$ zyZ7@=yHj5b-Vu5LeC(=l@8V><=$+bs09?5_T22LPJOC!aXI)PYm(NYa4tNjskd>4a z-8$B?P0(i~vabzX-hZLs2W7uDWU7w|>o?^~&_7lOGWT;e_=Thv*3M!DFbf)^dXc}^1Ruqb@JSL<}<@JvcDF7-+ya_8mKE2qKw09 zs0?)#yL-7{ZC{?UXk=qp6YNo3CSn+D0(;a>1je|^cL0BdgHodaX%}JJ>4ttX{K?h$ zQBj)*fH7hgR+de2VMGaBFSzm&by?KEIgG|}kPEf?ZRRwLq@s+F>H zw8VTb_KdKKIf&UGNg)BgYx{J(A(L?+}cEA@EKjKd%yARUz`Ps_n- zuEmh6)#lqbtKaDRC1;mH#Gl6F=q7Z=9GJnpgY+90?z=YLCV9mfSH)q@ic0e__vz!h zqt2bU=j=yBE*nOE5Uk_#9osIWVmMT%4V35Bzwj1nr1oaB+ebvlc&6KfvqICkE6>EE6mTq+`iZL0j+}0 zilQVgBxV>rlWM6tAx7_tap{q0^O?(_Seb{oNfo>J&pX|O{?IyIC;@MG4^46oqee$A z)QMK-H5vLBZXxpWqFL+(8CY-M7011qhMdok!ut>J;Xam#ON|BE+%PYKZzATz?X3et zTj%~kBO@MHT{@}R9wmPRq<5mcPW)Zz!`T!r$y(p*tw0aWKlN_jMve>suR2-n=Ovak z5B(we!Eg~}x>CQT+gbIU>%Sj5yi$lYH%{6%2HZZ_MF$31FMrmu`}o$L_^+gL`@g+g zDWp#wV50~7JM*HX5goW<|6tr>z)rkNy7vaYbhj7u(F$cIF+ka{+x_V%YAnIqX!^!N zBGh*^(eWjlWP{nVA;(lMSAQ6X)=Esu6_$3+#Awk?(mzO?65-jmsamMSO}0Ha~m{*u{iX!A=*% z9&JIVAd#E>L9#G1Q{gbaGD+d)GvA-dV)1F5pP+L!lbC1)KA5-+nlNzPVDX}-K7xP`?7 zEAV>6!4&uEZO(h+o;jyH)~zkIOFz}|CBOzp!8*raA9BG2Nvn&%xFoS_kvq_~pahlR za4_3c)@qi9PfW1#9K;sVchfu9=Q>F1MQOSC%K3CQ!ICDJb15p)3)*8L@xPM|yx6rP z9NcR8$5%Qf>eg!8`}BTXLhU~D#!ec|7X)8H-`-aU=KblsMRHMT8?37F=V)ZX@~P%x zre{hUXuBx6`8hca9O~)X>y7&Plw2#j?Kc4W`Q4*u_-n9~q;iA8Mmtw?r#Na1JZ`{} zyzJ$>{2S2b8f@Hzc4m!0Nz}~zw-tX$2Ij1bG%L~M^@wqRz>3MbGhRK_B|kFYGaF&~ zvi8k2T1kaGO*^aTi2(qHUCrbK;Q0oVc|7(QV?Scm{`M_ETN3NbB&C%M#!E}dMH>qv zeHs~!6+&;IFl3;Q@n(%YEseou=aR^Hl*}|dDw6&5hCX}o-Dnpcgh0_}7TTWyhknJt zA$l!qZqTnRMs35Dgvf$eqe7_8*Be09+dZOn!PLt9=aduN%(P7as31i;y?w8uNAHZf z3~9XL2boWvcQ>`a-~0vR>W=WbJKOAfZZ-x|F*MSQu!Ztt6Z=|76q#0rV=)`OeU*=G zy_IUspHJ}{_}$P>3D(+Qpn_y6va>0$1;{dovIFpDN_CR@o|fv+obaS#6P&7>+UJV& zJtuP%S2LabKq%NMu{Q+@!YVwssI;OB7c~!i6dD>D_spZ;&eojfBs!7vM8E_b2xIGG z88CUBX3+H|9o)u5`U|Ey@~vdDmn1suZdBmN66D$B5E;kg@ark=P(4N(+A|QVR{C6Q zgjOP{04w&XHI8IC?$);_I{X;><&sh*#w3A_g|}$ih!Y2zp;;_M^e@`NRCm{mx(J=< zij6_@WY1&?Yaa=ym@f6i#!za95Qc;q(rGt-aX_%1Xz7pNKLFa9n#tc!Q#`UdY7z2h zzevAT-VA>0p+Hc(2F;E$SBOKa!{PJ(4*&uLlyv7xV6qF=+p^!}!R99fiSxwylpZi< za)ly8&*D04^b*zx(uOcC8GW_75y^~Nm+CyQ%swY_2)(*ku@1Qqy_pSQ$ve8vxVAr) zDi18gWI39i*6CN{tU2#R9G_3m2<}UEMIrM`R_=D2G{6Th9KYh(hC^#*e$-x@Ztg3O zqi5U`kWN-SkZMfdSw(>O*Jadd_NEuBk_v3$Ywi;#vr@x`AtG(&U*U)f%Fe!z#XOO`mj37q)QC}ulM zb33vt7+3XTg!$Iy8*_rlcoLQrYFw=I?xXv9ociFd`wZ>2>sB zo&UcVz<7U-I_SSdmB}EzIK;x>1j6hJMcmZ|t@4%dIND4}EpCqGhTMIqyne z83Ot6Qw!_ZyyWJsUX_m)HO9~xvSnDMu&X@h@1v?zjKB!t)ZRZ)30*8!Qk>a#kx5dJ z$E_MuAnL|ZlF-jkWQfI?BuT@<9sfr2jpvJXNbQ$L+LOAU3;<7g5??t?%Hj4anuhet zs&UEc(CKGT?B|qOV`=_!@qY`Zf|GuF*bv zP5-axb9E$pkF7`IYU#!89rfoz$5>V{*h_AqE#wnJMSAE-4i`7hVf_Z;78AaZ^&-claFn44N9zH*yyEW;4ch7BTvhV zM~gxd3+mgr9e$IR_YJ?zBVss@!I+H8M}9f!DX1|$Ey5Km)xISusHeL5J)-FxN+O)3 zm36X3Irt*k!qqwSlbE|jrAM*ja0+{W7v7|Ibm3=)+_U@J&O`h9IX^HTrVMe4AKeIo zyp?%<)q@;f2bVDNbqch893L+IEP41V@UU*rwsQ&bsFzj=8=Qr?5v=4%njJ2m`FkD@ z?9aN9OR#L@P%XIe&DE^NnZx8rIhB*FE~+g2^flU#sbAd!Z!C9Ysh+qXH`E^hJ)M^5 zS)+UVrrT$^tf)qRy=H{Y(Lj;^#olpL0?Yh?#}}JLtO2sRXSW|BPi9l`-r%CAMJ$X$CFxg-5VXwm|wd^lINBUVU%yZIYWX9oQ6SdDuoI-4Y2x z;UtArcRuY}qX(H~Ti3+Y#!=l1m#ACfBKK8zvG-qWmq9)y;W}NdF~8G;+W=o^Z*-9K zzYDUzKISvOw&U2s)rI=E^AE}0uQJ__N33qNip9^sTP?1fOq{jhH7$Iq(N~riKm3%9 zrjZ8^fY^KD331_B&X0#zz#2{|u;>}FhdF1VlwD=ODKzb7vkZv;**`E+8c&3sR1L5Q zr}OWexw<81WIg8d1P7zU0(&A*Q71*x3?fef^V4pP&X3(@~2vV#uwIo z0{n*}BRBXyTort$HsdTnc{R)!9e)af`;gO*Z(51o2}KXbK6w{4`mb-S6F1PFy5c6Y zoyK37zuji)zY1aR^Rz7SHm}-B-nDD!)c26Z%j48A)c%Ssi)d~d8sT^0du43la}-q2 z5>tO{(qn0t)l1nO|5+e~7a!5|el7dy-EwPCCi3Kv3;HaV=H6rHHh?%_si0VIGirZs zT$bRvsnuWjp30zBYNGH)+NJxF-z>eIv#Pt8@OS@9r7XGqy?^I*F|}g5lSY6j$$EvwMx@LX!Tntc@U*nQ?;ZxT%CUskiaZOFROT1Sd~l%UyN)t}oR z3}yky_0N@}f_oDi6nL_r0P+8S0o)62O9&44qN~q@IjKF=WuduqP^J8m4;1m6`u z`01!q1Iy3+SUg#GC|Mm>0|f@Ir1(E369$in@wIbl1G%)VL;jkmb92PTSR2L~7|P2` zehWFu59yG~)+XBe&LUbl%m1ZlKs#Mn}$nIUimkq;z6A38lD?(=W5B zjt6cEo1>W$KRy33RB6p2qf%YAJny^v9$2h71HORmm`)G)f z)Pg1>qXi?Yu(Q+4=W41^Ayg>B)W3csskiDtx&=>kZMiGoKUv;4&M_n1? zKLDPL^+wflhy_2{BRJJ+ybJrC9p<I6y zoz!a9#C$YoM8rpUTEp2~|39k*e@Frl#Pi-Sw3%Fpe}B^WH26liIh`>5sYV1xdz_kMf(^*o0ssRQ8nH7sr$ z*~!Vsy>;Ez?;otN=YeeVYffF~Wu*#N?wHLLu+W=lfcVzXqY69d=e=Yvu1~PI z*w|_NZ>A1S?svHk3DAu~^OllJZNj^aHjmk=`lSy};tAYYLoB}ggWtgI%DQ_5wh#p= z%V+ktQ-W7y_lrjGw96oPN!(>;RNc<o-Lvnoy^HG#JNxk@gYLf6hy z37QOGHO|FHdJOtEJ*a-DYQVu%!-0?Z17KJI4;918ET;7Pw?$>60@zJJY{Ro;5)-Xj zOg8oh9eQvuzCv*!<8FhUPJ%sBCsaOnHT8%ONu}<;fEew+Ap;j8xz?f6w+8n}uAJ&% zH^>EyK69$&0zJBpNL6}gg2lqJ=8?!mV)mxxgX>jRkoPBt^pVZUJ)eWAdzS@}bNe#q zC{W6_siF3XGF0G0LVQrS6cbmjIEpp_!ysAPJwxH`$O`QUY z@ku5jCw&ds?Sw&aZ`%Xl2s%$aymoIVExz1!pmJ7nCtm#kzzZz0Fxs#^{VKICEpo2& z0QmFn0dTDKmwImP-cT@O==NlFet@i5{co#tMiiGsA}NJRCV2vuSCd7IkT$g6CnfdL zuLN`=l#;Smdv~GdB{&}_z)CdM@P+CDAizd!jjCk~hF&rsJpjrj>xK_}-%Q3Sd%dtz zK9#9WD82Z4MhD)1(iXJc(!J314v%sD0KzV|_1<#VoO^B1WHt%}ykUm*1 zu)vlp){mywSAj^@Z?o;}b1RZjs2452ANA=k$S&G%ANut!|Mm0-{GHXYSzpWU>#pKA zCx0)Oa#kES@YH*PiT|~tsEJbsCk92}4L2!^k(=${g`e%hN2__D@^nQ>y1PTME6Kwt z$>?s(QL?_~pYci-#bCi>Plc(uwGP}1){MwPUuRj$S&6KORHP>1E&g))QJb#p_K}_C z6+!o*nES%O1l_IgXh-LA6Tg2=mj6OpFmbT9kIf*r_m+w~QQ+>4vXH|51tbWV0J_t9 z;r!u}u9G~qH=K&;#B$=5^U(z6SK>LB-U-@4B(Xg$dAJSnDD}m?@YO;U-SK|vyK4)y zUX|#8e_sZ+!1!y|z`eegu-9o=SHYz%Nd+-*%LcegpqmX+^PiG5-mah+5R@4GXEK;~ z)nn6p@6%vFaqcfa@dC_YpR4lu7>kKW{Wge331ba+20?B&q*U4ab&N#Pd2s0ch0 zqt(>G+$ol2uFU)yx$NcYZ~OHz5b05s?E-Gq5ABc2$Joo+Rq=N*tgEt;2Dt?};j15B z>}B^2kBI^(u;nQY%qVEqE8!}-_&mRv@2G6FLqOa8{HF5&V=hp+bDV4}21$$Iw>7A9 z?Qf9%ntS?e5@Y&O$Ho+T(wa?y&$)DJ*|9N`8@g>D?{+_qp2X<6BcJlA=xBvL@i@{A z)n_e#(hXQ8>Bf6}cA3us2{n)j0agB1xn$8pvY0OgZhwrBCx=B7_mzqA!u?xF0(=oe zzmmE?%|@K3W_YY6QHnj!pk6U@&U>m8kPILjTu^&W&ssg@7&g8*fK^ifLsy7{DxIT# zTQjJ?QihWZm>Z2D_5%)5o3S>O_4@4;MYMTHLQ47Y8hC2;R1`?K%SVUbf}c^@Db<9I zVjB8?cqk&7NiqQ6AH_)g(hTU-r@K4(6}W2*_Dq>X9SEtkQA?MlOV zA1Tgp!Ifk84?RIX z5jT0y_HGk~UUade?w-$WEb(?U)?WCVA!%&UmczZdK8#PwZUV3KuA`~%Dyv7eJsO5fvGiOZ?&ls`e2zrhl_A_s=@Yb6=Dh zawndpm0&qTOu5+;AatDrDVSi)j`Cf$-ls2Ar@=x1-$(sf-U)4}z@N)C^xmYgo(*p3 zUAz$aTAg}qH^@4&qWS>PPs;*jfo|p}XvXPszAxYF)!9PSZ5D%h7|5=>c3QXldlAwZ z2}&5L_1$@(5yDU+130qh`4R>tlf6kzZ-@!1O1f(iu6(!HNhdYh`EHV|i{l8D1Y5x) zhO{)S-^`jDwPny()D8C^N>lx7z8gddUo2hw7i|hB^bFq2h@^QPTNwNaVDKqWTJaG= zb){IHwgfBB?^f}&2N?MdVF1LASPx>IR>RjqPe);pesY|O9i@e3n z;ic0h(BC50mk$80$DtS71FST@O(>z%&fdC>;mn5pTAQR))T56HMP&x73zVrH^Bc!e zqc;ES=02x*vUuhHDYVqZIe}dxAv4poi z^3)c-)2Ui>aK8n};C$G;cg}Dw1=I~8;m)~s0vZMG;B&)9*Mfc{tMH+5>^qu;vK=Ec6IoCJ`_6QLk zb=0I^vkrM9|3XR-xz^V+qmom%Bg`MXwAtHuN~pvq^in7hkf8#lJlHs4#XpXY$xYip zI%VZ=*yTX|rQ-K9^P+;ACR&$_pV_A{ld?6~zm!BIKnKSKX``V9cl4ONPH2Y1_Ta|J zyfd)gX8+bK^X(7S4DcY_L|fuZ>qjZx;bBMt&xot}*{JVXY}A;KCY6ln(w0l^LMX@~gzI#dmFu@fIf%^RSCTrEWl4&+av2E=H^ zt_J`GIwUYh5Vdxl1?>``llv>Zw$f@lJwQ~f8TPhOaAPq@r{7+5Yv$#hfG#L0wSt?P zvrKtox#@yNo!V_q$?{DaAh6pDQ7Nrh%uC~OpXWU>e&h9OMLM&QmCrBnHMGHNR?@7c z^{!!J=+5OcBmS*&p17N9pSTti~v^r$r_-wH9Q_mLC3Ja6jrKkeU zDhVVbq~-XqRsoJB8!WbVU$YcGv4%v&-%Sz!bwj_d;)3Fr@nt57VmXLJdoj+*TKUVfpvdtrc&**{%IUp)+4u&yzzijcWk_ z>1kJk_t7N{XB2mMlyMHW;JU@(e#^0srqHE*{T+1c-_qD%(hm;t!B6{5y1jA&QS4`d zndc1SY`(S(rVoIy{(~Sy6iYyUfY-f1h7X;$F2{lTS<8JbazGM@7(S{&3$@x;_KVcn z=a@)zgeBh@wcd7)+Xb0?91xd3ms;Nc>rqqrdGr#lIq0VI)ij9ovT7zM^}?|ivtH-u z?+>rK#Bbsjk%Cw5xtGCV)e*NP>kJD2>sBdax>f(D4}a9fNqo`kES{7=mEL7={u zGCx3F?l(56&w**4Ohjs(k4(2zKbr|NOy>vQYqbG+`|>eddQ}4h%us*`ifu|O$1t+S z$>FkI)MRQw{p4oe`u1LQ zn$7I}>(?e320fG}8O-(A7Oi|Et*jV=mY(Fhe!Cu7!d*Gj4$`Ly<+Q0DKgVrMdBlp$ z{_qYj9@-}Bdg&E7U|m?1XKk1@MShw|o+Be{ z(!(0Aq}!?&-bIn872(@*=iFpPgET*^`h9lnqtyN*h&Xsgs&fy$TdM_b=xvTPu?Y`B z(BRdp-_s7E)dzbn_RgJ8GGfu4$^|KiK?xrI;}`gY441f$lFcV_o{tSU&pQ!r!t0wD_jkqSOQ6!*0%4M;~*`!g@%epPWvDivPb()N$RaefSxC zau6PAzG{MYn|D`0&adRCK4a;n!#q=C&%od{W0PY6oM+@*YWuO<>Y5O+PT-h8dJSfX zTdL5vq9mpoOUYX7jH>wL{f$NO2hv1Y5w+BxRoncz{sc_tEOFN{5UhJ8d(!l)Io?8ATCzSAa2G`zE4Jkf}pKgfgm0YxDH_iYe9 zRGuTNvql`ifuhaN@J{Q4mg;NLEO+Y|D`DL2=P>LOf+j|dRr0{a%l*^z9}~3jyvBW9W1+QMgj^MXy?V)5=8lL-^@cmFBPCZo&)w|0aTnH- zP&9oqfs(PoE?JkB2f&1hoCEZs$6{^YI+b5Zf{DRF(ewQ|CF+W}fj@QAsVW zOFsHGKZ)xCQ90vLz!&V6R4p=50rBdr{JaHC56EH%(d7<3#`A9NePxv_1S0c`{?gl{ z=rvvJkqLj>R=`#2vLLBdJ-_F^e*zw{PY@pJQ*78}s;g7d6XLh(WMN@=;<<=iayvZ$ zhB7A`DX8Y|eA@1PKES*&?#7J?oh5ZJ&%XSB&*l~k2?~!(>7^p3BJZqO7+j@p`MZ24 zI=dh9nZ&eFY-t20^nc1Wf+(~o&5zhI44*68F0R#iMJkDrI|@LjdK>Z-Aj?v zTOl%Ma&q_ows-u%Pj+HXAPu*?QM^aZ5;2V4jMhnH0TU9hS$CHHY3W!U(yp+*Orde< zF7!yWwkDR2hHrGjFOr^@;GO$PGuVraSQ;??$r+Lf>|AGHQl@2Gu#~=Es6#R~{W^aD z_+c~#(ipc=9Jpl(ITq_RcOWz&EJW3bYai_`b-umsUcwa9jLm_EDDgV@}XW_W2XjwqBQQYm%k41$CfKUS>zVL4(ul-SjKyy!piNC8w z3gMs-qp`35p|1Ddec6Iffcx0Gb<=2g0jYGvV9#$>=tH1^UbjOIEnlk41U# zrN3uo#rxTRBhll!Vh{65)%f)Kq-KyNrU~H_zrp_i@LoJPeoSXl;!bYGBv!+_RD$1& zH{jnp*n~-Ltwx_NP?Sbi{VA-dpuLynP0+dc8r26z1NY}1B`w*;JK%Krz8i7GR3`WT z-dQ>}cB7PWX}*FpFk>}~3gq(a6KNle6|ji{q4pwNWofDsR*)B%u!=>9LFeM8(JcvGwsJW0>PKkUiJ4S&@J>{-5v-@Bn6x@KwdKb ze)mZkmT?M=s+j6QD^}TD?cEC9rXwd(NUzkr=%@!*{ku40(!fHNQ-Vb!7fW>M?FHLW zMUkGv37|x4qw`?bbySyv-?wLC3Yz}G1ys5NPi}%e{{%%%qWv(@6av#^ zRO0JS@jTk-Qr^2Ci+Vy>Ghi>s-B}fPkh2LF#V-XsndLxLhf=L7f!$)wH_d-*5AkC{`WHI6d3PHe7!kn5@`dCo-vh zV`gHhWMMO=ELGA(xnN;${TB`WVxxSfpY(x?gs9YNB%TY0Vm=nTlmzdITqt%3PdFqT z3%gwEg-_dH*h;TSyzNiHUms>gKfyLE%r?14wy7m%%ULqmC=;kvq!E2(Lb4-@d(qpn zy2dyxlFD5*1HkEbta;qa^t{zvp##_{G!nA~cbZ8L7 zsA1tgO~J~?(N7fl%v2hxLbyY;DDFi<7ob!TX|mw)L^_Wptb2yM zSZTX2q@r7O1jf7&MMY;k+C@6)K7uh5CM2jTB&#C(y<_aGGAK=D`X7^U=9?(Xu6>)Q z`O3gc&MSizl&k5Wr_$F3!eAMl2ma#48%c z$^-nEmJcjb%yTM|@|nqg0C@cMrt$H8Ir#cofs>Ysu&+bx$Je!g78cjj5DmpH>4W7m z`pv-b)m}UoW~SdF!yu+}-g+yNYw^HAiM4_P`0vhy1Nuu(&^TzYCMKX|Okiy?(DG}G zJ;`SOnr)*STJW#%f@J5E8`LHAF$0}WBPj&{r)RkUbE@+^7g2MheQzVS(*Q|LUjvYR zGQ@l$qoi-v+LY~VxAtu`*->-!rj14LS4`&GaX40~s>Z6!rYve~RCyU*sCla)g=la; ze01YhnK19i;K7HWRfuR#wNdA1rkdR`$YA9G>9QN(h0E*n(9oqmR}3Bf&K%e`{%;vx_v>8)dJ(y<=S{Wj}Vok3DIEUX|D_;C6QM~qG^#y?+GeL!X`;# z-rxBZazREknDU5lbQB_Jo))sgeOeQ^)L1NExbJp*&;CGhSW1d!s3e+`kKz#mcqgYd1VH6Ryz?g1^Tp0Uz zp83EX6J>`256mzZVob~UdBi(Y?dS_G-7o9;lV4K{;MW)S%(%-K4s}O7h&?I z`fuouEom#u0bLqq4AJ6sGR=zP6}(E5a>mRHP8pSd=&V~~ow~93gc3B8XH9?9OVbx9 z>z-BouE=J9k2ud{KsAcNkm6F{s)n!6Y|`m>!m<;Ll(4kYz4N_0&Yz4@4D@sD!`Y-) zjHzP0QWcI1ccVyyW(7IF!mGtqR&2~DVtc~QX}(@Aahx(W$8hrIz9+AQn&=HFr$rN=~jI z8xNq$qg4xWqD}XtB^8LPcm)y?t4=VH#+e~gP2$Q7Et74|Q|Kq@Qqo2iMT0qVzfupLL2v7w){ff=7!RN8y9L*>iA7B*5*IxT!a`sC~EZbcl zmJuHY{vf+v-Ds^ptr|MR+ihpKfP_+x+geRVV@Ub!F0AH8q767Xu|GrA%el9Tp0M^a z$)DSnQ}Tt9f|4FJpX&k}nnqoP)ci_#v&aIdr+c4AyJuK8Mp76iMNR#y1AWIF>oY$g0XGdyN20>20d15VafxKvDBn!BmW^{?mHIGqF;Ed9HfEBo2U7Q~0Ws z)Y{~+;GWEv=Xsju2Uc{7_l&EOM&`cf_S}BKsbkWR{``+1h;$R(5ET7lXxHaKQN!QXX)Mz(eXCJLRjO0&&%QT30zT4zzE+lv0?1-Hp*61;p5I> zoq~c!XYeGt0KD|(7V>V0wwFOX9~<()o$l$y=^NWBnka#>*|(=75F zH;w*4f**tdWK?mbyrpt+Y?Q2rtP!fjROB$*^UVN1i@W6T&s@4Rj4%?`DyTfw+0|~= z^nz#%`e=BxMEfsoPSIz6n7@1h5z+9p4*R*x^2p<7+UC^o1YbUfMf_I}h@I7mxP+*u z#yW&B+)-wCxz?H`N5g9Vks19X!bB2m7$r}nwX7r7Q&{~uTBu>+;LSC2E}f@>HJg%b z?-I#w!d)>CgJq)02z+xb{Q(n?dSJSF)X-zktF|lfQGmVITy`<0--~+%=8QUjD|fj& zfq3C3G*EPS<6rM$Uwzsn0!}uu(GVb-q#zh;v$@t6-|68&%`J*sx5i$r{H@gkmIYKtBLNxD96lCZG#P8?(IyXpE{tjt^_(gAn$wG0|8^5>;2Wsw4@>=8VPFG_-r|b4A0-{2eEAr9?L0Se;WjN=Q0Jm3yh2|OH;QbSNB-OHi z6AK6upJDy8Uh6f&JJ@>7{I%7^F4yPIvi-JaT~08K7XiK}mZTr8A6XkQNR5{8WO%Pz zLBJlwsR_NoTrtWnsiByEoJ96Q&@D%rI<8kR^yS`V+ZWAcT#au|R`}|BI3^>k?R7L7 z7m+4F+kPR!#8l2Z5H_QSX-o{5D?R7C{X$z5d?U!{_19(8aK~Pu^T5t(Fo9rrb2Ux& zIB&s6!T3pg_Z!fzWO~A3?XuRCynQYL(;Z7eWT)I!hP`kwFGXywz7UX_Jq)DVG}oF# zPlQJzf^+GwyyrZ7Wkuw4iPx}hI(_@j(*uTPQ!gSJlb3_QC!22YiPtohY3p7M*=`fh z+hV1OdCPZZrR@*?0<$tMOpd|N$9+p^pk(rV$Ts}1G0^Xx)2YhFaGH4YPfbDs`8tm* zV&}Bf-TsOXIGD$Qb9C;R6Ep(w2_nrPtnIy(4&(j`1)mngBY#P4et-jh(e~&t^vH9F zdm!o;L_Z)Hjy0-XPVI;7=sbso{ofPD`QlX8MkiDb2uWsp%^eC~9U_{B6Q0v*l0{!8 zw)pi;sG7{C`a}#i_&};@fzCeUA*HDv8euEl(&TuDFaJ1>2eJ=Ji_?vQ6nZ?a3z%dX zdRi5=>^L|`>{-4OTmBX~b`6wm=+1d8K_*4`1+Y*32Yd$nrsQL1KZkD@lE_4+>F zpWh$9KR72xobybc*Y&&}*W#%i{WE=HYo+vI3!G4WuA#%~V@}`5VH%~ufBl|grZWx|mP$`SS zou_an)dp@2mT!+=mNf>*P)v_SJ=0iYCxI>qODqN1;g)r|FEWPJ-k3b}$D)!qHnc2nTuGfyZc5#fu|7xX-x|u# zcfQUI8&3#pBrFJfrs2@K;b26@D-y!-*3nAnI<({?_5E_LB4%WGHBolS;bqeoNr~ea z1)ABQzqd1;G}CvH-5&-F5)kfN**r~=YKu&m{3qFtVr<$bUYdIc1I_&u@CQdqe=6-U>KXK(LCW&TeY(Q$QACbYJo;^M)Y6hbp&En=kV_XA@nwOho22~l43>w< zH<|nN^|rlyn>iH_Pbqv7-1`xJEy8?su)zg+P$jDRl3ZyZ?Q1I_RC(7lpq1vbOSV&&(qF z)zDj1Vve(IG+|R5mDB0!104F;`)xnl^CFkA`HrPjTEIOF=BIuPo(r)@?#WXINUsCl zm+vCiMectRbW;aKdO#wyjx}Y$wD$b7^e3g76BSE8FpJjnTSKie`76|XP|X&maMS>L z>kF?(Ow!>zQq?=CpcsB27LeYGSx{ARk$n|MC=n)oezEYatE0-^-ucd-yi1V*BUT20jno&lRKM%8GW6%8krPp|Q z*$DbUFFJM8U&|Lwy2UQLM&W@5R#KN>&v<^y*>O>2S5E8JK_Jv^*>#mMoSX3rMQ+@J zTzp>@e56>8d0g}xy5`V~a`%lrV;>D-edys_iJHNLrLhirKyqmP@WxWEAb8&P3#=!H zgG-j1LnWE4>T3Vwi_5TEB|iW5TE@f$e(UlH%I#z1)AU$qg?#Mwk7tMTXm9_26*H{W zzLEzQ-#4QSY-kf~XuEeEWf?8nJO(Oj-wfub6zJ`X*nXez;J6!vd_@pT6sC0fK4EKT zF#(;7{6c%+4v*peV-WR2!C{v5(JPr`r-Q}FAT#%rJAzy%E_X6=y*IHz@lrMkZLsgY zuwpwKmhT=^QK`C@5%qJVmf0$O`++L;zi;yDTi$Rxw?;x}&V_C~PQHLgEFWWgmX}@C zmsa6_JTOV{&`R=P=Z>p&*RSHoKz0US%Shu$Ops?*kJz-@n$ByZ;70=B5g$e!efJ!; z5r#zy{t%>}ds1%b-s=ITlk7~y+Y(=$OS|8HSqi@MSO3-+w+C9N*E*rw&Lxehw{}Z^ z6=rbxYi%cPA3nurvdhF>Nwt?coCfPR4E`7%l^xBO^uCN&-mP|VDp+i@uewl~Isc#f zTlm1llW^WnwnO1tCi{!>^`htb2D^YG-sQ9_`e0pXTjeE@>Ji`CF#Vw3GNlqIiSFvT2u$>`~^H*p3(Y@{SO8=le|M$sB_a+83Lc@b(ps%q<>7`dRkn#Z;75{yUh*udmP93UIyjde@}JFI!=>jX7#sjf-jXI zV!IqZ9Aq8Xc983y%zvg~^E)fBi6xseVGYMmGE5ZtQHj`M!JhP~Op#>JrwWNIk$~uz zvbxk#`}v9xifa3d>Q{{Xd7dH3jDk#wsg~8XhXsdYKdz({YK$i4E{nE-*BV8X;^Pf-we%hMuy7Rm1Y$PPs zSxK6o9fab66Sd;5A5>B!=EyD$L6QNf(m1YPU*V@;&vcZoLmlr&$>cj*2PX7eB2ogm zAG{3nOMCqMQQlzo2%s$3b30SD*_2xhNdNX}GjP4GJIrnfMCpi3AxLopv64-&M_*Xb^XTQ2d?aS2K&PFAFRYR|dsf-r?y&qw)IY~^p!p!bx=*f# zdht+XBNy1HP(+dvO!ZI@R2Wm0(cKWg*I3e5WzSpWUv&*7zUzp*t(KLx267(cPr zvEY_lR~7&WzSccXgBAAvvi|UdH8gF%%2FLB{M8%w?IVL=(=E@h_;&ZH;ly;b-sV5W z?=OZHMSnxtLZA_h$90O6H-=ZtqZrEs&zj^%=OH21jNgJX>vw7aD7R1OU!9u|)lbAu zN-xd>{6e$Yn~M%REdYhbt50PLO^l;!x3=;Hd?%ZKkoJy(^U=M{ zfXrOpW#Hw4{rDpZbII-W>**M9h_9YG>tMA^kP1zdS#RE95 zH$+kbn;m!NwT5N@^_U*c-9tizJMRTLpk?vBwR=J2(C}9pQEbq2voutals1@?8aXr-R(_H?a{nGa{v;%C-?z2o;ug^Ep6U4}Fh)go z)a^4V^V8dhY!y4|V$yi7mqlC8bRTWm30M5uUY6-c3fCW)+*MWyu{K_%mKAFCa~43GfvFsH8p0MUppj zo=o9y^{`;h4EWvl*ry?Ot# zetvb~LGyqZ^JX|r8B{aUXr(jj=w#$k_TDjOY=EW1T3S9+{(jTtOQ?x8{KeSA$liw$ z9qwWYOTK{~F~b6Z3Y;Se>tnL^#+to1uF7HhYa-YlWn6PI@#Z%+$qel zP87`o#gG`D{5T-_VYd(PPPYtlMtF+9XpAzS9@&CF)6d4nry0%m3$S^sP{iCdxTnSk zj`8YoIclZ*`3t)>W3AV#{#K9{mH2o{nSosy-);MIW%EU*;a8T2f5`4LvStT7Ns#XM z%{ev?GHb}re!6T*$LXytT8^uwjB!>9ll(3p|DbtoE_^$-XR(wy#U8uBBMHw6uDlL- z@RhMZ48qi#8KV7_UPyn6QD>Bq(X^~Mm~F84;OA}Msl;W#@%|3yoJ4X2QJC9)n4%1a z@7MsH-hr#KiaTEa|cNdYej&;0RU$(#Ic%>jpJUE2d~WW3au`3^2fg`U~Rqk z9QWMx&%Ekt=IBN5AC=+r0xy|oKPafvF-zLIWl>D&zcD+jdnd!Ul;#P0Y?-f?RuA*4 zU$wv>8`QbcXR92V7g~ZzqxKZ2<|!TVX-_p zlk;JF#64^xKUl@Wf4Dn%7F3ux@Z0iN>Dz**J6TP?J#U$AjN-H9ICrL&53VEYM_Lcw zkswugr7RwG>78-ZojNS83N4D9L|w3r$S*UG@Zdd=ph+K)U!CjX#@q9&`oqN-?GB&6 zG{Um}LIv8{U47o`7k0?)1C@#y8u~m?~0F(T9)o9?4($n9*-0qP)He5vZ%q?_l zB*ZTbclrhN?b`Rx+ARl8%pfj@T}q>ypVLi+%*0M|ym}tS0VEaAWY0a96{Ot`1uvIM z;(Jg*z(Ky)!?jx><4ymO=Z2aCjlB`QnAm&Y4gCOdhVQ?*cZPlS8uFU{8L?10CsrduIGkHk7tsb01H2Wq=4_-T9F zZ5bRIAnzOezgppokNk#@+z5l78M6fDwz4dEp}M5`IZph~LX+R-tI2UmZ5|KmlNc_( z;_TbLlY_I}qprq7+NDdT15sM5rYmFgiS~1!_}!zUO4s1$3K?}LWoN;@wg>B0iy|&L z>j|#Ip``*N7s3VY_BefE*GgIU82_9J^9z?M=d2PSBsxi*R&t$|4P15-_dA+g7Jn_d zIr4?Kty5@ZWVh#5Ujdcl7knyzu~2(`WVt^SXofbg4f5qEwT@YPNG|6dPY-|h!Zgq{kC)QKTrkL&6nohn{2U>o2#z+ zR`tW>wq#kUdtG2Z?|(agR`zfAJ9HF7djQ`KBi}-&?0=w9x7B|GL$`&Yz4|~11N(Pi z*A?=7`q(p6^t_-Hu>9;R^bK89-%~iX9B1F`(w|%Z52UO87aD4P>82pO>-VQ1`1CFO zLbiHJ?%ofHc^NMmSM!KRxjewW^W{1h252Lw9Rubv_({_Ab&y=G*Tw z?Lq4d$S{hUEH@Vl67E9%+OHt3P7b^%}9RAcKB-ZlT_o} z_vXIl+MVy=dlm)%fgarMy_^^+xZ3_-$>sSU2pY1IJS9{8D%$9c0jWk4gUTEspw1k9Qr2A zmX=3>!&PwiRPr(kn9wDsez`FT+av#U8h^{&zqoW^AN&n&9HTwPBAOJB(u1|PoF-W8 z57c^g4(D*X7j`9E&i~|oj3QQi6KXS8nQS#LvY&i!$9#JJUWm#4BD6y4noT$uzWBRo zQQ;KXzUx1UL+aZwiBfE^I(141tc$JFOl@ui=N7T^k5v5jP=7E0LCW%wq{zmU|8cvX z{u5kUc#-wwXen>B&T2qZ(n=IG*>YD$ci(cUwO(@8+fU@D4YS2rfMx07l}zZ%Q84G9 zgd?0R(^WdhoS)jV`}$t)Nph6TNwYeWPQPh@{l9LY^q~kYd8Y9rW9`;FXyRVottng6 zA-5=-bM*=7mL|Aup;PA7k$Y+8(-3*1crwaF?O!{w=wtqPZJ3Of5dNd?kj>E(z^wD$?TP?1B8lme2P{ z`0W3`b;sgLZgcyRs-0bC*XQ|_Ec_S2n zIu&HjJ2P*o?p?Xv4nDspfAa4x@J5NF&?b9e84FzyJY2oBI`X`k9wh#NEeWfCsYSDa zFVlF7YiQ~H0I$HLB{GE3E8_^mP$U544-X(uDi99X9<);`99M(}kPsCT^|e{=9@!Baj_#Vh5F-Y6Rgj{3TvaliT1^o-TT4_Mn+1SkbAPcRNUiuYHwG zGeP6?OOT{?tibWfUXD%C7uwW!kAY5=j_B}nDkHoq)%%0Zi|+$k87EEub^}HCcg+__ z80m;<$POLV!ub>vBL58+4|YOo15iYHTF|{g+2qggOJC28{J)1c z&%4T2Dt0z0oBlFUtyY&s!hd1KWKIT(wUfP<0;|1;{(M}q$y!S+Tx5zjpTdIx4psI2 zU@n30xhEr)Z9eiPzaQOi>26r^_cI?<{*H+K@F!d_Kgd}uCu?s-rY@!o_vm)B>(FF9 z#}~Uf#5B(=ZvC0oE9MTmGobd104IFh1Fw>4;;QS{1+!6y_;yggtjIeOLOnLFWwiX||?2J_+L4}E3#lNUOIx+Z@Yb#yA| zxn9cXHx5N|4)A5c-qFoG6nZEc+wMItMt9;Fkle2%aFCQ>zHQsFbLeR^ z`h+I+6pxHb)IP1Ms7^qOde266s{Qb-#r+Uk`z!Wd$xigyGp=9F7uUzXXl9f9h65h= z6!21{j>H*mg!|>0t+XPat5@ZjCH+}CUB$7qRt<rrl(Lzfup1f>N*43oW7}=(ch`Zn zjDeX57>@z^8A4-SKei^7J!>`L}tdL+D;VRK#W7$X;Rg<~Q+ z>vN0QKVuWPWRx+v6aK0)xJwEmkwf@eWGA3Tmit_B(N`IvvG(q_7GHE9 zBz%574=wV0J&>C3H|p2!e$)dg;G4V@*1f3uQO`~3>|d`gvD!oWTvy4R^0T+4MNm*( ze(luW{NMly5K#+v_0;Ac@jp$d?qGN#v-Ed4*tnnn#9qGX!)4bwY3TYTH1x9mUwMBn z-#^iF;q~p~f{)wVL;Pt74=2Q$)bqk|KYzr5KGn z?TqsX+w{SbFYComlEWv=p6cK=U^fRk^Du&Xue0J4nlN%(m_XNqC7|r zrNevE+K~>X1K?lv4*w1NzwviHWtj@J52~W7V8p9eS_>5B%_Elw$Cd+={8;=i{p;4H zzxeY(zP{ssSesN!jcMkO%g*TOxO7lemswg91*vmGKZ86di+6ig$sg5SO?>NNTbFTXYG*f)n1R5oK`+!!;(;oAG6RoZs?%T^-LkYh~H?a7%HrnEs{nEWEp3VHb zVnXJuBf$;WH;eA+B&k<#q=qS%4me%C*E9VZ2JDP4-onOj{0n$IwwG*2(%5;nr8MI@ zNyUv=xTIBqhWj~gyYn)(x8Llb7q4`e4?4)bQhz0>Q5^g=`n%O(-o&fq;YHWe z7X$isvgt9^ipopB`t7#3^jWi24UnzPGI`_cd^xQnvh$iYvT5*iN=k%~Genfw*SgQDA~WV>xU*6oa=nc z_FXwMXIpLM*rRkVXng*;=h|jZfn8y*;NwuHka@k>h}1KC6V0^XO|O`k{cS1arM;u! z^a^gE)7PR>RmAmVJ#3m#{m1!J#`|yGMmnUe+GPWgO-sHjr}+{aD_dBd)s9|vYGxZ& z;7$vfUFi5{(jkjDA!$715fCK{mOPK&a$CBhxEnWX6>86CMJuhh4D2M=c?yq!E2up3 zO*)8V&y4ne%hX4ty3zC54cV|N=1FbSE*Te_DPf-NiQE{GvK{o!9ZHp-Zl~51JYc_gy+@BidfmEdoqmKnLBD3DCySmdqP%tCim`E2LlNvUOZQ0<-mR!4T zn^9HO7ZVc;saBRR{9PLs26RxEg3y2+sUFM+I z`VI&_3cA>ERqbmPVa0gZ@&*k&h=j;>US zohQ~6%u@RGQn9&%nLK-1yUu!1bf&08hmwy%lM5eSYA~H4GTx`g^$xxuA|PQRpq?R} zBBf5HwH?u=SU`UJ0He*&g%Qa0it1sNP{=)$WgfJ+xIZb&N!h$m4?w==~J z!#emGhBRGvQj!K_GG);4Ke{&5K$1U#Ly}aCI(2rZ7Z4QXYqD=?WwO`$Z=H;nxNMQ# zgcJmv6+gQDdQoI}Awxl$WdAif?)ap%miprOvoNI|kk>BxdKhENhBNcM}Qu>5@fcuV~l2S$JPB@@C8m=}7#7N~gCk*W_R z%T;G8wtTZN(NDOZYJktZH{DJ!^w15ZUQ&feA2qy!g3YJ<0-bOJ@ep;_^(`o5rU1&H|t1~nr`qB!{JTMM$Oj>zU8_^xq@lpS?A zM~DP$*2x+_cz9OA4GHIZ+9rLf;j3-Wb#5AgkrI-;eVDH`;Dec{?}IA)-q-%PKRn;p z*xd%zTR`rr=?xU5i6_LcgzGTr@MyVOs%Co|rgJklx`D87Bj(aBP7 z7#&9Dnc86(E0Ck9X~3&jmR2&tz1`~fw;i(i?IphUwb2prb{qal5X+~@fS z6Zodrmz|B^j?DT&XG2x97GAobEsO_<8fYi8NulHqD%r_v|xE5Zs zH$c)e@OD$or6;&arqq2hcqHH7;BkV)5RRkLCSIREQs$$UAT$qYrk)<#n~-#17vzRj4(4XtkI|;5H8A8dG1$xZYu@@l>h?uPx{Gwp&qY z^P=p`HhIJS-3N+_hcPK`GcZ+#pNCl`>7*%6GhNkFzEc_6`N38jUqI`$P!Lr40(tHc z%&_t_0;c8Aa8|xUHe_gX13%)<5Zs8&*CN2kWH`WMPdv`Jv{h zrqmQn_Un4u@^o@LUIqsPUOg)p8?G^i)ApvdNzu=L_5NfBv|I($=63vr4<-B{HT9C6 zD}u!CLVG8r?D?g@S9HfQu&KsyQ88Rq>$ZHN^_e?{$?B;QU=X*kb{xua=Q7WjW8u%n zDxrk=%iptW_fh?)6ePjp*>mBNRt-qw}|mi-nOUf@(y zJKHLL;HYHys~B`s=%p^H1KcnxTPZ_%Rt&Cs48cWmH6rI_@W|qPvJ(8--n1!C2)JxN z!G(`Ik)gV9C-%ODk$9bZ_Z`};uvUigwxhLocBJ5lxP)nkR2ajtnFljT+DM}bZ8)6# zBdpE+=>U2H@@S7y^bI0aZJJa6t}lX>>E}};sgy0_npqA@NoqC~batw38lIMb5KYLT z7(?|GC1`u7*9Xxh7(*9{1V7drjHKo&fjPqC^UFU9vuNrW=9t#LT=SuaIjS(P;To#> zb-*PgPl$7#Kd7Dl#;JS{uqS_lLKnV5Q*EYP!46UA#zL-ZqPhgd449)GsB&Sl=8kF| zc2Fyy{nB2r5`Ul;p@)$A#P~`fJ>w*Sf4#&40D)gnV{d7)%K1^+t$3H9 zl}C~2dsAmX31tEisgeF=rCrT#(+P)MMaG=ra$R(0()XFV)dwCwilTY0jxE-hvMrhG zr7rlfP{ah-A(gmxNI-fK0}G~2V74l z-Ha&H(uF1bFtFYYQ<{`hB5C>fS!P3#?Y(n%L~Sn{fj|6km-d4#S46oggSAyfxh{sE z@O8D6WxbYa`%YJqfv}cMR!FYXvUNPql ztr>=NuwxD)?E_prSTDOFTM#JYfOTNW@WTTSV3kA|YLyt&i7N@w7xST+N45;9)uF|M zC7@NnMz$Qu(P2xL!Q<)5i_A3VG$suBXr!j?X1`ZnE+#r1EAlwWbE40tSB%4{L{L+7 z3h^jb1i!7=xQ7#3Q}Hk<+&Y(x%A-h{>rKDL{1Xty{PspWJIjkjuAQ@NldSf#9uWU%V5^o-oi+hK2dI#ZE zGDc_%M3vK!U}M$HRGCsfMwO9qa?l%1D2qmc!tAbfgH3V{-%tF+FRW2SzllTQPTJpa zCPTlA@(3GNR?#_&s7N?`PExldZI+G-wuAI@5EN3##cyCF7BvVkE~={GV`{a`3|4qu zmlvQ!Z{rN2FqWOTSVbh$aIGu@-qCz9FXL)~<7p(xLy@h&M&=ST#XbE?E*)vl*J7tF zfN1HzSvcKzCx-XBU65#UX04uP2OC=3XSqiA6W3uUn^(_`%#ZsjJQ&v6;h6~Rxq%B4mj4m? zUSKSDShe#33nEi013>ke7N~L@N=sv#RL>0vt^(;`Uz1cpOm*8ZvvxL}DCt#^B`q;b z`)Z;NeWiPGZXT0M6llHAW1_NB>+b;ltX;gYcp~~3YKhQGvt?#;L~O)|OYbz8BEP5t zeAL!Yca)djYR;7>`0Ypat z`4WT<3xap}drg0#Dw#gT{URfL_k@n(s(GQX#UOml4n0Srs&-YS&lTN^FH?;ud2@%u zi60;mG60l#bQN6<3Aj9pc36}i=FkfO)<}|chSWc((93T^-vN(12a;xDSlMf)t~isY zwcW1`?F=&2 zr{E zDlk0VW?D+&WD9(KD2_khX_cNEs`cJrQ!5pTXs;`^dd7c?++rTTv&6URH=~2Qz#f6fGQrBdGBZ0%~6Em$i-sz5ZE9+f_HXLmvxP?hEua+4%JI(#l9wES@_jcd;P z8()RQshHM0VW)BJ%K^v;hww8&v3Zw+{hy-!Cj7c;KNp`&O*3xM{{80A=>NK`gdu0R z!I)V~*WRaihST2N$|zVGVw%u>y!H;@tL4Pi5{C;xjNwxZ<22&;dy|AXSqbJ)-LAWqK0^_0QPd}uQ(sBy$)ia7u02Q<;G6NXZx~AG( zy1Ysmv}w~?9~@hrpdAT>VvMM@W0fm)kcF1OpU|1%1x(8K*l>by^nX)V2;dKzT zusG_+)ZLtS{rL=o4QnIj%}2bbMERlPilZg4_W;}PMdi>-0@a#W+YP*FM3@(?7AL() znl34IjJLJc(}Gr~>6mrH>2#}qdkcQW>--ohXoVx99&d_d#C=RBm7Jc(pG-u2K!`%H z>7b7#JfDHTiURM42-50NkXJbT$x^*fg+708@`|JqiCf_gqijW1)bCG}m{ za=q^lL}vm!^x};NP4et;D@Hy`X%reG1NaN~BRkB-1Fn|?Y3KDWN8TH?X+8d%3^hM% znLgIRGpf$b@Pl@+?ytQK*_qxBb**C|xoFt(qDZ=eWb&KGmcf6{N}}y^WQM?NEi-xx zCwBMO>XQWFKPOUXSLQ5pt>PVPdbYNyGdR?=`uG33w;a}7Vj!PMR5la2x`NcsaR+x5 zLuSjNEa8w7##!L!-rV=sWw!tJbgi$?v|!c-_%T>|BwCwF*gD?cTQ5exIpTF0!;~8O zA68G#-Nmg0CpG^nlXY9$ z@AlxKxrptxCgT?#VjqJtZyD1yogy_?Sq5rKnUjN>j6*?CpvnX_>k}?i zsdxu_2V8dN?d!(Adw>VLXoNG{v(b?ZI{YC|O@zi#Q9AA&b;(C^3z#(n7hR(W&?ei# z_cA3vh8YmXYdC15NeZlS`~VS<;3s}M`dhq4S$VkXY?_LKh~h8BY#B;{K{=P9OBvIQi^XFo5)=~M`H zg?J>rUW)a{deuRBeHNqd*&bf&Vyvx|z%e-R_)FS+D|n*Tp&tI?aP)Od8UU0a z)BJE$^^QY{6IJDYc9Zrd>)nDO79(t}kn(c|AMAf&{ z>Ap-Dc|x51y7qxVMq?~m%M3KDhT@KZRnn&{(|w6+dCSj*MSrgU0E6w+nYism7PMea z+);BJKihT(hV}XVQUW?vj><1bQX_kkSK{`t9UZy@?;fYEv)V0KYgZ-Ax3C(R5n&^G z=o%W;IiRD_eG#zcNRb;ODX6l#Ka@;Iv!OXevY)2muB=hM-9imAmcvc8_Ks@Wu--JL{dF|6+;=~%G^pgyh_YfGO{`6Bbn^Y>xN7pLMw?VxKU05cvgBvG{#CfTn$AT ze-~d)QT$^`aZq2r+hh{az);kQ_3+wjEJV>Lf;{iwV#(MGiOM z)LlP%4B z@HSW$SnaXFm8h;F$@^|H84GO)Qwi3v0z(d1M4}psvr0;6A^_a=TP}Lw1Y&6>MJTzxahpAHNNUu6z77sQJv{sTiKR5eE`BxI;%- z#zcv`D}-YrqKBgX#MraU(8 zt~-l(O}h;5yB-`F#nN)x{}ck^_7_z~*lZ&;cNn2t*OZk~5QMo$pKdy&d`8JND2DaddooHHy2#C9j*RC&SGFdi6b9%w#rWy++ z1Hw4|$TGFZ^e>*E8R!}G47z2p`pG;QDBThbG>^kCE_?t#Ogwg{UeGbS6#c^AV$t2J zD1osletzIfTkEC}$5{8oLi-4;>9Y=aU?Y0eQ0(pN@HBOOo>QdFJ9squ{$AJvA^ARj z%HtxwxH5!Y%K9vVk@hL5d=$6e9rrzA+`mc+X1$dIm@(_)`WpAi_tHQcDwn!a@WHK;c~X6r};CgJzAl^*z}k;d7yy%B6GD z5>Pp7m0sT$p<1}K=ug4iEonRvSF0~I&*t##V=|OpViW~kmN7~I3Z*tQ=vI5}gfC+% z!$&K}I}s6+i#U$-kv|dOZ&mK=1L}N!wbbk_V03NrLleH}0<{Yc*hd0E^u&%Z-XPou zXvc5~xNahEr!k4&S$064+{^UuXFB}w$=iT%Km;uwmV8{h}!~^|7G1X>Ycc z8LHqhFT)HK_^p|Ufuj;#f6NR7GF?{aOQ~7v3+8vABSoE~BuHY=y!UBn35->#hwDW$ zsACN0Rq@TVqlIrw?Q|g(&UFA*D6QZLQ#kFHik-#LZ=86-VJ0u)Ms585=S-OyO%$bx$}_{+>CHg_Hm$-LKTwd2NrPbm4k zQ(RIhUgj-LWu2GN(DY*%MAp`8KjY)#{zo#3m|)g@LNEvRAu!fEX219;kp1#HKAZfB zT0M}ROW@A04Xh4G1b{|kc#%@1eJ3uiJys7(geIo9dToMnLF*bZV!&ux^>Qt|eu4+H z?RyahypS}wD^&LP5Wgoln8o_tXfAs|*)EaIV)#|*DO-GI5NPl6-JPl5`u_G3Ta3ufhJU#7b*4sv64XdAPgQ;u5s%`QbC^) z{IIL&6_C(kDP}fB_vlRg|3d6_mVNI*ADyd(BbKhiEBxjF-em^V>Dr+YWX(F3?d@l zZk3@2>ooSS9H4e%548wVwX}J(#Z?E7lxWe}2z3MvkGp9UHWgil!(@{qr5%iiqwqCB4bYehfPpZrlW_uqe5nRQTTDcB&WgE z!^OyCk^$O&bB&euy@CEVc_@3EPy$NR;`mT44k9XG zrS>Mb2AKyYCB7FNI{}3k0tZJH^xr_O?hJKhspT`A0)P#akn;=aRdxnLAugphB`5O426&wQY$|KHhY6uV==07Y?HP3 zETsOF4nHxu~mMp3TwfqQ<|DtEy0R{#k-k)#OFdi|89ZP-Nz_X!6JZ6N3 zB_YFcc-r~rhi3S1ybt5WP48<>*;C_i3miMG3srn?M-y4xOepBk=DN=7JjS@x0z;E5 zCwk^t#OtO=zH39rM$6K;`4zfj=%L=*`c8)NBj8f3$Yo}r=JD1WQ1e&}a8PBTs*Ql8 z^Tg0AOAC^uHBt;~x>a(~V@}`G+7kqm`zz8B6}o7lRTYW9Whg?Tp2|{FGv1?Hdmf>q zl%(fDey4}=L4OFj-`TG{?nmSGgp!5E8rg;cK8Hzd{m_?UCSE(OBx~j(27qOY18=G5|@;d3RD(ErdEgOzpw3jO2)ZU|n+g-L*kVZu+vrzo6M&{!(athMa z7Bd$mIrOmlqAa(23r(QS=OfI7tEGtcJl2L_v$rLY)z79HWqOa^nS^E*O&NB_GLB%D zj%BYfNcX9l#1wI4H`YN1(yyxK!NwAin)tVeBJhK@>^k-Lh3_L*#cj{pk~3U(RFr5w z8}<2bmWkrS=f20iL(?tC3FOk0$4zR=k&Qu8uU-zsDW2TCS46sh8bSYBAE=O$EF`eM zhX00-n41LEa!F2o!q?&?Ol%z=Mbp2)y?}AnkP((a)OJeZqfB2_3xBk;FZ?wSIofda zuu3dXu*QalZc>QRYDq5=Xb0qTAv}I5Dwc;GD^8M-`<0X_M;1B*XMqBG$bbrK6I3=e z2MuWo838I=l_E?r1Ei;-NJR7YsiI+RlqX|)RXO-sfrci9Vg{c84E5#Y1zqll_j)hr zBO~)5ZR(^$3I|NnwUE?+(0u9{Fi@x)NxgNQ^Yr?L8CbaHTa^2{wPeH6bT@oU7<`ZQ z;yLBZntY?Q2{C{$P|sLQ3z{%nT-R|`!eBJTPcnqc18L)>wzR8ia48?`NXhQrcZzhl zhlx!sBfvp9IsVaF8Bl?VN$DZ=aFV8XU|{EnN=xi5zy06tSa$mDiE*}GGB>k9NjkMe7M3AmWh{rA{duW6^QI5M?ylAFgBh7Qk-sNmMA&+ z3rLG7Mv%_zFv^yg#Zuw8K0WoTM17Oo;?}D2#8P;wi-h0uJGEIo;Z*nE;->yK=}}bN zt9a3LBP-)~FZpyV0DiPx=TVU2@Kp0>y`oSVjWTE_Jp5aUB2zORFP?U%6l)$%_K8#!YcoG#5QIBZZWHc zyQ3~h9}O^vcNsn%bBX1mSGLuH zQ}ZfE{BO5TK%GLu5N^4i$rImRRZBpMHYIybPgpzk@LQFgZoa;|5kdek zAZ(#_nPfB#dk@l7Hu5%|+=*F|7$W*)2U}iEOyKSkWWsN)Ge(AzoyJZL@cpl>g@?Z5 zhxRL$Jf^h)>%|*o-(ZUdNlVx?w!m!aaIkP{LS7JU=8z@ETT7dfo*b15)Y!mP3u;?$ z6xX}q=K)rlEa<1$UgvK)-pK`{x2C#Uya`U{hF}tPJ)-`my}T%vtf(;fr$`muwZ?Tw zkC6Wgg>f1{WT2w|$|6lHmKrtKW?dZ8$CYyYSv7?~Y)~j`gADWJj53Fd%QQ@kc(^xa zYNFLlBX#-onLah`3-P!M_v5%)+)~z0@QMlfCtkCO%D-RWGf%!AnD%;%K0tq?MXiOS zxP&NxBO60jQP-s4Dj;OF#3+f#C~b6b`VZmHx`~*@lMrVDHbM5-b?%~j#ub{J;XC1WgJ>>0`ful3Ao@cb+26@5 z7AxY>9>i-{)CN;f=1WyvxCtqZ%)DL>2x>x60XVuFhJh;EAHgrFhSG(?;&3nMD__Dn z<!v+kl@G8*+m9}iU>a-S$0>!&C6uCedGQdK6eI&{ z8kdSlTVV$cJu8VR-YScOc}46mBkdP+?GjxMKpGwpG58K0O^*{3gS%XjRoziplZCtX zWn`(jm_mOvub9Gk9|awh_ei1tBZeF!9bgAX4*kFDKoG@SG5UuY576}M&8&Pm%cPUT zTh1n8{%~J(?59g~KgF)r8s&shgN56VT)~OjsE&!)6)&34^o*OLLAZ`fIdgPsA+C^H zFVqgTI4A=y)+kq_cr)g4(WMhdsFK9w4Ays3qtQF6EO~V1# z4MB+oibI(j<_jE`M~sZxW>(NhJ_P3$P;>RA@gp9b zfdg;E1ICBL_(j?&Ehu0jfThs8h5?>p^IUvfTW%K??=>{_bf&UkM%;H(u6W z5pZE1?hcpf;b`!!uOlF!x|31OvAU@ zjd&IhbD9Plk{aDKPTX@Yn7YlWH6o)_%!bH5-xveP^xqQIsG#W;FNc1^FrFoMBeS44 zclP70z$IYsH29qbKs^c4)4f3i%%Obp5zP^B&_y<%@;+RMRz%a_rbt;?jlz#n zO~gnaNV8)^EB&kQ^$-v&Vj4opm62AzWPMX^7DVZOYsecxllhI3QUhlofbk85K|gwz zSaIu+vwZE?7|-O=8ZmkzSl~6-qFtVbUpW@nyw!n^yM#mm6Au+%TtV@ktGE~ky`m<( zxOh|qyZ1rgV#qRuvrm-Pp$+nZqmJK)Y6ao1*;|Xbgm!FB>EXu@(=E>N|1FqP9uz zG+n4UD=11txLgO)6ZFyyvi`TPl7f=4*>p}Cu?Fjzr6)M;@p7RI$hWg;`Qq4nVnk$S zFIcFvUmdZ&VV-((F(h_V7j0oEoNkW)ajbuH?ZD!+-1!~x?1M>KG1X@<4wG{&yO8*V z*%JkR!%7X!VWZMU3nOg+R-=rRiEv>NFLWLqm_1qDxMQ&NS)4aTpyQ|_ zj1(YNy@(i~O6PC)4VQRqeN2=S?yvc)osB1l@Hf`rtD`Rox++RT==_sprRPfAm{u1S z-+4$z1u-O0;5|-$1(cKcE!x1T+#xMd85wVh+=VhJ)NANAxQm4OjzD_o%wNTm{r8QP zh-t9MorY#Q*vB~yn0`n##5slj3caGXnS0fa3jS(BTPPOGXGMfg+JtH6Z?YogCtZ=P zi7uMTpS*l8NlN33y{=i~v8qea0~lkz)l#UF4n;8IfvLB*9a(9fiQ6o*3{gS1;b4G) z5RIQH{yTPazL-q_s{)i)?R4(Ce(YJIdjV)F zuI&bf;9nFxD@tdE3t_xgS!4blyAr)1`##hU7S@&sqS_EjR79hAPFjYSpL4YAEewIg z)w=Po0qGePxo*z@DB0kI*yR3i8G?*a_!N(TxpRhJ5if7S5rm(vXtj1Xx!x-u0^(b6 zBp3G3{IPy^B@U!>!n;CK{=2cg*~IeqPRdHkPwT(f!o^;XJZ+ z(P?S;lq5wJc_|>k!PW01E^Xxsk_LkWgjw0}sD@v~VjaUcb6SHR8gufXZz&cOYe`VE zzk;t^1T$$VvxCG8i$Koj1ghjZdbNcC=EfDOQ76^XWjT4a7jl_+zbG-wzoq&asdFe- z|F1$}p=#O-bUdc^h-D}mhsF!kk>doQ-ak(z2*<)UOaod*u#ziAO{&ujC6G|_r=f9U z;zFNo6n~L2E-om=VPsTLeoje-H%YMhoRZOA9yK{Vr}Q&wZmn*yM@>}{T+0>MtmQvT zSa}CVdE^C~HHwWa^>|CG)lpa{_cIdCN;V@36xI|#Dq}{W(qI)+5kj@U!j{`MkF({s z{w=(b;z!i`I606<^yCGWu7Hu*P^ge>7E@pL30IL@V)OQ>J-%1?gfEX})evLymxq@D zpr1@PuyLkA@Y%%H?@Z1`z|5%uYe}jKacg0H+AP<3*KdD!%t25wZ9+pusm!=At1!MN zQJhP+y%;Of=j~QOV!2D{KCvFvPxYE-VB8UGzSE|XivGahH(&oJ&*huIzl8kFfjYnF|V1EJzi>NWCS-c?U{P?U+4wK6S+mBZe zi}>v@%JdbNEq^&d4&B&7Z0N7^*-sZXb|r@q;^(pb1m3@Go|~;pjorsNWHz!sn+*Kg zm!2UtPQ+$D^ojbtpoTN916&{)*erz6Lx3O9NTRGw2R<8hvVc_HTLFe_r}+f1l5%+! zy9HSeO3$^vYqEsvG3wzD6MI(6OhJMbAU^h-Bsj0%!D!jIyztvWl)P{_`%s z861tnn&=4EyxKfQ=D9Ezu%y~R)d`1tYD>bDCYLkvpVrTGE zN*|C>y3ihP$NC+Qb2cZ#_z_|rSEFrlWRSV%DrDIR&-pc~7cR|Dcx*$j;@^adZdOhD z=u*%v!qC;5rJLp8l_qO(i6kdFb(VdvcW7KGm+D*L0-?=i!F`xwBy^(y=EY^540-3I zB50Gnk-ybEG&2vw?hLo zIQDGZKgim1YzDSchqR@ng>1i*Zwn{0gA(B6!Eik8oOgV;-~9tvg$U5=bVFtAjTQX# z($F#W2x=`HjHA^vNzz`ox6m>UszX~U<*?Tq)p;wJO?DU|WVpq+Mwg_Q9d%_n z)yO&Z*p&71pe@A;0CMuRjdG=Oo}cY^dd&d5DBVC`4G(;`sxedXVXL*57V-%6W)i~; zFR9c5ueF=XRm#Z2Xr)0o@NmH$i0tK6VI&>qf9V;QZ>k1Ci`;ZG(84aQu+(sFPgqYw z5+7O2NgLRm-8LzWB@+duh+|!PB`152V(RDwd`2i4H7=_1b1TJq-KMZ{Rywp2( z_e>~&5jn#EDJ;Jjx;@x#c}Sz=$BuL0yR_g$#|YIzn8TSj5P(+Ki2&zuG*Gc`?EuYf&j`-6-qx zg?S@BT?Yk|x-}YqE`T-`wqdAS*nNC!SgLEa6==}O_qvPX5`OQHr(u* z1<$x69mBJAf^F4THuN7xhq?tye)gU9MEzdP{{WT(Y}cR#AIYx9PHkx02|V}0AsHb# z6juRd+Hfp(cemBX-N?KiK86Nce29DfL?_Q+usxP?vpM}y_DpfLP;3GiJ@_m29oFe- zZd_|fePdjFAtGz#Z`LXoj9m)EG(h+4{_cZHz_P4#ht*o9=BGL5mnh|IZQMJc5l?HK z8ovhCj6tp%)9-5FBxqbo^nEqEGQ5sh!T5zEI%YL3qee+QX9agT=4h!|Er4^UgeXLf zSdP&(f|1CQlSyA^6#c&u>VJp{COlnE2Q_O!zM6kUq1$++B_t5J;%8Xv#Y(l&2Sn=1 z9RD#KusL6T{BPirc&3CpKM|3U(NI)vp>WsNQkPdyt0h78dF)0dAVv*CQk+s~CEIWX zp#ZIXZrp8vfbW%W<-C{YD-4~wLNK2w74j^icH5DxC!1QD=1aYwYGwi_910<&P2RGd zwCQZD-d~7q{1NVH4nePqKXv9Cc)eEI_ba)EO{)8_t&o?r#h9!B+?_BB>tnY%3!dqZ zar3j)p`A_E$GSvQkMJ3NE?8yELY$lN86%P)kxHI1uRFpA&Q_(LolWun#Hu54Eylc( znP>dH_i1F|7Q#8o1K>v4fIXf8{Xx{3nf9elkfcr#_9sC;wah+2+g`k0Bg0gqmRs)Y zx-J&eI}&VG>~`-pcnwNlQYJ(!ZsiEw=V$WGxl0?&_u=^#^v?S@8P7dTkecXuhN-ob z9uhKIqCV`q-v3eya>WmJoUQe@gHb&Xe=}W_$9rT;i$-lSkeNI8N7+(zGUq_7 z)Q!OFr$hUr;u%Q+N%b^BZSrVndbJKU`U7{98csFFVjN?-!$dFf-;ILvBRp?8i5r0u zVyg9l?}^M4s{|4Dj?`PcFY|tL@ygdOm#)h>6B@JQm`o6+ZJK#oz1EdqAzH+K9_~0p zQU^4U=QqZ!Mc2h5`6=~F7L!>{q?Rk)T+T|btd)(IDm}sdX)<@w}RQK_(bc&S>1a95AM#(x~NbN&!^1i%rU}lgj{?l*EQM^_KAmgK&>KFTqdqt_$aGJ1Yv%#ZE1Yv7@zVs;<*rV?KjKDL*$Me&h?mJH zx6N!YM(lEsjc|@$G+w300w#zWNer*3x1b zD7TpxN7Rwat)T-Obhv+|>tjr!`vR1htua68s}sf7s$nXkP0GKC5cky-c}@_4YUv>M z${4;cW?uXfl~*t_uV`*%a(Z6+X%xpBC(xi;_YVp)ui$Hpp&AyNX;9j@n11{GW4KUE zg?*qOjgqW#9DSJ2a@(0*^=)>Q3VqXr>e7`Hqk1<;-PiC#pHSfZX-ABcjd)h|SipDj z3TQ5NoCM*z3GtaV!qeO7`;&tE{zyoYn332fzZr5QbL2*0UziBWmON#t^Ns`>hiyXq zx{LZQDD%57aw%QzJ-<)-bPFnBwzE2bpEMIXjJKKdO?=X$T<)sl15*rOl=%rQz~2$& zMlM=V?(puUXn<1eqg>oCJ~E8b$yhz0*oiWLv8pt_@)t&J76-c~9t@ozRG?fzMf7(N zf%y>z)j*@{E5!QAPR9^^jl0%;>p-fEC-t1GUpYK{J2Q)bXOhaV#nKJrg}K*QFxB5q z{0{eItMikpoAciXDhgh$xiV^r z>1RgcPcOyy^J(#Nr2BNbZRZM!g=2sSDL$@na3MWB}$om9~>t+|L}{M-J3yL z;nG`b|GvbtJ&`vA~uFJ0nw$2+G?O#(-sg`)WB>HcUr+^IbB4LA>%0;a_H zXX5x8<#$Tu#L9Y~Iiuy=YfJUfOPI|9OKZ=^HJ)w0Mc1j|s}HE2?M|4s^r1EP#|++3 zpvN%i)@^m&r|Mq)zF+SwkWke*x-1Cjsx;VpNt^4r23ssDyXo(F?Lu`I_5{4OH(d@5 z_++s1sln~`(;q3-4gaD`WsUPQRD2fj;?ysc-HSe@0WBZZrIkM1UwqNo3Cl>9I_vAk zdfMDUhV0%}Y;A_j->#iM_V9Hq136A3roPqQJwUpA&SeB%axbJzT>Z!oP;GU)mV-oU zc}sJn5zBht=6(3n`8C9CvGg^v=+{Md(jhaJrZiQ&F%H~6BzyCR)35oaV7+@-W5^%& zW2sQH(6HRHlk?q0D-y@OfQ22CD4cXgUvvOX`A_Wclh{q!eQ=>?<5}^qmGL8Hp`1br zA1ipvzG3Bau@iiEB>%1nKqC?~VwJxvrX~_0BT;;d!bpJFQR46GpRbKWNx8Uj?ousK z;2#>gXSgq*7I#FDb8i5bl(m^V$sR-B$tbanN8SpGqlDRxnMHy<9Ib)JhAu~DfC}l0 zh#cjupcafLs3t8Yl3*kvoW;VCvoa#sEB41EScg(&zXGI3MyF>@{H>ti$2IFHHCQSo zx`_&+*s|GbgfaH+`Js%1lkd6ulZwM~dtFRq4Ck7~eZ4;H&`s=(2qkv=t@_@8T#>T} z$ds($YLT2B^i!=>^GjdITUN97fuF7f)N)B0g)N5g*zaIlU${ zMbxk8oO(XYpN_K5hF<8b8F&%oga<;`KG&bi5A~n4`=gdv(+keS)-i}v=Qq|wHF_H5 zqj(@|ayiY^xOe#^bY|+=^iN(Rn}6fj-OuPK-SkaSOkQC$+cy>+D&o2XJe7jNL}e!y zP5EvonydqIr)CI=k5!*zJ!tKFE9+ocA7)<@q1peAh-YK{>1i^`LKw)p9w*n{$UDaP z(L6^UE7K{}SfRFBnJ7&i-8&-MB#nlPhv+^eX6bB6D?oP~FePo3ahZABwIp?(8(Npr z(2qOVzv_6>pBiI$i85WBK^S5dcymPw(kyPX=*o#`KgOY$Mt*tn;l%X=m{S%M$ zp(ZHr~UB1Lfl6S!+vv z5kxSf&aNJ(I%mu)WtLh9u|hG5i-ziHMY$tJ(PqfK8QU=0Qbn&z6H~PgJMM zpvV;brt#HS5oZ4PII;OsXO8C#^IbPcVzM>hRfo-QsutTkfQmttMFaL@c2U9?v5OzR z_JD>l7q&jfcCrvMP7M&ZJybfK`A>B?>?I>WN^Nr_;OGus!5C3J=}t7CN(R8sdP&a9rdTF{ z`PM8lvZ;t0Fd(&A{1*pUDed6tI8JmkQc_1a-*f z@VC>2$b1YswxLR_GRZ_#;mMUu*<-may`1I}Y|(gqY-!nSZ@-OPnh^EAS=Og^9NA3R z)Tha^7!oM8e9OLAkpBc2U3 z3Pust3F9%P5url9^oTV%fn+w;#@{Pco|)@BO@2GSz9|hg%imn1X%OY{NN&q+h^<06 zs8;#U1F#d$kEc4_?>Tt?0j>IzpHV}$wJUrm5j1ir#>`t!i@XcI^mPP00J8MwZ9>^990o*><(>#`1V`~6~qDH}h!Gz3}lJZ2nhC&GVsrQ+o| zYxe^lnEj)`Jm#Fr75pyMyRgUN-e#p6*%t&m3D)&O&fLP@JqZw~$O%;5#wEYQsBMm) z`UenVlVU78cTiQTHfgnIZ7fI%HB>I#D_%S`&otn4c#%tHImwI8^~M1ma~NAmldXiC z*iR3@fC~IDfuPrtGLv!=lN*!h(Hf&o%4MQsYeaBI9^uLP;%3T`QEz@ShG5#SO)2jb ztD);-6z4~x{o+Y`OA=|VC&4Jks1vS)`?7R_84E)>T@SUkFaGZZ?HB5W(HG;Um{_qE zlm46XG~nH!`oUdcgJ}CP{xyb2Vkgen@?4cldkUBLMBp@C;gorkDiy=?2i5dH6vyX-ys4T>Nq{|7ilwMysDxR%U`r2D|*pq*gN| zQYcWb_eBe{Z#H^oGjyBJSTTiy>qwMReVz{d<<^mEecW;>QH2vXoCQer51>T;x3Fnn z{k>()14mwsx;vI}nN%9*3_HfJ3NmelTK#b8QFRSqlZ+jC+FQadjqa$4l_MYUXU|p_ zh!U0ItG8Nm5o`mL6O4fikVh(q?Pq^J5#!Z(ha{4hM7Y~o4~mJ z8+U)9!Ibr+sqA5f`0X`s%PdjaQbSR-y!3X2JLIzC18!RpA7#pi&?Lo4Z@*b^9AJ-Q%xw&fiMjYUA((8#-WsnV=~Y^cH9z(aZSpnhLPz5R8U?04cAs{zXF zUealUZd+N$G5dS^rP@;OJNmv`MCIxIfIFODkyic`_z2(itU7oU$eu{hQ z_fY;=_@EDqH?NeDf&%^l@EU%1n~M5FZ(wgj3b9jYgR4+Jra0A|0s-=y{MiuMCkd`k)t!m(M?b)J=>|7H8li%9Cz+AE=*y5Vct@h*ED6{W2v#^? z^JDPa=0dMTtE)hkh8hW^j*-BCNd}H#F zlIpv=Pi;2S2g2D~Dh%u>qt1T-?Z(jJ<0~b*7YbkY;4GGO$2Y12dOxa{Wq^QCh4UQ7)b+>IeO&;zDAIs=*Xw}8F1L}B>cf`;Y zG^Gmlvwl2lSKw!)H;Hs%w;KdWx2|1ReiGS*%XUy|g$V6+Pwu%DhHSrwp1FOvomk!| zz~@hm29gqmvOj^0p4C)+kmS$)kobK@w{F34b|9yNS;=zK-=^pACaCknuaw-c3H`5+ zL~j11hcmolffc>rIR{=-CGN@W-x0pNpkKbpC^SS47q%jIZSiiMuLB>7wDD6%a5rE~ zQr_tLP&LL#S|U~Di^frQeo0x34xPZ}0^tYddJ^RrF>nuV@LIkyCbrCiQ zZ15ew@C-6jx>|VM7~9X+k2h=_&~&e#c_#_exV0%Bq}mS0u~s+(+W>d1EwnPAu*fl0 zIVmd=PNZ1ZzFayhd)U1LKPeO7ef-BdZslSNz2bju`s0@WCM5_>=HA>qgFL}@s z1%s`y;r;X-07}QPCJ&X(>+fH~E?T8=v)B3pVDx0SaY;cHev0v5^KfSFiDA@k2&=lB8i@p{Fbs{m}ePR3dEs)W3v&%u0c zw~oL^>;frIh+oz&! z!e@Fn*)y@jRr7CN#8N#$?kTs0j|HaJ7HN3DolE|KPb}Rw5=!ZW?d*lXm-<$a*@;)# zQAK5N2F_!K-t$76PSb@S12(JRt|f+zO{nUL3xk*WLKXgfe@nMYz=!msmu()4-qD~! z;(Am73R$rD$5-zk__MFVqJlm=37DsRXXx6#4V(--++s?MvJGr8C`EJP)~IEQosP_4 zX(pw0yUE5o;(Q-}WAjLNT^n?KtLrhm(($9{>hoZ5NqX^UkvMsxbk(MJx6Cd)6hRw$ zAX|MeBN3AQ@p0(pAE3y?H4toCDRh!z)t#`fcb5#?{W807G9-!0W(dDNszihHd?)Gxxg;}l)BZC@RZV&EdvTc22PYy4%EicjsBpW(No`j)B zlM>bFgqw)pTJ{Vz(pyZmo*LnV`EK!6Ql@>Ip$;&$FeP27;`9DxKFnm zu$J*@=r=!0y7K%ADJjiNOBW>q5s|nZwtFM%Ht^^%GCT0eklqqhDUK))Zrnc$z3!n> zqy^zBDG;LzMaw11kpa-;(C?@Ql#FC4o1M%z#T|vS4F5RSk2HzL$U&4?-mXXL$Wc@~ z^NyD`LTqz&F-s*ggVCvb)dyIL(hHf{QsKr8G=x+k0bJ=KX`7|PAC2M^Mu?a(@n-Zc zYEk_#;4MTao(>Svu7?uz{r`oH9wX|*|2QLB-W=$@;T~-WQb3CNf0V&Z0br zQ;FUXEj*{k)}p`(9DQUN)|^HNW|Gw@F}aCm6b)!JhjG<=0~A z+OwD^>d#q`DHQ5z&Cev1tOiLJ&fCVEv zb?tjJ<5mJ$X8g$z(fSXd*=z5UEA@7{d4DddnD6R83E-P=%-D6sTF=P2^G`oqIC^! zhJ=uYxU9?kmGIt+8ai_0ZPUFdBR)tuwlz#xltGPmnPbPYQeikA?u$v?7=9e=&~e4r zQS+SzpZ4t*_@O?!*(2jTtfDe6ZN@VC3Qo`~*2{y|VeVlxBXUx&@?fMr$qVLr3<_A-_Bc)ZO(LN!~7io<7++ z$rc?4Np_9B?r`mhixOLpuC!ywGl^{x7}$|$&>4I1$}Ljez6pM}+CgV_QBc|Kkrk?T z%&!&FOko0F2GLEd%dO&lJ5~5ApUA9SkNLT+Ajy>Wm5Qy4Ow*m@<0_wz#Le_gVA*d8 z$IP%g-j3zj*_l8|FC;9P6_nJ-c1T75Myo8K4E9V6RNOq?aBlGsZ@amBlx3(mD{Knz zU)6D@+LRR4W+B>W(NYnj^Lx`B_L@hE?Y?1(bhCeRzcrzMZWG3t`$TcqTzluSjTr4Q z2{ZAxDOw?b%^&;&00lez+jB^%lzN*46HuuJH{FasMV?Rhj&4o}BUAh**S%Oc&*05l zK_2D*0G3^fk=9coNEsLcL@WLS{9#BAFks)u8(>B19wjhG(8Fy4JoPt z?Sljib@Y!t5kDT5w>gy(K!gJ8FeyC%h}a&eQUrP5xc~+~enAmjWMrM2@0@4<)E+)% zA5eFExn8Fl%nt@E@h&8)#|WA=f7hfSFc0~h&w}r6i(!(B;Evsp&iA|fe3w+@)w$rW zxF~5tdz!Fba599c@)gFbI5xsLB$vhoP^a;{z1jTXZ7HA&xB7Q)B?(D(S2P!L zHP;&Wy!rSlb$tY0&PZF&Z|1)OCA7J*3VC=A{7R=6XQmr)whoA-oI!fak}_m5u;dOsNVSJ7 zgj(Na+$HQ6uI$mT%?tT6uz0i-l+m^d!RXDAezV{hGK7&Fa3vRqN^`>Z+Jv%lk=RI(1T^FaT`AwmRCryE zYpI@sLtx#Z^?@&2`x(4f-DMYLa}$q%p&kTpLAlrqT4RI%07Tfr_H@;aS>uaU_3%oG z3%BGn!i6rpeTIk0-Fmu-fFbE&=vNP+zI~Q_D$GTPS5Qal=B&1Yrn?92p17pDZdsm` z8}Q7BQ1iR|yN~-at9z(H-hSyA8RZflL7N{8qE`nY;>B60wQ`3wh(9%8(9HF3o!!0^ zn(+EDz3%nhG1}4ErU!i7Q*Bd|5Gbb0U_Y3Mlb=~%`6iTrr_pJ^~2IivL4t$5bOny2dOJ~k;Kt6wm(u(gOxPT zbCHJH6bsC?IM>xLE1nOytha4ws{g9*W7Er&D<*qxO{{h%SEPhxjD-^q;Wr7_05G~1 zYedK~S2Morp zGf{JGSUXcdOHho@QrXV?tFD0SdmSD4UFKf$QcgifR8KGS`CuEnN>9IRo~*NSlGREM zBItHSG$^zlSss8Ge&m>5t)c&PbhSQ`aVFVjI5Hs@C;MyUtjL8vVRv_Ht!P9brDy5N zW&gTtBgEjclN~j#D(jUi0u`9vdfH_SwdXb6fu%i<7rM<=aT%U>D~J%Uciv0*dC+&! zS0`3<{A7~+3gSgSvt7tPI^4TB+mdlD$7lwaX43{rXkCh_<%(ZL=P+$uOAjNm1hJy= z{B|c}6D^AL;NZ^#zUFCZ ztUDE0Hrx^MmHU2v3b`jegmM;#sp zvi7=Lg!FY^HAmZ2Dc2|_qUCc5Pd-yvAnr9Y5V@ZsQgPzQ(?Ty_{==EXOlviUg+7o} z1_{SwAik&IV68kQbC>r?`!n^B^m%ZEjJI=j-z21CjGBG@V;4NAHl05HoLf!BAq~wK zHc*Vb<{_M{b*K@6sAO$BQ-t<4>izktm@hEhaOwbOo5*ZR#bO^0=Wi zd9*r@oE#(V3w`?+z3XHsSE?$+hoq}x@E>8dZCU7$Gbb`oc!}ZrZJ1KO(u4%uvd@T$5u(fBXf09jWDX@Rr=#UL4@CT5lPess2tAR zshuZeQ3X-Brdz=3BIr3@)+ z2e9V_pE8am?at!p>t)}c{R22=*AGbhO!QA};&ctxKr&{299ksfBkBsRZc7`t!$*;>n$O{s?bCY>Rc$?VGoK?mZV zN1z`hB)RCR0_N{}LtkEUbRIt;UswPO0t0oyqhTj^t94hh?`LVe7doim4Gn$t^+EJv zF@^RIW}=Hdc8|x2ru|5PiGKjQP0^4iqTh5?_A)Nz0i8V{exC_AGNC*ulz5kqY3WJ` zfUnQiL+p)8^Vyc_++VB*- zVc$s5qJL7v__&T_hcid>6=b{w#Kte9dmPMWS1$Y=90xO2G2fh7g~GU z+Y{7%Zv&3UGm6oC2BnLCmda1xwbM-hO2ivF_|}{NGfRJbPj>6hBaFDZS3IniE&!bK z4*<(J4$Ykqx_)6OJNpp$`T#71Xm)i(Cy<4&6TcTELd)H(%qt@QBD;w^mwLKQHaquM zLFE;a3Lx*pBCbPPLgrjn4pFIIH;Flwf{pgxLSNBOLH?9FI>HiLj8{4;G~mE<#F2`1 zsE2Jz>D9{z$(65&xZYdu^$gn-MnYa6S~kjRi|H2Oq2(@kRMAV{wQTnrM5WoCBLi!@ zQl3Cn{4ODdKCuX$t!xxK|K;kbhY&6Tv?w(ULQv!3x1B4<@)#_8HN>ANJ@L=y+@r=n z%KdAlduLS7!jtrn*BMrZ?-caV_5qc@cO1Ey{VN-3Zwt4{iVm^8`_xk88Br*+);ZD! z4| zRNNOqhQOD{*Owe+lBy*gIxvBt1$zXojFT(aUkvr939D@uIN-%mj5-(zs4}=ytr2^O z3h0crXbot~NM7!D1%lcSg0${YKgg}?k3Aep2zN?0q&0wapQ0;;GCjAoX!!`f?GPMg zuH4-F>wPb z2RJ*N|Lb*abDc#Djb8h2z93+7W1<1>LEBgzt0LOLH*ZtEBQD+7YttAj9Uwe z=Rv_SqEwp1?QWw7_WD;1rUK9VY-A{WUb0+0_Q3W-9sdFN@9QToO}!T5(xUhWHVXyE zoD*J){mheQ$qKz(Ly>2w}N# zMMUfY8)ykRqpW&KRFOFI-3K2+y@R^_yPk^gM4ProejL$F6G%@8I%Z(H!_!3|AX<9| z(k*mY)F(7|^D`0TADcw6eBphfhn`F4xu@hyj*8Pm$q(1;Zd-ga!uEYa4l!v3j$FAz zLM;oP{D&%jYg^ua2Sdz~-LZs8%{Hb2po?eS8Glkx7@F*Tfo4yO?n2Qg*z(gwFe2vB zYlvyzzgl>49U1{G=i-8`k=!b(%BwbzBd-a^g8~>b370}%HpRfFLdx9mLBz0ceLxkV z=Gz!_bG$er0j>-dPygAF=V%e%0B+F2gQc>V!*l*>&Z+RyIJlTgKq~82HMzjvKcYxR&`+{&euR+ z416IR@m8vhkmDp)X8x;>&KaQ>_csE?%>_{CNyh78rbo4LJ_G0*i*jQZzx@wquf9#0 z2}#-N;wyl}Av~nOcBJ~}X1YznYyr17T6=lNgtmm@Fqy(efdOwfdza+c8=bhlF8ODh%%CEN!!v6l+(gHe1`14utT2*vR#Ip`)sKeWC}R= zk8a1?*+0QmYjj~FmyZn>$Zv;>K?mu792jCZU`N=>q~ohV)+(_vQwOItuF@MjJO^f)YZKQSs95C|PlIy>E6k=X9ogV1NKi9q&@7 z7|thwjBrbs)#fAz_ui?uqcG|4ML}H3Yn~OVIn|e-WL9zZ2zN)O!B!w5HF66h?=U)` zpY*qNzLp>aEzjUql^pJ*jU>3STXD$FjEAa`kk`fRI#XQ+$6fA7@U7k5P$BN)2!6 z+eY9Ndp9TaL~>{g45V_{K0A57<8=Z_PJYR@k!pS;U>Vn^oHCPvUd%yl{gla3TWPO! z?`J~H&dQi&%+qDDo^V*al)e}yhKqd)^IY#SF((G zW{LIcV5H3b^X0>ruk%64fG2()c(Y`-TC5&R{KnLm1V4l5;i%HDD03c6Q@Fnx{n{Sd zcM>~_A+a5SG-rC6dTp)ln1<#rvppAMEtcl)Uhe#2Kf|I2W*Rf%=;;_OdI~3d$bAU7<|+PX2o@WCZz~HYd083A(a{NO(<~E}YCR z2;`T`cwqgZ6z8+CUz-y|%% zJ`@tp1_ipzrXU{5Zrg)w;OF@@ZQm3`Nig=zQN}3K3s0i5GD?GUS++Wc`uCN#iYu3) z41{#VB7O`iJjar*mge?@c+@&_qdJRksRP5z&bP(p>QKeuR`uNTQM4C^hd_m;>7EyD zTw+h#H7}^L2fw-X#9{JQ&*U;3$h`h`Cfl?Q+7wCdWPURL2cXV|FAOD{GCMJ!Ap};Q z^!^?!>9?2><-!K zciRPfo^-hJj>bZ44kG*skwJblXX4}f|CQC5k4Dj>}6lf4f+3H*d?rK=>S z)!yC=QvZwHWLtWT@G0bPO$-y3S!E4GoW%}bO^|s^I199;gk^7dy4}-n`z1>z-i|p! zt%+<5KqdUDSSL6C098NE8k6!rn3!MggSB;C_6aL~tX%Hq_S;ZWJrZplF1;;0#@EmM z)i2ER4*&r*7_VJ@q1BZUj5~wb7>X_({R8CBA~tldnxPj3>#{*M>jc-GPd31HA$0C> za|TD#vK6mF+tyGr-S_>sh;#41o3x=E>srC678F|=-jbA({jdr&r){?A&mL&M-+y!LI4NVe)Utk{dyMshy87tyCN{3I!)D7UndVj=#Yf@yu1yP~$!)t~ zxCuGIJpq#`ND$Saj{e+!Rnqqnv8_V0tb&M})`a-8P*lbu7<@P?b0mDZDZA$ORJD3z z5M+5#~>h zV&FGKp%I`zA^EbdaQwyvpUkU!VRBpE2aBs7Usw^fikT6}`fgz5Az^>~Q<%}!!8zjp z1p_zy$d9irpMG%0XXmH$zIGU6zdUgJv6R==i5C@K=y@5+Acd%ubIuG`NR>kkUZ1^c z#fdm>3Q`>Q@ZD_p8)?=V@yi^AbdYWgxNB)FF8?Wq7qxJs)ti7uoa*k%X{{WA5eRCIg+pl-ilhT}* z(W`zIGMJl(7Jk_b+uzPdK3%qH3v$a1gUnzAe9}HK_0MM@%TuF?lEHaqCsrnv2 zzhn3jr*^z{V;!#VANKX>ezo7HM?QYUH!$+|oBht~Za}*Xj4?)37YTVWfg@c{?N|Fr z%kSkf-an{t(Kp7?uU22x*C~&i%4WZBndoE3ixxQJ#Tetq5YdDHj6mc7U>C0(V;HE8 zkI!!3p4_KA=5oq=%=MO$HD_+B<=M{}>i$~&C*9-P{-O3iQ>l6l#Y>NhGqzf2O}p`&Ve#PcBWi z9^-hPc}7zwCOpzFXn^DVE1xe^VXh)RF5ErSvt;Ez2dn=8FAx6!l{<|~etuNp{mwPh z+y3nQ?mp-D8UFw*HxM?<92m}KG!>AIycykn9%k9c4xX=>z|$FL zGd_=s{UQA>>^WnmvxUG9N6G-$Wl^}1`%TM8cBy8KnHxySYwY!V}rju z^O(wdQ@j3N;UD~;zLyi+au0S4Kecb$zU=(&e&;`GK4-!HyoUA6K>q;b@qcb>$r>J6K|jVUHdt!WiHHjAIbOAPNQx?CP4v9}j=upPl#@>!fY!F`@5{-NnE1MC&&MdAgukC8*A@g00P4%}ImJxF z*`76&!|DG3PvwaBY>=Kf%6?3x41@wf5{&`jsaA5I3i)1Mep!A8N&f&;e)yN@OV0fG zLEY&x{ex^jhFM|$u4%{aU$^2->c#pE{{VaH{t)%qdR$2WfMf}f41;dXvV?ZyF>9PO zdM^B(v*k~A5bMNXH(Q)c1SD_zmmIIgC8(aR99i;DK751bfC2<^b?D0oh=^h*tK0;} z5sZtF0SCk{2YGjir;*;b5w1^7MFnnMzZ67kx=y{3D}=Om8NPw@lgGz_9kILVztq2#8gD=Ed? zfb-%btRm7Qm|gUC>ds9&WC@dz;<3J2hyzEgRUB*k%l#fGYhPNIXI`i$xsCsdwJ?qOZkQD*}0DwRlMlmuafT=wK zjYH)7KK}r19_yQVyUXRo-zdA6GpJz~&=0v{C*%8D=xxG$Y9ZI(d*0i3fNeH%IVCy9 z@*?1XbO5!)$&&4j8fPA|&wqsW{=64!zjx+pGbQ> ziwN8HtPnp5AkI&(#7wK;3nW9$zbnn-b|{V4e$BgQhw~=_UH&OFO?nb3$!8gQcYT~G zmQB{$ey2I}%nTUvwbG~_R2X&nl$ncaF__m;@OnMt)O#6hvSQj~Gs~0+Uu=Y8C8;E} zS=EX4hb>wr`nL4$!!Fae&n{7JO!ctR*wu!l@pbb3?~yt-?Uc-VYfQ#*6Y_qd0zAw`V`<`yacn@rT^~QOfbzs~G34B(*|QC~fB5dcn(Op5$SlOeQ?J^;U+&y*`+v3L zr~P{}k1yjtRYX5E?YsW~z4r;*{){8+{{RU3`pLvwh_7e2Ys-!7+2fmyXGp^qIJi zo8^7KcjEFk?8m}9u!#7_bKFin$Gl^XGj=H$!Y5CJRz|&7pOv>Bcevvib;9w8`J=4= z05^RYPZx=l<}~O%jd;AKwp~`fDis4DpHkQJmfU(O<*( zw;SwQiDiBQ{yydUoWE1>d?ze&k1FYpj$P}dT~qV;`wuV9rx~m7<&W3hk8jE`&T})I z3pLR3a`g-I{{W+OMCG@3Q5B3tb^7P{KF{iX)f)9%jwF0!rguMZ}$95HN^GlANpZi?D@BQ$O*LN5FjjeA>8V* z@7n(WAKbCg7g6Jn*Vcb@x9uBeUk5GISN5ms=^w$_-Mf@B?LRIdEK|BSM6+8EOE~?D z>;9~W)y0fre*RJQV}IoN{{W}c}hJtsK&{HOl_^7O{+cYBwNb@2V(G5-MiaAP7k&(lTU^zCuIw|4&1H~XTa{{XsW z1@{+*675m5XD%+FatDzcJUSVnV=)mw?8 z*i1L=T_RG_WB@;6rMBA2hN~M1m(Tazrf%8ZA?iJ*Ib_BoXLQ2~$l_oxh(E#rdhi`e z`CN^2uRq1d>3;Lrxwvz-^%?j8*V!=kDIIY?%De3=zRUV9^-qPF3)&k z4sDl}lOYq(h)yxGLy;s?trybAorK3;lKGoGzhqBNu>3F8ecQTky-~XF8>mZZyWP$k z%n%ZJV#Ssb%eE1mM1EXSgG*m(`8zY2%gfdFb>SG}7{{ab{{YtyO=Rz$lfm8gaQ=U4 zeDcRKM26cWUnn1h$~MA9_yX0T`drOkSVYI8@wk$qGDwaCoNh`L%7s0A3He9 z2$=Z2zTd8K&nT7u0L%9GXN%Ka#}-Y-EO|!s$m5jaCv34m0%A+CF)Vy}Eqi`Z7|+go zj=7woVm%!H0Ii>>9ium9m!|t(;~wvExycD{vSK25@#DoithyzyIU^cy0KWyEcOoV{ zA$`A(H|IY?>OV&PAG!4JrM%t#A1Ar@IsRilDZoc2JYZXk9LtjI^J3QA#5gOr3rypU z&v|+I`{O+7J45l0)#zLLjowAqJn8+Og z4l_I$cVo?*Kq3*z2?&`m1P5Ws$l}Y}&WZ4c&-VKBnDuy{q<^Y@o9v#OmuK&prL~^h zEa$e$G33b^QjV_b*4c{n`26Pjip8A2ajM*9^vfzue;_5rYmG1`z~ZA2PPePG2Vx6Vvfa$<6%7 zw}JUk{(|)ObDOaC?B+sJ%eKXk$}D0`pb2Ybk}b)nA;_Iq*wxnWXRs0DwR$7(w_?t9wr8w)frMJecJSQ^`D=azg`(QYIFjEfNC! zmp??|vSzwV=;ijJGLMt%SEDn_7pOMTA1+IyGtk0K{{UH+lN+3Jho6y+>CQe&`lcVJ zuRHUM^XI{X6td^Z99W}SPGm$6X;va3Tvl{{SMyXBj|CHs){>iHR_t z=Om#fELu?@h5JqnOlig^yY6m^n2%o^e!m#EvugFZBP{Xafu32%90s$I01s(WW|ksn zv6WCVDTtIq5vmT&rV$)5ga&|9s=G3|xqD($y_kkcM0`0030xJ`7at{)ELqUo_lRxhd4gpUuhh?U?!N-V_Zp|;2JeDV{{EbIPrP{WPe=(HY`oQr&a`SK5 z{+M;w9Y3$G`8j6IIhmiC^CdTWtK_h%6=-IYf%vl z&sAc?2hU1Vi>Wz$79i&0Uk}QV5s(6igmTJb;^F&MjA*mF5h2Q*M3@pqrCS}lYyvR? zMXuq+aL+4PUQAI1on|s6wg@%8E1q&Y&J&Jb5CS4M4-mZGR@B49o?|IauQ^HAzA>nW zCwFemWhJWNyBk<~q*2$6q=5AL)nr%-T2UCa644|oi9ZM@-l{x(#D;CjF(iP!xJQmG zw!wtXKnniF&n&5F>tTZc;;YG&w+(o#G(}L*2m}cSA9&o19lJcg6orv;)tAG}b5dP& zMdc48u=cH<<7MY=U}SDSTS`%2H9rl%iA*D-)5zU8%|qDRY&IKHb__xi=Tdo5$>g_B zCVTSBxorsnHS%@-9>~0Yd5_@f#O7?{ z=jX0#FRVt`h7=1tA8*yg*Z6v(vAg*H02Sr)HgYrb**BF@SpaStuLmFW=MPrc+m0V@ zCi~BSoA^Duz4Mi`ToMNGA2ZLw_buFO{5gp7 z@6!H1;*%)FfzZ$e=JyY9<9l|TFwQ5!W5zL#y&^tY?fx$OE*AcF+_S=C%0AT3ZnHlk zNy6HDDi`7Rb3K-BV@}KXT}S@_&!hF4xZdj(6SE5X{{a52c2dcPQqCf6F_t*Wp^T!= z4?tIc(!SF>wq?I4@z+xr{XYrs(mG%Hx&EQ|DAk5Kv7apZO#L4po_!i&7PsZG8^~#7 zKNCMEpkK4$dmj^toacmi%*A(^>GZ!b%J+UxCm6>mx|{7C%2=~YAdC5vAnl`!5ThyNMIwlw;-cM9)v188Ty>L}QFbAh?HV~6vDLCK z3~Hk4swz8tj(R=MZk>~}3XHPvJ^S^PN>Q>f5QwyD9=<6)&&QrW_SHXy@VWT;ckkT) z0J?7cf5*7|PmO$)+vZ3%(?#gu`+lx2zr)oPkAI8L%;xOmXXmnSF3FLrhJ6>CA7tZy zas9`S{I_>={5w4p?);Cy{0sj8j;g9Zif>()-smntG6Z9 zTkWJ+mY}2Xs^^+DGY-XOh?;ogv*qpCa%SxLA&VYjWt(M`6NJc@x(q?acu~V}qVWF! zZI%;y=jeW?{`;$!t~K+q%PGh1?8dy~f@G4!s+8Uh}JTc33nov%3Pnr ztrx2d=6l6H2Pcn)6FwQ^ofdhmq=UNqT?O`%HU&@3k4c znHgZpBw>>oA*F1hL1}RYg@+)xZPAW>;po%J&tKh_$acTbe@ATh(A{UvyWYbTuZG(+ zvH4PM20teIgiYPOnfsn|6%kKk)L*4Oll2F9$=$nzbN**2#~hwsLlGg0 zIN=ao{{Zaq2vMj{79*y7EHayO*U!%kY4u&dX$_Ze+w5bLCU|Y}LkP>BSLB$4L~fjz zJd0L~(~cDs@@JoxQh2OI=r2$-0-EMz&Z+PGL@*Sm)9c6s#e54L`kUbl(xeed*R(jDWv zZhM~ZF7$49c`{|pW11vBNQi+O;W7jn;vc8V(H<=LSmieNVeT2@5gj@{$8*~@8@}3m zZtn~?J2^r)=Z7?7ILa^}#^6IZARRTT^-j2$sd-~=QJ0i-m*-i3<@eFk-5inK@3HO4 zB;bxrM294_Wh`2jN$>Ul6))1o!>hIjI3Z&`OazdN_vO8?t8azJD<*Ogd;g($|Diw<2a&3 zOl46Uf7Kt-yPnP-In2zu>gVT%F^oi1KCicIuxvYi*I~DR%k41Z+u;(a5XBJ)x#DdL z(~dqdPab)BOv~l{QTko!zf$*T_fF?M$=pUb;btt6gbqArM#3yI_^zpUui;j6* zy;^y>>&7AJ`XnClb%zQ z`nn_mHC-Xeo>)9+wGugqAhBIyRFY7LQY0om)kVUEVn(D<`K+Q*0s%lMq{@WIhJ_Py zL@P?R02@^TWmLdGTh&WI$fm^u0RW0>0RVtN1w}g`_#f3TQEhg6Sa#gKyYqQ7!_3FH znP_4zV&IR8>S<4Ii|2Fp#7B(9+v)pv9&?{7sQ7$enf6ZM3_Z(hnsOMtytvLnep^Jr zHQ_+M2jO+;>h6t$X~%SP7{uxuhD7S8!_^S=l5!zc~#q&)xM|0>E75k zlfgaCOq24k;)NbW8GJ{8X!0u@jq$G=Z;i+NT&n5#kEs1$-uwP*x4D}HOXAw&c;b(< ziRx;;ChkUCC#&?DIJjz$vmJge?@a!pckah#6F<&uBTvfaB-%gsbE%Kn(R9(w&tFdP z<;dV`+1IvT7wo>7^%l$29k6fqu%0-H9CPm1cKM@lka}?{=Zn`8+mCE9t^SZZfD-XnJ)m}CimsQU$kDuD&7Z=lCYWg|k<%_xk(C1zZxJ#re5&)Aj zOhrt%_$e{)B3`D$1Z4TLL;y#_(0H0NU?gz%FQLZO(%d#@ z)#S@1Lute>T{zo7Vnqc<6&BYi#!(R(jaFhPv`S(yBZ;W?D_u)-+*xgq2?~YagSTys zg~U8#^{zR}!?YMk8C$0{!KRpD9D&I2ehV2*4xAWbWFplCa?d4)PWTB#5FE$uTy=Dn z$@B4t`&lFlNqbk(nfop-uGtSeagn}QXbR=Nd}0qQ7o!Cx7mEW zMmiY{S6x`#q`aN9PakUa=Pbk4?fZE^N_6+EYb!d#{I}o-pXn`1w0H9iCa+xtFP_uL`LO>3xErMexn8*VY zs3_D($K~SY= zyIe%N>*Q?LafVZk{3eOQ=N{k3j@t150MiXmH+S{t{{X65;m_rgOy?KU-@F!G^Vfcm z=dU{TpP_j-SR_6vWyxQbLk+Fc?NI5K+-JX(v7YK?Hbe+xceXryPNj9nR7Br- za?5PYRCI<{E|lgBkSmIbV&YIdd1sDK2^f<{3T2E>cCpH1tS)<;@(gDpIEPt{SjVI_ zJ93{{XLT0X7a|++K!seXDJd%C%Mo83kPX7UD>00K>&* zQB~Co4p1Zl0Rse}Vr5Dd<^?H0no(d(p=uIEv2a4o(6H!O1&|k%qQQ~{au#l(V&H|9 z$XQ)gLvo@Mlmn_JOspXS-Ux`EAu6Ou!g$O|=@}{&10Z}Qa~aE11b|$6xk3c8Yn~v1WSNV?cL-K z41QkS{w>Z*L)rXC!D~H{k8_vqIb!e5&R--yC(ZY5yZU|HJ`w!o^IoU*k9*i|H{F+Im-5&SX=KTl8;r8^BNJ`kgm_hb zJv^MFRAU_S@w8m=39t+QuHxl{Y^_WX=BNITrmm43l=bW;^INAXkE}25ayD*cK&`@f6E*W%cC8oz2 z-0lm1bBxe8&DYqow=W!iRmZHojFO81ACysr7mpWNl!*;hEbr5cBKauJufde1v2Yp` zrL&GlHPBTkwwJjC797@Svl1G*QrTV}rAj=J=1LO;hXk!v!g)En#`nqFT_2o~7;3t4 z_1;Y9okQibWtQT1Op$jr^|8mtv(GbPSj1!+cfTDOB5Y|X0~Q)A!D;{uRn)0{RhgTD z`mItXilSb$=|o1`Tqh=2z*n6XGs>dch!yt5_ zT=Om8w}he$ht0^ZK67m~oSlPHio_D|yQDm=)x${#92dVt-Y#Z>H=g=jdIP*9RBheE)Ti)JK?W+W7)v$-g<5=N}X?r1{A{8#>+5m*eJ{fZF)V08 z{Cvd3y%Q4?QvF-gIboNu?2HS>82qq*!zLg5DsG7LntVTT#<%72_4@j~GC&S!2BmU% zpOJdTSo8Xad%3|OmjtB-$r9kUID&j0j=qkrn8Z(a?>(w~bmN9yGl=c<%b&4&bGdh% z_HChV7?#Vpl_4M6dIhZWjAN^}Go7!GjpaRkBh~GCi_`l)(01EBv6S*oB3ZJ_SrTM4 z&@*VcTBl za%7fm%(BX{)UT-#QA`#GmV016ZVKhtiF!Eao@dIy*1^2#4n=vgh>o-LHxl+^ZV20g zfDf&BrtL?-S@tHfyQ1MR4<{&*W(>~xaX6ATQCgt)DCY&=^_yL21JgJfIWs166XG zf*#J%jwweGpqqu^+25;B=mqKcxUOO(7NI4S^;Q^^Ia+4T(6H!QNkq1CDx}J4>Y<4; ziDuxUz=?9fC2Y!p0)gC8lw6cq+&QSHcU4OQNVa}q(MnrUofM+Lm%S-$#GNTrqJ#(p zLsdcnkT4Jp$pZq42UJsu2_+PxS|kZ&P>ezpg9UAwhH{FmOf!@kt5GP*POB`*s;Fer zi9j;slo25CK;n`uWFq_(4L~BA0Z`o(ARM3(P09%;sv%v~P{Ds5N(u@nrl=2v0}`rG zFG@fplmbyhx(DI()kF%ER;8d~fT0XfVUrsbsFh8s*wYMZR%S+|7g-Xh2q*^TfNx?U zG69e#Kr#W444@DQ20$Q85H@520RVtN5P&RzJq1vIJ9qx?n|FzbpPsre-Q%qyEnvwZuf+$E)l8GwL4K+x;|Wy38RQIb{eyR&ypXnYKJ@ zHR9Q-W@5e%fz9A;+qxqd>*E*jj`94TG3p;$_b%-thYRhtPfRhar~Pxs!$sd-sK@7h zz7MqP(bj&}e;@F1W!rA>7=CLMu;ra>maIT7#?QEx#x~feGf2cd0hEv0R}GgrPtN@3H_I+Yao&8UKYP;bUAGr>%f8)i_M<0k-QdH6 z1an9G(FtUfvIv@p{BgAVM+N#%YU0i~Pn>kg^t9uaoFg0icQez|q;&nyrrK>b+daNL zw$~JJ;KVJ*iUFbrMfKwth^XwDWjRgHcJU6XEG&uvWOK$ug28$w6!FS_Wtv2AQe&m8 zJpT2$^6|zH9~MH#-}~36jfKt0GV^bbk{~`~Sua&}v|QkE?PEMg`LZoe0cIxhsq9Z@ zvDK(w~8E^8&9 zm>HC!)8=vvtrk4eYA6%Lvl$YPC!5{3ryeT?r&GatxcaVbnaSeeyC^axpbbLy<j~F^iS}aW5t+F{mEDb2NOxmGZ53Na3kRY{n zWQj*c%NU+OIaf|gp4_Sy-iBPKS8yl-^WzO$E5TxD+!pCABQS)nmYS>MWxF=Rb)P4h zf$(A)58_-ioNV9xmr;4)j-6OloM7!?od0cM5T#bOVt{QXbQtY!m6ZD1yBrvglk1CPys-Q zYN`N1C@DaIVt^a6+XxJ^BFIrl#Sj4KqSOe*R5nm6P%CPHWCe*~TIhtuQ0+jiDglb1WDLbX znE=HA#RFsmAQcG*;C{93@Y?#9xowCx`O?S_FE{yu-w4bv%JYBY-9HI^eO!sd$0+SF zAG@dWczZ6<+&8q+h9zW7QQt|BHGtxUhC+;5cp6|1d*~9nG&;AX2pQF#HH=V{2UqG94E^@xh`{tIpvle@|mA6pVB@b#r45`R|N$Fib|T9i@+-)QbUcX7%ex_Da*{~U9w|qXWtLXTMxr$#Y9py{ z2YI@d_cUQIgho{AzJ|SVt}Thm&ptTgXg|RbL(MSC`i?2c+~T}?^j)DXuHGLV^Z8=V zvz+v(B2PYR%@4!DOmU*wadLY2t(Mv{j7Ns669uAkxVEE$)In~|ufY>HsnKxRH#D~B zj!USy%u!$$lN~vtTRe7tXdK_&K)Z8V%KUnFTXoC2XO#X7au5`V0dkEI5!P10-tP{$ zihdqH64_sh zC&g`vWi3@;fZ~X-ix3$WlPIG!f(o{T)I_9}Qh`Mx3I(bG6+=`FiU0!0rX$r$Q(_7t zNSE$aK-WYXMCh`x+9r!K=?Y+qXr?GoIO?RTlt9P^bOS1;q67mXk$wn>Agw7P1PFvl zWjL!6=P>7-8^LZRmQw|lVFgei5L2QXr~q8D2Q3m60J5Tll%U-J=%AERB%qTeX%ghB zDk=*FMNm*TKso`{1E6eF3<8J{FrwL_1XBnS27@WX;#LLY6jLb_iVz3{0s%lO1Op%t zCPWOOL68inEeKF$3KoPYG69ebg$4)_04qXDp&4bX!0Efn2_hRg`?c+9m#&17;x)A)t;w{Dm9@t}#@W%5~Qomco;$x>8htrwHA~D7* z82zqZt1nXu0;&qN6adH?k|->WVU&_J1D{3cp~K!cqXr@(NSw=q(RbtO@}H2G&56oW zk&*bN#eFKMW$AY9rc)@&Q2-jmFE-tg3lDJQFpaO{$#`nijP5Qg%%uu(A<2|PnbF>g z(338RryPbUF=#x( zbf!qAwfcB3r2}EPGTX-OVM~@gA~N~aj3gb}ugB@pZdq%2(}K+wiA)V@tUxXv^q{=L z1qFC3LBYwbdZ{D47KJndr|aU&hpL_Ibgfc`*p2MfC34H4?#H#nA})``z>aH#?3*pq z44DAS@W9@hy&BrVP`%UiG|oOmtT+>tQn{#V3zd+g|U8 z;me0EDKjE7j2iE6QBw8xadgB^LS5 zG*RM$f|6Q>iU!J9U?Q2(AxV`9tI-8Ifie`5s!~gER3=oSWI~i(5@C$stV^8389{2; zm}FuC)v}Wspg+9_`w5 zW7+1Mq&KmgOrs$vnE8;1{C^gPhhA^JZ1%%KSpKp1mL0n4Lt)hH{$43vo(10@!dJ_}TqoBhc}iA^Z9 z+^Sf9Xf857>YrlFt-P+`p7{I{q>BJPnlEmgYtdYD211k~th&ZuSrUi5knI7Ope~)gZa{#(C}P0=h7i2UGnIC zi_C-^Dy9kIX~{s$k|AwEV3tx~vv8u?Wejuqq7PEF6EHmO*2ZxsBnY?oLiFq16VgT) zapatYKx5B>>6TFtHQZzJa#%>0P_u?!QDZS6v|7ZJEw7kZFskR#Rg98pqM39pyfVuf z5(KcR1B&M{WxL~)PB)4J!FlE@p=Wcb4Ops+j;c2eqA0TK5M}_SlLC6rc#DJCweQ5gG?DF+(1 z%@vB-Mhg^aV?`9vNzp99Q7v&VqKz~GX4J|+1DYa(0+yh~n~GRw9FoMCo=Syk2r*@= z0~AUtPb9FAq|PB$CK%2uQ0FklVQGnkGEz}9Ax6j(Aw_6+L@*siDMpN}B0wUlgiDlC zbwYJSlC23PXiy6>tBETJy75pB)Ih;NItJkYpkSa2AZ%3$6;2RRAu&M0fx0c2QbVGF zDxm#xP^UY}8y z8f(E(^!s^kWw-wTYloLG0~ZCubanFcjADMuHpfT{1C9%v_XLdihE@@u#>%2i%~e4w zny7?diUeH%s1OJO_7?Z4>O;dd$t^)YSB|w_?0Uz+OcQVN#cTF`iskaFoIRzztA4Tj ze&6`2Yfq_I?bGN56q)b*zCX2p;3_w@I_a+kXSe{Vx=ekqqD76ch*6KiAMgFE$rU}8S>`$1IONUa#fs?>AGhuMdV_2}KaBh>N7rAYrgsoM zd<-M-7v{VYNCk<4wlv$E|L7`3(VQf&-s9aU+H>e*1a4JazsR**sKXGsudJO(yKzoluVz%ksuM?=0EqKI zsDKT{0w{@-H5GxGb)h8!TIi&DssZ(>D5$c`i;FDCucz3cKA&O(>GmK852qwRf~v|W zKp>#)q6T!T1X)!vb5le`CS1Ofp7fuJe-P#+I8 z14o(yoX{eHDkQ2E5ewmd3Wghk1w;;t1`sgFrl2T*r!)*&qOalRqN*Y-s)PU8>(4@e literal 0 HcmV?d00001 diff --git a/docs/assets/pritunl/Pritunl_VPN_Server_and_Management_Panel_on_Ubuntu_1404_smg.jpg b/docs/assets/pritunl/Pritunl_VPN_Server_and_Management_Panel_on_Ubuntu_1404_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1b10ef0e03935dbe2e9b401915b78a68dee29fe8 GIT binary patch literal 80958 zcmc$_1zc2JxIQ`z3?L;SB_#qP(%m2p3Mi;_cZ@R(-7O&!BGMhwT|;*$T~af2OGyYK z;eX@zedpfaz2~0axhIzbGkf;lv({d3KJWAXp8355B7Um)L=l7m27xSqf1uyHAQE{O zbEpRh1B3+vfh2%K%a{%}&dvxiZf>{}m#KxlnI)IGJ&fDk6v55Q#lsDfci8MOt~c+?PbmNvG^o{p9;J)gZY_k@~@S};DAVvukbbB7^d zmd>UO?y%QzCoy+P#y>X~176=8=4NF0bBZ%ml2PX7TN!lJ)EVUL9W5CIxr8{)c?EbF zghjb{g?I!6c{v#PczA`mc?7w6ggAM4#dt)-_;?xq9*n@ZIa*kWy^vS@`@4X5l8k>Z z%FWG<%Z;DQ-qD(yS5#D#n}?5^kB<{LgVV_a?riGL33p=p=MM6gPUeob2xnV+IK#~y zP0j3GoFy57nf|o|7(z|$UvB)bJ}nsRW?g^Ic5;4U`F~C0Up?FDl?TF-`-P>Gy^Eu{ zC2%^^KNkbf?%)2Rn-hWAh&^|-1vbU>wY@pDf03v2#Y8R^T-Oz zit>x{@yW=F2>f&H6S$MJDcs!hpYOE=zW48I75>d@#pE0U)kHg{zn4TZS0-x zoowt84011p7+BRz&28Z~2OiyQ&|mA7w{*01wX{%lw1+YLdBS40|H=&b6nXh&g$01= z3(4HfURGF8SXNF(R8~}2kWY@EpYiW&E&i3K_V=|y|DV@#1C!yt5s&|yxcqYnkinam z|04Xrn}1OsOE{o2j(~Ff-Uku=5qXeBJD`LZzfqt!AZ#owEC?1h1cH4F8~DM;#m2_P zC&0tQ$HOBaCipXm35aeJ-zFlsbBB!V&K+7B8XDSr|1vOeaBv6-2&ssPsi?_G$f^J3 zgMaUf-|Zk0T(B!v1ttaw2uy;3NrLga8`KF{3NR)H1_m(EzXt{w6AOZkg9{w|Yy9&8 zU}rFa72ptqFfhSbU>r;woLdlV2pH$)79?2rc}XEM*czq|jC^-+0%XZzDmz{{GT~;K z@jD5S3yuX=$-S&*b{6{np_4-RFgr;8fy;92s~Spk3zqRW9~HEyNPtOzF)%T~nAi|Z z$jyu}NWhrDU1c<|7$K&7cN_v@vc{IbcgViruXH3c3uF?&Cjanz4n%+nTu6dR0(uNO z2VVzn{B1Y>#-n+TmCOWi6ja<47Cttbs60IWG}&Fz=r3x6Im0o_CmYBTvo=g z`#jl!|H~66Edz&Vw=-1O-NG=qrPp3z%eJH=z{V-xp7y}t76IGR^LTZMsz3p<_Q(gS zxY;JJYFOEH6?oVcco^S_5bI?Y;PgJo#B$DLjhiRzd#Rv1S>SPw;0qY@$;M?S3aV#nP zwJQv7AUp-?#Q!_vX+1=KjKpM;0z-psNg1n%i>mBqRUN@l@NyO|v7NM}c;+W+Gu|sx@cjs_R`!ZSTU@l8SP> zFhD6;b@Cv}x)mCO_#$MS_f_#?G$HtasN;}Q?ZIq)1S?C?QlSj7SN zb8j9ar-=>(!8PSv#09RWBxHBQ$54>Z1O%d*$!jOqgx5g?WA5qtz)(Kz@H7dXPq|4$ zrBNs^y7H@Y!sXEY4s}#vD<+)4e)Q*GOjzwJkz?=gy zWL|vbVU_I(jIx#u1T+vY{;Q1aI9YpeDlV`E@da$MxY952g8y;p|LuRVityfIkN}Sy zm!md-fwT-V*Mr~y*Hb_NlV5Lxw`3p?2WX?#o0|t7UptH-#HwGzW+~EV9-^6|QR|ru zsN^4#u(9dA%D=)q;_g1r@R)v<>Zf^ja=p9$P3YRN7CG^t=V4q8Cs{5`V5oF^N2EMu z@H)?P^Q_0-?ee-m-2ECJ+cc?o0oVj8{+V@fbP4f5j9GfR6A2W<~+QLH)G;E+*)e4&-LrDmWEn z01?9Org-`Ed;2tHQx}bbk&>DSQB|Ax`qfBuX#NHY_3Kl)Qk~<(qoQ4Z5md!wM%}(- z5aj4Lh<)?O$++m`)N+e4N+gG*d$gATQ{Ug{fzEqsgB46YwiN`3;izd*YF4jh3S}-O zc0gV4`!>H6?Gq;9vWC3)cSx zQ0-WOPNUd`wem(@R{sjr*+ALHoWn(g4ihV`vO3I8;07%p@5o80#owagc=o*|Bny(> ztK8XFBN}xm5FWHE(}fnb5)Rzq1C1;%c(o0>KFHwvacQ6OrOP+vB4z{bdcOR=S8wC< z<08a?*Q20N9pmSRQagPE<5%K>@kLh(H_rSOGD{VY_*I4G5X2fBoC|nK|2&8aS^Fn4 zyhi~qzQ(*D)(XS@ABo2PL|oD`fS1p%2Q)G0$&CuW(g9+ZCf)IZdi)po*qq8-kUwsb zGKx|vv~%3H;N%1kFLtJRk!k(#`{15mk=_9;wc3G`Ilk`jyOaO1^0&MEo4dw>N7n~m zzDyYB8*e0e>Z{PG2-zYd_*x%YZQkilXFnX|r@*0=FuadL>9sLmZgbIKcu1+#VNby& z*@7#fxYKH{KT+uNuuJ!%u9EtduY;D|&}=cSM)&B<9Q9Z`*9X2Tz}sRbPlIVOaCp?8 zExI+r_|BUQ)=SPx)1fqNF=pGllc@PUS1AvaJsRcJ@m;u&@b-6+YiPWlrxE!eZS)HQ zN>^8;1Jyngsc^6pPA)yJ#Qx?0e@)W;(k^~ckFG60Bz^6#jNALosfOHN3yzPZPhUkH z>#r~n>v_@=F`Sm?|6CM~PWBNlM;7&Wx7Y#3N}YC8z4k^)O|mSt6#f|3z|1Ur*+lY} zU|ikyz^@Qo8M6NYQ;SvX|4NO7f=~vCJL4=!0rjLL%+7A-G%?`SK!B_8v2X0Fv>vIy zzklGMdAiM*9$vb?*mK#whb)b%dk#3yU(b}4<2u9Wjqj%8n(R_h`pV3;dTsa|OuYN~ z8>Hy?Lx@H&EsY*0MTG1)qup7+Vr-_>&*yY*13f|b>rj_~*qz>MqjYN8$#uf+fDya0 zJlPemIW*#e@61Vsm|zmkKO`p8f{eR<|5T=85{}SX&X1 zpHJ1!?Kt7n8#~Q#!R$5(HT>+U9yDC+k#p{m?;1A&*4BFB%aqrz-ykP0xm7P#10GjS z(Lk}V4xf9JLaDK0=pIdH4Gat{Vmv&GF%^i476+LVS$h@`yVeym27kJ-xxoKVMR@N6 ziOD*%{u^zs3|nCR9eH{Gz;=dOiV9{x9jkSF4Dd&R1fo+D&`^9GO2P+rGKjAww}4s5 zFpx@vbJuX5s3^|Iqa0iwCeRQ>->q%9U9%f%1wCvvUJzK_&i{%$`pZG;)diILd}Z-+ zAi+?c^R)3+qU}E~k2z`(g}XK=S%X+1pd~TNG$V)%}MyGK6r)@Ie!Skpk0b^LBnFDE;_(SH3Y9E@8a zh{H&cq&bce{{V7}>yv}JG_&PVW_@f>g(Ta%%&!@U$g-nl`qyom4MgMBu6By|p#uB2 zn|!l6S(Zlg_|YTPjzgvJO(eEI^+PJ69$`acBhi9!Vq%;NEZVfL1X!7%)WUn^Rc)cT z$i86x(0*RSdSAs$Z80mU)`AJ8ZvTD-3lNbOC_*;16X7cjwQ{(m*6+VnZZ14vY!ia z8Qu_wv;MbvT^Y6|)}nv>tN@S)o7Gc-APPZGw86{aO9p?rSq^X}pua%^LRI~zH3A7z z!6i1uskib7yUrcgjcUB0Q`AR0%z z<29M9#6$Y=e7$L9H1ahsQiUcz|C51f@?a4s^imss<$fM7Y_BwJ`1D2=h>5jyR^viM z_3qJBLxW|BuvZ5_HLauHOsMpm$NdqJm*Rx7r0pdx5VGk^cy!cN9=s1xK6q z`gP5&jJ53^{+3R?y}i_07X;P^pKhf^_XA?3#)$-5W8q_|R^RAYzpJ$9@LD%SaCa)Kp}u`jZsF~0aKVJT(!;oo z_;In(reM!I{nqp)>wzm%_#xwplM!j%UYgbHT-5oiuYZHCdfM)lfJbzupO*Ka=fm}d z``<)Zy85;!AuHeBWvB^fD(<^KwBKE-hR_=>B9qrGck=8cIJJi&)fz*89UgPQr=rVg zCv9=>#b9N=AvR){dAo(nBqLHkT^vZD9j}!TvsE7+{fPmn?YA*x?L^KVb@lRqE41feL!NnpZ3LNB|>aX6A{P(1@e?v3GIuQBdKN-{w zc2R-1q+24PRRI7RC4n8E0PiqL@lOsVfO*}MhD;trg^AI?hul1u%q-2%a$V%jE0&9A z+Hlsd_Mhkf?c4QTyDY8qWF>Y&)|o;u3v(D+-4YUD`>qXzq0hrN3Z#p`cw2d#UAYKp zq9uf+4M!mD25;~I0!s7ND-wiRk~vwi;F{JmVi}2cyB#sMXWLER8MKLBk=}ee5R!>< zw?o%kpCZa>`wT>{wLgyA_3=!l6~8cZvEmgE$_QKL=RYkfJ#TKC-+Wb8Rz4QJ z&9OLyI;#|~)#a%4hi)qT2r;jPHS;CuGT-J9+`rJEp1N1rXB2c?SZ-CfKeMcmE5cwB z$UYiY{DdY1t>{OJju(Pze?<;k&eoX_o-CKUg;1;3OhmOmam1d&d;Z;))Wd}w2usAmXws)w?xhb7p(OY zi%JWCzzbgnNWv*zlXGtCR;X9X$ch1?1k+Nuksq@5KmZi63#^gB%}yk~NrV6EMx2ZR zgoFYE5~NA-1OzF;4{-+Y4gj76pjHC`;JrV98d*P`g1iR=988#^kN@tiyn~{JkBttx zZ%$NruI=Ia6)O5&UYpk9mlUH6*t!iPq0cs{g!vj0w_|7J!0tRF_E=Q3%(bm)jBct% zFsl@!lnThgj5K+rrH3#uFvBryT(LB9(iYFBZD-#Gm;D^*3WDVbGF&^{ePs6~A$T6? zbL`_Ge3Zy3IlvkTc`S0M(9=BtV0+$f z^ip_#LP>FIXYgn7<-4@LjMZp#_x{FDL*voU?iW#pG*&S029-prJ&}3~O{%)zpqcE` z!g8~-*M7BHfjQy0-PvsCOp%{P?w8U&P12d%b$t%cOJ zS>&Bi-83+GOgZ#ua>b`Otz5BDxwZ+u3zuStrcG5}4AJAbh!zbcp`x@aW_=XHm4qfd zBlHZYvC+|E;w2}XL#aYjeN|z-r?+&LnGD!wsqJvtRm%d^|HPjnfkX@ RzJ!GQj zX|DY73saHa6-DQv{1R@ZzH@_AVKFq*z``DqqRJ*FL>K|Ba+`5|c0N6R`MlZo%Yb5L`403jPla@N2{0{R3vU=RFMs@;-u?4(8yj(uW#3(&SthOnl9L?3)hX zM~Z%&{!lTzDvrPR;GU~0!78!f`$@0iGoK8$^XP=LXU_oVZfyT;#4WF`4p|$aWKR_t z6r?oV#;Xg+I@?V!CFj0)TAF@a=o-=glaZ>W?^rKr^P*48KBdR33I|>xVs|gk{TBt- zaO0ugn*N*&LPr z_uk*2%*?)9)^V)1h#WN?cXqtI#o&(y{O6O?RSUc4!Fj6K4~agg+ckb~SuiY?m=$T7 zr~BlD@)jBlCUkvXo6^J}xlYp_oOg_q+_`fsC zvn;wv(+<9+Di5WVX0InaRd2*$~woruS4|u>k3yTL657teuF4Kw>oY3 z?7$iwPSUU2ZUQYD!?btLKlFe0e$htRG^f41SBn(nne&pX9?1{y&n|=GkcFXl6i)^%N4i~l||M2o7Y)A-&FIcNJi$>FF!^iI7>Yl{)!S*}_me1gQv<@|VLLoI4 z;DP3M*+4Lji_3%7>kt7eu1IiGiMSF+02bNR7qRGS$ZMeOi0TF18?SJo|I|<&g4S~N z!L;0<%kc;utV|SbcUyKP6|OCQ_AETpKi~rxXV^bT?+jkuVsodunb#t+qx}bQNu4Xt z(M1O5yuOz5j>Kcbz^Hq+K~ke_(B-R5A2ItM(96O4GV_!u^PmuwZ4oKO)M_zwNm1E1 zz^(p4$2rLEn{_DhXUPC%9f*pI`c2UaUxXL{Zf=4&V*fny|BCX?Ep1T2dlFJGzJEa+ zf*D)}>0$*cYFj`_?Mf)(TEHey^|7i+wpVchCRjnv7E&=He6{~Hmz-94G5mKWi=XT|u& zJazoHe3Q?f;DqVSma;$x`#djvcnzxu?g}aXynVzWdFQp8z2Fdn$QF{%NK*6H7US|5 zEOfxdH_D|bgh@5h>SDgM3G)lD(2o&CgXpDrQ3(lcS8-=>8B8=tWn1%wgRUnZVs80IJS&B~(PFYeH@2H$k!)hpG8 zeQ2`HvRsGnY06NZ<=`t$*1to(uPG1}J0P8`&XUpOVbdM0Vg+iWvWdj9KnOU=!FLY%OrfK|ETN%NoADR zu&PaAzA^TN_Qqvfqr>-;OO%(N7R=KS8JA-MJqU9c`D`6}zCX0ccOD&gd@fr4)zgcq zwUgc#DSn`whtSUrI(w zue)fN&$>LnBDtJYN(WjG2QJd$a>Z?@oe$>Jv1ERX4BgvJoINt^c4t=yhebdesQ--B3?>POLxFKfBnq; zk~0^9N{?wq34dX-YI%=V9R-!Y!H5IvO*K2ROU=`yZAc%mz~k4vWUFRieQXzyy}D`d zk%iH_uz`1}N^d4jkbM>?;S$99v^{*Evb}Q_8XKXJPlj# zm84H6qWR^gITZCU#=|zU;W%scP85R+`Is{=gYHsmvKj;ysDmX@bH!0FTIPUZ=p4WN@^6=suCNd zpc)M7*4e$*bP9pDs>ScsCF2{7@DBHki&Ng2(Bwmpn~u+kzVn?4gEd_XwOd0U6(>LD z9e8QY34{z6CL8l9o;I&ZJ%r_O<_6~7B@Njf8%$A}Sj7H;2tcPGrA{gan8^rEkvFuQ zeR0blDQ8J&Dp@GCWgdPz1h%O>^4LQJ?ot?<)L2oEOc;oXGT(UvAH0ffbCVbq+OV0Z2Yw3tlv%Q5&UxSZ2BZy6!!vmiZgOMJwG@;A<^cAp@&}X)9Eu#? z6(MTvNHVgIJ^K063P^^&a=M+C>BYnN4DMhO-Oo$6y~pp9Se|(9=eD-KT|QC%^M_Ji zZFOx;^Z+tKaY0}(y*l|aCJCIuhNB1AZY)xDljfG1Dx^yfdMJcq<1E=bOoHY3+k>xT zF0CE(VO1_C*@@1T4JC#t(<(-$b&Yw#lzd_v+cS-}gle9R6r2M{4S0WR6KidlGf=droj!V!J|+J#<1RYb&#q_C!>J0#FR8k0{WFQO^NE5bG6m@el1 zPg&9VtHcy&;k9K~M3u{$IGA}F9lsrkh~lyMxYnCJpAc=I>{N6(X^*R)P?PtZ#tS*q zt2obL162Y=ehH3|C->4jjjzWM*uZ;W+t_bISN7$X5*4jiekEUDWLiQHBJ$uU&o;!q zXgAtaA?4!4XruquA!7V678QVt)YXwdp;TGuy)hrrtYDTfiB>nk?=B}bW+M=nSv2ul z;wdwnJ+v;$j*;~r-nz!*9=o~ydb!r=S8N{^RTbemSIDF6mSr&; zA72x8RJXOz>1z~hO!0v4<;KvDwD-HW;`1WAUrWmbdMSTG#8Pe82WruA(T_&#<(8ce zjij{B=F!cD{2ElpkH3z|;rhO+&`>>sq>J{d-M@fu+i%W1n@v)cJ`~;~!iU3#S#fb6 zG7|&I2>DQH?W7fZSa*p8-fiKAqwWZ7ee+F4$*wn%bV`e-m&GU7_vS@K8jXvM?SbIh zSJ|j@NoId(Ne0U`C~U~*anCv0dt$rAr$sL=(u)kp>KK4xG7wI4%&=}~THhpd5ETV7 zGLDzvB7lBzgJ;STEBvP->zi1b6wLT9vGfNZ#F5sczyw%B%V})y{DJzS*4mBM0Bgj3 zP~uc96L0OmXK*g+GHwkGi%LgT&KnWy%qjI+2hv?pIyT87pqkP=hD?orFv_TZ91O zu+#IXH21CQy+6kq%5gV>Xk&VyUm^5%VX384t{jP>C~ z7I>(I7aqsrJoFuvwb)^l5h*|TolD$EWUN6$=Z5U5;>zflzrc33=$G`}gJgVHe;XWZ zf{{wHKc(eAF&A3HAj{f4y6eSCy!sA zg9)KmMZ-U}w6+t8)^iFe?^}L$qMg%bilGYHGgj&v%4ccS11fnge^>J20sI122cR5n0RRR7-p>`V>S-YW z0>yut`*Oo$$!3&O*TJIDYkvwJ|g5#}e#Lw=6v`pzrkS6?#&KJ_xIa@=SWETi*Ws81tN1CsPya2g8wXeyie9 z50h7-F``$b=DiIx1P?ZAzDe8)YsnThCklE~8R3)V==tE#zK7#QwE>*SURmjhVx7-tpvE{eR|Z#Qip{| zuSZNyc^K_!76IcVY240AQ0D3CCp0HtDAEMUv9tJ|r06^BL&``DtNUXaeuEGfFA0aP z*b&4EG6kZ5`Ps%6H8xlNM}z}Af+i2`h! z@8YM{9mj0U-bag0?hDgmybx^J`qVYI^ROYRU?Nd=;cZ>iem_gA(A!MJr1W9<6 zQeyVO9=a_3a4smT6Fl!EdbT=Hmmo7PqvDbFmcfnI@j#f{Zm(;kjcyo8&U1vk(EOU4 zY-Jt)WWPyd{?xFma*^%Vs!{<|zLcI01Jy7xhG3o>&9P8_LoAD{K=vQNrr93wkZIoF&+2OA?e8gq zlluYu86bZV-T;06>;VXhTuK6<fA@KH^T$QbTCcLb_qgH%I?Wl=_S~#cEQLrIk5nuf|A*a=NJ80 z0{wVd3^K;d4ZLiQ^)}SQpOIxwm{(g-yiGHe&UUX)#kr+)<{Rpoa-{HfmkX}nZWf{? zi#a7l+HrVxA|f6|(J4TJlD|zz-N(v2GRprA%G15J6HII3YFY4|O<}L|pb^Sx5Si+EG8l*<7`aFZ1`h$&I+(Ucs1{3&~*C$z4$eo5jH zRVS&TCi2M_+4}K8>+%F2QZe;UvRu{jzOwjprK|802ZcyJiZy!dI(gwzQ%bEAfBMsC z5LdOI><=h z+c$}F8FAp;>Z*6#JN|7l)@IM)F!(n}#)xe?GA*g}U^#Ki#q6UsO@&mq9gN-b#@j&+ z7G-dp(;R7Y;1BLLDNp$I%$xHbWsAzAM{E^2kd137lu}0|t;k2Cm^Uc2v1FOeQI=_e zSF=*(-JaP|WF^wyO}}un`^@aAP^yGOWb^Ov)$@6~6s$eSUr8%9zs|E;)lFj0qHhV|E#{PEPka&=ngj(r=g4oq3%t zcPGqebCtookg(}{w@@d+n~q1-O|GI$F^#JTr{~0x1936(Sj5WU+);urGC4x)1&Mn! z8;==}mv4oNw^ifARM5=z4)M=|mgxfS^vzd@VA<|nv0c;D{{|)g!rLylPJti1)=E-S z5PPpqx~do<_LPX_d?-b6RMm2k+|w~o!qBL?1Ly6$aN3Tii~WP2UdFEDjMCQ*D<#wO zDadL)k(|h^7(np-4SD)MN4!As?vn~6ZooO>LRCU*9=Qy>SYDVDU3Eg8bT!t@&qY86 z9xIQXcQ{q`ei}f-P-!8np!9y%p}XV)B2lB^Gap3OBl?)+W_IzF3wm%e&>p(Ec9oK2 zzd`XH?Y9SA#e6OIezrZ14Y?A|M`lY*p2o`Ej~sF`LaV~b5SYHct!q)ZG)RVj70&EQt`$x0P_3)&yEDrGK{~nw08D@o92NVIM=_R z0;@Q{s```0d!pb%NDyFQK)2U#h#thcF%6TMnWgO0V{^^FK}_oohpGn-zd^5R=TIK5 z9tG#cm_&O1$G2zi3L~X@j{Ud~XbvWx{~@$_N!E>zOY&3*)z=?B%uVgTgu-ZEZJn|{ za&WMR;pf%IRLY}O&^C|RZc{dU1~7k`x}fz8Q9PAVjIJV8jbC0LFYaAPln8@~M@ zr{@#X0k`WZDOL^32ICEoIabR@64@@j=%}r=Pg&@2{oem0qWJ9Otwz1 zRZ8XylM?B|PRY!BhX?DT5EqfVVy3? zuAs6s|9*;}N_PD3yvmtJrRQj+im@#zW{C&928!<93cOt;p>T%+nOPTtz5TY)^ZA`Q zjfRr6B#kUA7lcgVg8=AYT{O>AC(O?M(ULk|ms5GKpv2!GuEX?~KOfJt(fjUB%%RW~ zP*8@;D({Re=ag29J&eD!8#B5U%s=JJTMHSygM9U@T*W=wOqioEd4-CmNEWpDUqauFghk~#4YkCQ5x3(PM_DOZA7y`G4D_&eu*`9B?%$;*k*J=n#zxW5 zZ9MbdZhR(J!J?P!g#^-Qh((krwLX(vvJ-@Kux8%g0~T2lq8xf{xb_}rBOMQwzUw|a z`vHH8g+(};%h*$RDSPPC3&ZBhUKJ$|J}ce*3^R*HFOq#~<8?#im)M||iJ6yJi}UrY z3W^MC8g;e9%LEVQpd4r_wC^jk1160zv_bN`Si~~E<7tivvPoQL3Qqup1Bx_dWwr`G zO^@5Tny)AM4VpBQ40f5W9zeR)9z$&93NDJOCg$BDkoe-{v1y(`b@XOVv z{jAYhOyo?e;BS!L@(H_OE!T|0a$Puee4vqob5u|Fj}J%|DkR4rh>-Dp-O9Lw6LN4z z-yf>=^Z6WH1t8DPc($ZWV%x#$&hB;fBVZE_k@GE(KkV5zFO=A6IG&R#?&_T;2kps( zA9ao&Nm7!89ul2}>aa@mZVqVkOesSp2fusUSHD3)qMm6@=2cY(0UIN| z+5sA;(jBcm$Cs&1_5dWWc#%viK9HPUX4}`ikbWNrC;7aQE`&9CCgMz({3u0F;N_0P zi?L;Ht~0s?8HWagq?8l}(_FQ!b}OWy)oy%^0CtT!fxo`VA1*PF6(-M#D!X#V)K@7c zi_mA2HTJ87>f3ELT@@+sxjpoT73SzOT(M*8oRqoc9V}_(~bIPMwFy^rAKX>=C=dRqZY?eXjHiHLC)RE1);J?q09U^l8@1ZBxw_F?)Uz8bPYfds-|ylMS5K8cn2>9(Pqs|>hP*!) zjGA>n-F|TYEUKIY-C|o`WdF%yLuB|rGxc3191HZLpkr#=lVLe!1~csaM*9q>x5D7=Pe89w(fz%4bfa2 zfeYKxp9s+ND@om7XS&JK0sS0)1`4JV4h1?w>}x5eGzR&00sng;bC=f<2o`4Cc9kM|*i3JMk`1O{Ct`XKTghla0qvN4-OFG;q`FdE$ zpnZb&#bjl4PuX_9?6z}tiBswaG;f!0-{bzIyt}Q%Rg%F^sponi|`bcf}B{nNZ(6N&fl@NeUmMNMopYRJ%*F^o6Rij;Y`B&}EXmD-@Go0AgpEJ(Fie7qi`z(ts)xH03A5{?9d0Mf6jCx0t~;O8#E!cJ$`8W&m6>0M$T(L>t3Pdh3NGoq<6zH{ zq!Q+2xa`WByyMloCLW~H+!S(t$NAo^T~;*ULjSTDxR01CyT{LIsmHpr^+SRV_PK7s za-8{@_*>tY_b&_zIedW}cl)`k$hbHOJ{@jhHv@R>kw{4eYSgj9m^=Wt^DB69Kiy}5 zrCoBxWNSaysz@f~H5A-Eg3TvPzJ56OOAcKtUhO3!d|Ang%0j;-AWh?Ny6t`^P8(KV z#&^6u!ZmHIvwo@YwYbKRUti?uVlIc(@czt*71~jW3G+{eP|NmU1hbYTqM@(AnUyhv zjdAaN#Nm!Y|56|u?<Ig+3hhBw)d>Ge=U`grwJnT6g4Yj$N) zWsQKXWTCaJQF+3}lQLr#4yD6-0n6ltr~DapLrpQQW4Gy1 z@D{MvhraA-aGZn|6r9syf(ifD=h*qjmNVY(wx#YZ2&`?l0p*qJUcFpmJ#g!SmnU37M@4V8u%eKre#- zO)VvR6d*8KK*cmEF#zgf4?uPOi{Q+xb)4Z~qwX1obF2K8Q@FL@(@biIk%XO%8jBe2xct? zR_6EgtluDVl+?hun_81VnXoN>X~}`*>#5Q3$_S8me)tK(>0EbHOzClCK7G@&uRbdK4#*}gkDtCaB7N5ZR1IlQ>)O#3C_qHt3LNoQ-j7{Pc40~&s=;0eiY(h z$?$=X)dXmAX@*b=f0Zzh1FOJdgYub&YveJJqTDjRl+loy&+PqLXxhf`fsj#isEH~? z-Bc2E5pS;9dDL$KU)&XHbf7lurTHo2q5jj}1cN6WV(Y$Kg5-JZG)7S$L>zD~^4?$s zPGg}St9@JSM?GO)u<{!-qq?LQXgVUFwg)Vggezit8Gx$jE30ZNorXT~XMFcHFWGUntc5+HcXhovp?{!s_jp?0Ailb7nR$F8 zRX2sU{%Cu-cIub-Uf-%GJH?XVxi;s~gU{NXUU(a^ey(#u0DqY(zaa$sTil!y2B57E zUEl4)_bVc(?n@mWesro^Y>&bce3kjjLvU4||2pt|Dwi8C{1m z3y*rAlzUfnmZ&|+-jG>sc%C3%U+SCDZTLMl$|t%Weh#4)&8FzRR+h2a0|FVY71^Dh zniQ+SzLYhG1Lwm8%K0`osA;|4kZ0%Oqmg~NU};JG+U10(BWpS@NpElCOGi|~y)Vr* zg8t{DeijGByX>EPIrhG$&z;`-Zacwns0fr?^Tz8)vM{hnL51zknd2#rkX~`E^C}0o zM#;jPj2~3z9DU4XxbZm1XKWWhTMzY7$%mJW`Zu=7uqWO zbfu}$->YrHwu&#p4gN7Ru7`TDwV9(kaV179|4QPl~8IYANe_D9CuUimZiv%B4>dF6u>2_@G>HaUN{MxVm< zeWbC~7DIT1($fhro|=R@@>LWeot=JgOfDS0k3iC^Dv8o1(a8X1GAOAKXI2QUa!IHt z-COn-4@y621YVqqwtmq?0b%Elw1l66(cg5hh^y&n!f@|0SOn2deIM-nqDMQCqFf-= zP4DKg?ucD%^c@^XNgKK$zQukb^$_hL;;EA6QzUV6TGe^RyLW%+khe36Y;Yo{t~?pqDIv7wy|!>b}b0S%i!t>c23Kyw`RACzBK9e@*5bPQ*^Q?dUhhoM;v)2b7=;L6Tz z4iugX;@!T`+rz#JH!y-eY$AF){kkxrs1o&hS5KZGCpt>WY!#q}&6hUh!dUNP2I4%$ zvBS9_1IS;KV!o#+F@ctc&Zz2P_;BP00UF0CTddK^s9KSOXV=g41X4KK?V!zDjgm`^ zf+2(Uw@nb(p@9V*4weM-tLTLJn0j)K{-KKYhfOt|%XvDAV66>t*`!JbwxfN7KNe_+ zsS4`*@rb3wm{4L<6V=pwA1+rb;WY0QHI!FdY6DfE7J=lwJU+>+wq)uF+m_L%M33};UVH8;!OEWm)mZ0V`w;Ao#I}*JkuUNc*nkU;|qG4)dhX==6H$1V;MFtebCcT*r;m3Sfg2Y(7{w+f_bG?# zgJ+Dm)Vpn;(n)bObanSuii1$SOE{%a(wIxM)cnkqQf3D9;ZDJc~l7V^S1%8z?gsglHPQnuP%K^z~vObG>Ux0cr zz8NJ~!M?h0S)Fm=Me$xhhSMn}o+(U5zpr-6$$49ZV{g`F|JTC6C3W8qg6lAy$f=cV zbz)f@GNQ7N)CnoDQj~yd`#1Mz&uq7$_3W(2`U#w9xx(*LRs<*E$~gLpM5n%*7mx28 zh;L5-V!0s_WuENNtrbTnNvBj${%Pr4?4}#PLDTJ@%xKK2LtCg=gen!lEegqXsXk|a zlpP|wZ}BSg%`1+;KN0i4{p;2%a6ttwR~e3+#f)3z(N!IdLT&;w8q!G>{49RsIY_L3 zOfKMgkVg(kR6^+FgmE* z8?S7VESV53wf-=ECKk|Oo;+YL-t5RS)WpAf`c~i8aarpN5%1$Y0q2vF*|_+=$d+i= zS*s&qcYJC!8pnl`XFKJP7E#xU!;oLLUl#Kgc4HbvLEc># zj}PSlLs-r}?Z-!R`3&>?)9oKhO0K4)!kWnVd8SUg<*A0l(}Q@CeQQ6KIJ^FPZSV3I z?Y2<9i_5{qXq5r~i%f`}=adkVAA-yi=T(q!jM~mxnMg)CuB)VoaPhk5^o7U--~wpR zOt$mBTgLskN|D-9QPb|CO%|`}FA_YU1*u&aRl(P)`|(I^ok8zJziN7>IrT$ilP}f% zfMiA+oAa>-W{ba2mKQo^amma!PM&xVl58&}=ktX2kF)P~?)I4~@>*MYL1(P@qt;T* zT_M!dwt6XPH4Z##w|JE|vFocrGRnQbR!j6~+_T9{`rbt`1HmHW4ePQ_FJx6HM%|pc ziLKGrwWllO*jO~>g2d;-rES)2u%QXIz!lCADq2eJK#0kwZi#Xon)XcTM{)kBpq5%+ zi9ybld>w#4w;mPso0u<$BN|#B-}7d5`7E`UFF_OUt^I_ybfA9zz{=-r|8zm#9&`ml zlpnE0(|vRCbKfH@quaeR*^+LK@U|z3flyD4tx-3&JQA#K)8^Exo%}zHy>~R*@%#TB z9kf++nXy_*TdQjCPNS+i&7d}oSV0h@rKL5C62xdJ+7eq5g4C`NdnQ7S#7xvm?Edok z{LcBE`;YtkyYJUI`77t-kDTQFx~}K-cs{Q_TE1vUjeFr?Qrxc%7btt=P^qjN4{p_5sc#V*2OyIn-fV#_2X6+*txo~&f{%i15jkVn>Uy>N@KKJEg4cAoG zivL3W+-0-^EXmt8c)xN|txNmtUO)@*m5aQxRQ&I=qd?b*+Cmg`i&LV^OuKt^)e z$jo{%lxR8)gp_+fIwV`zd+@vEM3H6udQ_I!ohLMq`EqDJ-TEMI1s~Wu#FL>wy2Hla zhKg_N$y2wmJ(Bfwq+N^*E#B0%BM0u(nHIZ1f+6@cxj)B@2PMNC*muIS+x|CITl-(C zHdq2XDsuVDsc~&tPtNw@H-Im{StV+5=IQTEmq*9*MVkOm7& zw1v60Hh{p^gkEugjn{dfCH0ttw*hmj6g=!buD-hR?GU+ZoYe`eDRX+%v%o_`38xKfbh0X7``6!TfAXoH3k<2&s~jxx?`JHz-gHR^OttdtdyzH zs(YaIwgcUsGuTV@T36TY z{=^zA`gzLDXC^Ou2maF1J~lktsF9M-pJIeb@Uike)?s#sf`5nl%_u=H5i`Qh_=<@r zGqa#auPKd60@H#SeY+Zo;-8!^?NwDR))7qseRNuE);)nC1Cy4P`|z47OR z*Dm$ht3e4CTZ^!>cO^4ws!6+-y`5K-h2P~jKP{7mdDalThX*+y-L-y0+RFB2&$&g@&|Cb zlJZ|N&ib-VJILLzqsDL0#TM%`)mgpt*)ELiHBKRnc@g*@JiDkf@(W$@e#~65|CZtt zt%sG)@tCAlwBF+zj7hHzaM($-&rw`xp3E<8Zj|hr$@MP4 zp){`f(gsXb8RDvpxci@Ax4IRat)*W;H=&ezQ8=RJs5~$;_>|3NPS4z6F}$KSzYi0D zcDd?0cBJ}Y!*&BBqqQ53h0y7NJ`atumiqO3^q#%~KS9O$;Ov+VGu|ixwYVyo z(iM8pTNh%&6sUqN10-}&R33$K9u61xBd;{pE7q{1+s#%nDGWXAl27$7wHEf*{XX1NBUO9+nKDN%S*zuI44;PMfE2oG3v4d@ef&v2w%^f zdidRvB@zDLj%Yq2^wvV7V- zOAA^wcs!Z}uOu7513@H1tCq{3F>REz*W5)yGDY39M4Q5)b1gsq0cN~jgyd=+*T60DEn;ciZv7!Vih>r{sEdcb3}D* zvsqU|F(R7MYfQ~?xS;1ua%o7o0F;dbD1M811DYLpxmQ1}5F0HDca)vk=lNVh_oy{@ zt*Wz+p%S~MuFol7EpsvfBj4+vPvnDg?!bs^KIuqMndp7e?jOpQ6D*DVFu0x}!CcDu$IcjaiM0hP<6LJw#iTP&Tq^ zk5eebF$N^K4?Xtz8tZ^&SiDhtqC3=}d?aL{dmk^YW)hZdSy`t#`q#SsN=6v04&tSC33!>pkh(s}S!CxsiaT7e!>(yZ7gAFzsYOvLfnhdEEnga#35%taU$A}X}-`ej;Go369KZ1#cPTsC))mFzagr~2dXJixJU5707+G3U4^#VzLatyI;LjNRumy-0Xhm?#!>TG`i9Zn-bc zM;eoJ!BXZ?oY(Q$Ge1WQOX>LMnmiw5E|gn@+w3(LqCAK{hpv6q_|l=%b5pfaGn-2= zRj#=+O{xPPct>xB_7AX@J8!vS<3Hy~vTX7s>Ju*_6D0RvCXGH)%KPvi8=yDg7P^7s ziq;v6G_`;Pr|AG`_Ui2B7KyXbYXX`Alq@s(M8}iN>znV3QY5T)-?U!`IQ3{7zo1h$ z_WLB(to47O7ety{9qjcAUo9`?5k|&rjYW;d985asv+x4wy%U#<%zjcHWT`ADrOlIE zmKtTwQQXZRSh<9 z6hgSE(^`4DU@ySM_OZs$%Fyl?_IoFi((h%>7!ur$ZEXCdp)z1Y$-WLN;m~xg(#v@N z%e~SLgZagB=p>bEi_>j6ODm`9n6Iq@iw^De{kJ_G2)XPCP&}U@$WZXivf8wE9g?(rzs~qu6#xQMB;;fgh2+Uls zs{HGDzG3RcmzJAMk)+jYRpDW@Y7Z8nUJS+FJKaBBk9-Gd-G3U(5_b%IeEmTRjwlmREJC%n;r^%!*kKMNN ze=!qb@3}GApxgNy*tlTCR0DEKB!1F+xZWSkS6Bk+MAX+*j%)b-s#6rn#&LwXCjB56 z-7=e;G7Z{hr|&e9?4$2nY984i@*T0hLpV+SES3Zx1`b`zF(*=eFBmr_3xx>-%i2Uz+4r1ZIG2 zX^x*E9TW?kVb#k#lDzz>(3R?{cU-^V4`(n^kLIchSn*`PeiH=--mpQP{kX4*SD(Lo zgZtH&CNB{NNv{pU&yD`Plh>=Z&4&Uv3L)VQp54n=>o-*U0^=-fgikDNnXYQ{yQ8h) zr?&W_E1G7;KeC}hi|_ttj4k}+=9PCZ#9MSqp6ffNMpz_x!1|vAkvmceB3F}cDZ8@# z)>^_)M%my_uHXF3(ryg{Pg&L8DmMbgf(C`BFB*y`^qUWd*yVN*bdh7E5obr+wsYs6 zHa%3tzL0(T;eDneR(9ZS#RJfnyc>M~iSPTr91fbDK7J{j>R z28MkiyTQTYpsW-5fI6_;OQ@MvdN7ixfv^#~ z3yW_?BMbrjfr%F%f4*SoCYj0hQTm4XPWTsdRan+aA3r+oEG8$QagzIdqkGnMQpBEE zJ=lL{7SX8JrBqA64I1xYN}1WqzT9flYd;bzn6@{eP8 zeRgv^lc>)h*Kt{at<1lk{1kNLGr!O6z;bO>8-xl-jn1F7TKh>)%ef4;DNl3$D^i>u zKq$*WLw?Raq?=B@!l?GN^#pxZUMYNG16ibK;Z5ba`?_*Jit8PGG88}x+z2hR+1Wq8 z(e|Hl_z3||IdLpR(o;hE?5WiomY=KSUhVJmzdq5&=?nFSho@?G$YBq&!8WsldpAj+ zBnw4fHPL8i`kK0qWYx^h-H~wqNJ}b12`e$)JD5wg?5&Lo{V29pwPom&ODPtGTCqJ>eR0eb*L8ADB5_LT$onZaRS|(1OH~Rl;IIsm@n-pGbY0_V*GmtQy9S;Nn(}7P1%u4lr!1si`FVA`KD_zo56&x8Lwe17Zq&BkoK-!rf4R9<_0^J6vb61%w$!k)<*V4~b(Zku_$mt@ zX)8VSTU({=k(P#%{g~j66XkfLfbVIUZ?C{6o$SOv?1fI?;B>kIP_ zs>}xOwVce}hgXFLJ14^)%70Tdq2itn4|SACH6X_@rhn4u0-N8MlCwh*L%xM@H&@RL z>*6o#BJVk`(nkh@T>nVTveCr^L=4+y53Ko^-XI>FGK^1HSm(nq@x`Rg9Z&MJy68xK zNyZ8JL1jA~@>n#Tr6trqjU(+SaMeFS$6Z>|ekhyH(&NCBN;V@^Y~lzPrB2IR?Tp8( zBqWHW%Axf7!#@C$F({Ag`OotXX;xggLCG6(r(btu(iG(#lCJ&(*e6 zM$Mfgp$>Ai;Pan?2b)5EV}DWe4XBh+6~J)i;$lMqSX54@{kt#X?=D1~6CTC#{l_H8 zeVIeo1Z@Gbb2wD#<#%W~hz;Jb7!4)yX&oeK&CsnZf3--zOC-oN;vS-qeQ(1uV zF-k4vsCG|b@KftzRtwj=0>9MyFrZNaaq2t-sr^BTBF6>{AH`qKqTL=C< zIYCErLy2lJ_fOX}w!AFC3LUvK5thC~_=mjz`J0_M^ChC+P+GCoCGy$6XEhEYZ~097 zq7p}-aIND+j~| zK%-^xcD@BP*2l=u_{U7gp#IKY%4=VQawScm@$3T0_}qhRsd^+>%h*PuGq|I1Q=fo_ zFop5H;#s{jN~hd6g@7}~Z}ZxdZCBSkLSi@x<-@8BkE;%lW^6mn>khCMRMT;%svM7-&;p@dRDbT6s-4+->Nk%gQXpI z>byR>jy_^xF+=~oX{`RwO_O+e*<5|v_YhU06_!S}<ojjvzWQ);mmSJk@Gr7JvF znec-5EyB0+d#0XeSwBW3`;XWF^XW zqIxv?dw)daHiulW&XVXqK>7HZD$*n8!Kz7W{;cPXL2oEexGI(}wRx@DRpHHEbXPAW z%zF~;Jt#N(sj&wqMCzPQyqGQImomt2Jl4nQxeRG9-x*W7-XN^9+dM)?IK#WRYiU2YTZW( z;ndMdD}$lwMX`c7$DG4jn&TaLpSmmnyJWI$?e37gM_5#_2-JJ}%9Mt@NaTINZsP8bO*S{?oMb=yN$>d^<@MuHf%7#QUd8+g+IC-b zQ+&g3ZJ<|RJ!Th-u|)dNL~di6oLqu{&6k=4x9@%lCYZ`C%Muh1DD;?12WJo>^|Bx7 zB`$nhq|%`79xwOBn{}nKdn11rQr(a)+m@xG@c#HnL=Z0PDp4&KrhBTSAa|x^`aF;0 zoSTZhJF{z)Ad9JE(bkO|Qm`iq} zF~xZ5HPu)rxqs2W`(v8J4T+DDFA^nwN*U$1F>cqr$*#8Ut&s{v;B4xY|`bKD0@ zH!U{$&U?A_J~8Xf>zRO>tTME3N1ky1)yUVC#5J*tVA+7r3HsGT4Tjxf5BEE>zw8>I zY!fYf3rei1txktyvUxzHrLe6%{Jn+6+?1@cMEz?n#SZRFue5@YkA7y|0ff$;3#x;z ziY?DU5^cwH`u1f^93ZcWS1~C?s-rCg^xxK;VG?pz&D3?7qfYO^R@p=05;d z(VNiEtUB13!|RE+v#1yb~G`AR6z3+G%5al+uPMLwb(Nc_m|z zk^l$yH&@H$-|-(5=DR6DL=npC0qT>bk%vpAFZ0fbw+l)zfvWdUC-vpuZcWw)oNUxy zD1wQ4IF|JID+F|sV2)m)UXqWnwIAPCsth1h`T&Dpyk*qzW{i%wmTh_3A_vP)V?$}R z21QuBN;d4Q#p+ORCL#CIoK0^Wd@jzf{f%ZtY^-&UVxFSG;P~F&>ocD?6jwuAgs52I zQ{Kv#IVbin{sXj4W&Hyj)v%J?4y*0{0d91sfhnTjgH5`S=C`c90<8VKNt3M-kP--2 zgoXp5DG~r0)V*8h*512NkX7qiOXq(+bx)X)=5h9%#+T|&>FBfNVAFYX_`6ZvMCk8& zr2pxtIp?Z0{=obYSvlQie(lln1N+_zjMIXxeRae@5+unJ7Kef0?pa@gU<1L*ago+< zp5x*(N(=jbA5iK^9Z>Wt0>d}>#xd(Qqy3NXWjb3C<@xCuYm6--INGB{vK}97rKk(i zf1Z6S@#%Ap_dy*K(8&cmkf zdqu>xl|LH`B|VU>L|;o^k__T<6yVI7eSG_@(VZoaL&a@&+S|Vyhl}pK?1tIA21in# zTWonzbsIcdkSCgOTFjoh#p#gv2qU56!JuD%E^@pN1lLj~g{*$Jdb?7!VTlfti&go9 z8`IaJF0{%fxu}*MuHHJ2DY2-)gI?_z4 zo1gU5@bN7lt9MIo?i!m6GESFMctm>terk%y=B3hl;eLnSEjIXVso31BwgV}U!!>9C z>AbVb2n(q*_*>EVY>j$Ty)=;F+M$!v)R-Rpj>?f>+sNg8!i-l-W$a4|}ZqNdCq?LKZ4Nb_xk4ddb>LMHnN4>>-aY z6%+fTZs1(yq1?-3dSD`bZG6Z;lX%(%u$`vz+o5I+O>6PYomr!~RAT`b&#wBJ9#`P} zbuBgKloU3#ya`y4c28gb7ii()FSd_&h~Y&!`Hg&yLuqQK{bQ=@IP^Krd^)^p3CuLl zz)^CXCz!N46Gl6=ox4+1`osB6;5A}4w=jK9=g~%Vme@JPu4!rf;0En1 zxBp2WnLLaO5u+}CvCm!m$qY03KI3fg=ITM=;6l3= z!uRe!&3y6qhfEH$I2dPLubb{M_SA~*4PhXZFrcTpQp-^A!#8ZRRZ8Z09=pavT+13) ztB8!1uTK{=uT6XxZvP3Gq1mYK)~eI}(a+DXds&C7kTk4j`+O%d7ty2zO%1uM+4V~( zwie?o{9hv|H{BH_zD?EaXCWn1|l1F}qgi_B-m- z9?{x3DyB|wd~u3x*6Poht))iXqZOzg8&*RLnbS{Qg-2#SuzFC^dd^puxA`DPfeAja zk18d13wPA^$pSscU_r7914`l%MrS=y*AC@0ua9PB9Rxq3Rp-{52U2nzCL+V(5QH_{ z*4Sbt-RWbggpPb5+f-YQZm8M;&Ul|gvNW=$+E-6~?fl08LfQtM;|x0RPf%RKk5fat z=D7%pkGl_gP)2@kiK$I17hFRF7heGo4_J;&LyL^qB}WRmA^Fynxgr4*ckWN~9RY>J zx!tU(=PM+99bQ18`p*BXPyG+_6qdeeCqvU7sF++Ol{hmH;x7rxaN!}dhG-#;0`ETy zq}U*I!;IsCcFK+~Wy)qc12<)7RM$8`Tt&^tSG0G;Suy)@)|tM)6$W-yc(F;>6t2y1t!D}3KM;7^>PnxRZN4?ePm_NjzVZ0io$rTa@P|WV^UYjVImwEFVA}1~ zwMT!?`Vrov1*tbvaCF6d!asUft*-uLmaSD@i1v=?ydLH?Z%nQjxKmH6OgZ){M~&kQ zMpKIw*ltrpl82d39Lm;u)F+~w#ZU|n)jnyxI!QHi+ZcH*rr%gqRZj@s6%TnvW8SYR zyFAb}eNl9p^Zg41r;Du;Lgz|C3p8QVw;nPiHz{^jvAkM?pmK6snysIYzDf|&2a!Tj zMssJ8Udv*KDr50|uo0A=bM!W3H)4Kq2Q~}NlvlM>y@rx&yh5iSq|~&2{TdRL-!*@% zs+tjk96YUNyk-^@%=E#9RK-T02bxH@DdOvnO%3G{ybp7*$_LxaQe%$NrEthrO1Y^B zop^$~z+17u%q+`yeL+EoO4`;|93t=W2H8fp9y)J1X6#mF=!JP~k~AVlJ|W$67UxF< zedyWpUU2gZ{3dFj!o0DVOyaC{(70m`f1L&kJ}Pt1&kSzjtot6h_74!{={?5FyaB>D zhSln5{Bcw_LUP-st`Q#`3dK))XeE$Eyd-N~CcOX17%uob!11bTugi$f zP0Anc!GYBq9dZD}Nbm&BN9X+Qo;?DPCX?$IcAr?=XtF=5lMBU48KYW4s)8JS&X-TN zkKSrH`-)5C4y-|nUtt{C_I6SgNdo)>$dXCjfFRx>YI$Y#^3R#`e`Ug({ni`aY|1#s ze|yp9cJG(ii`{Y2_hZ}PC%f0iFr(JCBst3VuPBz489MpU7p#A^s;_O~@LtaCKou}2D(`G0U{c>@#7 zhMqsrms8e>)#_=+zcA91*qrLTifFa=+=u)+xo#jG$j5wpxu8;iW>qHIqPx}hNO;#L zxiK_4U{ck6YH(_U4A3ia{i-BpnU=?z1RutsmBg-s;Dkp75f!Pz7vXoe2V~Tf`4UPWniKuJ(NOfgzO!*N_tu2i z`>6GPD+p9Io(F72Mc=*&b^O?K>Gv4#n5XgFZ0lf9kg=T^wbAV#;4@0@3$fO7-`_8F zgNDYr3gm&k*XmT$D(g@3OB>xPlUp+bZC8N|8a4=1(-gh#T+b;8r_~=Ho)2C96Tm3P zbD^mc^J=ei`*ld6%S7xFvlU7u`W{vJ(?PVGw zPLu9?eDm7*blcIGZTQc^nWtFC;e3UNuq(BZDP9_0PNZG9Pvs{o8~lMz>>Sk5HO)$^ zB9pxsIO-qrcxi*HQ4bGhuhL&TQmQRFNvDOV3XDdC>16bl-w9u7F)a>?NLp#X(|bKW+{MuP)()6A@Z zo{~bb7Ebcu*I=8=!)3fy#H~<{VQ`r#TBnp0Of9}v6w&+I@(xAy+3wWP?Qw#@g1fso zjxF<}V1wSaSgOWUJGAoS71dx%A4eacV^X~TJ?=D(Rk?ta6x@?4o|vPnyFh1_c1d8q zu1V;jE2POR=D9g}CVee)dYfM-{Kw{J#=+0_>awyu^QD}=PTa{Fxp5jjka*a>{Yy~0 zgJm90xPo$&xy|9;rVr`<7_?&dZGV*BYdtBjUmUdHao*PSxQNSAO;o$p#w>$buh4%z z`=vbEU;y?H@W(oF*AkEOO%i*PzAKewZFPU87~w4JP)(D0rU|J}%nx?{&9Atb(1P`P z?w%>qJZd55@He{BC2a-fX1%^R2dmjz^RM5LE8Sr7{4F<9)d(eVHoosHO4#P(*mNzx zsO_Kl2MCwTSCcFCzF~NF^QMS=Ty4Y8?wC~6Qo<0=mA&U8^m(T4pC+lbI@Z1!;J2jA zt=wJ@2>ANoh2d-o(kje%$^#cVIjjUC-IIOyN=5hPT(tYsBC0XhT8dnQ<@8mutSec8 zhQZCSlg>IA7>Q#86XJZ>ereU?jLM>qO6nW6j>?X5H$!__rK1KN4hRr^l4XO9m!B*` zW8R~_sz9w}3Z&0GH?4tA+X3Uc_eD{KKy5_bULwrLhhNPj0O?`!%D<*9`*%jEznca1 z0_dj7NoP^9F;u>nC#?&Pb2y6+m=UQ?sRq~yKyCZ!*-~}zhjD9Kx=qme5N-VVqTl^% zTISIYv__WmP>l~N!>(uqETqe!Ezlq3R5P3)HK;|ne)j!anxvXHirIl0`V*K%rt|LbF@wv_rjp)5IIa}mPbnG zyTEu5b#Zv^m$ zTqToDqE(Z*qu6c2YiY@zP`wllEjLPho{X`K+bk9eTu&+IdS>*gSCiU^yGW=+}iLdzzdJu{IGglhrD( zN*JA}47&B^US7sqqV1&5*ES*gU${Z>K{1EMgWse8;*Q+c?9p?ej)L-!62*QWewAiJ zhJH4@cFw5o1===1;GtuMNEEI0m~nh<3AXw(_dZAxZ0LSK#YU9!yQi1sX(wS;Ly#Cx zUuz7rmv&s9UgW*suIdt9c^+gX)Ob#O3bS}>nkr~f)~($t;fW5 zzc+FU0}D6(dVQC;HDJy44}h49O;`Quv7g2hOOgtK?s{>&OF}63$J7v1Ro?K*M){bNcMgR?lDc+GgHf5R0=$25BT(Ve0|ONfydSE zfz3aaBob!x>?d%pSFKB47e}31^s%no-mm6%PGv?I+sb{fng&N>LI1N*mFNp6;<*6_ z#VU4!+hXZ|reFabm*hW;3qqzqcZRL@UOcbxX9?%Ut<#>W0gpy}#NC;W0$9e$dL_iT z4p)8J+Gjd7g!>I}_XGs?p{g?~K?Wfmu)VqlHMk53X$$3|4G*>{EAE zej{%abEJL3Ez?lSKB`^yY75}xB=X}SQg`CUB?wYZQq*q-HO$!5p^NIHx0Rt z6e2Wm&%%6ARpAdZeAg`;$GH&{u5$QuS9fkFijp0h?lg`HFwg!u2y5~Q;+zl>9ZQnP ze{(BQX#Gc^w939_C^97_v6r@ON!l;8v%r@VnS?@P59W4~)PA zO&D_|rGl7)xkZB_t$-B*siv29uC|84{E+|tkH9<@o->L#9vOMUY3SSgExi9O65LTT zRxo`O_j{kI>IovCX%Lv~YJOlNG!n>`BjYyrN>o}gHAnI)^Ag;@g_1X# zs%0GX@vHi-s79A_+<~5KReB($EGz4jtWzpDCNa_xE}a+)3d@9qtO1E8?_n$MB>gO3kb0mR1r1hmeOXhgb8lWkEL|fOB3l4n_of_ej2(%o?W-Q~ z-r808Y4-ueBG-X>(uPa)0(K2pFkc7oG53bd6tqs{Q_ssVeAE7e9#RShvu#{83wj?8 zaqa{1Zm;IaxGB&m*z8>u)MtK;jxR3e^bnN%q_xp>d--7-7rCUr(#<8o(1~rJtAj&@ zaOF$%@w;bstWgNwkzJ)RGRbrD(4aQCIbhPj>xAltk>K#O;v0mraJ zP|0_pY9U``Z$QlRK#`90M{n0#f*!M0;$416Y~SF>plIy1fHQ=eiVPeM#8@F_9W_JN z(nesb#?2mhJGo{RHioIH1P0m%L9_nc@XJ*8!_FVuE#;QOOo2;Q!2UZ);YL28{{RDt z7OLt2#-7&G^pn|b1&)>Vh*NgFuSYeG=8&IIC$G1K6p@cc8m2aUdb+2AF{OPqZ9ZN~ zCq8v`3b2B8)YZ=gpR&_%&X)1Y2p$S`W6;nZa69h~Bgr`S0@UR%=6S^-KJhDE8)}*+ z-LT$GAr}(;n!LTJxW1`#U_ycn9GvEl4J~_3hUsj9(+#Gmw zN#=QGP#>b!(aWE);w#W}dpuu=5^ADVBEZN>2D^JCq(&`Z=zKo56CeX0u-3iVG&R=O ztz&<)HiUnjZCOEn+-sDf_)q}`H1z8PvvJG8$u{y=>I^T*6lP~JR_uJn)#7n}6CPzH zr4pG_ffiJqgcA+}ZxXSS>olf%{*foKSy)0zBU5Nrhdv`2 zAV2Ayn7!wWn}7%(R?ztePoXZ?dS%PR3$@qtz4lr3{F#a>bilhC_=6=)GBwh7vQ$*{ zv3#EbBe<^B|2_y^(cfR!EhVp!PLe?Tr{&(=s$PjPlCx;Bin|$DD8kv8Jah9H`)S8-LtxFSFq*tP}`)d!WeLS5n5(o-D)n z;r`tzb>`^@_vvH%209yzB}~t&hU%J4@zmM~DgQf5;3#fk{WI%5&AP=)Mc;8=nyZl7 z4``9zNfl&#s*mIE^=jcqUQE-fn-yrRv9LnxouWd79u>k0PAn7iPweE^@_VM$^C8{! z4`XKIJ+ZBV&T5HDZK$5EDUQ?(YJ@>s86*@p0d!4@#sg!Co8K|#PTrEyf;hM|;(J({ z4LO749e#ss46bYa%h04hTbvxQr57qa7qL3G%=@vE?mVzn^y$!)a!A?SWZzzZ98;_M zqkF~r6ElSjy&w6=ulLLFd?Cqry!c2mD24>tqJ!BR@C|C$zd+u(wrXc&$WT_nmJhd5 zm9w9&)tY9Y>CTjW9cr_Fqs({WLixEzzR&T%XbzQeUfEx}=xzR4eJ;8&{89B7nD$(C3xv~{0$sf)Fp9abUZ$#h!}%vsm831P?eC^7Dm#nN@~@1twmVF%;;9i}bD`hPikcy&ig zujtxz3itVR3lCw|o(#uY8ss#sH6N{_80DG%rN~F^#f(V(={lm7joKpyeWR2nDd=3P zh8Z`{h$bBRZv!C|B&SHu%$gGpm*t!kk*9t|qV17B<`aj#^`KIfUfyII+6IE)J2z<{ znechCnVK{W&K$*ZqnCcrOlFD;mO)`9`f{ba+}7@yqqPW}AMInM`Y0;-`qlj4SkO!h z%0Wd~E*5<7z}7;LX|m=)q-W77`KWv>)cQ7@9$Q*3V8`1X&|?5n&Zm zo*s0r_E-V!LjoXpd#Cm$1&==pFd?E6A>n*ZX# zYw823OM`1aeQj}tNXA|O6uIHU+}mP4Tg1)0yUT}&d^VRM!r6)EBhp5u6NB(0sJ=gk z_B)|ORbxGq08;U(bW-v3E#uwyXQQ6VAiwtZ#sL62^)Cv^;~KqVW4O{+*yuC`Sr1hQ zD>-@4IOxydz;o8x9nG&Je`_A3w=4orrY$*FSy|CB3((1Y*B#tO`vdB4BYE%mw*i{F%k)|wO7$^QTcC3;hrig67) z})9w`w(gvsG3}oBUwFpnLGcnocyH_mkf=BVpFTQ#`E?&w$u64 z4BPz0xe+ZgY>0Merg?F22>27d#6GX~r7f zxOIT3UPbD6zP5C|_{#D2t={F=%Cif+i@uJOqYx6g56M1(E}!a@Uvj;)nK)2Uihbo% zCd|#L1sQPMnpOb>*#&Y)I701?o+J1T`og*Ef0O%?bE_Zzah)hoRH@C4&MZqjVxSo( zC4@lj3azkPT=>rrhM`Si=+slHvi*_h8J!6~{O#4B&y%-8B~tN2K!aVGaC&C3*T-NG zIVq=p6NG@oc`9Hh1u?((%%9?%e-8*3|#wb(sEEeP5$h@Q-)w6R5xki)IUet#fsE193$tz zaGZJJq+v~FBx{QgN=G5(h+p1Aa=v(Rxe3QPrnw#2K}l2V)N@EJvUwV>7@fC$G3oFD zm5X>ifEye}sQHlDDd%wO{<^r&)tSEoy~EevUgqnz%})v7Sk+PrSi)GxQ`Zyaad=$n zVAm3eU4*G!@wIx8I3FuP$r|frOlGWPA($1lq)q2!cXIg_c1=o$jr7a|c zb{V!JTzfC}Tyban+J;rE39xv1!AMKnbv7`mo20PY@edGC;F?mknDxGQ-(1Z@mB~m^ zCPyjTSq+0@tYB|FgTXV}cUijmM{;sw=LLi?5fyL9g3JRi6XRHRWFdg~_YUl){l|n>OUO$+6Pf zh8X=x&`__pT+JZ++DOKDgx zB|}5E1)Q*y+o&2S=niuMX%o&>D<)S9gT`*2$vFuUnu@pe-dY#|PB|gHDO1qQAuu-3 zhg6iTuX<*u)kPKmq*Ttm=)sf9Jyq9vuA>$YHEYCo>r`x%j=35)T#(aHWC7L})o}G} zm_p8;acy?TXwbspobCz`Qj{Rly!g!0QUGide5|ZqS~PKWfFtMs;=T z;3L+WuAN#wMapc`o%UeF3`bH_Q92NH(HaH+#81H$-SC7yTx-C@JA6Z~_F9_$(C_@W z1$Q)y%f86hfhwv4S40wsQ>MDUo~7j2f)pV!0%wpbPi?S{-L4B2f5`Hr)P3}s#ub(- z6pxvgdopzI58m&v&Rm3Np61axX>-xFbGOQGlJNPF8Z=G&x9E_>;vWgAcjml%dY&oU zTZbi-*ny7$*am%KE|#w*^^_&Q^qh3-{+KU5(gJ$JFI z=6p!0nf)@K6w_2#(My20yokh;=C2`k?ejw>lxaJ;(9EDPgLz%23D{*UR7{ynAIdgi zo{ zz#9ZDfGN{Yb`v3FDM&-5OAJ?ed z@Or0trUYqfq1*v%{%F+vj8oHtRmyIb;GQ~FPi)oxPlJB4NpXg%P2`bx16Ab%CYnxN@D^qdnp@j}_L*S*X8K_p7Y}(F{{c=+>UEnOPT1+R?H1A8cjQ7> zuKdrb7XRfi-z@$x zyCZ8IDFL;LR5Cho&duN)h8-%Ia0wdw<5#lTw-4{{aG)uehLS+=hhqY_^fDWPbiGa5 z{?jo@Y_gGbLEt;_PlhV&(ci=u)~x9xHP#uh>%?FB=S4Tkpzl-Hbp3sLU>Mk~>`G}G z`ogin{#nsws(bU#UX+PUt{3?1$zDL6xx=naY*uimIhRSrAQ~wde+m3S@Q-_p<_#mM zq6<&XSr}jQ{KRCZJj@jTdB*6HubMIGN#x7v2D!`!^=p~a@wiFT-&Ju+aSD*|6Nf#P z*I1cSXDUm6nxZTEHX-DBlWk-Y?Q|rUE1CW{s3zYrDIb5W<9HI=qhSI(K5|s-8Ja6+ z+MUGgFmQAm92eM;E0A-)Iy@$68hXR~N0auI8EP#ut2Qzd<7!7&pnQsDw7BmUHj6v z68%%DN%F#)RbFbTQ~Zwg9W(5cm=ECOob%p)iyw+_O;#+MYxy?3Lx#0s4@ACIW=!*^ zoTy16fH`Z7f#exS@1KOx7cIt_8r>Nhh08$H-sYS%#x?cg0X8q6wIKWon5}i)%!oG{ z5rhn-5ZZ8Q-2p3F?bTI1Zs51zDscK=s(L`&y74W|kdb9O?M<`Z!+bcIi|{VdBO&gN z*ZC2_;>X|T9LsfH2i|XK4H_E_e58AY`+{1l)?NRPNZ=@yDwH$ik;pR1eM-9 zJXoj#iVB3#JA?#6=%FYmy$DEeDov#cAqfydk={E25^6}07CNCnC;s-CedfH_zx`h? z7zQR`2EMF&t?Rz8>yv)#Zf2);uF2l*Y=5&EI5@)NKmo!dkdgc1){4iS%T<+&HiKz^ z7qW-NIsRFh#i2p8U-ko(i#_x9w-`Nh*XQ@`&UF+5N~0GZtHuwk(tpRRO}eAN_~!8L zu{yq}L7=wT)Ocn=9EH#1T1r;I3k8+FUi^|Yg|}WFpBIPO#|?!S~ps08{6wQKGEFRz6^kv+@IRHj9y^FNp=+I z{1Y-G%p)1&77#Q0igp{yWTGbD?$~1jJyv?!gxkIwc;DZo6%9YLCdK=trGLdS#(&ZW z*SNTSt@wJ^!w(LM+PajJU(7S?>x`_gG*>d~bdGG5Q#3gQl|zn&ubHfjdmmLh`nd-L zaV0$Ow)_Hff6RI|-{|#HcO3@ky!fehw9re1g9kNOZW0Q{8P2U9QGxL~$J0Sew7u$0 zxm!^zxgP=gPIjs{ zBoJxkMKP{oW5L50%5onWGQRH{8z&eS)!GFW=dYp9zQMd#84a-8L`4*foYMX$S@>h* zJl9D{Sg%^cM%GI?3gJv_Yp&YtDdRI4i`s zaI(KY+_0i$xowv*RRqqU(z*o4YRuO+K40!U1{8ekryHeb>v6p)1<9J(!Dx5+0*~W< zYiE5^6e~({k}Vhw&tUleI21?XV zY^OqAZmX9F^VxF2&H~+;oj$LU34P=`DQ_0VBcw~Y%+IQ1FN=WpeN?7+e9&~olD)fI zq8c!xFjjkjp$QhB#(c>fF50)YJTRcL>I?ak*PE3;pIBI4xYx&^{q=G}dx@gq%C&40E+U>1%d~OeZ}DuQ%(B3N62M-7qUw{S@Fuc;?{UdD4^h9QBT`f7Lygk( zv1fhI{UBPaPn^@YlF)~K(R*pl(96B(;`@S7jUs@M9b&R)#p*knrJbSNt|6s-i=~Tn zd(3o~g)Tpq&ZKxIC`*Zfs|o&X z)(DP#wseDfU3WdyBoUtUepvWV%qw~Y>6Sr9uwd74Ae<8H@gl6HI>H=e6mq~)N z3I!-5OGAEph!@;^dsr!1L2SbASNY7oj_ne#hrL7~HnpDT(|mM4pf3OuLVIx0k6Lz@Ic3N@{UkfjpgJ(1RBm6y-Q6yN<(;sCuDciEeVyoubJgs_Q&^o?o31uEr zhN6IkKMl{SO=-2B3Q7L>SQME7fv8OODW_B-3BEC_c&8i0OMSh=?Rrr9r-b>JF_|NH zwElow?Lir8oAy$Mz+->jJDCP{uNm~O36$k@WF3}xqU6$!`}Xz_k+3f{wV9?}Y@udU z#TwB*Rh(>iPr7101m)c@hP47$*5IBOw*IOr7^Rxd-Np0|i%brp_MT?gd3o%-*rB8j z&2#VM9`ZE7zC(Q%&2Y{$p8LRHl1&XBwb1P|aC2cKa-EA+V+=9l8}qQ&*aXK?sn|w| zXSd?ii@flPiO=}`i^pl0RAL~xZhr+-EODblpTB^QCv?F%T`P;+a>jBUDNc&42*HOe z;r0_a8s;r?dqx|AtI%L%!?Di-C}zM*s>m&;}B?ZWJOBQGecz`Pc=qb_9_!b6l> z^*KJ!iabBLO5rfU%Z}}WY5NR;j;@LB0xt8! zfOj8s!Z)WclGJ_Z;GYDz3Y%Hb%U*ER5xS+jDyYOf(>Fj^u4=tEMJ>TNb3B~j6pnpb zCI2>T(K6U7s;$ui8QoVKkg;-^#G2yYIMZRtVdf(*HP}M0?Ew-A$$5v{no5d_$zFl(mn!TkAXoV2G%l@vILNl5 zF)THjESmqz1n5emCidl`^Wk+6t%cw$BG1$y&D6?jcw;<4Kr!B%V@_kvr2DjE-g5?6 zJw6$fnX>pV-Ob?q?S`GoNjGKDUEqh`i{^x$b2v_pcEvJ|4zD!U&2l~3-#DVH2p3eO zWR2Xsbi7vR${>3)(Uqanl`*bYv^l4?OyiTiGRx4zE2_ofCVKzUy{6waX$ku4nR8WU zXuTrid;DWspro`amhISHeL*fwAOC0019)+wzXA3@DLH$R%Z<(0$jSX)jD za28d(nS}rLN~HUtrfwzC$v*U&&5!yYufCo;cae__kp^^bJc`?a_^~*Sj2nYwmGu|f z%ERZ9`MC>}@)BhWeqs&^W^I1>iB$0gCs81vQLwMl2{H*c*m3-8=|U#j9Z_$(Jd(;xU!xeTXk zoSGi(u7^w_tSpmHj}*~qMYhLqpThwUQP}Cwx@8a<4<4Jf*u|NHBu4Fus_krR9M~>h zENg`u`;51Zq{^9*X(rTBu1J87?zLyjU0!jT=pxN`r-4c+rsG#);t zR>qA|FIU^@H1UxL6!lw-ER|O|JiID4)&NeME)-R_SFpIZRYY- z8S`iBNXfW9;LfhVpEh6jEmoh+G?tYg71!bm9h${BphQ8fg_l7+<-0lZOgXY#9fde%2ykK#*-C3=v=cq9{j!}MFO=K;wM_&Q7w63^i-x-6W% zMBh#+4=pQkTU#-syfpAqs(c|Gcfe6P(Kd$qMhi-Ky!3uNfCV``bO%7qofHBjaKr&B;T=7h?fawy>VyxSS!xTWAL5l(Mwz5J2pNJwz2MKhJ}vNcQYkx z?cYBBYX3J->%T7DQC8Rct1m5Oze~wWpf6h^FTeeDB}!x6=fX=`W-X8uQN#NCwB?M} zAf|j@tzZl6R16$7JgKas!InY>3wbW2`NUYXfc>oSWn6fz-< zLt)FL08{{)WH_`E|D;l55A{fFxj9iO)!O5NSAOcpSZ&4A^PT&!g=Y+^qv3vT#6-BL$c$L~%F{Q9Nk)9WJo0XXqEe?_0F)nhLD z=QXAZ)y4}fw2w*>L&R9-+(xr2ImsCH;4}G0+>zC@ufK_q72mI`8fj`V?yiO;jtKD3C%_~K& zAqoj@L+d{TRTPMS`OOEcQND zE;z-`Jyve1oczEmPPX_aW>xP7_x@9FH?Zc!&c4pYA{jGO+xWt=-zA)~8Roan$o_}+ z*Wg~j+yzk@tpVNAoNYDA<-x$CKw0${4RUv$lq)Nmt^{w&3BKM9V^uE2l!5!|-i19) z4|#7D{G(HAK=C!zu(_Hd5Pl^gO?SkEF;yW@I&cOOqP~knGesrDq1}#?h}t9w{m-xN zAql8DeVRwvvZsaiNrmeWE853Ne^s{aQ;qf6C(A%5MErxb*=W-u>p;kLmjxDp1+7$i zXykiio^!^&Oi+S^(+E|Fx0y)pi`45lzf)7H4TS01(q!qepkAct6lceDTt082gpHm> z)waKtNW9#Z-V;+Mt|zsh(9BU&YcJGHK0n&SuI!FEbt6dT)QRcI0j~A3R!QSH>N|C% zanI2z>{D?$rs3{!ntR5AY$9loD|;ybNyH_0=m)qhZ5=4eEw*9Boo=loh*Y5Bqm}+7fsj55BhAUcbvuBdc>ilpsvw z@rXASOkDK0*L1FOO}dM_D_35Rcz4{{Up%)D~*F7Eq_CzYSDvoz0Mp4F6! z=W+Oli)_*DEer@@8M{Q=Xptc;k?05igUsctW})lPEdKXtFI`k4#qGvTo>}Xz$+OUz zbllOe23891&N>Z^rUme$mD?SYBPVZ~BjaDX3|%!RN0({|6t^ecw3G+8uJ?9M2&~w= zzp*xCrpjEi^MTR}e~CG)^3Hm75{;A4K>eLqUCycw&cXAiyaNHMb)5r z=C|U1BgTbHCs7UP8t#r)#5Q)?9#~on0A4G(Gu*-;+r8Po`?-e`#F0>&yK-|g{w9uI zu?1^TurZk@ywY~J^yL_3LtS2bZTN+f&RuyU+DNn5Sgu`7<228h3N}I9(NC@@!XGWR zQ}BnXW&J{sbB^wz1oyS-&v)T$`>FMRN!(1DKnsB0(t4FYgve0oVxo^4UV07mu8nzK zCkN0I(+Hm64U@2{tNc(R}mjGG`1B9`2Iy zewsdVP48CwZM9V=`cEA+qLw#XLafi-im};_4s|`NAJsUXm^PS;KRe{&;va$}&+p1? zM20C-O4|>yDsNyrJ!$Pxf_*zXn95e*o5m;6D{Z%VcultoHTG5@RUxZf>vA>pq2e$^ zo|XQ2mKP$npI73w;#xm=EwYT?4q2b^KoL7pA`2*IAOHNyGHfJdPj+eLd>e(>==*0K zKYT2TNQKBd&FZKO{hnm!G#!^K=T}Ng&NEt)?-RrFickCIpj|)oz$GH#mE@fXX$v+# z3w$;@XylDC-vodoLEWg+h?{Wj7xGWZ+IVi8e?V7P zuB6+8E_ev!+pS#SMb$ZV*`6F6cV?FAcvl~% z=H?Wzi$pj#i%PEB3{FYSanpMB#u-MxDZDYJsH@fMlc!AO^+1*m%PNk3U$xY)Byst4 zB(q_2-j~*vC-`W@m;jLo_CL#D1iRb$F3wk4GRMYj&OIo_1gVLxMV+?X`F&A;IFdw3 zN9&8woO<@_&Z&;~6u!9H;0a#wt4(kNLkDge+ zBXI^k^G*rStkW_Clcu{Dn0(}nbZ*E<$=2MS@(}Lp+dinF$WQ6+Zk~ui06DUl=kB%e zj4}dHG{^+$l&TdJ2r%pI-4#%3cf>n!vJ< z<}nU`&zQ1eK7Sm1Gk@D;`#Ct$Pa)+he;{Me?{5z-H#lYRGK61WzK9T%o6C z=?BkXg3}He?aG3q@Da?t2_*6FDK%PIZgs~|(50q!lDV~eF=zruY8sIta1bI~Ua&dF zxFi_~Gz25kBmK18b^YN&X^4Vx**GR^rVD%$3?jv$=g*yMilFh!uixR2S|5I|1Z*8AJ;zmzz!p zJ*b|75bvvdIxeVUuln@1O0LbuYcD!`{jIo?49Oz$CaC?s(((8MvNjUgDz#=O2ab(01?I$=$udC(OL^ z!CmhA1!rqCg+=|C<7|kShOg$k9m@FJHdd^+^i>?q6S-SD^aP+`?Q-lZ72h-+b?TkpTzRp49P(Sg@G zdGXiHhKINqC1e6?8*8Q*%OOn1sI65%$Cy%puRFJs;moL5iB`JGpBnAi+a{WLIemB} z$l;dcD5KDMWh26ij8-@8SuvAm+TxDZ96!n@Gi347qIy|Zgp?}n^B-}(H*Tx^@nD?j zM#k63nKbSik+y$iX8f!g#GX0y#14DV|5iSau=36<0-_{m%C3$tGPA37=%9J3ti zu@|*zHA65*3?wb!6rC(92$B^ovzu#A_*~`{=M^nYqy@wMGy9lF3L~Wynt{xonnvQ+ z*N>Y(pO^S6AKmYqdi$TGBM$W6x?o$`E0tKo>zeu?_WTNEF#K;}xThSla5Y;HI{oXQ zbi40t1XR==9HZ#y zUS2!bBq~G03i14}ZT8Tk5?-@0eKazr+_i>%Fiimy*kz1g{ef4~rAfTmf9rw60DXex zwx?CvS61wNJ=OwonImfzZ^l)qZdGMc_akX%@+((p3|%e$5ASFUT~QiC_x<`c3kQG) zWqU()_IVHsF8KMHyAr#{z->c1N=kQ~Ru%a?b6e1h`r^Ru#0@zEP12Rd>mgV?0;ukl zW}7sRbGHu6g?{V+ny)`EYJBUz8Z6Bo>=K(gR>{E|F!Q1@Go>3b>8}PY`ku4V>d7te z2vAlMwQg4)R(STSO`1W#8E$y~N7{V~XBMm0-D*;$f!DIn1MEkL zH^jV*R_>FCGa*?1E%g*VJ|YvadWHIPX}|I*Wo@9VPlIA3WpW=!A5 zTG#~QSX;M~lhfR}<*>*2kdBho!(gYl`arWo_tG3?9rcdFCA~!VxD*!B*>el&Jok3Rs#-$ zd(PCe=2b|QZRi=P1;S-KVKj2;Asc!4i#Nxp`1rAUUwxg0&&kxkbn*kV>+|~5rlC~Zu8BvZQUHt_=M6jm>FmA@%Q*81646}0U%>MyWhQg-$tXt zD}{%#+M{KtcO^kzlQ|qlD{_^YSbVY;yabvY;>5so)bhMD=;vvt2KyiZl((KtvPmw7z|M_}bj)#;pu{l3JA}oI1gpyGKZWo-Ku5Zm#j!7DUxik=Zp>b5F&=Yi}|*rwJ-MD#xnpqo~B^P7g-xKgiV7CTTW}lw3127%wW`A-Z+y}mD&h@_UNlXs4Z@$y)X%KVh&wf-x$BO>4Vk~s z=<$}onhup)*A&aSu5E~!m&_iiE(cEzIC-V8=~NCY<(^t7Seut)9367V!oBC`6I;HzL=b#7G<@_b z4Ef1v5MR;S;0fOg5Kf*r+uLH%!`0uvk^CVZ8wzBpgR!{$@{O`}j=2tV-OfznCvgw3 zVK>H%#QVi(_V@Vs#CrmDaxqz+!8wCd3rW_kP$id-L?PwpOGW_r&Hfqj)($3-8uZ0H z1nI3_moc>CGr6MW0i|aXpC)3F^P55EBAVs3j2!VFwmNzFx^1;G`nN{zpX(IN+neNo z3leItOSZ*Q(vL%mF(S%KU$f-;Wa7g`Tb#hvNmZGdll-C&kiWl`3|QFz*`_&Lx>bIW zmy_YxAQdr@n3wzSGMsjaq_dI$kW(joeAdnhE_&kYq2#1ACt2=t%jL_+i#yotL)jL* zTf;jy;D%sxuL=BPtF*q`al}-6XAcM2wYebrxI`uB+t$_qSHq>-i`HeB`iXcWjVzEPT)fLRaR|ka2?Hj<|!@;umaHTSe}-aa+AFo zv?yZ{*ow@%pwY46)o}G^_P_7~>6DiYtJ?OU9EfsVCRst=M4vms>~N#ry}X_PcUM8S z{W)^~)mN+FFH6LC1ol^y?R=27T*HVF?T1gRwFE?>Qhbw${Mq+a;HBq~#KK_Tf$@#D zj)ul$mf(JDV}v2$)Ey0$AuW!$4`hV68~jVxQL*tlsT9osw;1sb3?BhIB| zzTQNZH{psu28;(!cQn*(bmeiYge1&0!bl_FYGOy~*=uUB_~)ZA;mbJpyKqXj%Jn`F z*VRLF){tMI5EIZc@eFpP5^|RBa>OxUrGBJ$YS%1Y5~vV*L;D|%a580PGP5X1_|t;X z^JKBNy*TAC1}}fPgM*Lea3z){&0gk=q@bu~5#RY-^Vo=Ulg5&$&%KI*JllVDR>@~Z|JYFY_a!?bD zi)$p2t+a~oGvnaferGcr@Y$>Wfpde%j0#A#DV>xl21sCd2iEz*Hu_z0gt7;X?rVUx zUpDk^?EYWZmw{CFHd6IQNQTE!d{O+D(lXsYkOBA_hvhW$4ySSM)T0U?Z^}Cl?&zyW zs^9s>KR*;&(%`z`b9ga)2lSrL_&l9zp*PW0Eteb?7E$T-mcjf{6igxhp+fdJaMNeL zp65h8-K23n?=(*9lNDqzl-Y8WjTU-oKr3CrAeon?Lt0S4U8A3O{>E(n*LAD(*4V30 z!k4l#M`?m6dsfmYJ22_bgA398vu>|ZpCu&{!Qh!9??^|bwBLa==nR_HKgx$twr8f~ zX;Vh61IZKTx0!XY1gdUTa~_kkhrChzP6YYVYf+002V@ngY*_Pjt$p%{oXqMI|4|gc zLl3F=-SWcVeduai_O7K%8E&Pb{Z_#U&9637Wx6Nv~;?@dfv@#cgYnmG|9Ma!0l&MV3uh1amqyudvvT2TtrRl z=vbzDl*{#;);+l=7Up+ zA3N>vT)WR0=1s}`PN>QWylE!Sna@GIiwRt=tLLx&k?M&%aB=bo!tdqYOt@mm>%B$Q zZ{6%*kF=#;lZ_j=3l@Ez6L<1SPC1IvgE60nf6CatvzO3KTIQXEs7%8( z8^n2q1T&_*J@%{se(!71JeynZal`e~wtI0H_;)eRpF$=DP@Xmi03h)hE%sOpGKYfv zuz1>BZ&<14ky_0Qh5LpHyPqR&d|rKBX35}e^OxsMj8Yr3Z!xk7Urh9cJPl)(d7zJJ z_i>t*WfR?dZIUkh;&V}Nge+>-_Cz#fRBzz4+0Sh{vxFO5~w6G@&}yKJ=;f;&&qFF*bgMA%W-M&uUkBK<&SDA4TXn9~^dvnkmIwf?}IStSdu*1!l;$$Kj&4;Jo-gO%^Wo`4DCDXO-(cg- zP-4e4J{ht75*CI$|1_L$>*sF$z(`(rKXe*hmh3r&R-E-(|FOjhD10#N|C-*HAznbH z<70qJv;U!Y%TNc((r}!qL71r{B$SVnGmDJOr&AfHPu#8r0f)qW>n3LQgE{8lTxR>* z$1&ziSJZSCSXCW;(k(WILhN=F2~_cb709gQY&RATz$XPCoUFrU^^P-#(|RN_of=He z=^H?yg|0AjMFqKJ>6Q3QTJXfORfVdWm($Sd1@5QnzWPPA?`JK8VDS|`c_|0AC%i&l zn>7jiQ!Lq*#Uq3u-9^fN#i_w8c4YSI&*ka;*|ymue#d|5rrA$N#^NyzvOU1D_%VpR zq$1Aq#?&HC>*MnPlj|v43JqFJv^tfWhChZQ_cyY7wi=$zT6G10RcG}`6tAEUTYWTF zx}t&cHth$|sdkufeFSb-B$E&F#OFM{^BQ+R$02F+9>=HDgIQrKPDl45DEi<`pJKNM z1f6#HOdm9hl3LQOG0Yqj?L*Cp?Ndu*8u7wK_1Uw+z`~Ip_*wZxO9z^lz721&Bov<% zYN=Xt>Zr@?hA9|H>JfZZ??mg$mD*t})z)5_$(HXpKvQ2w!M6@? zja3It!cIzjXnq|Idj;Fqmsu+(!c3V)dX^(2dHy`|5nIQ{)s6dHPQ9EM#znYdWbEKF z)uA@#2YFyqhlILk7_y}1eynvg-b+u=fx-|QRSiJFDh3}-*(d+}@Z|`_W^RG{kcj10 z(EJI|VH;oS!HYI@BR=?$sl~<}W9al`6Hn<6niQof(1!d4ebR+^R%r-$y`L7qk4XTaDMVH`H;?c;6H_#%)G zVmU_RvHGm_w@b-||GHdle?D@&VT6o-!>zP6lE;;bG@T$sDuW*G(C7>^isT~fu&+56 zy(9g^mk-QexB0Tw@fX>0ls%n)sJv~Cuu3kq#get2@@Eg!lvs{v$>3y1;(jQpZnV*e z9ZYpDSOmMdboQFGv$E!@ z5_;_O;jaH*oWNYACao8)EF1lp7B>CnM&X->|B+Ar+lL3H0*_FykL63MX)7Vn#VXOlKy7CtlU0hQ*H z%^p+Q1Wg0Bo9pIlJ#r2uz+;hB7)0TCod#>O^^U`UYG~C;{>_#PO{*I%5tb4*UOAc} z3}W6yJj6%oA#$e%4A%XLnQIrwEKjroL~_$M!Z%uRHC%Xv(QojZyq)lI&Ab|>i}$;Lj8*`@amM=0kpAJOK~b`B8@ zZHoU^jsaJ=>Upo5pa?b@Gr)!wn`}taF^gx?HzFin%fC{gS)Lx9;H<~Mh7W?ed08Sb zzkRNS;RlPL)6$d~yNUe>$>u)A8`Z-CNeUBIw9IJf2lNGt75axAIde%H&hf(BskeY? zd%;Am3x<)Jbg+Cd;U)NzAyi1b=Ty=P?man}j_O zYhYmo=SoOXc1M>uA_f*mV;&oB;!ukXtcmfNpN4U--*cy!ZKnwLmd7Vl2D3D-JXkuz z$x}DQ0wP79})@fID^jN82R-g7htZ84Fk3+Vz%@QvsTa1*F9v5mfzal?#Hw zi%ax7NF4aB7u>b$?YXs`sKps+VC zP{|DENSMNMSQQ1FiOXTr*+oj*8v?CN{X(Z29gcEoH@x|vPK&dwInlqOnafZ0gS0He z-d*=YE0vRnTAU7KU)e8;zXx7%IXhY?rY{6;Y%%#iXexBz%yg-$geckjFD2rM2@ir7(?3-l(Knw;1y;`vnI!~uwKlh#8@Apy(DrXja zV(~BCH#zsyp}c8T(^bsQ^kmu`AMcIvYo~a>FazP#nr$qP1$-RgZf`T>$)MA%5u>{t zfDS-$jca$`;A$C(1UP&-tpoY8i|~FS+xUp6cOvtA>JiiMprMZo!l~&(N9CQl-wH?T z(5}++!}+2NIg@eF=*fn_Y0H~a#zkfNK~s6xMK*3(H1_&{X9yK@Gf?`ybG0=G zwvH|z5}ixMDE%eLi%&v+x<~GR?v2Ud7KZy-Tic5;xerVsKrB@>82WI{)B^lug3CG^ zzTUb2(XmfIeX_>D48~+;-J0`5Vn%eb=r1<|qlSqd4wib6K(j>ATIx zhCrq}lF2js!b{6aA}y+gr`XN{NPb7Oy!Bk|M5+y_1P?bJH+gwn#+JOMBc+ojr~sp-#$s{`dgT{*mJy22XX+P1f^ z32?$MEPvOY8WEs!hK)O8B@I50EBD`PUYV~zx@l*DA8gn{ zBd@h-#>L=Lu^@>i%^-2)84u;+}c& z2+hp|>DgOWpZ&7nq7}V+S02qa6}&@>Nc5wq(+fjSQMl@po<2AhjbS2t1pgB3L6p>_ z2Sz?Vd^|Nea(Q0_luf8q9*>DLV{8Fxh5I-v8&A2LJ}0AfG74TM-uuI#yiSy!mc!pB z*vAHW)o@rlqwr=#NVJxJVlrdPBlg{oA}?feptVX*otKb>p%tGUHM*m{e~j;13Oie0 zn#9Z`PL}C}7ySN4cA5Uxml?15dj6U}Tp9vQoIF3Sw2-Vj5D@xy$4yP>|}-n(+&&z<}>87Mw(M+$AQVM8DBu zA6dRquSdSB>g-&A$tFhlbuNuWb%b{C22^e~Y4gQi=`1f(Tk20HK>nqRFtD1IuQFJ6 z_nasbN@}o=Wlj|w%{KUM%4LYvEjK%Z#P+Y@nb$**XKWkgZh~H{*J}gsJ8~$NW|Crq zlcY+nUUeD|XrR;Pj6*&Tw31rQt&9h_EqfeS$eZiep0S~NvX-)9V)PF17l*kGo#V;c zSy4xo7(-j)Sz$#a)FOvh=R^&5sbOHn;Zv<&Ja_ja5r%$^?V+KBB^^%Sy6Ixht%l@- zoJIXvPflNHFlwXD;j;mz#2`6VgsY(y=%b?Hf9Z6nj^VXqh=jUklh;6DT`?ufWFZ zD#|47CbUu&@IX(3d4;>j`1DL?R|N;x<4!xJbgrSjnR9EdOC8hY`dA+IO+@d_DVQY* zVWA+WKRj8141!k#Rf>tO4^ovUObh@+3LD1mt!Vy@n>%;12f%KJ`#lqEJyH2C9?{NO z-x4nT<{F&h871P2ZYNvT28z4I^;bugxZ2FWY^j#r&)-~wcY!2+QS{_G)per z`77#ID3|;<$N@s6U|rI{9t-Zw^ZJGvRvt0H`=jwDjakyLdeVoc#tgI_<{T=k^N$5s z`u@588ytA%unI07kRtZ|S#2fkg?aq?MLzDT5OSzDvpF{))7m;Fvxf17pEmTXIq!Pv zqkh`}Pf;N4MH@C1WN*tQ;;L5G=iVF?x2R$c?rhClR7%)Yi-jtAk) zcHGKpB+FC9|zW4c2%82rPQ7!|^-skz< zG3ax*CCj2{_Vwfzb$oT`5S^{44kuYG5Wxg%I45V$qG7?IXNTqL#9Ac(;sR!sBzxqZ z+AuS~Gc_Or9{#bsds}D4>0xbR?K~#?Qd^k-9nV$4oS3c>T*vf&!vFu)+^A|P+5Y>! zXv_P))`c}GhE((l*3tq_g%M%zL}MCeX^q$p2U;6H%NZ$459F`#uSvRY)PK0^rUyD%ij-pL=uG|p)r+-JNqBDz!r0D-~0 zm!-E;lyk=H#NE}OsYI$*`$q0xTxL!jtj4dGRoZ#ej;PAF-XOC)r(XRPDDT3W6m0!2 zVZEv~Luo)7i))8n6E1yrP_FpQej_fZmtk8m;;U1S>Qvga+;JAy7E=%7?Nbwb__Z{n zm8@g72XQ;EpY^)H>>-!G2>cMvabV!3rGyIVr1o-M#5@C~whTwK})3J;^{^yrvRGbw`e;g`!@tynV2Yo2n>V(NQGkvm( ziGatpG7lqVk&YD(l>x3(RZGF2bhn=16*gm`8$2``jb<+S3SX#T%SCXs;5FIUJLjB@ zDEs66>QZD4PCv%3m2(0-Rxol&)Si|z<4rEv`O=eJEA-}BU&E=tT24sbK9`VUzd+4s zvJq5W)ns@xFi4?DCf)Ss+IPYCm!*uITX&2qHRV&HB}<1)L}DE-KK%CAUGU#msBxmt zXI8V&UKz8n`=jh;t}KP@9Hbht?|h#%M_IQk*I`lPvy6Q*iS^Rdh}R`+RvFu8xQ?Fj zAmxyFGEag#*?=V0uzgRL(EiX&{Z!L&X6V&;gB>Z5$AELsAona5Q>n*Q8Fk+;F+xaY zRGb4z6|Hb5tjA$@MKh&`m78|MhQpdECm-w93rE%lV+NhnVIqECfp{RkvW!IGhDfV*RE@?LWdw>}WzqU1f61IYrb6vtBx=8wIL zcW78rxVw)qVgA%wKh4Q(nJWFPUAE~;Nx{wc^zV(JUEti(gRT&cr30(e4-wM}mE9%z z$f|-B^tdxTR>7nYwpf#MV!F7jJpbjC$E6HRqFSm5A-%x4ii^xQdkKag*Eds4M1?|b zXRRT1riFYMY6@#G@hn`KRt1YL&H8mCkaaxhPlmQ&!u%rpb+7%q4iDTP5B~EoRX0}4 z^ldEQ_|}!jvgN~t9JJYZ>)LuW3T*Fv{c`L;C9QMGvbBRTU)OFIJcNbV-ynnChbLCeqYA{n5CPYbYWXDtM`ul`7Eh}Q31DZ~YVVAn59cpi* zJSNU~wR5TlF_v}9?xU|eR=VOVGKt6S_HYT@maKVnr|J-Cv?2 z+%L9+B~R4yBE1?!16B)8pZ9>>Q_TW*%gdwd=25$!8+%0gkWGW3QiZohD+U`rA079N zOg(q$<xwz?OmL9Rn4{hS~oxVzY(_#Iu`@@RGW=AIih^dKX7hgXm}!H zy5hN|mJuRKTzDRjJR{c05j`5leEngM0;!&L<*P7U=N8eK83U`3QJ zQhmy3%8F%9`iJpjv4!6!5h-pXhl0Y=@nfgjb35(}KC_-v;;24^Eer_1h@#ZgroSyq z`S>Ang77D}jlof`% z=?O!I#QVy_=Z8sM!WN(i(G+~VDfuX|_r?xd!F-2td;=Zt^Q^PfN+@&Uq-Lrm5~T7R z*#+J9YWcC8@H4P&nOKNML_)F{DLW6Qiu~=;Ph#eh;)k_+Z)lwSAmx%Jjs-^!Qg%1| zKR<<{2zbby3te^bjD}CGO2;6sX--jlaj3vOs0|!hiMJrn-d>1J8tyV(qQ6`t^YY~w z#JL?Op1WPFx)V_hoXF_iR_T^Zb z`@AN#IWo?L`*kf})_N9lzi!LlrzBWYxw~v*Aumb9tR26Gqj-hKx`6A!6@XjHWb^z| z8rtJ%Wc5Y%G13g&JC%i=nzE4d!47BG!`{Ijg_#aMB-zOa*1t$({{rH&(0m7cny9Zp znXFQw`j@Q?XFg&-@;Qv-Vb2PSaE(t|LWH<@#rq8j^FW7}NNGICfn>Io_R~xgW?1gO zbdqJce8iaqx$?xC>gyTR+u4F2=A$-bpCF6R#Asw|;XeVgl(IHjbJ76nEXx;9A6kVJ z*PN)sR#B$q``=j$I$8&NyuO8q0&Wg4u3e96?o(xuleQBY4!xm!MT}|P!~%Rbe|l8? z5pY?ZLxkh<1(GQq1dn>@VnO-z&xV+UV^$dFZi+piB&9}b#qR~xU>Kl(6HWIxz&IZ| z7TN1VJ^akytz@ncCoGR)#prhID`3u}F>mv(Eq>z}y*+k#L+u%x;Az!B`K#UXY?yq* zt^KmH?Zzv!s{0I4cfmYz;!6d9=QdT=hW)_wv0>-khC;lU@E1IMl9OT4!|pN!`bA?2E#?-N z65m{xbBd@}@8dH06KIIqhI!}6QuBKW<^xcn4C&q^UjO#ugs!|xd%U;TPXbl#`)5|e zA6IzX&%W`hO;1yv<5ILFO$)9WEq!HFcn1o&^ZZFC-~WB3d>6Q*`On*1Ea94&C6_hp zJ~}&Gg1qvng)s2le{ivK!!B%M0T-J+@T5s*l%a1I^Yl zHT$WeVe@J`pXtw|Ne^`rBYPGdzYqe&nouag;S*_YZ?bU>sB}Pk& znnmr^R#8RFh=^Gu)TW{md)A08w$J_Y{(QgZci;Cp-}`)i_b=xV=OhPz>v28C zN+~*Q3UUp7nVmOW;7a9#bN4!)eDx;ptnd&}T%m~4`x&N3&%M6RA>@vJ!8P}W*XkND zAMbLvn<+Ok^UK~Vr^R?}0C97p1Fp>k?75xPw96@}OurP|GueWvN2M;|G#|J!7b_Ui zi#V4Q238ITBnL=q-RP_PBtJ);@9X?c5UpElg>xetd;y~!>hQ~{$1)_!)aoN73mzwG z-1qsY(rvPWn5?&P5*9iQ%|kS;R7ERrS*-AKy0~ZxR|W*s;Pvb!&W#`;xd@0Gn9VoV zSN-%X#vsPBKIuy5&XD!q(_TLTe)8sMeUe2o8k88ylCTfeoeZ|l^Tx};(;@j){&_NS zLVk6JPyYV3{?I1hK33*+IFgp^E|*ui{H>3$aI8{-QoxJ0b7{pS%E$56%{gb(1WjrAL< zH}7<2NWYs+a#s9@{oa607ATU(Tn989KcF^MxkJ0f&Gyi~VmiN-gp4IRp~$G!yKv!r z=JNGz5~Z_Kk(2R@hsHO9$~?^f8VQ+kL9GH_LFRm_a$bBuXVTNk&0&?dSD~gAzq;`5 zT(KVm5*wcNed+vRQTvNfSv!F;Kg~gqOUMMbReWeHutZh*!}ZG(Ny?c_b(>>i=!{Q- z!>^^Z% zFa-PI$FvcgW{!hZMMz4aF!pqFQF8q2n_bKG!#lmJNdGLx_Mh`nCxU)sY4mVdJqu{h zTfPeot+*%Eb%#XaDZrb<6~X=M2b>Q6hI!#1n;!Ja=4X}@_23F4YBG+NGJu zDUhzh!?vfN%2g(6G46%jcfQ06U3ol+i+w|z?7r25B##Eb43h)#%O(dAPuUcBzFr5j z$dhv2rb$X#;s9Bx&eea#OevaJE{w?;B9hML)6kiHLlsrC@w{-?dza>sMa)By=~Ka~ z=xR7Z?y7E9*1Di9ci_{(YM*Y0a(0XrI=PMcx3nc#{kVs=wY<8(J9Ad36qV()byj|m zow`KVSXDu#9XL=i(MGMK=jY zmFMr|B|Gqt6T#c-*o5jJ-2n0q6 zr%!UXgOut=akA_IZ=iC|PI;DJ{gvR@E||HFjaafU-tG`;v^0!KnhV&!JJu!^3$oCu8S}M ziNW5VYV3t#~jEgR#y**vKrD}ThlnB;G;+1r9zdbku zw8d2I9zE~J+TxnLmx6(u#_cmB!q`b6PcGK41|xJ&&y4P0GQ+=exD9JognI+R_P(HVr7cOgC7Mmgfo@5+z6 z87yq1tHx^R8AQHJL&NJ)Bh!Q_c0eH4LZ_E-xqACxI|EnURx9LN`fQ@g?IV0@OR5Ew1Igm@dbh``QCxo**tkk0`%)>lu}3z=ymVY(UQys9x#lAaKbj zNmNt6UsApY<(e_Nso2Csd@2l5+OrQ%Pc;%NmmXoMSeUkZ{jD*uitGxRAw5lffw9|$ zO||bTM8!A`b06h2LHuYoup~oX1gI;=C7n2J#^+CNnU5Ebrx-Io2K|KJG%2{MAXc&J zg>+oXK_`;mimK}_Vx&|^5qI_ko3;Bo7pu`2Dl{k4G!WpJe>zs3SI636&DvEo9!1v0n;n z({78tOm&l<`w8Wh#=f}5E=pp4r+8wWf~W*7M_e+DFu|prDYPj1z%GYBdb3;tUPr{P zuUSHC<+q1tsJPzswzllQ9}b}pMHa)|ukkp4n%P=PE-rbpOx%}yc4IKaR~CTM95UzF zIL*2LAre`7KI!a|EWc~BMLJVC0?RLwe8=L3kX0xoH#Q?OV3K>|lF8{yz<;*>Lxxoc)C?%@pjm|9P?f5PBSp z(tYXy6z3Hy{oV$!R^eavn&@Do-<4QGE!zmn>CPs#f12mC#3Ssaa*T<1Y*MYFg}pa9 zp`96Bs5JF~Bgq0x=o|>A6NgH~O~7fIzyEGpPsLmiS8dX%F4PSKyonmhXq zs#JXK`iXz%6H^&}pS^6?bx+?Y9AVC0%(p)guyOhTN5ZSWe^4axz2o@iq)i5cwTO$B z{POcpJ8ebvxRZaYtfrSWL=mwCiWQS-mvF!IZRG`i6}BVZPR- zH`Fo*bogJbDH;38lOO8p%2u$o2OPaai~a_7jg3Nbc|sGjixqQP%OKUn5Mc9gB3v%H zbzaC77D^D@dk_@3^1wGeTKxN)w=Zr271b~$OH*E{DOa?ZjofP5 zK1f`a5;=#xW&u|&!R|CM@X8z)*@QluCIrNrL{#ZaU?Z-CIgyO6QaLH>0vmSxkwX1B zBzXBKe-LkNG1;+1=o0W?0wlmkPA2GDRQ=mQaQpa|*ZJwQhK8?$mq&_cyf*?utoT`# zIv-6cEVQ+1k5n5uXRww>d%K3xmLW8+C~An}Xf})F3n#&TGZ{O>hwFIe{`=1cODrTViI$lI2O>sgey67Tl9;!^vYz*^!GNF zK$NaA#hB_GX_!$`vHF%ymR8wHj7i&?C?`M*KdMMJO+gcie;a3LS63Hyg;j40cY5Cb(Nhx2b&yr^NBQhY>v z(1qY4A6V|KEz_fzsEXp#nfo;6iF5Lt;+u9Mas4+0Q5ZO5iR)2Ym}@QG&ud{eOX#j$ z#@lTLMlXIroRvH}PZJO(E>}YWZAy#>mKoeI#FZXZxYB@?ETZ(~Dm zw9Lb`e-Fdks!EVmevoG9UlsNZu>fC{b;ksY*~Z#R?^HI4{7zqu6um@%z}b#addS_<`e@yUs+vZ6=ujRkr+!f%{9skf#})yFon;2t)VAe>Dy41 zQQwXF1D{EoH?rqg)upnXzJ{hEajCycW+C0IcAb-x9)2ObI#JnM1&sC%$zU+8`yDHP zpLKFJ5h|J_r0lP*{S)3oL;$4!OsL+Dz&79+oZsP_Ig1$Zg?M;CXkXUGRjRje;O-e3 zic|KDB1<*R7nmvldDKHahWqGUa21u7-8H?QK9&39`=;wbPiwrqe5Y5&juIXm@f@%! zB+btW{LUTe2$sYiW(VEp7?@tI5@{3xu!XRPYU+zw8oF=HYwW#0nAaF)-jPZ+PNcCA z(dqhf=N2<9-+xpOjVT}hS3&%^Dk4pFxkl_N&4N|=4>T*K+cVF_h8W;aeNwwJ*)%Wa zbrcV84?iYxs2+{B&VN7s5@OnO@|0K7DkP^l$!sqxRJx)n%}4C!l~t)p=9YlCzC7up zyyPvk0#q(rjmk|K z%)gWZe8v$k|DG;nS-~ZBr2^4@2e<=S*NtBjJZ<5bn!dC{ioS&1P*&a{f3omuw~SwbU>17{Iy6?J_0aPDo2 z0$(ILj&guc1|YUNoM67e;=41uT7G%DSZp8Yoycan7oR(}^$zc4N50h6lbX^Iuti0& z3;N!{%~84454=FUtwJ}#9h+{&kzMlOp=&W>_FE{Hd2aRN$ByMiy3^W?g(JfI_#5Qj9zQh?BVDYmQ$X@%h|hJWr(KWNAKz0Z8M znV0D-`#SN2`gw%WY+PMtiO};2#j2*At+U;RboyuV(n`O^p7>kEMo{;EWE;vb?<*OH zl)xs42dc677WY$>#&W~UNwe!pW7b@1VRod2tX zCnfr7M#)wZXx#adEXJAh>C{3mmV5lrcJXpL_8MEMb zE$%Bq`0HDNZXv6)w2udIV|s){Q1AzAH*dk~f04cS$&}^)3)1XC5?SVGsW}&=p~Qa%txk&c(V^D3$@m#~-+%B(QG3SsRf2}r*v;@tbPV!LWC6_VB{udEnfOrw_<_r$ zfR&zB-B1M3XAb>3oZ`W<)H!Hb^yB*q#d^6p>89MBal%Iehgmx9n>DSoM31g!s>QP; z>jsBmKFM4R?*(l747&R6oQyj%!z;bEddT0G5>$YFO`zs{Akv$)3|7pj&t{E9Inrua2g={Ofeqs>dzE-Yn0wxKOl(FJF zJOkJCCs3Rb)4zrg-`>*R9UaA0C-`6-(*pPD`~PH#C*6X3O>GoLKOArw_)~ya*ZNo& z|1UDHy2G-mnMqyib#u+BmO5f1BH6?f_l8`9Y~~&-F0^lTc^xe>`X~R|Ul|S2)99qkspEGu#i|cwt1dHVMHUa32SFC0r|O zDeZYzSt{XC8lP2oG`N)!&Zw#&`ay5DnPRKIcH|N zQKauVE_}WY?T0}fyjGv!02%j#*etX^qg-6uRx8nYcG}4bdM5s;^lr=7446$ugoD!9 zbNuksWWB8mx9|s2sbxxH2Kka&^c-$#Hq-H?=gjMOpDMqxqs`<#J{WM%_<(Hyv1&JV zN;~!E#%1ZAxPP>0(~9Nhthi;@d%Y42fi<4{Vq$MB7o&LwlN~DKvSNWip3V7@ArQ=! z_}7%D(~9MvP6E*Av5S>(cl>6&4<4ZNAoEuKAf$&*wwbcJERIdSdR}puV22YhSbYS! zX%=f8^wdvKSI^eeidD4-Wt(Zu=K#{Ff@i!U5b5FXQ02G{CI;%KlJ-0sS!}o(+0Pe_ z62^)SjMTuSJbI`N*`UNt-Y?zAit?trq?#=)YO!f&<+aZ#{~Zz6hg_m=NXuRGuxE~& zcJUOg#Vq!(MV2(hI82b{)|!QuI_9rlrGRtQ_AKvswXf#}`0>iEL0?KRbw?;)6PC@w zvNu{o#?q3YKzht@Mvu>_TynXMMPJ|FCh?xWG(UnrcO&8BD-X1Lb{B`68I`sX1V*c* zMCQX~YE1{dkC-;C?(VK3*8Jt*h@|n^lgN6#32WFM&&UZ}!wG)Vx)#fX?3jxcers** zkx*M}qop4pG=+G!p~}0p%j?cnwI_|Qp^e|Y=EWGKP&w)Lq739Q0^T|qF0=TfY|qTd zyUuu-M#ThGy2m%#kl0`SDUa0Q=5IbpX#Nur=}s`0Nj&w99gLK7i44xnvQTWitP)ePW71b$qaw$?Nxf;MJLMbrwi~K8f!l%~ z?kR{U64LJd88?no3Hle=cttcr&1;E?2b?<-?)RT9%8M_Nj{Zd!_%AXH6?Im)ih;`L zULM1G{mNMKYSUESr01Yu$V8H!2J^E^mne0UZx{5)MYEDsC#uiA=qfYux??j~s3Gz> zx)d*>6ZY-%yJu=N|8qXW|MQirFPN{>+-~_?A+n%@zRs=TCBa35(|9Wa^vEkOzyKQC zmRcpoMf25=k&%i0cFy*18pZg+y2%(TgO7E)r@@N8ox4KZIpv|bQ?c&I&ii4ejwAuq z`%T8Xq4(DbEBmhdPnXX|81(JY_^Hc(Cd}`3vY+2;B`>XuuCep4;*F z3y$x@X!btf5I6!s`fIEQE7$Ke)2hl-tMP(rAFWR3;7d}soh9BEj(I?R6PI+n;gv@> zF^&#U&u5P*={nUK3{`CX^Z7u=u)t^hpUBfF)KKz&N-{<}U*2!oKRD>YD zmQbfeO6372C}0A?^pDgSix-PrjgJ<~{2)pKULAN33n~6-KH>CfTamt{pyYiaI$C07 z^TDCngtj)VX^aP^J|FQk`D(l7#DJTVL8tVpB|#0^(v{9J{j1uo%9wnqkL)uAz3fc* z&9@1z_L)5N6kMkIKKqSqm}AX583B%*Dio2LSa-SM>-PS}EX^i?_m4w1y?Z8(YNk@n zCu<<6{7W|~Vh5eZ9P0I}Qf*frv&?xscs!sGD@4Z;rJ9rZeOu+5xeaF@1{N{7YiTLf zn=>?L0S>$(V>ac)yetkaLzn~64-CIR>SJ8Pz1CUqhKA&T;CV#>=cpAc62@Js`vLO6 z3#U6~8M96k8>gl2E{Aj0T`aGB)hM^}BIudUqy$-f82UUn>)fWu!)fWnb-L6xdUUI~ zes|G+;sL|+T`yPPx=OrVJiQ0!n`8wjmt~`-lr1+%)3Oy`g5&0t_ z`JuAv!P`cV4fh%hApxKwe%)L*&Nv_$^aT^~Gq)X%H+s~J8QoD8Yo@yVTP z{?is?b8?0D?_r(qd^*lff^rDZ*fM>mxG7=YRV*qOt++~az3^go@A?80p?*F@QS9+zlO;Os(n$BaZp;(%`TRTCA6 zqm0SZA%7-^f%b`9($`Q$&qga@Evo_qN2VGTqk5ZWq7KuGG|CK9-K<$aG*I-3fXR!? zNgAt}P5f(4(B&8lFv0$*8hi_ITi!8y|LIJ75K#k2HK-Uo>mrEQ+1sUY*tsB?qJESR zd!r>mgRqFQcP##B+T1dv|Mk~!4PVn-MDy#-9Jwd$gn;FSRLx70i8|`*aiQxLd&*Xp z`oE@(7U}||W3L&sEtpk0Lcf2#Ld{O!PC=7U061J1EG*^sDtBc9UPeAL6Ku_p$?MdILAP!QO#{`Du# z>`FK6N^Q4RkS^?YqsUaT66l%!wcfEC;e=rpG1o*2+srG}ywWsjZwZ4)L~3>Iu&5TO zfMK0?+z16 zx@+CPZ#el(Gu&}-Y)_(;F1A8?mpkWZzFbl=NnAYGcu4S=fR=KfH2sTA`4u;ox8Gw& z3>a&z*5o0X9>V@8F-Mo4LYns3;Xsy}1%kn3c7TFVZ)uR1jEeka`p0%OE2U%5dK>P> z+~5Y}N=>gt1NYk%{dFJ}1?%C1Gau8r>^$T(7dJIpTS0H3p z%HolX?6aBIq$jl4uQ3Azq^@+4IXH8&DF4u_hPN1~Po58~vRdJY?o1SGqy7*5$geRE zf-h@lVU%OJ6chPj648qYcM6z6MfE%gQ^1RW*BJvE2eNqFnWF}!ce6p*byOrWq^Rx0 zR9N0}Z*B98Dm%$l5Ec|K;oV>$^lcuja~vA8Rd?t-qI7ax8ZBuNMNQ53iCF@eE%*LC zTrLX=JosKj+7xLDqQWCT!YAX18rDe*DXV#DasolnZWpF+U{OeYWp z)#Wvtgq`yNZ1>pHB9DdiKzAO855&t`S7=sP#foEdIZ9%#uGz@$s0a%)cMkex&dhNA z*QWTorl)6Zt_1E?mYuU4WP@*>4(n#x?qyW8hN$@W$|wvZn67`iTk2a!o$o zA(?%8mC-bi*M8rnGCCJJdkv1EH{_p1!We{CLyz55cb^rb9CIevNPV^QPN@Na_Ubx) zswI=5iOd{sCHu^}m)PCBs_$^@Q4*;#8j5N*uH@qi;XYyvDK<)rfk?=wmm2`-%#(0P zKfBf9lWR9(=ROMi^^uJNY07f!#oM>NM;A?Um9*6h7q zjmBCvT&$p5otq*|%X-1M3m4!Q$gh795;h3paU_N|=oa{dO>g88xeSaiq7r@jLGX*M zeO(V(ylFaQ&5FETZO!CQl1VQ?>>-s!L!0R9B?h--58pPHF}|7!p2^OND!ZYjwB!-VtB!>`6$-gLXy+jJET9ZB#uR3oc*rO;i!e&dwy%tZ_-6X|}0u%e9@6 z5()y8OpZH=WyHoF_ZvSnAqq_E&wC}zKhab3t{XDiqA@5Gv>41esE}v(#IZN^cxT-; zij7aP?l5ZAqCIwL)IN;*lHcRQZ+@X7PNSV{;PFkNSPSw4rzY3dAN@JQ`#zuXcH0wm z6MCM4)V&KXrBZwg1&Vz(jh@Qe3MQpJJ9HO#_4-) zl2j+}VcR5oiSQ@?cx9QtU?r0>arbbj)eu>Be6wQNKGtl}2_cR= zU$TyaD@<)dYr<%rQm``Cb4C%w4Ehqt5`KlZd+_9RUkx6U>{;Z!QR*OTyXrb?oQ2Sp z-c=_(5thq(XHZk``o$srveu}dhKIGgkX)`s17Rz0ZMc^1-q*z*nU#5ci7ABm1?FZJ z^1dH~Gk1z+Sxsy$n;$N`L3fswiXv{e4r*=rsqFWDeV5SZwj$%s@Z}X(UiGUoh6q)q zjhvHWsQ_jEFFuJ@RSzlqW!RIvUclrfT#%?zznWZd!@z1Qkv+F#?QohlIdk6pXMT2=s3NnV zUUb^t-9(-5w|_XOd36=v5q&}N>&rvK|F~iL?>Fk8DIbqAyntyh|uNRZ#-Rx_!FR4eOOfTd8fVlADaW#eXvW6YK0HbbHjt!O(`4%FW*nO5IsCOXj&b^WK( zQ}rh6jbwiYkCYwONA8>m34wqiPD*bD(=S5p1i)_Y*hA(R>c0XiV)@e<%0E%$CovB1 z(bctl!bw@GAHfoR<({FBU5VItK?=T|kfPASeBSd_S-JJfMF}gAxSfw-+{43Fw~d1N zkzIeN&5wP1&JXpWQ*|F67N)&a-|XvYIsk#|iH(GMlnLN%ec9yqmS?Y@#Piu~nc_OL z*Y3Wr6yP)BKE*hIYX#Y`G@G1aub7zyPPbU;zM-47HJ(6&o(^b@Yfl-mD&Me&*gyA% z1$M4{>|kdO3Q%Y_`|>s-Fo6BTMOD9JV#@OT)l_LlUU)U%a);Y3t3p3T@ZO}D(Ryg*vq-QWV;8I^IUpxy z6Q^E$Zd2%s|JnH7yZ&1NZkz(K%P+*<`TRZ&Y42M>EL~H5%`H^l?|#;6Y;g6u0egve zURY7`c~5T!rs!XV+H9R`fLpDUz$dQm16M&I5X)~^#uU?qTW!Wm$L~0Yj85~{7hbj9 z?^OP>9vRB?Nwr-1NW3d6Js$2F^iDhIOzWNaR{U=aobAA8oRe)3ci~xj&-}%2ife{1 z>#J(fH&c-QRM)6UB@)+Uzh(K>xLfkaEq=3$qv{;2-|X>EvK)t=_>~S#m`y*{WZ>E5 zPA5s2RZ6!qf2$pUq2M`m3=>?izZ8h3`)39r);;)XLhl?Fr`QQ=CSNy#lo#1s1)re4 zqm}-NJg_vknwn|-Akv*QCTE$o)+@S2T7I+rvHVGnn{C*gtS1D6L}P{#|_{-7a6I6DK(058OlfJyEav4y=;1{>(-*P-48C_G{3?#BxwvRL3Ci zaD}hWkT>CRwWNFv@dUT%E5pK)Ag#QB-k}qJdAd3x_&~Z=@*yTRcJ{~k_03#+BRpF&(E`|*$P^)OFjH>|Xe$H;qH zQZhab^B8;!@+i0g+!Ql=mSoV-7)ov1FOVF4M)b+-)sFgZ@eeNaM(z1300Dt7_iM^O zC{BEC;w5qc3|$peqj69Zad?4NvjDImy{P~FdU8=$E{3rWl$7BgEr4O{*~>YWDgY`% zvs{T@0IL=}^E4@7p||L&kbR+Z`RZdvYsK8wBC30tsUW7)&-<~ac?&_-D&}!ZdLX#X zy#Wuvcvhd4^qi4LrDuzN-A}n>smW&iV1BJ=w0u`jSvGgx_4UX?bJGOx4NSS~nrlah z^1IUEj+>SB?CInDe)Ms3pHFDQjUeNGWz}YtNC&}%GzEIn1JS|oS5*NN-6xD_-57OOmDCB(7qb@DEoc-%f$lCt#mqH^ISbQju?4yP2|l*?@*0G zLo>{cTH7vzXmrCmQ*(Y|+s;M)c&f;~N2DlqP9hh}2-L0=Cqo!1JPiQ~`lGVc zw{&|D{I}Y^F}f#rB_i2eeCE~IQylkf?8`xfXOd%*Wz@?{O$QiG@8^05&l)+_H0KxC zt~ZMpj;9C*skG-)IKZCH_NB|*>)hc=w`#t4RrM=($i*0GXwdU~A|^|@>yu}hJLa;- zlias6rg1WM$m1kG=Qd?Lv9bOlUS^a>9f+4HVR3Bg`v6%l|4QFFZ31i^k=mY(6Gzi^ z_%4Ep9?v+HmlpjNxomOFXzq^=w@#4dha{uy`1WGAuHLF*>RS}CKN;Lto^JJFPg{yu{L<`l{|87;s z`IQc-Z$D>gt1iZnkBr9sKT@NwSG#-(Rqraem_le3Z%PR2MH$_`YIM8c7fn(a<4xeU z{{Q=Up@SxS#&U7M^o>91o4gMn?W*G|NqjlS+|@M}hR}Fx@d*qnaKGI$YN&Q6N`vuL zYk&aMRUm1A9PiWE?D*$2BEL8!wCBWwSKe~O!>96Z?S`YT%w+JM{qa)tlcA$^=GhF0 z`cXm}X~TeLSLvkPeMvOmEd3cyxbn z?)?s3%0D*oTd&4+gH`5q{WLh=Tx+Ls#y0@?v_!5n_;^e%)8^4RkIhNErRgL0_$np= z<}!GxibMr^$2wJDHAenR51S&ZnEr@kzb$jPTKFV;#FDu&7U=hf04z2 z_U)HVhm#2@9ifB8QUAfKS>KKp&&&Y2Rzu}HCSEKO^bC<7Igl~u4F|@l-DmoS06n$yX zd15hR(<6qR`u9%^I`($liK!%+g^*&MXl56KHOyrKS14e1c`WsI=G;bp)VUV4OJ zC0@4vwxtmW4Z{ym3x5_3Y|r5YC6=9`SKON%h22nfRbQ_@e8~QehcKKsi-}yr_BJY! zVC9g^VQ%3tnpJ_J^u6RHvX@tiSbaXRs%bk$v-Ku5XmP?MU}O|LaPOs-LHkONa}d_~ zee zhK86gdeKS183^pxp#1>M!%dIx{PS>FpWd80`G}zG0=m<@W65OpO@8{t2^KmTm2m@sy=-qJG{RM^GMi z4

    oNb((AzWWoLv}z1V<()^NP9q`p!ScYf=N^fxgQDKj|4H^bMW5^kENW8tb9v_S zAz>Q~xd&ondKLxbw9QcS)quDXo~T_~tW%XN4evhAB!W@gS9qCu;bB=~8#}$i0QFFn zXY;;q#)0#KzJ$;iPgfA^7l7pMGmq@;Eu1zRO!bErH}ftXBMuMKUt(mj4XfC<~{=l0vq_6M0tCLCjStX{4Bozb?hgA910 z{IhNZ8LCQ=bY`2HK(C2YAPB%)$sO@R)hW5ze{$xm5M_Cpg4Cb{55ne<2-5x9s*>Wq z0j8ERI|!k`SnHYz@bdFR(HE*9g*yoFNlo?j9wFPrjBz+iL-2^06uw5a zHw9=88^__-hc!iu9~0%aWP13kM?Mlw^aP;<;`1&X=gPHu4T?uU@9q}+k-$RB&R?X> zRey!D4ZQhAm}s+4m8d1?7Fu}d`#gIwIxdr(DvG*^Bj#Wfb^{KBc{9-HSGY7t>MA2A zIXEaSeEM>o_;f;$q)>C>-;qdn>|%AQP;=!^+ijNlyPR|6WdZdjft~w}eT{9hKeuLw z+Ic#%SWMI(vVBSxtTQ#r3HRg{Es7n(@R*REyu921Xm3Wxw6CiQxr@t699Y7=zcj<8 ze#y=6l*sCWS13ov%SQIFKUrQX|5yT+551jI7by%bGdE4Bvn|newQ8I-G&d5l(PLi& zYvnmkeUaY7t9f?GNJ*IE^9wfbb(EP4whYYRv10wDc7wuBh3^HNHQ%~l9zzHS`@|zb zH&+uiti9>DuQeRD_m%RVutZgO0@_1$OUe{uP=1yw8$a*u#eGF^=}09vf(y zfB6`wr=Bxe%ia{2D66-(_or70M-m+G%KyB$aJUx%-@GYM?DAi?lk;t)(e3xE4u+ZE znSo2H=k~YH(VyS_`rm`$|9h(Zzdr*L<}<#}6<)NL5sym}Z*_oUB8|Z@mywBn%|J7_ zT5_ktmt~Qap7Pl(GCn?-+UrHQh=uDjE%GS-&*5*uM+(R(d)M^%!to}s#YcX>)Xo&^3oat;W(Hv&GD&`-fTg6|VqAX$;%2S)2t@QJhZm)jAJle4_f%&7_ zLa@P04{@osD>3P-3iL=hvz*I?aJ zhsdCebP^S+|D^(Ginh;*r`T&0b1t$unvkQ+@IvF%f}twJ0YI!{Ry@AcIV4t=-TGPz zsEqHM&rV|zsFDYk_B%KQ#C&%0_oK*m?o1qskTp3xQ8{U5IdMqPri##XIVz6scR!Q!e)OL=hxfc(#cbcNPq5;<2O&e>Cokvpbra1Mk-=WpL)XR3sQ(`SlI96?h@b6{6wINfR`l~&X`~YO# zttqZt?6gLltH5*toCtXMT7X zoqpTvsw$6Q{NnAh59!Ic*O&09A|3*;nb-O>aTK;gDwWuoRsCH7c+-rh?C~Pb<`4| z6^2x!{+jWhlA->`EArxn6fb6D0KTT;yV%?hR={W$zzWP7Z!cD3XCg6S$U7BYz#gCS z*&S+XYH2OdADNjYCyv)VA2r1lJgq&Fw-t^G??EhyNlgoyb;-QYi0Y7eMBTK)N)xt_H}-XUxAA+&@|KH$dE?*68}0VP)dRJE zI(N%4K^y?#KM<~P5ZYmNT)A5=nLoN(YSU46-u?8^=2>BNzRZJQP`kd&P!*sLqSD&7zr>L20i8r$I;HW~O zRTT%-su5jC_l`xOGV^owr8;%NINR^>DTqW+RcK^wLOAD63e>t$V-wcpfJlaN9b$agaX;Ij;k%0gI$bk>-LC-dbbw zwr1W91N)l0u`8&;&aEECkLmN9a+@gNiAxx>32slE;Df^HQsLjj-7 zD^srMp7$Z^a49Qf9d55D7r)eBXRv&#K3zF2y$q6ve{nPlqgH#8rA%ytyt4J3Y&`%t z;CRu%HFF@~sADDHttW?Mqd51z7BKTO5Vy31;TqbvPT}&=OeFB*EKWTJDqJ-I!lNo#Tyu4f|US4e~b6ToOW+! zcHdKT<&u>q)sFeu^kK2+a`k^^u74w>SsLK;_lfG-zy;QF7vQ`AxJH=Bf31F~|4-Y^ z|8>ZK#`Ddcf3KTM%&*gYB?h8dC@x5c>S%V3E#s~V(dRLdWe(*&q#I_)6JQRPY#8f*^$6hHn z`I^}4xg~#h={ii!#8pVrI_Y7f&%jdt;Dd7tCcP8`Z{ zs{ZCezZT^&(d8ZYr*bkzUn#XWw6*662bgmt{He|&a!sic_?qqASeu8aKCN3Et(~~h zYqQwQYN0-)a(JAKYY{r3To%G-&=zetn0i>OU=y}60` z&fHvN(^)y@@e?pMim* zYnooiEP;!h0Z)994uN(1%vN(jSib$sk`JOr;DWk9{p69eG4GLoycu9D#52)Iwc`>* zz2an^8lDu4a;;?{0o&1QUEIq&Nv4{X9&omw2X#_$?R7I`YAq9Jgu)tk@}mLv>DhCa zgC@s~!)A|#C8Ct_8PgI}Qn>D8x9G${UT|kog(pwP-oMCh5VM1nL*=FpPE$20kHvx7 z&I}O3K6QNoNEd1E6JzUAq(z?4I2bkpQyRbrTTt@?_+Z6%uBNEJ`TV~=>Hmj6rFhZ& zGoigSGjbdMGGeFd3 zmR`H;$-f9TZks+*b)M2hn=e>1Q2w?W^EJtMFV=m**0nmZ6_~7;GE1Oac*Llx+`uYc z(-ha28?rX)(j_?CJ1WNIlrbe&27TaQFVCm;)2OhZC7x z80(@)D(4l-(yzycN{U&*BBknTka@3L=iZ**`cp$tPHx&lCUHNo^MgDuQ6Iyq0*u{~ zYAIw@KxhN>0shDrTJNk8=riDeUW?y2->f0R-?tH7PWo+ETwk7fRG)?j3jK{g&vRw? z(9zw58o&%3nUWORH$R|wNAuXYHD2$ETG_kd&Zia_vCj>pFjSOcKYxwSef}25zHK?; zt|Zk|UDp}?Vkyvg+C7`YT`J`)CJO>DA-J31w4P0{{S)yf?(K+fY-ll=qEC2TGAwM7 z{xX^gz{}HMA^__(4Df5WT>Z{bDLx=r1{Z{EIAMGoRBeL%KaHW`RH})NhCntMXQ7J> zTT1bbyVVJvA@lsD#J>Khwr_DwB0g`BLiTd|c8wF_4)tLVb$zI)kU!(8zDDc2;n&t1 zDw{UnDY2c?w=etN`NCfi2TY~0|1eopoyIMHP@k^l&)0u)3s^^}`6fnsT>rkX@u0)e zwK(zYl-PnSsvkM(x2jW7ImOtUXFfp8Vyvd>t5uDH|Fq;&?Y=%S9S(Y0wNhmL^v6jc zo9lJ$Vp(D7W~jE3hWZcSC=~nN>?-zsQDay~nWe$C1N3R4iZ{J~cNGhKzXcqlDiNK3 zm`e`-kpS~Q5heZeo-pGsk$>QH;N%E`KU{E{A}?Q{d|eouVT4Aj2>`JJf=yrJiv;el z?cT$+Z!?=W48)Z`&zMSBb1MqTWkjtJv(7q@9Ao5cK-yE6w#P1yo8{?dO3-HSi3EOs zeoeVCwBB}Q-QN<_R`3q1!0aP=A%njKsNg4|cST({C|Fn`$1aaVkxJubf--s%H|QrQ zvnX5J$v|(%SIG#_(O7xVKUpkQ^~fBNxUBk*LCtG zaKaV6i6BV%$VRd{taVZpZsk`u^?Gw-SqR^|5`-ktX+^#8DTBO9U&ysMDXg~i#s>M3 zY;%Y2YG~54E4);nM`2fTB!ERfKPzXi$sN0#>fjj$^1EItqf6y4ydgo}=g4U#%zaKc zOY@ZXkC}QdweRjD1%mktGS) z+boe$wy{qg#*&?y$&4l2*hdVbVd#BE=e)mj-uL}{e&?L`_x*<%#%FxzdG6=Fulu^L zyWsTGh3Sqj_)dpUw867zsnoM%>oxdO24r-wrDwPnDxo`E5p~5(&=(t(B*jG_qf|df z1JZc(CRuR^5@0`2?UX85LwDdXhwaaC8;l(}G$PA#1loP^6Z!4bjVKv+6~)qqL?3D@ z-NRu(qC)L9IY(1oeR5Z{4`Mt@%Ip+r(BN_UAWL%`pJIPbfL2DWDo1h&THU3~7`0eh z=J~#jKFv0FqqIel>e9!dn5eULcgt7F4;T)CE(e6WrC$Eh7yaWu*w9|QuAW8<4}5t=j*_7d3Iq;cdh6>MW%4D=dd;i2*xo(}fy_BR zGCB(exRf;rTY6FeF7Pg*uE`#&rh`|F^U-|^t27jMs z^B4Fy+Y27$=e<24Ef}f|I|^X$W`Os722g@d+oX?8;-ctAd@28>ziFJh!*MV?^-P%EPhPjdA`vG%9y~;GIz9BmRa7CH#Uig z-sLj3Up_{j<5@W4hOG3Pd0Q_Kk23jptHwdJhkZhfQMVsrymtjQNB9x;XH7yLzBF;n zie>sWlBmj-R>~Y_PxJ&OT1hAypyUNn9EhnvBx>J-22W^eds#{k135chMnuM59K}|h z;ECAQRq}?2%#e*8Y@hQc-1HkSs^UV%vZEP?U0ju(VsOGpiCzyubsIrYRrz#O%+4LQ z6yhF5n zuQp;ls)M5)L7;ynD%wcAh(1|X8cBq4e^kLck<69}CEfu-5xuZxI2w2H@(IhEhp4f+ zz&f&bk5%zX5`jQ}Th4haZI3jl6W9*Q6h8zb<8MV{dGkD?aWy``o!kqXCRb^xso<+W$#CN*ohEIIC^OnTI9uWhK=mp z>A+gARd0u;Y%(KL`Ht+FZ9mxZY^h5=T$m!+%RESc_efgx%4F{5|%+!Ix>hQvj0+@c0Z|Yp(EaCc=)tj1@ zwUc(=GVxMZK2_21Vfyfc0&hJ^H1wY|B^(g8>TjGP1QxqcMi19OXRRz<@X|#wzna~0 zV*os-MrqE%cmaYjZa1<1_(lPo(G4M}(#8mQ)0b+rK1x4A(^7m!jx?lYk0LuaP>C-O znL9> zJ~T!23D3U^(rQ?PiSS!4-!4{6o@Tw#1Ls(D#e1KDYs0sk^Kz_O^->B%cGBc%;$>aa z=FstYR*&RAn~(oFo&TAge`uE8UAZ4~E>veTJ+~-;^YNU%c4%8ZSd~dYM3>(M=BjSz zvx~i1b_$OX)XwpRWR#^Dz@Nt6AE-fCs8h4XO-DYOiIKWDRdk$`pd{-WE7{_kebY+o z8-$6o;N;?wZ}L$Uz4!uN6`@tqQceo^`;pW%*?+D%S;I7H5ZEuQr zD$P*=f~m?E43a)mts8bZ2|)$c!) zc9z$wO3cgdIo_twFwx9q$jv)#ttFH*U>!-A(9%y=Z==PMaR>HKmTI;oLmf||Hh22WblHd<{bX7f|x^?Y@jMIW#4Z{KqlLgPpm)Qg+ zQTwuXRgl#PQ*n^(J_ruJ%wLA1GT|`;FKq``usru34$qzZ>?N8bk_sW}P*?e77mYeg z;^g%j2KNnRA`JbL;V0|6QXl85Rwu1H+M8{gFw!b;dJmgX7X=iMc@_l(K#WQEk zkRTg=2U92!|ZozCU!IuH2D-*QnO!2{<@l>~?EPMcUmR`Kp7s*SV#VjNNf~5>z5WB*#Cj7`dtw z7{++lcQ|(D{;x(6p6U$Pd?2a{?Y@L#(Q^EvzDTw!H@UaUgM|y!FSV&y1bYt&{*}3$3H0t~Titc(erZx9$XB)_& zhg#R5t6rn4xqy(O5j*bazcZ3#kBSBArNJ)P2;9*_CgqS|w5R*Yi-#lpV%frGCAqk& zlgoq3Vfxpdo9zP1RQs3=QAXVc&8Zzmnabho-+MhET!8v(#iE{}Wc$ZAiup?mNOYz; zv2SdgHQ_j@M==%SzVP!Wv`|iKQGUaIi(2qt=_kgNPIJFU28BizMJQy_aM*2 zyol-fMf*z_gfi~v@P6vmy!wvw{npfHU2l@;a*JzO@>U3f3Ud2tfgZ(ujE+@~k2uuu zdUDX}VvsyA;W~&$Ec%BdwG%I`8u7&C@-`-L9_7Ej^TpPk;-b$%$z__Drpvj?rz;6g z>u^5z6F@e!H|HEnI`RZ8Q_)`lZ1HceF!q^k&lDj&+PURfmzYD<=z$8TddKT>G54Izpf-l#s1*T0hMG{sv46D$c zhnT1(zZ2|7Y$tgcCvCblAz&g4k*=BTH3g#VKe+Z|bn;&SRi68<{NhLpKIG~(KnBTY zL6Q8(>AVVnL~_X30WA#cPak?w8NlhG7AP*DinH$rx|b24dl{w7pTbs|FIl4GTf?B* z8CfKStLI~r6=0WVoEag>^bRB8+T|6!=h#YY&I7Bo(xv1Z z%cg$ni?8Un0PIm$@^#NOh5PhgWeeO=%v6v6Ry>iQn00B?lDfBTl=lu^-OW>u3o0Tx zwc4{Zmcm5HauI;g?%VAVxdybAI2pdQ?ypM55T{p_IVh>ZM+{jyypc7hKCCm9A5-v*)Vu;hhe$iC>hC@2<#v4?IaMmMr;m z$(XUjniRwEga=3YHWEjRo_nPN&`pO_?o#56-D_@He*CV^SM{c{K1_6ZPUb-|xwZwt zo60I(qO|HPMYZrGu`|Q+ctmik|Ead3?(bQ*$0#!luNB-l_4F8a|Am#)j}ZWFi!6w9 zs%P+j3beV~R8Mk5dBsNtn1U#DjGgnzrqYQY0MkH(`C1eJ(~CK}ru(j?KY(5~eFFK* z$)=Q)Vk2eUR_|ja&1oW=IJoawuUS|RKh2P$^zJ(%_4}OT$Wrz1D<=f3Oz8OZMkU#Vek>z$(%{TQqOe)vaeONPzmC4*yLs3dl*Sx8Pg0Y>V2p zoz;Ck5mRmWF~BddQKKy(I;L&CJY9&kT-3}6xivaAliQ13)E7=eQEnaMvL6?d*rFbC z-smihPxv!UOKim5t>5JUlzhRB`#QH%OZ{G03Ldj1Vsg#zOnOt<(%uV;2%*)`*4yr&^`a%BHbgoN|iEdJf}-D}ioaH6goh zTBuE5))u3kM`CJRK>}IMZP@2+7J(PZ@(hGs9U1Yj;=g#XwZh0%v*((iRZ~h~;j&y$ z!beHYmRBwsbt|^kS#b-hsu;xwi!0TM?fsc{ow7b#-BEq6+Cj<&B!Ns1sH6+nt?B7JZzLU{3mz18txK>8GnalW;Rq&OkXWP8br7BVb9T~H3A}e_{ z0+g9jrq<*)k4~u2#IWqQcgu>Dz+MQxy|xsZI&vO=Akf&4Ya8hr(b82cFfafG@|D1H z$Huj^hz8^VN@91_y=$@Y_?!qqosAfJt#_6PycEANKPf2C*Yu{A>A22o^K5!Q+iQj0 zmJ$}bL;tKy{;Q96!9?>?Ux1bQz93$5?1H!?RCp6ctMD@g9Z`G0N_~P*kpZNsGujRp z=;|h1+}0i88B0W`m>kjn070Pz|C8qa?96i~2**|)ZFAU@p;|3+QRYlx?a-E>4ER^{ zqzt@j+}^jf8S8>Ug%1?Aa>hQTnoAwV#e1xuHp2`ElzXe^OnJMMw|Yq3eMxb9bz4Y$ zS<18h_<-<4^12#%Hl1A9{p-e3K<<)(#@VQT;vUlS*DKEpd2hW}u-)3Dpv*P>@nfM! zP2c-<&R?$7*SO!Bvm6~E2gEoyB`5W-kXwJXSlPm}6MngKLU4fQUG)5Wh}{o1*rxN` zuOqV;i}Y@+ud6Kg+=M^KFMN&PvSmB}mCfcgbc;i`o@V~0f|I~HlmBV=y0>3q&n<_T zb5RkVvW;uF7NS)kv<|+Zub5nwX1HeCFLV4+Z%e9j#kZH%yO};v+(2aH3$o5s>4k|U}t0^JESJ895mN%7rwWmHF8NO3$PE)x#on-j( z5~6>n*ymRj>1>=?Z48evV<|bk;{mT7fM@!S=;Rh=R$5DYa6vD*n_wV|3Q|yj5IXaN zL#qRAD&5hZOw!ubndGax$O`_XonN(Wt}Fx_)sXz0Cmas(XaBQ6yL~@K+w^CgHM=7D zkYg`K7ubL8-wm*^DN{ROS!Fx^`uDEBtRTkWplTT=EHOBYa0;QR*El- za)5E365Ut%CF;(Z_j#vg_mvC1_;M-+DM+fmkfU+T;{4~&>)CIt?G|?sf9>x#K6B`` zC`~;}zQ1jc_j0J%eUVpUZ$=K&iu%5XI1VKMR;LlJ&CNzE;}f@n2-DfPjAipx18lx@ zWSW?q?ZL5P#$%Q!w%`h5rrj5phc`cxgg2Sqjn zWKM3=LtGq)4)D!q-Lh|g#ROZqS;_ag_7$U`f6uvs@I)zH^b7<+(GS1?x_ zteO0SP5)7A3L6rk|FrkAN-SrVtmfLnMg~s5w;exG7#$m>dOk-$gx>DUq!V*GcK`=Y z<)+|wvka}rG7i`XkNyiO#Xir=g$1_V4Ka4mKg}dsj*4Wg*i_G9h;eZ_>O+&`HkC#F zC~ML!<^A_fWMur1PP5Kys1jscOwq`CT;!?xSF9L(kbhd^ug2Q{^?NU_HE(^e3En!t zdEs0t4MOh+prQop_Wb!8&=TDJ>BWb2DLDUjh&F(Nclf$y$FzIDH2aR|&90Zum~H+f z%kev7IRp$wi>DnJBU7*$b!bmlq+RrtuVaexQ?8s8O&c<>SwmR`_2oIrX%5}SVzCYp zWu<||d-VDow$syjH`}JQ61`MCZm@eFHLvhrK<4WNG~ylw@b@x}%NN|1ndE?>MfgG3 z7N~0y(A)fdjS<I!3Dqmgp~QY9=qtFdeLJoY|gm=9D-_mNzbr7Wfw7!8M03X(*rf@NDk4xN!4q zUhrqw6k1>L@k-DTiB`m2<yMF^!U}&y?JiH zv&|F&1<>3pU{Ane^UH!pM?z0Yyq*R?l3B;zYpJ8z%}4W&$h`>t_v7aO6!8Up5V#Jg zhi8OCH?1g?fnD|~Zz*)2_}=^2li5A5YVwpmP@R;y)^cZG2OYl`Pc5)mRjkF#T60@V zl|9XjOJ@wB#>XiM@Qsu#r@@efb{fB`t7YX$EK@OgrvTcAthwT#j}ze~VtwWUMat0M zyqM&*A8dLWUH!T%KBo@8dZs3L;@0rxTmCwuEk!X&{x$ui8BDJW)IP|@_Ip6E)!PvF zgW+$kUYHf=Hserj7$;n!EjrAHASoNDB!J!d5r(9+(i&*cQDhZ0Hj~Zj_LnqH#IT_~ z#^d1~mEPLWHJ*1&p|Vl(vV>vQHG0uQ90#8glQ6Lni?jd+LoZ?uvDHNw9xvH{LrYic z%-{c%|Md!1pH!SzH|)_L`lNtqx($y!%KGGg%ka!KkVl<&Zzg$=ouajJk_Z62UI4C< zxaZnBpgjA}Xf?FkGx;j#ueYgm(MOkx!q%Rw%f^>3)mjU?TH;$$NR3i5#jEtG^76M; z@Qe?YTY8MncqP_rpFfyR)Nf}Im0%{77P z^reg}i4~q2RQuA@(iC%kZX-^kgV5n~vV)SU(zK6l%uQ_4<{f<=+nMkI9b6a?qCCA` z5NB;1b8M-s5M5<6XinHGtAwsNeF4SwIgSpu70aXGvJq)@D+9 z!ke1v$Q{*lE}e5rFGPoB(418Y{Gi0eyyb9}FZ;IUrPhM9yUWKm< z*9TFgG+y7$oi7rWf|M93tafP5_;2V2OZ+-EK^ADDFh#KQi?T+kt3wL|Us1BqBG)V* z&u>#;$LR_XqEoxOBh|K0lJpR=v4iyUh6igLF%7@`hWCD^4K3qYI$${ zSRJPPWxA+%E%c}%-w2GN|?OIRC;>HrgipXimm(m=29^+72%>@GNb~^+6at4pAkJXdbGi74q@>+W=H{`9W9TXBBmP8B=+Zh?Vj`ZQmbrLZ$bRFq0+l>|*ce{i|M7k#@g!v?I z;)Wzghd73kHmoN)?|0fCvpXg%DTuf~W>;*Y)Bbg&e~>$Y@5|lhB;r3qlA_m=iYxjR9v^)^x#%XgxBq)@iU5vPpJuzXiNgj-K zB=Cz_Xk@4pgJExDW9wo^x3RLfbFj2@aIv(Z*;?2z>>TJWuD105;P_v#cGkAm4h%bc zS64e%OG~D`gR8v--Jb4f?Pz61qdVCA2i7AtF)1iEBtz4|FN&kio{U59LZ&;iEPgrx18S~}s z@&DK^|LFqv;PUH#H$T|;ulj_=f;y7`D#xGq5aoZiJS6l6sD#izyx%u|h{%TU%$^J#9fI7w(63QG)AZ)Z{eo>!}L9?HB_Mxs2mg_heDzd za2UuI1gZ-1qGw4{LvVstfN1LnNmj`D@=m%p?s;&6pupM&|FJqqkRMgZ2FTK?!R?pvA$2h#`$XK$L3P;0@x;r;XLH!rPCH z^qHwaVT1?4eHDp(Z>~Vl)oa9vHZJJP_+BAGD!hu$xfX{vg?zj7Oj`1BmW`ZRl-K3MzXxP*KF~jUp=dAUWoY`%#@lz*W8-7y)IQarh_%SdnSs%F@o#kg<3$;v0&yW81zIp2xr z5U?ybT*Y`F09ohzmbOvn0;<44QdkFI3CG#zY70kC*IT3!^^tZ!eqU1bA96GG+scz!VzBbV%;V%v20HhwR z(s^akH>ot0rv%*A?OyFddS8ev=t{kUfOjoIUZnEPI9kx>Oj;_Hq^iL4!76vd_^ec{ zkQu=2(d!~(n3Pn6&2~{N&7OpUvxU`?s;)%?8Whe)xchX76j%VO#${AchE?Vku+@o3 zvQgJdH6a@%K^c{N0d%A#2uda&%k=xs^WDukK?O{wL^0hcp8|C_JfuHJTNc*04Xcgp-*A^qJ-QQDO008rhOCh!uG z(4>ULy@uQY8>MnJ_ZK3f1mOZRg61da(QqHws7zI_oB=Xf*IRNPRU*wrU8xGy)1~N1 zt6|0-!JkV#{Lm~7c82ZM;Zon+nMU$}9HLaIBIBZWn3mn=Yyx6d$uLc0$u~?ZuaOcX zkIyCyCJP4;`B$L#5d3&Q9JH0*YZLMJF5l3I!TsK@m)gQm2!xa`*NI%X1-q5*mQzl> z=@oMqL5AXy1M^+r6u8?{Vm>k;8hfOgxxY4OoO?KIQ@k&kzdN@V0pn+)v;xN6g&Yh!DH=F{M2$P)c1UsN2o&VaTVBG zMb%X>EHR}rYdA6b6k%GCAx||5 z2DaN7kkc;0y{SuU|3DCOv6M;y z;EwqQ0BoD(t%RH4c!5f&*JRRDeQX*5c#`;>FzVI{<3Mj_A#Usu#ReLN!@2gW(??BM z{Ly)Dj-&@r=?v%8GUxsB&zliijIFc-vJ6WLBP{*I0rbAy66JtBCIIYrM*i+=E6+yt zv^*baB)4FO3wOmu^fN0AK2!3woiibl`Z>WifNj$Ie= z*-@Pc7-`X<{3{R)s`Bx|WhD}nexj_Xr-IfB(TMP%sn-yx#Goz8;pBf5#zAH{S_q>O zL-2t%ammj=-ibHKtK56<1l`dhsqhEv(c%v9fgsc zgUR(AxJoPvwH+I=o~xOEFd2)z*(S%Z$h(AQH9k|#$LX$vb==FV7o_U2b*Hw7;RnQu z8bBC~8X%BY&Y)ys<#7s-RDmF0Arzg8u*8Q_$E&E2nAi+Co%)vmpvcWz3$Z+2t*MV^ka6LE%{<^u-Sfw6`*~z+1_AF`XK7ncEgwQQsdbXh;|cSgI#@2 z1UB@DgGtXN^I1P8L~_#=6HpV*sp+JOU0`-Ipi|SVfe@>ALsE}&^XBIKv~G4H@D69v z;zW8nro*YfelKb@hmz6@AbL<_?sxXiZU}(&vE-`Use=PpG$s~Za6;tnzP!Dbt>X9? zpGr0@2`G?k`$TjH&!9X?P-_%69mePS#IL*dQto%KfQ^C(o@TU(v7n8sJ~$a6|3bip z0krb(>~L_!HM%)I4tgjm8Lp*L$SH$TDG038Cn#TCrQuGql~<%FcnDDw!u3`c54= z%FPEbudM6>=f?%aRr}fkw_wQS2bd8PzF~%-&%?nX2`_;9Bqz&vS)+|sb$&M%&@44R z*P=4h(oai>RA$91aSH4b(4b^}(CXQPKK(s(?0>Y7O$KGN`8%5qn;M2;!cjy}T5y89043scK}8`Jq!)l3FA|O; zrB1Uo*)@C~6ipP61xOg16VpTR&QP?QoR!aK`e=7EwzDhKD5;%f_6?C(E40l+OzbX@ zDYCZ&i(2maiEHVPSS&?0O00^$-uhvCz|3xy<_N&kAd-7LnV@ zy7UaUqL_gUU(M&OhLofC6nUIHzzT=Ets#}SIME|3G|3=T+#_>C>9xDAv=7UO^}HGa z4oOd~&m%hG*A=lFb6pg01%+Vf3h>WbG}%f~TgeN_{0I%yuuOQ($J2NOeO|;y< z@P)jm#RYmBs^-a>b^TiD%VT7Uj{2Px;w6w%d7ya-2yoic7R_3-XrGcfTj~xb0fg-5j5-%%;20ThZd6A zRAZ)O;Ts3*FD5fv^=QRaWHz!B=U6G>==#IAn2t#o$REFqUfi`L#nH`vsxp$i*gy%b2qwiXBzQPB)?%H%I z?(y2X;Lt6`wm1bpnSCspt7_?&ztJ$9nKn@=Njn-WvCAEq^(*w;{`b5$Gi#fg#E4d* z!!7j8K1SAvpL_BnZWO32j~PA6cl{IdG~?ik&o5b_LqTE)6i4p zv=X4jp)&oe25_nyS^~txx6;umM{()t;d(sHUO7veSG>qw_eJ^|N9s)Q8k=_^VAYcbhcdk^uU<-Ozn!Ut9|YcVn;HeKn0=ZyU~HKVBWJbE%#tzf$G+>zMcW)m2b(H zfJYTwgm9NwyH-RgvuS&SEW*#Q*7DlqEX$5GT?$!sJnBYsDQ@tAO8e(h*LO(WA%MV4 zooFDFMG@Yd`nGyMZWA3g(q>2)?0QV|;E{8}<JI0vQIl!h8W$nqL9yG==s4vE zOXNBvh7>a;lwTi7D&l!{s+xVzGf;x0x&G{!TBxjSr1a)f2YgH?(z9M*)90C}^fcF; z_8|{iH$u8=H zB()VQI76JeA<^>{5Cuk!IF}>!C>9hV8aS?!e6*40AvcrSio;tH(~0g{O7gwJek}tR zrd_bG^=HSKKafs$O&MGP(F#}N&_P$L!I@0Q8bI}@>JV`5*-~sqhls!X-8UlA?ltWo zj;j+gBEx>aF#Aoa6T4EBb3B6?{(=q(%V0moDNMWTaK3{DlJa7qj;&&vSvBE3KuQ9VJ&q-GhyQwL*T;=uD3Vc`GqVPxikg==*%Cz|%gMjh1pi5ysKg_*8gm#Rlci2A&_e>43Y@W#HWN z*g|4D1-wue&y%%3f|pD_bzFo#^xWN@UI(YjPF-~i7REhGH-zw+5r;h!I7Lx4#DfEN zKYJ*_G!!+@MoXo*O|{I%JrfKDsBX450R1hvU_7HO{U7ncc_*GTc507E)gZrGz5sxv zYuhI#S0kYKS?UVq2U*Xg3aNH2D9$-VVVIi77wx^Kdhu6|t%9o*7`y%~rxoMb3GB`I z!)G_2tF!~+$X2V#a9s|hqxO9WoKE`9f?z&$%YkP#lCB345rw;rs5i(>a2yI&?vl#1 z7y<^Gr0E)k_(JNlawY^k;4QjKDL|L-61wMn^-6NJMk6OE$Cf2UAnL10)2m%e(fuyb zM-Y@8MPplnMrE&^lJN>kkjN`X@ozz|(RqrJMwil;j=&gLCEub8W0k9Ia^C$?7rHN3 z>meM;E2T*BVs_-R3!qWMsaK~_(^7n+$hN&aMVl&K!sz}QVp5}a0kF`21t*Ou3Ou3r z(uh;3NMMBd*0=~nL@wdB*u(QAjNijvJ{V~g{t3_TO;uJ{4att4D*!uo1&Q1@2Z?A3 zJufNXsYp+AwdtA|7Sn=6wce)ddKAwUAa9pE6P)SFqc4BvD_PPipl{!JGuBl*P-tOf zg3n!q?KwM?(K`!{o~Dj$IFzhdg}4{l;URa+!x!c14N|svh@-S#>SXN9@2zvCr%sc( zqYrhkDv@o(^l1xfXae5iW&++XsJDs(9`AxKe(wQdOeAQDH=*ftD?B$e0n!8v*i3UY zr!9HzO#o3=q7Jk+b-D&=ZZ_bE0V^?Kq=ZCl5`=VWk&US|s4`j1L85qAF3?*@#&}mL z28y|D7gkT?Au^W|m%ITJ`|-15h0vgD6TgS0O(51cJe18HxKFADW2++0m!TocfTe~d zls8{k!pUVBGC~vhz4S}Y6_(rkzgVzIaa5+9kO2WA;4mJ8Eh}S_*cL&ZOy`LuF%ynzdSNbM^G_RYDGMoxA77n5OjLci;I`;=itjlxo~ zb1zqR^MbLJ(S>WEyFFxY(5sOI8vgqS$hz@&kp=y|Jldg|k#6cvojlF1)GQd=Z(jyO z!r5%w%OP7EqK%GGb1t%QnnM{Xecl;tEN4rO2*d^5CcACrmgpCiO3cj;-i9e0_MlDG5TE-7>0fU{PM<+Pc7 zhu+ZBb?eYJA$76Ms^*7g2YpJ(?C=jPLq(^>a%RUf1RfUihMqCAwGOR#m!1>y!CSa_ z&zElW8mA`zRV7tuWZzXowCRKS3GfJSBFoLQOjYdb$znUF&ju>{o(U3bndRTl;>ql* z_l7dG)W3l)hcOfAk8P5$!(WK~wYSL)i*aA+&pTJ$PQHbWUG z4+p1SkfG=_FD6U=K+vSbDngnQ8@Mkf2YuZtz!V~5D*Z>T;uMH)FB+nrNIM4F-($)rg-qw zg662#4B61E1Y;&Lc&eK%F$0|g)AviNzI~>54LmQdX`g%p+y6HPK~vr9ydIVAG?$=6 zN>HxCmuBy^cbkyPV-gsfHDtE(H*?=oZq@0LQ9vND$==}TryV*6_N4>Rt_eE(K=7Bi zhD_AILZeo)yW~s}Hb6dszxz%LS;sWCN=~i-gCU6;)cUC+sUc^V`r=_@ax(-b3S@d{ z*#vZi`WN)Def%qHsZXPN1}g-;CK+;a&5Q^F)5gfEj^7r9Rii-jH@_Am1EcqmnG*M?ikNAQN&pFH9*RHd-`?^t)% z)3~TSy-3ze`1)Jmc4E1g9&p#wM{sF!8tKgI)2+ltRL_fADrpshx9c|edH)v!?D1q7 zF;!x|kRcA`MGy~S?IdQwdDi}HK5cgzH|!KIVt^zJl$@-9r?UWRHW>Fv;II$JUTni= z$~8WdIwt+l;_vU+^N0qP%WK#1xUSf?P(MyXug|f_Pwsp7#0%yk}f37&hn`C z$JVXvu|X=m`*x_89lkYWxDG4fDIkko%ESB$kd*T9m7{!vpffKu$0xrK<=a=m zb+>lpybIEUx#M8v=^0jdG#Y22>IKGFP@3xFB0d_4W5Rv(AaJe^)I-cx^>B{&}? z3YQ(#*K>*3(7P}>&yq&?fw?@gsRT`$KCaf+^QdcD3?W`3g!6)`!nB&N5<($|!Q5Z8 zmqXI|z8pWo?WY;_9BtJkLMV~IgeD7ay!N9!xzsDnGxsB3z4Z3)*zU4SD7N_$Es$zb z;q7ce!&1X2=zGc!u2+<^YW;#?XgIAemO)+>jE;CwnF(BSCL7|ws0>b=$9#=L0|MA& zkBN#>+j$9!$5=lM$8xXIJxJl}YT&C06e;MTEBP%Hio=<+=W%!#I$Y1gV8gqw1_}Zh zn~aL5ov%;6N8U^6%BKRd8p%?kpdhEjbgEL{LHAJ=8ivj({$$d#S(Va>g2>LnStaUH zqo?NHc|yHN#`;ALW-nP3PS)vT<>^IWsgT%r>>bl+ecS5vt-H>iHd{Ilj4?Au-F-qXnS8!~hEh(%Zas)Lw#Rb}#yeon zPNwtJC%Nr;YtHyO5RVQbp=3g^ST_vuj=aQ11j4riM63lKHzKUzY>HS~CsI&C$$ItP za};fMf1quQKqIMCDjAH|Y6%vkS$Sk#c7qN!KwC|6(X@TIlvNTj>zB_)qods>Ds!zE zG?u8B0ES5e{Bc^%fQhKLvIiKPYUI{Z2MAGQ8?tRQ+;Qx4X+8}g8`a5!_W-Stu1^sr zeL2ytdZF6`>b=V|rM#fD3m7tRyGGx)3Hs3w5)#~CY|LeqK*^?c7=5n_({DADQx&JL z4C6+Qg4gZ?ZiaGbKEDB?CTI{QNeeaIY$yY^ZJ^~yXmQ4By3yhOqgAX6TQsDa(J67% zhGvNWI5_dN)8Ga}ks3{Raa72!#`p{456UUp{?Mbr{6xk9A}y^<&iKH>H=>pDA$L;% zx))WGNLx}}f&A1u#qV_->y(RTu6QdfqdF__tpqYsjy@ z0diW&mx)2S$H+$gaN?I4csqqoq;}iQhXVBwDrD2Mez1)zC`gShbwu>TYxqryng;jvDacXHo{zjhN^G1?mm=6%d>v zqz*!7o7AB+)A4{%d4IrJItR&laAERw4Ke=OQxPT*`-V%>zR^Wk!U1d@72cIXfatI{ zppA@!p*NV<`|GcPs-!HH}=!{sxKNcVM28AgG zOWKq=12NWm!W!~m2XTc1Sz^UTJ0D-XQ#F$KYHW@}11zD~Xv9eC!7~uHzFX0>O2GU$t$i3rWH-7sf z!?DQOB6N^r*5)yZ&doz@2B>Tvg9Rho6m9(SOrm$&kVgWM%E7x;6P3}5A9&Q&lkO<7 zx|yY*AblZ3q#%-!QU$?IgM@{IV^NAPWMY6_fbM>MHY1glZi4-clKT=e$lF6_<~kVrg^S`OVntawnGE@IqN(E)A_xZj@*_UEoBRJ5j8PA$Vjo-QOcxQ^7T5shED!e#5aSSa!$9CxAs|9|)8Ia^ zk+YQO$nF5qX-OceG`RE-Q0L!LO+#!Z6ky3NJ7))UI_1bv5C>gSHqT?{uomh9z$__S-g zyTb_3xtEQ4&6S0y*v{u~IckWvR<&p-_WAp70D*`0@9e7yEg?1 zU?EK8x#?EcJ(Fiml9fGhEl;eU*h5{WM$YIErY&FjJ9_mUD3afQAR;;4VZ6Ea-Wt$B z@rHNuuvGda*(T!hM-KKw*>sT4&3ZYo)a38jD3(s2H=H6tK+-(+OSAW`V`X0@35h`n zFODjL3ylkgsT14w*XTKK&&%!rv3!%5j@nI#RT1>81oBTbI-K$k0vZp@CVVI!6F#W& zO~+AXnHh$LK1x@HP;?mGnU6Zmi3cDE2!`qVhuMIw>tj*p%q* zucaYXTUm&~C$WpDTWR<3bd8(!s^x3UH*LU48hBua$R2iH!O#O^#qqSG3?N26u+YzB zmTPo(h-8~q+da#}u`0HF3v94-s3TId1$-nWb<~KY@T^XYJT@7{(cRq&?uaYJ5!`*4vnt28UAJQ@aVpL~Zu*gYiE6c)+Z)np(T=#c;^5wj zqF;B)JFL(BIi86qr0`auG4x8}T=nJVv1V;|3*s;fyKcRq zBalG;+^=>auFym3!`=8x!KbR@@no78w^Zl*iOQb5HxJJ|@eXUc7J4Udq*=1yVGmI? z{IntYOZ|rL-Ri#>7e5v8VkXyy-B*ge$k^%y!K+C;reFBEJv57krrh^!FuZRMfn*z0 z*3RTUX}<6W@&RXmooUX2}3caJo(IvQoadaC-= zcf3}WLFq!@YF6p`fUQFgj#W1@;7a4oM}GDzeftA>5q9JhFy;Du{L}RPlWV-IPEt;{ zz3Mno)pkD8qHjSZeGicNey-*ZWG3RsZ0H}zsq>iAZFcX9dJj%|7X++nbuM-~cu9Bk zrnN^BO889D*7S(`$Xk=M(e}hkFV)Z|u__^%>W=jY+NY=OEw|c^75&M*nWnd$g4SwGIjBfz(uz*>v z;j2%j&Gb%=`(!rKWwyp@&*bKBv% zsyA~X&FH%}xh3vFXDthE3U6x)kCAgKE|y=&e>KQu$?`mOcNMpU1Y2sBxzlddOpGU# zrM#Kl`XNMHh8%X*qtdUd>pr=tq(l-t=?DJm7xP;eNg_#1K4cacK#l>tI) zGIG3!mS};prh-1nJ%(WJnH`Xof!zHCFpXV=evwgj^nuZCI()xO(uvFh{Z+Gd zy*0m4a+p0ts?6iMc2cmzT2ur#~fvvfhCD`=_xDVowuX!BZ@qi9&$93(4 z9EO{N%qXjirEjnOppCaFSggRc6rtniGa`sm9EZUJV(g7k#TvLR`tO&9QIoOFRQC>q z>$EGUxqW~XEK|cM&sX8|$qZFPe;jFl0t@-rP(j6rt{Fa4C)ZacfA;$!%|HSa z-DGz#^97g2Ldcy{vXs!1=#=4I2#yScVru z8;?aEo1c8YLwhD#RqlP{?_)orUCxP&0uC31UM;^^>a^vg<@}2`$NLsixbt%>?c;VG zy58_B@`R@w>(1a?n-wyf^V9eD;GS%P9c-f($gR%0Q*sj_Y$3heEIWMWUHiJ7;bk#| zV?NC*leuLto@~@jYCD>8=E>Pg1=Wu5rQl2Jzx-G{`LIpXri$2f{Ve{_2f67JT8(wGQ0a z=aht9r|W^p#j=6Zo2|-H!WuZbTW8k&ws5%QkU;705H7YY7VNxRN{VLOUEx3D6_V~! z_8g`(ify|1;L6RRn2T3h&(yZI+%MJlEN)r6b4^lRv_-snb`N!ZnO7Gav*kA9=3?>v zm~7qr*N>EYYsZEIau|b=HXSU<=AqfcjB-lInqJ~&@!Lif?GWWEsZhuC${XEW&gFgE ztJ<3=PLHFsDqg)gajyBq-71raxK9VEw@em})zx>b9es58eB7i{ElqNoMxE7Tvc8)p zwdpOmJk75rhR0_w;e=1ob3fKpmHD3S_^J?|hO#_3Qh^ z_HhG!#WYX5ZQ9!m^TapH!u|H`KNxFvMO5?G@gph$#ea>B?ai%z+o-ko+8gUl8Cyb% zn2Da#Vw_jcd86jF}ops`UB%L8wlBFNmxed9fL$1BWbBE0!! z@TzXV@QbyxrnbntLq;|mv(EWM{P;azccQwtrb;|=AV$^v6gAze#UXRyC|7UP?hmB= z_vttO`%m~(c|3{^xA_%bwSADYK4ro=Hl;fJ`*DNvzc@9E=U8KB>gMVKXoHjXE*JK= zP~L1=?RCP1tD)H5f-1UqRPN9u^xb#U5t+Pu^yrp(oyRbphpF;d;OEk{b)>PAjfeWj zt|WR^4^>5!g@OV2mi*kJSH6#qw7Zw~DV83mv1~r97rq{MihV2@v6&;B*f@b(I9(mB za)N9X9TnLV=A!d<@F1M#u~emmgn$R+X1{ah4wcaeAFLshK zsvAN^=O4FS*nPFTAO6{x_C)b|8zn0baBfI#&LeA|#I2YX%NK#!4oq~QDp*G$^aJxA zOKOsm9-PvgNMT_>*N=K23}JbRxyI^Sjz216`fP%nVcqaDv{AoMKykhnku|*txcZ|* z^hQLRLO1qg{DTp;!-nvD&t+1@J-b#qaiLf49(C;Ai*$wDHoPX@WuX`1Y5AHK)=GmP z*r_|L764cC=lP%9;z5^{Or8Ao+B#!)aI+B$PsRbeE&Rb+N3nOtM;78lDRm(oh*ib< z14lCly;BK^MpU7o2{&>>m!RiQ(iv0}uQ*ZVk3bxt!G++xRD$u&aNS-=ZZ=8vH{`-$ zO=>eAMPmQTmQ|R&hA`9Tu^WP$Rup}XsLjeCTlI=rstOG9cER(6CVwkE2$d=Gq(dbr zZ9rhPC`0WKDW{fPWQ}zhsd1D)Q_AHO(BT^r^r$tQzp6OYGgTDRDpn>N>Zia#X!5 zn5+E^DH@_ep77&~%AP?H+M8{}iCJ1MNgurpW|Bobz)@<#boG6dzwv0Sx9jb9quqZTAQz8$4P2STWbv?DXZ>qJ|%zu>9v!wQQMmRYH|ky zF1kO|_;Gh^b)EbWx53@qq;y(y^~@AhC{*=pe*!Gdow(pW^5xj^+Pmjs49a@_to>L| zi+sb6gpWcKH+CK}ExYmQ^asG_?NrFBQvr@+&+b;A#XpS;K3zxVt_=fU^i zvUcV-+1>9ivB&SdE)zv zDbFqMhhO93^L(_HM^+~zEC0u~n&g~wk+x%3zHFVN zUr*q9JzDdqY&O!MB?+GGx9aa`KNI@TwOqfL2HR}`)XxDv<&PG#UUSzD+5XsL{i^rO z(~IXKev~+I_|{tzZ!B<&>u2^Q=-=re4m9)_J%; zOGkB^%f9HbqMSF!<`y3(Y%&{e5*^q)P`ettzSZkTb}&c&=v|kt=U>Pd2epj;K;8{+ z!!2Bw;@u1`-=1{O0P9vtst}g9N{Bk2a4Sm2tDvPliZkFHH^_hlT)sW>Lg;tg29nq| zwp^C;HereFcuWrtR_WZH>`}Z=t59%eyPOL7KyB2GP`p2rnxz4pyOMFS4IaMd3RbgE z)pch;vueTw%V^ylD^em3xsw=lUxY~nu;JSej1mus5T`y-$3EeFQiK$VwGK&St(^o| zYy5P|C%ig!9jDp$vfJNuMad_ob2l2YfGuyk_0gYE!!zlGmV#mV0l|B)E=FH>7~|O7 zjxLwi$XQAekWMWX`W|?IU^jvVIk?9f+j&6WOCLBcd5f5@ z%F5NxD9|<@@D*VC;;D^iBE4(OsXLq7^VsqCzEG^pv+3#KV0gydq6%&9c<&=4bbD|e zp~8}d_ef^fGF_GxO3*c96_o$Hg@s3kXo<2_@lKaSXbV71YMKWRj_VeE$GtadOgca}AgK zy84~``QG6(e(|nF@(K2viGK|z8vx>ih_$g`VXj8EAZvjbxlMk;GVBPsCa$dzHpjX9j%=z z9%tVgdNb_pe&&_!_1YiV7uK(?|7`;7NZ9oJ$rroAtBbt~;*)26svd1K)+fs%D@#=t zM!^CUkH|eY;VWJI7i$l`U%5Lv`P!=!o;#|tPB$d|2p)OZcW~g{r%zWt*B3oC?eCKB zuvlxI^pxv5vd3}6=5Z{CL-?yKQc&`6!m6E}l(?89Ug@7Rbb6^`*1A|Vq!ff01 z{j2=Ec6e;KrFfANuyv*R-N4@QzGQ5&U6uas4YblVn``pdY_;+?e6+FXl~48!#rsyB z{o;~IobKL3Yd)h7Uzi+UyZ4@UudAQUhhi_+Gh^gcRwZ}M`rf^FY-AkduG$$ee(ge( ze~hVO$DMN=r(IbdBa|@jbq_I9Uzx+5x0QbRDSeFZP|fUHe7o=6Y*LS|PrR$! zcfOmwi+JQcZlS)e;MFBQtt9c=$!>d7-t3M_T*{U01FZ;yCrSR-@_B}z!aFKk4mr08 zb{4%p9RAxUNX>9!pWTzeuXY(cNz}r@AL!emB@;SI-4`Q&UI+nb+yj%yTc7X6`s7+u zCzB7CSM<>qk_M!(|n#7M4zDh4W_)zxLJXupct@XfG}{c$CFws=6s1ht^I8^tM!Ne6;6D(zsb$9z~o$|gD z*NWnl1}|@_seSL5lsnXS_vE(rgMvE`Hzk(MY&!Gm^7l6Xz6-I+I(dg2$IQ>)AFTB8 zobcy%cx^1BL?6zcu68LKG}pJLdPOR)w%16fd|w+q)c>*ZRm1kNiJ_S{g^7m4(YW?P z`;u3W98!IpJV&4T&9p9*-1u7l*Tc^_L;mLMMGx-)TXAy#icbT7t*h#X4tz4ain*sN z9|T#{Q~NNs$NEjukK~;?_w$Vk?q#Xn&bf;6SRu&=! zFbUp?xTnMR{0*i?!QUM~IuLEGd*GT~OG$^M%kj=m_NX~^1~cGg8ruZN8s~Fg7yZO* zO44BvW!8<@Za+O^;$@2ZoFb*%YYJ-?9z-H4p*;RRda@J@Nq^0yC@& z&BMv>kyMIclR4I46@?abpTAcI!XO~vs|hJB5NHXm%-!m2@s6V=-#WK6!UKOpe1KNL zyn*qjko9#>`VaPiQ6ikYc08NiO&zJk5ZNf3aQPZlWqBKH21Ei@3y2}lW8G~wkSf-u zTzdpXjhD%P`^gS~D^O2=+T$`Nh#BQmw>_EfL`odvn4xj43{?auaWI(uf`8bq6~1Er zCw8UI9|#<2Keni44-+V_X@lu5!Z3k<_sb=_KhRF35=}qSDmK8?KAdcWkB{=RloxS* z%r@ZMGwjay)GdJHI9%QQZ;{akon+36xG1n-Ua8d~$>jw$;vF_LCiWIehBJ+=B=p7f zQ)hy~v(oHk9U-HevvZnOMy3++{0W{oeMP#1wBl@Qo2uCcjU`^j*1(~7f7iY5f8xBa zK<8T#j45+Ne`5CPw`~-oTVbvACQT`f$32mZjzw3N-(Cn76)f$mrDk_TdV)^JRU_Id zj@m}hrGPotqcryP-a^G&TCyk}Z9FpIF3RmadN2Jz4b59kY{<pdg)4=2UV+zM^%%M?WR{Vn_GW!OVtsjDn{OtwEZ+N z))iIAoVM_j@rS&n!?xiPK7?!p6jWBw%`z?@%F)X_x#yP*t;F}k!Hn5Yl~?AN3(9_%dD}Ug6uK^kxZ=lux7_nImhcFS@0hNl+ zn$jC;5=Wnwc6Nkgtdm?n=Y;QD^C17%-zi-Wa^iN`KA(JI8ulRnc**#;8HE=C;|gGh zeqT}Wvzel!?hb3Rcg@KXwzX%x>iPZg`j8Iyqv>4Q%_|LVXZ4qEfBbnf(+C8S&)OGS za?LUZ%3`33<8^B$L{6t&c;^^ zgC(w5OGL04Bq}(@(L*$$CNP*0oW%UJ5{)YbzPW1Ge zrQ3_!am(}Wy3)YCyCDC=_3JW<<>tnRFIW7kI8wQO_}@4SqRXBWF6-vGnPo`Z*Cbl+ zy8YSZis-!9alA}PTc9}Q61zhZ6vtGmBHcKki(2ZCo_H3p}!aO7&- z{+Tm|9hdh1wU;%%9xS_azd!#^8=UdP%w=Y!Ln6|cW4X2ATOV}&9%a(LkES^k_bVjjj^RIR1I|6>ENRW>qrdasfQz@w928joNu&Go9hHmN z{6mem)#4|gtcH!leoGIN$#OcTBJ^RDL*v_sH`k{qhIcd9hm1XVi@oM(tMTsJ1>wTI zx#OD){y;LHoHg)V9j)aup>5WF`qndT+w_GS_)o0?g1yWyM{xFgbDZNE{y?4=n^ro= z+Xxg&MO(Xe?V?J=s8u4gW{psU*s8;9sTpFV_NG=4t7-(XM~n!yC06YnZ@$m-d*17M zuj~DXKjOOOoO_&epY!>A?lvv?BY8gQ2KV;=EQ9MCU0g8KF!Yp1*7M&<<)?n{f=XM~ z)b)RU_E_D&BZBshvmN{m8ol$+S(Y{a-+5%A&ZBAa_Jgx5x6mFYs#`x(XF6uNQ$`y) zx7uF&zop@l_Q+~KZ1#>!yX<<@Lu=|x#x1;1w0`@0Yv_M}!lxU3>G~em^X-=WJRiuf@&Oz)jPw`O zOk*4$sVLKrGQ5$JzUppz@2cw54;r2y z8S#JhUSEn55X`?o#a(}_za=lA4U>o*) zSuVKF%iA|#FsrH0Ns7qrXP*wSv&eE@6>LsCRdaM zWA>yg(efyCSc=XZ$M}Nb3*BRkb&q3K0 zhnr$uPTVy%x|KW~gXZ5glkZiY<(>nu(TB5T8~8vvREq$jN?@t}VPT_IX>s@VMYZwiFT$Io%R>CNQ`h_ewWm8an#Z2LpAYh?{A)wG2A28)`?V=t`t9g~$9BI%_h4HqpxX6C zmt@ZP5~_rbh<9rjaCuoq?hf*N5;UJ5^#8GJ|6j}ah*{>_YK4WGWq|qzRKxCHO`?vV z(dD&T-g5xCreM$ETJumNpu$f_B|o{~A+`raq9Qu~DLX3cYovY8+HGbGUU5;E+6<>~D!XE!Vsk#7V78HS-`sBpU{94`952&V%71TM2O-2 zKcHVqNhC-!aP`1LJsI7$Q9nsK&cp3*_a4Hr#C^G4Gw-rDTjcBC4^MIvMtzwKLwaoT zWTb8-t(DxqKfS>Kfg82TN*sXiGAvGTA>IyEzEDuFd1aTDV!O`ugTpv4%O)&5rF;nPH_+pm>LJciC%}F-LG_-= zsptQX_a5dt5aKl76vi*3fk8(RKFNzw6~8rn5f0U6-pk?X76iNUJxRMFV1Bx0*wPy2 zu@bln3fetR?#URvx?_2{v*02i{igSlPw7ea9;pjv-P;7$tsd}n`NX=OngoAw5;$(% zxGOt~sprQPq-GQkZa5x3 zMSt-h3(+dfPTKLd=9laMs7{fs)qf#o#?Fv~RhFzSTY5VNs3;P|UZISiM*G1kW_r&*H?x(2HU3&}Nf+Y^M2fM~a2 zMazoL$Vv^#v(yI!k?03da>CPg5HK0|#CAQ+cuPdu&|lpX4eJ@hD(qJ9f7{VIEA5~Z zgmf)b)DSrYBZk*3H>#G2AWL<9@y}?T3)mlaH^G!)@xL}$*uIC~Ysxyq)kdceY(VSv4NCF4P{;#z zv0owDsrUwO<;FbPrDrG*=1l!S{cx_bVYHnCXh&C^wf`sk7r-spl4STZ)j4!T#_oVBo z_c9Bid45kKEpKbT5ZX_4}JEvb~3p`Cg#WSg*jcBt2{!JbZ zq+m5iJ@GRLMrv3Unu6xQT|765zR`!1B75r)?){W=0GG&oDE$Alo;h)rgG;&?W*q79|F2`P|2Ig;IiTM3@M#cDqns{c z(P4L}i>AWh9#Grt&492xVg(8IaRalHoPAL!N0%iWY@euzUj2TU)*1X-FHHYxmS{Cb zPt)6o{=O9J8Tl(N<&6^M3# zGH4YrC*`OlX#HF8j?ag(?B={OejcX$h=bwXoBMUp74oahsbTgKt4h6A!~A^O+pU^f z-`uAd^Di03>)k$KOb`{(17D$ceA!SW{^$+04$lOASK}D>2v2KEbKCfJi&o^N=DTYG zJmcenBc`|4^#Hu8fa1tYb!v{Z?dm*YdQvsPZD+G~w)ft@(g(48ph`0A*Qp3zx|7|V zPi2A%24BvidH%7dfXcYd((um@yPz2}cHlxNz^7>2fNUytm(&!cmvL8Bk0P^H6@<^s z!8kFF>X{i`>-rVqt6qL-3GE#NxMx6_;;^lvP92E%93YPgksMeW`&D)~y8=2waNdlZ z$M0k6=hhX*UXUsRwD36?yJoOZrf`5^M->e5y|ihf-oRgjeHo9uQ3u0o|E*BaSp-%T z*{&a_N$xC$4=+7^_nxM@?(JmP=@AJ<`xJg2N>I9SJ&M`bs;TEU{{ z$hqBFrzZyOhhlko4(Rl3UZVbTWHHF3prm7GcI2S0d#wI7K?&H5fx=aZNz9RLCWtjM zxP45mHD4qOl{bT6I_gEegJ_ju15yx4Eb2hsu#7&eTG5QQ= z4tb!3Dm1BxQgO2QJD)rb805MUojFL%?_yog*50qXN3_NGd&H7^oTrZEjDZU-$#?87 zENQ{;&p0Nr7wgjax@t_A`wo}(fT5!m>c^TGX^_JE`4yBR)d&1?(=7d}%_1l8faubC zFQo&a6EhNOHqGg1WM-YCCYur`z2Q5fV7ccV6f{aN#20F0kYnWNEOf`g{N8@5_FGm@ zHDN_g+9OdS@-fajCMDlATC&!zVXRKhge#fdJv5O+YfdKlPj)9fZk%a|xj6~@ezhy}cC_0_oW1PZ4ED#zxxMYi2E{{X{ zw$;#flbCxP9pvVyeiE#0v{v=R}3Z`@bK2 zzJ6$fMX4qxE}>@JRAzKN^VJ^S1&HWWgaG<@v?wcO>K zC=f7(Ru}4G%Cp(B&s}VuZuiHpd1&opuVk#>RN2GON=$rCuE56cu=fE!>%Q7=WY?F4 z;d?f}rH4kWnt8VuU>?BMcbit<@56-$N1N=Lb9+Xrx^~^CS&x1ImMv(m!du>BLXaM_ z^&B9+fKq$i(HC_1g`{FtT=jahQI;VvL18^!!mDZ|^c=8?ktG#SYArz~yR|_<_zuKz@k|}reHRjETBIjcp?&1+6n-J< zvf>>L+RlMpxjoi~mzW1b^Q)M3q<<3!0fzgMVnV>AWH+~np(eGYaY?N`ZZyI|9xEQ8 z`dn%3wP-YNckWFuF6h>8?>0(w?(Zqa*vCb-y4h@x3m2c}s;V4`&rM@#pGC1dcd?jO z;MOCvFb(oUjna~1^C_-`fH(6F( zhZk#3`%yWh{t-`E!&lQ2uBmgEh#x-ihrXI6!G=+S*5TPxOODlIpBSl*H9NW2(LS;} zsbO^V6(tPWxkSan^igh9;$a-MV!eBjnbL!JDz=K_h^HG=DOZRCp~MY`$W>&7PjpT^ z8Tq)hv4;vEde9klV>zem*;i?+X6Ff4$;t`P)C1_K(V2EMbJemQeK-^39o?_F4(Ld87@z<7>WNkDf+F z)g}W`|6$I7e%}>XA|aGJ+TWNw)R{gl?ehS?Sq+Dzhy>dVjYrHVObKoG7kuMFm25nl zh;|Uqja=$WdV}u}<>Um=?zHBPI8|t48|Cfb8pGwgy#>Q7Zf&~t96Zuza#Lp-Z=EFE zITgMn2)&6U2+RKJSc>soatyTWkC=X!Gsu}T1(NQOc}m1dR@i&OMTa~ulkapy7c|S) zrQdsom?nvXdba|DrB(c4zDd1YmmP|ATjA{X<0p>0(>JFTS+lY2t~as>>{9_xFhwe3 z_YOXez4Sroi=;fba;w~5qHc4LETH7&0E4>)?7bGmJCL}21@6wY?$*DkEHB(s&2PP`!U?Wg)pvl8O+tizAixrfZo0_)%C| zXe%i$-s@BUokLR|0O3OE20G2*cq)Yt^b0C)#s%!W3>_XRvUz2|$*t|>b%)j#=$5{9 zq_KU4wtv*VhO_B1XZb)?ZFVfAknW(hw^l0<1 zQLDYwcfsTRX*Kf1ij;)5|MVqg$yv%$jKOn|!&1X&+_T!i^r?~B58f_>Fb%_9p^OIE zQm?Ybsbt~s$dU-M|ROll^scVAuA>`@Mjtc4=nEaE=~DS@Fxa z5;qfCOWZt>rY*71wDKl?v(P~JHx#2ySW=nO3bmrPhOzuEJhD2$*1^*K{k^?P5K~|CIl$nS z2(@iVGdefS~>@iuyRUf8#BC3=t-Tb*mk>hPLpH962gKz zs+^CcM!k)q<>J-D_ckeyrL|qN2J^G;`O4n8M$?rzVG|5+ue$Z|AW6*K8a>m>z!m0g zek8jMfzKtQfci{({$G=Xt~os14ZIpcZJDM^Ek)e;P-9kpHFi$-c@-V%W^Lg=7v1WZ z@8~ErGpVp2H|@P+|29^r`iM|xbp6Zium^D8!jG<^#$icC|5ko8jeca#CTLxaU;?If znOze${+P5H`$-zJ`y-6XcnLH9U}$H~6MwC59{X48T5s#es(Yc{icj?3=yL59Ui^ni zwrTNQ$k=1$^bHOWk)*;F+%)z*-!y~XJLgJ!cl{Ie;K#)~FVVbOALvzRRc`;HD$X#x zc$K5toxqex)G`Fq@Ki+boNQgY4@jWByiZmBdq)+uyq)=hk&gDsBU*+mHAY6Wid=S= z_(DM`V)+e8qZTy>MC+z$Azi~Eulnyr+RIePj75dSdsDUG>DZD>t`Q$UgzGunx@8px z6zBP%_v)XY>fJXvy*Z6TedGQS%vYXmVffJksK}s7Mi$HS$UHXGn5tl)5_F<@5tJv~ zJIxgGX+QT~3}yMOe`u2ueGV9-rkj#JO*->MDRk2ibL^tLdk^1@dxRrTlYZNsRabR; zsYINgbF@MEIe-k+w%(;y$X*Aw6VCzNuBQwnSkRV}62~#8u0g41V1{CO&z+uS7Umnj zEZ|1@sS_?;Vmc1KLQ<%fcGfv3+^wtz*C|N_9?KJ{QaG4WxG7!8Asl`t)D&diC+BxL$C+U;4#~3kn>pTLClk)k50&q(k(a z?Ai|wIg_4mIDLxFd{codi5NOIakU#$5&`!I?9a$oS5!?*{;qkRIV6QI;ER(ojZHtW z7i$(&Xz|~9=SHfkgH}|f*pEze27+|T7-zKF2UlT`njNyzw)k0#k1(Q{|HMQA{@?t$ z@e}1?!YTFy@nCV2oYke6$GyZ&vd7VHX;$tc1AzOH^8HHU={&2MhaH>Sh~oCazY~b| zh#h15Ag3;yRkqFcS&*y)haB6>@na$JJfA?<)kTcK9MzF?4_Y()w{{g2Qb)=f8D}Ps zZC5doBnwL~E4UZOH$+xfWPRv=>!U#Jk3bw_o`?%(K?em_w>IVW{ z(=D8wKxw5?C7FW`at8V_nkf%D;C5nSks2-jlD-_iP%fY|Q7%BYDH;-IP>l85Eq0z* zhBelmMU~0~(DkoM`nV+jU8F9DfcJY4-MMzkf^Sa$?((S$RSYPoLD&QrG(uTBi{kG= z4F~SZeG~2*dhC>DD$uh7L9wU>{=6NqIy}2_D7LW0(?IavZ)kFf934>z|}OGeHCpC2pzdj#nhW#RstM2GrB9hpFn;lB2c5SI!f~L!h zx-phJR@yScWyO0pJY}t%51|oqI+4R0!&XVna~P)u`!b*e#w$Vj@Mt?n(RnG=%wA5^ zVa=4xeCS}m@#sMk|i1N3=zL%RbU30Gy)jfl2#_cO| zUAN`~?M^soY9xA$*o$EqSTH6*bEjzX>Z zHN1op!~@H`da3j^ug&^hxfioDBTPtVvX<;!@qPzul!V0PsySuaL4js6x2SbjgfsRo zI5Wi}DDSi}j_Y+Z?;y}?&7YGYB;sR@A?lA!mq>2T<@u*JEte1(S$8mLH=CFRb|4je z6X@xq^!^7mW5l_|%A56bE0~RyZ`4F4C=cmBG1*cSyzMZ)$s#SIOutfUi9`C-D=87t zigj*^HY4q|@=A@cWkcxOmi5a{}gq%A+Bry*Lxr z>LA!ti@yyUiJ4h1icoouuYe>zj%pY-Y*s9EH}qnI4o8iHJ0w!5y21ol=FWrlnHlbk6^bRRm8wD4*Q|DSc zU+i^}0-UxFODoo^4*eTZt~nj#H1-`fXj7jOOI*#`dum+t$XmrAR(UmHudzY7`O?*m zs&{IUa!%5Y9#Hhe{6X0)7j%2kaU&a?+g@QOMJY+OUkgFfCmYmC=Jglw4yiVD=j}8t zMK!Pt=aNLm9QjuF2~C^!!=E@cjO-$HnN2Imug3Rq!;|>xZ`Nw}1^|~n+}M2?7M87~ zn4FC4RN)jI+l!H4Ksd_eQMYkWOUvGPSDS#Z| zSE`aMy1G!pAnaa#(ZeGD?bwszxe`EOygtoyCJ8nKxX$suYS^!$i@=Dgo4G4+_+yoa zZJF7%0xI;rRW~Hh0gOMW_4Qko<0Y5X$K!vfowYn-fHD2ZKQv;i8{dBQ&nt_3(}9~X zT}PS&zrY0sCO!4*P0ljH9$FWad8m-*cj%f%%@`NQ1OT*TBuD-76cq}k24r;}xH;z^4+JGn200RIZ=Oq!Ns2lz%`O9!YwO zZXOmFaLJ1uo<&?_JyFPyxOvL#DCEePs7#eV)^k?7SMimycp=Qt=V9}f-Z>!c9B^Q= zlo(`6P5!CGg<}YnmU<32J_oD^a9X~v&?zz%*oV;d3wscjwBvzk32o|FDgKBhC*OE5 z^6+mtNH}eOefrM|##M@)zrBkIEe)xVk_l=UItQG-KvA-(B-`3^0MYs!z$`NB9#pMM zF>h`^222%)QUAlUpyN1-JL>;F<a6{V>K7|y=FI`Gq{BQHviFDiYRVmoc>ekfA3aKxT?)|?+SC4X|u?9ZMOsUooF zICUfWOh;)l6uI7vqS_mS+PLw1xA916vToxzcP(hcY;lcy>tWfF(s5DD_Q9V10?HtI z=hklJVl;S^?XyqWz&}S@N>n($xk8wt;>J0E-XutzG61oEO`#HX`6t&fN_)mWf!K6t z|C*=k5nD6faVtRlzxBy=45~fytaA^DBK04BqAKcA@m=O+2&ICvi4zXpWTo7*6<;Sr zgExa0$8A`&K{GKwh^n{v-oj)l`eVOfqkVTXC*`HTucW7;Y z*8Ms~shYpml*juVjX>q${^Y!&o`OQ?_VQ>C72QA~*xXKhJJ*?Kd~CnKc_ zlS+6>WS*F?J31rTXOr%w&yJWMuuyNsj!49tD_mi%fF@rBW{8Vv^7=vPaR6vlvKIEb zfSt5K;MN6>k{;W>8rI5-ovK)rEP1oya${HfbqUrP?6T^m^bD7{h5(JZrj@EvIYF$N zb)E7jBmD;$?j@yZmTyN{^OaqSH5EtTBlwZ^$R8gwx&7&Q&ucq2-yLZ(9tUr+wOQYV zvD`(_kleg$Ag)-d3+hrQ=8X`)(S)XZc!!quV`vr?s$ep@D7|j(N_D_?5S^bniUoWq zM&0Enj6|^daDy*M5IY)td35wU@R_Ml6YFk5KK@Nh&CN<_iol@{kCgZ``J;WiCZ7IQ zdv3v#8?Ni*b@%$dloV2ArJ><7F_`wtE0Gata=8nm3rm=W1Oj|Gd<2uIz^4dy=m#a9 z$pn2G;m6rvuHfEucWC|d!~Lek32(WJY#5RGEV_S-C~Xs-wgaEsK11A^z9!pb9_Qid zV<+%ySBVVWhEPlcKaDBnqJ)~49vD?wS*w~*OB%j2<(jz6Qx>WTeplN|@~F5F`^m`^ zy@{bz-8ItUOu`Nq-{o{4o`JVRO|{j}*zJ$tK6XyJQk^KdWdx`cqm=9#%agFPew?&% z-LW7xo6J+Tn$P_we!u2^ygJ1+QTS~r?+#gJ6C;G{pR-Pjk*f`fkK29isz#q^1FsY2+zbEH-^QOQ?v1 zZ!Sn)kF+O;_Gk7}sx)kf+~$pPFO#}3M(pEOW12R%jsPM7Ss39~8|-Yf!Ood&rHj*C z5aaPwOAwSY+UYiJOXldPw{TJkw@JL>8LRad^%Qb9KhO5(L9-A+DRG-9e7WK2z{$<_Qc8uB~^uIh9!8)^mM1$rHDxxnU_fJN|XWG7Q685XfPkW;!94=R_K7JFqT@yVt-1zAI&k@q;4r9gsP~IWM~l zP3){oh33ZG;aX=`Gz%*gVglmIk2cCQ18*$h=A9B++*9A{wks>k{eCaax^4DjM`$7o zH0WtJ`s#&wcN<9Y*`CvCJ4)WfW3|mD$2;w^Ow#X={*H3g!o05;t zuD^0E<*Q1__2(Qk57vK@sHws3lOIn$Z@*=F;TU`|;_`blw%Y09=h?A^u^DO)@AF+S zveT+ki!FX0JCy38rma^9tP@aTtk-f8Z3~^~)OtKOG+-(P3zdYytqhHMUL(i*ljoZ@c zHxS174%#QT1pV)1gwQ?_xKEX#`jDW0`@_wJA8#`c;~80%n2?c9&#!-o2oA}o%2*kJ ztgU<19O6|TUdXT!{Y6zkrF~N9q}-@xVZ^6O$ANc@ywgr?9RK|FZ|-}OM*!$2VYo;{wHph)JisoKvBL8;cFcr|{n_hk*t?A)$-GR2DmF<@M8O!z| ze4DTmx@>@w+Hg91x((@k_|3OU^X8q;L-*L|YTQ4bE*ET5>?n|_{y~fl@yJQGW_!yW zo)j`yKt@n{i#GA+fWrD-aws-42{x zk3LSM2@azbTwlMtLVHZ7q?mD=r;x5>LyOTLvTy_?c((Kb5&;)@c9N*o3nD{KQ)TPA zSK7U-6kOCUnp ze)G-Kb{)B|eAAg}6_)Pt>LH;6ANhX0=WEgw`XTA|rSj{~qziU<*(3yS(a!esmNR^& z{cEAS6q%LSSxPJeZ&z2cSjtO1Thusw{`DNN7Z;R2I%GqM=sytNQ^ipGoz&Blu!Y|D@L87nADbjnALT?7lY|9T&O`#^+c zM}1IMFl-G4p7bws?vOieww@!u`BsyO4KD~i{)OrNZwqo=qTbWA*<<9y&*0q(rZj%C zFuZK1vaZaU1Hkqk!%+sw(f2gw<^z2oDBktf29VjuV77DA^J_zcmPf$ywoTS};o_renx7{7fdQvsPy z;-+u&d*YsiWbAO=8x(4b^}T-ND2$$hYxiH%hiJt?M63zi|>9b@@ z)UGbsx(j|}dwc~kK?uh5JbxDOcmyy;u3l5-4m?#5{+s8xLsh4Fwnm}Pg z%;eiN^-7LeA7*k^dad<7NzqD%Pj6%Wwve%dIo+A=@E}(d^R%5^JNHB*iSIGl%KHuu0dFYQcjV7@gZyV*psY#)`5 zFZz0|xUjweba^X0rwyQ(BOQah%!88FOH&TA)^$!}9y+d<wP@}(v=elzNe&H!Ts->A&p8MzP8*&M8J#=p&!UQQ2MnGC819#UW4IY63|D>eu=GT~ zs6AxbX^DsPGD;&(atf{1b0*z@%!C>@m$8U7mlP#mmfi(_h~6<1u}rtYoZ02soh%P> zXL4tnLXirR{GKtSa{!z1LP3H-(K92lUY@j)+!%VH#HU2ORha>fP5jkN$RwD{&e!fS zHl)Vi#F(_*H&a0Nm3)Zd- zW)wD)=0#jO1s!gU*-Lk)OdLtM6#FdmX3^C^8)I`U0D4962qC-TB6vQ$~7 zF|~=xJ*aSiPdb|fmNc&Iaobfyo~H>(AL*5Kb3(R2UJ1BdwrWh;0Y@j6A2h3e$~Eb{ zgUTW!1{J2SWgfgt4)Hn%@F|I!gM@P@b?9brRMDswg>oW+-l9ksE@9t#+U;_xKcR3I zyP$9E2nHJo1+6;dD%VQ1$JwTGwe|-5wZjcpLJ2m=8aEXio&ctn?u2~W)x4Hm>)-GS?w7IB!tih_0<3pb; z&bkv+v)_u}lL_w%J?k&;+C6>wjPSLm?sJ}x?Z8ncEip1-yI*9B(R(+yp zuG34nzQOq}c;NH(!k$)k4@1pR$>&DTufb#{pZtE9NT}BPDogBT5@YC~N~h^@{4;_3 z$U`S1L=zGFyzo-_NB!G#55AQe)0kJ$Ty431=YB*_3{&A_HC~$7J0IuW^|GFZ^SbLj zpu6*dhWDb|?NEsyDfO>{%|At5To^SIRk1S+YnqD9{Gj|xpYCcrqgl@L&}s&i9IEOj zwd}!Y&~25YdXeaO{o-z+P=?)$&)!xEuWpJ_g?Mw+KU74#Yt&>mgHF&sVP)P_dwpg7 zpqTog;Tvzm>(}&^*}*w#uelu~&^OMg@AAEuesr7TI6j$?kug)yzv26R5v_t?&$>qu zbbxJk`0_+xBTL9+yA za!Y-8hxaG&u19zrP3;oys@hDj1-y*()NWxhDZ;}QlSbu2P)d8`si1fZ2!5<)fINb9 zPP>;;J^4i&(WKJP6ANs^_9Q9l0RxRcgP^xJ`lwouoCUBYYuVE*TM?iI%_u=6)i|V7_aBcc9N!r^x7^Sl-+7dHl=HaxvBkCB^mQV^5cTkd?m(II0+&jtocO$YC`+Ftg$m;FBlul^=0J+1N zRFU>b%flUr97{sn>K>{W4*!9RlypgPz{!<{?>+0QD{D`=DHK`M%f6m;yf{-UV!o{_ zIYodQ6ynLtPhr7NtUn>g`kY>}y%6FPXx&pxLGbyNhNI);T|#R}0YG{Mg~T4n>nP^_ zl8%fNm6{Y$-K6gB!iNzHzGqDNV-xpeE~!*t4Kp*DeKcnt zy;1ILAcP>m*YNVgx0EMfMvT4!HvN7Ur<<}#TcXOSAr_IhgYO}cSA>S|N~R5)M6b%O zqR$S8ogRK@>TaX z?|n{g+VQF_=zp#Jy2`eW%co+u!m?c>WPNwTtM4h;B)i;9erkXmlUW3`hMSiJ$~M#P zcO0S3p_gA)Dj*kqT(tZGKvagIa zZ#Bs1&%6gnXM3W*V?!3E5goBaiT?RbcX2@nq<{|uBV*XDC>&GN^uhIpzAZJ&Su7c@ zaGuAt9%Qt+jEu7TVBfCeg2o+tSB@r96 zWE*Q(NU)pb4~O*>H^SZD<9kYqBM=rFj5Um?So2Q+>UMDT>(~Bi!$8F%)q)t_UK{L% zE3y-`eOH!bgzF2f>iN=Fp-Anc+Io6K;*@WsOTDuOD%84dG_+J$v|Zp@Jmzo-gu~V)O<|z*3^LQ?&lDc#-0p4U z&_o=v^|t1b`SWdvt4f^kyA-=g_btpns~E0kE-ze$NK!7aVE&~IfxM@1DweQ5!2>)2#W@5 zMB70-XANkGytszM$VNF&Y&uWnMBk;I+q@lS5e>?2BGQg8#lhMMxn;72qZ7|go~mhs z@46gjWkWFqjFUy`suc$P)}&<_DoZn`T%o8N)`Olv%IvJu*^Me-~ZDt`PEow`YxPXd(B^P zG|&Q9xfr1Xp0{VM2_3E8-X%WwN-%hqUZ|U_E4^nFAC0;1zOeLHplpcjGE9`3VM2RB zoX@1R7Eb6?&w(#iDA~s(nzBJ@O=z5l~7$W!v8Zu%L8d1B;WG+8GElg<_aja?t#$Y2DrW{ zNHu)yINk~?Q-TUyKN~y-f(gj%bu+Z<$V=zEUcV5Z_1g|GSDH3+L;P;fm|fF`lY_L* z$t(<_d$ZO#3S7k8vC5mCqV#;gF}oMmL1y~$OWXgae}Ukf*~_gukQ7KU>M$9_!t3oX zg@rp;7hv=8reX}Url5qw(sW9veg1kk5<}WEtcHy;?o5-uCfQ5o(my=>R9lvwm1`Nt zJ2nx30K@PNgIwrcqE3(Z9B!?NP!eH~Xg_j{q5qO^K)TlusvT>o2sZ1fR7KKpa-Ub>{&f|KPzicz=9vGR>5t_-)0NqyDvep3wDEq1iVNWtkjM5$s9ji zKdFIxVV%la@BzulAM01m~*e2^iBB) zQlnbfaZVqFWaHdryH7k3S29;%SB-o6B1V(X=@UvAtQx8F<|W51rp;$wa>XsSl}$q1 z4bpl|BK-mQjg*GyA44XRtv(?cXiv?A$|?Jooup_F)jaecO&RvFW#6bcZswR|=^P!Ghu1IQ% z@Zt&jK$qv4B9Yao}Y2zc_Y`mRlOhK>@Qg<79jNTGN3^f3|%1mu^h%`b%366QCo> z1dJ25dj46HlRLF*>BLa!ZxCv|Ryv9o7Y<)JRUG-xBT%CZy!aZks!QfpOc$hYyjP)_ z`f|1QuhF|$UUxk^i}>dv z#vg$_KD^gOl&ETT!VhzpKbz}4`f({X_)f{iepg58>vFu;)75tiOG@esl*1Y?b$`)) zlAu*kLhU>j7_mJ!qN8O}DKrF|<>=ww80Nn%G&EGmf1LT(Fs2lo=y==F(2$V{!R2Ul zPcl2sS=cn01(ERcgi0WJJDxy){W6XAZKrtK*M-am?g@KRJj!|uE z>BGf;H0d6(w%x}wTpWKGwmAM{)ej5BJ6US%4)a!a?uZ|K4x@5Ll(`2X+-4*MxlY#Z zL1O(0X$_vnQZPTXv(wfuDGfK7JVe5C_joc&NBAqd93pdYU(K&v{XR}ru-WdNnju3t z8mAzoc}spic4A<8;wel1v6I5^)R|(&N8nerx^mj`Sq9dk!XrBp#-3>qHz9u)xT8?+ z`~qyBf|jXcJP~=7P*b=&rX6qJkDU1WUKn?|m7C5Q&U?^4uuaHmX6$VkgWM&O-L^fa zOdOqY3~(WI5BzxQo-WAqiVnAtfl#c@}|E9$n z5b>mGOu%?|Mq*Q3J9Wanle-}0?xlfQrcS(nHMl6mfirI1Z8u2#)ubKT&hKs4WQvmh zkf*AV{!@d+WEUG&b8StIUkgoV{8_fcw#yi3QjU}&C%D9FWNra19A3r(`_m}i`;5M^ z+|%sLBDX?&g2#OMiiAw9jPeEldnPesyBrghkk|<{LN};<)i=npHS}ifMr4t*L1?wF zW$yN5SEzm}pKPyC;)Ka%?xFB@SK#(&`Q5o*`!6!^@}i@3Qqtd&9Ok?{vn@DTrDi zvR5{SXBRM5c9nHY$E6iS9Tz_fRCKDKE*P*$`(8m>almS$_6Cv?+!fibFQ1jA; zB}f`)++I0HG)Vml(<#jIv z0oIjEvF|x_Koc_k`)1J+;m5|Y-Le}_OOkzVg5j=V*sm73_UbRr=);%Ne$hSLn9&}44u+~ zbV@hx=X}1u=f7EJ7HiI7o%=rf?0sFY>(G~;DDqul;;Zoykcr{DA3PYmb`gX1Xs28< z(i5Xo#j9lx*UYs2of~Y5nKDEF&c2e->Bi`DH`CeSEL@$PAM4LBe8A7Nr(k)+zYkZz z&KlE;VbZPOWrhJ|o05e=7m_?C5>{%)JJDJ$M((Ye#p>IK1Or*2_a$g&;95%cb{oT# zIa6kEnj8}{`TwL1zb*`?mgGf?Xo$svum1Xv?p}(~blG(O%s)^@loZ&x@H*kZAYTbAt+MIj&QQ;5q+oksd zREt#b=y{+!>OUy?+`Wt3>{2zcU+}5(`I|pRK-(fF)NG&I2gXM+_4sEeasAI`&+x2nN{fgy>>iye}vG7eip zYW}rW+J-4&FL_~f!~)e%`?9J?Q=?YnrZ$W&oEmrEsPcaz6@AzeHlI) z@BfK@mG4~XJ0CdhaMKiC0iw?k3C`0u8#hS*cbllCzp%3dmuICCKh<6jGGCL!9_`mP z(J%hPpzJoULnmbZ3#9F;b=bF~mDDbp5(XJ1Tfa#C?7&89YW#{0K{sbzxRdGnVbE%% zsf&}O-Dvj2dL;fjw%lsgTSn!4)%eMs9X%jF5%%mp0gCXL)!N?&-5b}k#K3(bnW?-x zwg(Te*4+R4ibIuwDiYu8(+Spdmc&Lta0~Y zqp9^T*r7IVPBmk))n#4kv0>`L%*k}OD*H9}KP*w`11~yWpTT>*)z>){nD+l{Luu@}T()E-WY%OC z_BN;W-=18`_>XA{Yn`%9tGJ7in@%lbwHWwUXSIWybAv3i|KBNBZh1YlmW)mbl|z%4 z=F~p8M_YYZXFVaDKCh-<@F$Dkjn1gq&e-#Go%ll&lqc zIO7BpgwmVhZ-GM23euEgH&YkUY84e>!^U14FUC49i$jK;hW67FvI>%ROI3b zF{%#4A^H!9xNAnmL?LIgLZF6rEkF(;f}Q|sV)Cp`g#sB)1pLP;vS!$|tEiy)NG?uD z1TCQlfNwLW%u1?fYT$T>qbS^=4_C_n7_bNW5Y#o>r$Rw{eMdnAq@m*Coaj-kVUX$M zlZS*XA%$$kwKNPbu*+OfZbO8AU-+2caGAag709^qqmWOzBgI7JfBQm4cEy2>g|)Il z*`uFS_(~2$tM@4s2qe=Yg%S`lg1(jMMDZL!fdJoNSDiO{SXi@1@^5iIltDg+|1Y&% zOD{=9fmDv^gP|cyOcJ(SFur`Nk&%+_fr1zX{!bvcC>Hy!b6lSKs~+~VzbhexQJ2`j z`rvJ~wfQFpDgttFzu+;t)klB2+{#ygjTL59WD|OUVqX6chaKw~CX+XY2Xjz3qaYP@ zdZ91Kebe&U6q1~#%bpGSARE|hArI3#Du}o^8g+s<^6li)%XuX zKX7I`=vQNR^^RBf$+G6&t;x7EjHInzk2OqaG|R0)5T8bwq3?3)qT_{gEKjY_m5fAu zWFBR5z*0xuif{bcgwXALiYH0tHY7MupPbiL?6R_a-;i%r1ZHM?q%Nv3mi4P^#aPoX z4nQvWd7qaCRo>0@J}QpHME?dFtB? zjM?-ac=}fJTno6tPGqDJw~OZu!-@PC&v5a6AwDqF%Sp%9j?FdxJ}QPE&&RYA(c|eR zt=KEp-A*aFJ;*I?_BHtLxnT#H@X~fCnbtWEOW0*;3U?VIj?Y{v9-<3b9DM%R|Xcs#M?-_ ziv~^*j87w#sHZBb<4MeDY4!VF|9MZJ!q#e0#s6LPf{x#kM)MDm$I|s3DYJNxh>%XzB0bM8l}jKtmRD z`;z&?+r`A2l6bPyu?0X1ddkD=v=YhkC|>bku387l0ePfpru@0lwDn`)#im_vZ|9Az zjxF?PQ$1OBnsPjjG?OWCnr&%p^N?qHtoqlUwHvfyYCMP%Z+8{IDN}GbHktES z^-%HuZUouCZFw{2?X2ZhnQY0~?hNC9)aS@3m*+iTj<6pvwplf`#eNYPl7cR;3yQxS zBLD&N{o1S6;6t{;mYPECIgj6^X&qCy?Xa%A{5`h;VdmctPVth`O5^UB0(xrsAG=IG z%&oba(*{~ioy7hfVVGM9G?{kEem!ve;vJx5bgBye5pg+=Bi*YvDS75vnJgDMDhcS z2HfoPvmOms>r(B~j>}UG1Iy{c3F-W;o6-$0Zq;7(c7S^s8~|r3zl<{Zy|;-_8#_f; zqZO+h!7EHmH_$t`GNX6lPPU-@0iG*E(C4Uos!+MF<=9x960dRI!{v>Q$#6GFEfG!m zjH$Rbl*RZ_{Fi?h$`XB`B3oNUMhZDDxo`_4j z>*ouzYAgsQ2Q~n?2w`U_hj1zk{E;M&y2CoEO#g1%p+Kx60fsja%gxiWumq)o0D`WtKmtlb zel24(6O%0s09RemQsMDt$n&@u02hk(e>6*Q?Yr7W` z^s?-dCucf$hkqrDhZZ~+3w3fp^&b+?iG3W$p1i!0Gf#Vx2ifrWy3lb(J;oaeYiE8v zQa7-7?UBLk81GD;EiyciXOHqkY)`>Qs*|h&N5Kw8RQzLP7$1@1l{07d|AseE>Akg9 zYB!g!-}M!Zk;NZ5ljk&O3Vtfvzy0l%$eu8CR$0E;`hCdyjA30Y3a4*+|AMm5>1)S4 zPeMEGmT8Vim?nSP!Pljhqr6T@BwfykQH`$C0!*U#fO6(62W(jsJe%oH>q3*n+_kI; z_V@L3UFBc5YRi_CN%8kJkvL=Bwvntvp8uTGw8&qXTpbdB^JDG zwzFv)^LIdoyE}c#gzkjlVye44aL3IiS%i1kz9v`Y+9_`O&bq6}n~g5`Auvm+wA7Tn zHP|NYXidi-kqOP)alAp*K_3t5*TJDu4ET`_qOm zl}f38->s~2yISj&9d%0T7Z%qDZRtV#gN=A1c)%D@o7l8-W8gxgNZ~ZA&Em5kET~_% z7E?QCAG+@SXX?d9Di|+MnmVr3N$BT~3qp zC(C3bng+?AuVexk)ngW&r&s@(2%^o+)5E>HV1j-0?Tao;0 z%0DqBa$j5hv+Edps&u#QjBID7yRTa}`fFdC%|E)&vRC^ecUu&i(@|!3|6r^rQ}9N% zIn8(ucc4soWZyJL@Ag3d3?A!d`IjQ0NUY67NF1@*>-qcCC2Ke+HnKVk5+|veSSkQx zNQ4P>S$1f++azE<>$uNfYFU`Czc)PWBZJc=quLG^{o^$vcpJc~^|SZC|Jnq!U;3CO zsP(Ytn&!Jdb#i#p`uz>pq9rQrH>#e2i|u|+?GmlFOz4PTtY0$6OeTtqD%Jt^u8=py zGX9y|g0H3PH$R)5zQnT&?YrTr=koaZ)@xo=of&kUx;Um#?2wQF-(;c|{n5j?+0JF4 znYTqOoviARbUc&LG;g{4qJ+znJN`<3t~)BOyd)iWS|#frIF&W?D8WPkwNUr+5Mgx1 zub6hZDr@OpJY_lWdFJt0B@yR*g4fZ+=^Xeee_A4oH2^xXF+>ep4+F{@9yk8;2ZUYm zJm<1?w_{6Y)2$l6nc>5J*DqHill{^4H1-E4dK|%#pK8yeagTq&*U(u2^>+XeL>^?< zJXDs>kWj7)7%`$tj}|Y{>qkxv9gR0`u*##M^0PgpLKgf+edvdj5mFjmKjGgLdN{jC zaa3D9yC-9Vre(>#?u=`mD`^wyR2M*&>P&BIq-{03vuldGQw{L(@qZRuJ=xma75g@< zT)|B5e=(wXXPLgA*L2Z+ZesThPeNg?6}9C*2QUJ@lMPUOrU4*q2>J(ABgvYmhu^OD z0elN7)vqu8>v6{2a~NcY%>6umBbFIZu(G||eddNFX{tL$8N{yzi?veKAJo(^hMC&I z^#fO)n@E%E$I5{C_BM|=NsY=$tBKZI$F_wKaDao28kUJW31WypX0I)mkbmC9scO>y zVa(ukPHUvR>zL|c`XKJ!yyQW4+{1}WG5H+qfAjr~lfq4Wwh)8jDC?h&E5(6Go-UC= z^nkUvU-^0E!Ub2oWgek(WN)0`{&`_zpD!L%?t35Ub0WRxIb~!Sl*poC;AN}j$KytR z(t49Zg=%OcG`+`|f_tu*D%yP}|MT8>g<4+)J};07xe*0o`a-4yCn1<1-3|WhkcPz0 z48K~b#xVQny;yB4??O;b4#$D84nw)GjF%{(;twbKQF(#|#!m&AtEr-S*|exlLkYiw zdZ3v|f^j&Ufnc2P8aqE-vK9M99KkrR5SOA#2G48?W~Q5#ypJ&wNIfQC(>kN%Xj1t| zQxOiw&Np+=D~ezj<{--$PkFu-8~9Z2^Z3`oBWqJovGF(9h_#O5PQ*){G9O4Rp#v`@ zb_iG@FDWYMNQD&ZO1K1>W1X8?IJN2*Yx+RkB1|6l(6amj0-iRJrae92wLYS1h7#YT z@K~E-b_D=;HTFS*g+W}PR0_O0GOb`ExqM1u9JJHEAd51QIQO(%Q#%B-u<{W|FxA0? z5^%_I&^mL((MNIx?BS!}_%zr>zg&WiUVbKpYxX=L{X2J}O#vkEit%tCL5AMFc|$~%A-y<2=WA;_?l>fkk!O@S-H~(P}4+F>3j}5kXcLCZd@O6b$(!R}q7$OS;fNq@S zcE2cZ+b#&cYSNytVIO3FtXt=NC{RKI)J>zuqQM3j{MfM*yrcneg4k>A^$86maKUKJZnX+O>pju?BJ8yfL zdh&CCd$CHUS)a5v@2nZSZkb1U0cvqpAnjmI$CAf0rhamZuv5MqA%sT3wggB=7RwniT{^Yz3{LuWFo! z%_qmw=or(3DiT=R{&t@^RsV;<_4;-c#tLYG)$gcoHai5>zSYmxsj zz_LZFL#T-3k#%4nJ0AEq=2Um(U)S^X@==$274Q-!Tc6Ae4h%|}#^m_hUr0R7e7w^X z5-9idlB4wEvuaOuS#ylmOh#-O<#kXn{Qv+WL{pbUN4&Ld0+fE zlyJVd>H7L%##45O@1|4dCaF|>F~P;2Ovain`Vs0JmL-5CnNEP-uNX^@OIy~|%?U_+ zX-d;#?%8zF)m=)VQ@nEq$|qWg4i{f?tN$ap-p-izPqBslQB<>h_8w4UjZwJ(!urBi z&sGn0iewHOebtJzKmTEH&|n}~p7@xKmezdM9u$H3n?G;u-OYM|mO2S&1`yZF@Ao8y zcASa?>@9{q9~36+EBtsxvzF>%o;m(#o|Jyj*3s?TH4t#)aN`=G>#j>!r3)W9Q?_QBQij&0VR>)e+d(xAxbjqfP_f^y_7eZk6T3Dne<)DXh?f8b>xsRYacY@^@Dza(;9LwG8 zq}HZPb#0xYRxZtx26nztEzB*im_C>?LOZXw?;d(hfSc`Y_TxD=^dqpBQ7~xh3raiDBYMKx133VHQoBQ>JKwx)5i51?cN++IXAE+p$fL z2@Ix>%an2O!Yr1ii@|~hIvx51w}TN;!(^_#AYDKTRQ_G~JKh_nummZC0o;oH*USFk zUS}HrECQbHW=?Zv=)n}j!BpPb@V0p{4T*d}&DYG58r%R4A}I?-7OiFRK_~8xLX5wk zUkyD5Ze9%(TyjIyqJznX64k7sc&A57ZcLaCct^87TPbJS;l zvE_eg^R94uCr{aMcyiUxR0iH2mOa_^qE7L0()19w?Lp>U*O-(`#(~Z5(beo_;GdFl z;pi1l?7x7W&y|l^6yhVB9(k(y=HG*Esd)*&>yoAO*Zy%AP&;?aYuH!aOJ)A=Xt4|3 znUgS?;;FM&ZVgqvVQ&FXmC9R&fzReq=ss8Iz}L0G4UPdfwc_)|rM?o8*=f>e+)zh@3(K9UVxCc~KnR0>ID z+L#o%J2(}jzfx_BDa#bn-&QkYewC|MAd2oTHvGhKrU&6jRSDP|CkdG2l8^oDoB9+x zUEY{85{nlIX6?GLz$R}}RMW!(UT76n+#1Qv8TcR=-NnYtf7f<7yUQU35i}+-de3;;rz@&3_~d@E)L~#M@U2ER zL1G-7W{YCesNjlX0ej?6v~+OC^QW8F5M09Kv_~;biko+{_61~)K$Ba39T_afls^MX z`HB|w%Lt(I^M%poDjFC=&{h?!4m~OF%CLPT`}fjB@KLh<_vu*{IU>$&!g3<2ZMDVyjNmXMJV^z@t)`_@29M;ie>^ zc(>0#(yqal?$1!BAl)(dk}B*cNtoN#J*uqPRYSJZvBg}#?&xz}^3gKw*tGAhmz^4N zm{?&q&gH#m1S*=~ez2^WuOFaPG@P#F?v9Ad9DcjuOc65`Sp%}wfJ|DI-^x^(TA?|B8d!>Xp5Iz_&2IN=!ae7zF+x6`}z-GbVuX3jiP zM$+q}_pygBJx=B~t9IvT__i6cWYSaJ9;GpBSFAgW_Bmx_7jTct=*J~tUvK+N^KVaZ zHCDQL(O+Z8uj#V=^Nry99=Itr%rlwR;aK;#D8pF6#QD{p5T(17dXkcU>%Y%xOp_S= z8pRVQyLF?c-Z003AYhPb$zIBBG3bO+TwXzqPJ`G-(oq*SurhU5$NA9p|1dys{g#k^ z!cXOcqDn+l_k*j_9Vi{P;VH{l8yT8MQ$+lz?ZTm1!P_gl6VaQbhy8K?z6b7`599u= z4^SVrId)QESd|J!fY4{e{n7uPrjq~fX==i_vloOohDy`_hr!Yob9s8g-?=HkyLfv- z9j499xKGzDJ@6nBw1Ar99d`@T4ZGyMc)L5hlN=FJ;;`U4sHehil#@(8n~-(H^LM=U z=3MZ`(fG3oZ~gCT=|F_^C<(Dgpba<=yvW;TXKs)e7Jq9;d65;^sWjd{QkFJ!1B^Ko z#acer+}D~D)-7h;35&RPF<&3FqXv09Tfx27w+`1Pf>xJ{>MMo;oy{zrOn2w^A=02mqhx$nSiFAz&bLa!v@Pj79cv?iK_(KUW5Jo;oP)u0ho{JH zVlNe^@9GB7D~ENqPTkspG@19EfKv5f>)_N|(rlq{cH^D@h)%;^j(C+v$&VNO!z`FI zKY10W`1ZJ)ZG`Xdr%T<(Jf#-=j-q;PUh_Dt-0{JZt4QU3R1#IZ9xP4Somyc-J8h2g z5pHG+XB=kN=9*YGRr169Cx2I=N3X^zvqV0rneHV*1{C;z;%R0mU%AyDbB(UfxbM|$ zOfDWhir>kk9(jK}r)fN)w#gb>ODNs>*wxS}Ex#-P(=OIkn{13e6Ci$LrMCMs_Rpz! zVB~qa<&=y;Y|Zwd)RotA`+3{4_pr9}t(RlzGAbz7`>lFTLz%~+eA8_Xt#J9zZJ!D- zzZYu=T^+r6`Zv_uND9YAS%ZS@nj9sh*Ik;I5>TNY)Mnc_oCn6qtLweh)Ye$4XZUX2 z{K73^Vo01eotoV!E+NIXWWMOwU%F>^#OguGDS!}rYnpT$4JLMnh4f>5%9xqt1aGTQ znK*%e-}$|T4^PsH1iWL^6~nc1TC28u9l=@~p|*rB&qfrPv@x1%<(29T%IaT=nBmlf z;C(BPM<3;R&TWps#j2;2)n}yNPL^j`+nsj&dT)aJ4LnAz+U2z>`saXTF)Ih#b!5M}jl{^?Wv!JM4t-a@X5f*O{}F`Gy$0m4zfSD{PHScNN4J zS|!o_J75;*C*y+!cHN1K3Ya|}Nw;nt8O4g*q2S9YXWiuo-1{NGztuzlDPVfqicMMa z1%gxwEz=IU1eN>f<2pdzv1T9d#FQyqzxVS?ivaV3etgo#8Jf^#xG4MdjGby%KTObt z>s>lyZxaVoY6YkApDKBUWE@DrC?Ga$M>aOY1c4UZRRP>c@XDBiPZ=ANgQ?S)6Rs21 zydi~b%c`FU#WW6%oi4M-!-^`Y|CdUghT%raz8nK(`jPsKGg7e&a3qWD_W`)OP7HY* zie5{&X%Gx?Y$9Pu4Dk-|aDNX?(I(RdGFWh)5cBuQmzdOcQC)ND zG4&!^*tB{zb@bFo_!^-U*c5N&m?*G_pJ?cTs0`V(aFbG>@p3~mDKHaS6}27ZHj3qO zNaft*^NIP4cnJOKe z6>53#6cQBf77TN?bAA_3IC_zrm$Y9f!?b7)I9Vz*_Sw_xX$0E+u9-TX^`Sv2b4PuwQY%xay%*N&)(ntvYi?h1Y<^^7Daqlu;$HR)yJ!^!M9 zE9%nzk<@Co)+5geYdp~vW7R!baDjP#r*`H$?}NjdE4xU=JZuBX6H!>RW4qVNXun{@ zOqjWL#jF8;dUGBpUcTZL&RLfb;9hMNP;e=2x~TWewpcPenTrcZC@%m|+DEmTW$Goj z>g>V7jY(=BaLvY9@K=4f@(QM`X0}jlv!@>h{tYC1r+2{u+jZf|#J{WC^F%ab{M+wy z67iQ=5Z%VP!UTIA!#v>Pv~fccZFdzuGQ+*@w69km(^t)V$r`+IZwV$Of#>q5jq9TK@2tymta1z*wJ3C3d@1U+;8m+Jcs{@uAbbj=fiogCWfZ*v%u51+ z5$Q-K&+_W>foBe5`J>rx^I^-;>hkKL$3k1DO!>OTdU1|&IiLJYk}>8->L>j11690& z*&JET@KBbz^BqWNk0=Mpr3v)$~tt&bCZ1HKvR9g|n)X!SykwiR$c^Pu1OPY@IoH zHkuDEx4MON?wD5$m(eKC7xhj(UbK88j$MeYocl%5nceBtqtljayjH&sb0Qyx=db%@ zjO?4g%b#9!_Q@9w0^<47H_Td0awK5c6mUbCr>U=PXwU$oq>kmnKhu~g^6ye-Mgz8P3(d5K6Un_Z>e<65?IIlc6~GtE)f?JaId zry85hIomjNdk{Ncb+CUKJnc>FaM9Vzw=GZ+mdyeCNE~oR= zR;m>#baXdye$d@K@XbA#pRzw6vYArB)}{_Dj-ys}VdS7I_-Jn8DU?1}x?3GxbmF;3 z|6Fik(2>_KZp4;tV7*Ipt8&(2(!^2UtQ*znUTQmiKJ}jAJ52BkFF#A2i*pworsNY_ zn;ADMf@(Xbe^t6?|F(pP?c0`zZ|KJRiH$+YSJMs>CB#yGb4~|7N3DCs0q;CIB@Cv} zqCWAR%faAd&51*l)0sii?EP5MLq=g5y~@$7uusnvy+HBynFJpr&iqfyK3YzaP#YQK zVN;vAjoNR|3sR4>FK!GwHB^W~r}mtZ>;kLq_1}laUW55XL)(0CnwAxxlbF3Thokn` zal2a)Za=%Gt=p}$+Tz+w0d>{#-veThFW;G-s1d$nW?hap9hNZr==EZogx2pdPgB`p ze;Q#YQ4+#Bt3q-+_;xJm83XGFS7v4!Zlzqu!G`cQVjJydp2dN%N|pR{W`$l&-oa9K zuzNKBPPA#|apo$ocrx3K^zPDicA{rZh=uuCGU^?L4R zPDhE3R`8(5ve$enew5Ph+6ElH#f2)O>jBC)dgPFN_M;Si1e-l2n>K52wKjDHMelPj zf@nRRb-i%7hVPr0iUBu0TWH%2Y2u2~wdV$0IlRb9K5J zo7%8aF7+vf8df2-P4(PF7}Ymrh6wX*?CD)*@j$1%<#r z`U(O?V0=!%{2LpgV^tCLWYO6oB+8Q`(hZc2U(S4_{ghIhfC-aK9Sg+G9kJLXr{E%Y z)YJy0m=rVlT@>4@K!#sH%0w#qHZ+DdJw^?ACbGQ$DwJQ#RF3*X51{J%L50r%Uk?VR z?9ei63M2(2s#2!}Ut7;`8=c=%9WrkUkc5b)`fhvd`yh zRwH%8eT`^aWgRa+e-O#&&rMTH9yNKn>hd%}Gkz>$(Q=TCFj*UjDU8{#IUPnPQk|OH z{LEp0yEGr4HYeT9^$R<`aG^m&VZ^SftZOI6z=BvBtgL#Pnb;4uwGG)P)g)QaNmM)m zS33w>jBr6L&+6k<&4L82zcGC5@h?=3VXw1pI(@tERmt7QepkMk&MNo5^;xJ)TI!k9 z0K_uyRuL&PbM{q#cs5c0-UP|{TnIX^11D-QoI@pt2kaXdQ7f{8Mo{YQ7Pbk+h1^5} z)*HC5S`{#*KHww}4Cy3lvY7E)RKvUUnvx8MKU*4)5@TR4Q6Yav6)E+z?`BqwPNPeU z(@uBYG6ra4v&Nr2AA~P?{hVcfRapBV`E^r7)K}pNrZbQt3h@qZlV6W z$(g)Ej5WFYi`>~^a%972J(Y!X7plnrFrHw$!}Aoo3>=Ea2Y6%Cd;sr2<{ETTG@(+s z)+JLEGT*bIQRd;lha~=&FnUB9uYaD3-i49yk45{RS>;@5&L6t8)f&$aI_ij-Fgn!j z`O!kgo1Rj(MDI?kYYRmL^Ng-qv2*qGRE@!(y-e zI66o8bXoghI-lr=?}tzztj9>;C@vniz3Ri1a;K+FJ%d9_fcl)Uz^+HlEyyzX!%5<# zK~TxA;lZMJC-3vxn*8Tv23=^c< z)^6kK7R?Rn~F6kg9IdT?;U*H-~ zYI7mq5j>TF5e<@9QO`Z7F42~Lx0H)tgV5La#{PWfCa&&|UN=>}){Rk-mZdAi(?Xe) z)ek1Q&oUqw@YKxd1EdzG$y>6!yN}1wSzafD1$J189ndy);Fpzn|%&`tfk4Y!e7R+8bu*o{wGdurcQ&2t+A-$}PuVCrTYJDI< z#K9%J9-w}B1-c-{y0Q`Z;p5WM5dO~s9ryz`OuWx0z3c%{zSP9-`a_WU{byatU0wxN z-nRxiioG$&CqJEH8g<-LqsU=P)!0dt&ojI#-vlS(Km@@A6I!M`z`^uS6;FBTW5!i; zC>7F$0IKH4JH04UGoC5m8SHfOMyAdJV;<6Nzyp_VIf=s2{i;OpUE^cu46b#LUIBSo z=;c4qIP(diyFL>f=8Lo_)5d3Q@dC_r8Xr-go(dd>Hzn&9&fF*brkreabgC5V}feuXd} zUQIJ~RZ(OTR0oMnljhe!=961#;d3+=LsEdOYNq!baWpfa62+aDuOgBFrR*BRW@e&4 zh8Bi$C@uzmC;@?OCo7Z$_qaz96V(HXA!f7!Kw2}P3T*q>32++a>o-PDiYw*jETMql8ipnv4wzl6T?TgO1>>W4oo62&s5 zRYM+eoZm;M8n+dMhFCuzegFRB%HpGG=d(9EG$%$Qk}YGjr3VS6eg*sV4(zHo+>1do zj(&kTW3K0Crsa7u8mR_g!?YJkiIW*@xSM3?#C%b1zR<%aeZ{(?gGiGE6``%1Zq25h z3&|k$X{&lYtB!d!>&`ld>}g*ga6?~)`}vud^e9WYSMHpwfs9?iTgy$KcoL@nFxc`j z8In-3RBBW2A}${6m%M_?J(N9MJq`!<;>*pmlyYT~GJeAQwhv%i=|%H!Kwi;v@hsDA zJ1j_ue;R0~IQAFLa&S3Bt+|Ri&im$Oi=+<|`6~?a zhReAJPPpBz4X9L>-5*B^e~d3LKt#{*Ci2HwB`MiGzUN^%ui=kWp!SP!U37Lp&Rx)@ z5BKi`ED+e$?`+tmX!E29M1P@f9r)=xXw<=HF-* znFnf8Sq7p57dsNBXt|WqiwoZu(X(hl&2YfK|Hqz(&$?_Q%HCkT|Z3LGhzpeQgVM~b|gHsA%>w8c2E0Cvr2 z)(UnGDhF>a#e(#YI?+njLlem1YOI(>P|LMG&_1&Rpe)g#am-&>&XGDPWVD_=dSYv| zre()#C~sbI{g*;Cpdz`LV9Yl$p`5`{6C*p20;^U~X)2^(lK^VlUsT3Jb_~f!|jC2C#LJG??&*-wV+nA-$kWaXsG1ux7u}~HF0kRPG`(;e8 zWtKuEBGc*2n)&t<%^>&UeQA3{ciQWfWzAlOIiURGx$OWl9Y1|8OX_)z{x~#;wu^mh ziWfm6@11dBn#eDi1J0xGn8^s>DQ&`ymb}cZ6fx~)D}q?Q1LC#a<9fg042-0?IW{d= zPtRNDBrX{Lhf$vCK4r(VBTVvxagZ>(cvs5JmqF9~j9z+4CS8SiM%W&CMLn(IdZOma zO0q)OQk_wK5SbB$F6(MXv@V|0hfkVFRBd(mj}y}w7?tlyz1nFDlG|GJnk%$3@r}>Y zg{`5Zn5nP83E&ch?}JRll4}bhEvx{FF2(MwCi%5GOtbTqzsKJ(I@7C7t@-cZbKV!z z!drDEB$0&jUWScRU_@!z&$ru$oo?3pYbiI_t&Jo8^J9!02t&)scU!Gfc0WdGIlq@Hh|M*Lyr#H3h22<>+j;?if_3*5J zUM~ls*(Ms+YJ+c_pnso|s|1THZuZ|rGPUj3YZw(y?MOH^_l{msSEf3bR$4=w1#(qY z&WeA^#RKff?^vzrwugNQKXXYMOakUlKZ>=CNY^|oFyYwO(?!8+#smT^zwUx%cZ#r# zUrvqu3zkJvhs};G9BPJ`pC4Y;dtVw~-4cn|Hcoifq1GA>TNgxE3w#4nrk*bih7%2F zx2IYJ9D=_~iCMcc7RQ(r&g`;V5(`+YQLD4BO6~?ai6FU>m%8Ja>tt*u0le!(4vS;! z)RyRI9^W$w#{r*YxNF#Ffu_1YOCPJ}ryBNnW19rYtlKTnetvfDU$y|PY_Hyp|W+M>L~mvP`!+9CFCyCxy;&Y91}P`d$<}D7?)6 z`{3yDU1}8cIi*4ch4z!Up)Z4d`s3PIWt1VTQRNCMu7Cxpe|fK(fCD7Tr2sD@Wqtc6 z7D{c=q@W@_RG|E+l{wgHHrTaJ2VX_B&kn*N{gQCF%ZUc8$YEBXOZ+Dl62(*!)hb^= zH}h2PI~zr>vkvk%Sf|X&OhQY{EZ;T)8$#$sPw=J`q(?%{RK~%BJR3U(y(8*XKAJ1H>=fzmC6EdG8bE&lCIgc;lPd z=G+C3huz7n$f_6Gve~qgD!soOfo5@wECxkjpp!fG-?wRu_gvNv+hccl5Jk>0^#GEys8Kv&)aeiWHjtp&1TTCq{ zc_9wng<;AJxtx-SdvJ2a{%uLE;Keb!sl`0cjWQjzXX(^@jEJw9szEJ44)gW$atR=Q zZU@yDdvW4Ge51tom-1|^CYJfjrtPiz4IJedS!C;Hk(OEg4>vYlG0(tr%(`fI)-tL{ zBDcNz=He_i=cz#M79@q}$y+tPt&gcu&2WY}Rk)Oh;tQvTZIMW5q8j^iRp<%Gs@|X9 zi-dZ~a-}OTEicoq-@)o{-~jh>vSL) z+IT0Pg@j>d{!iOJ%&b&zgccqkTO3DBDNNU0GPQA|vt;q-ce>c$b=PRVKV3i;=Q6k% zkvZ=uNs`bE0+k32V~1K`bhw+EE@VXg-rn`~SQbwADg?9u&CSr=N$atm`lYR~=RdG( zD(+F{t-E|Xtvpq4i*MUsc5-%WiU}aUe$CIo6TS|)uX*Jz;mOnP=;*nu3|q6z(zx2D zM=Ki{>6RYuGR5R5xj*?H68_DVPwZKCU4X=uR{gN#rPBNv;&y7YS~f1pIblA5`}q9r zh5o=qv7Mw>TCRy(V_mBkUTlodrel>z4)Yw86I%9x!nYNTIh8ha6f)T$ zUlCAeJ>sy3S5g=IpV$GR4gdIG>2e;kM~I73%4iejo{Opd<)a} z`6X!i0$ZH|A3L22;x~n?&~m+|jB*_!^d%dFN}>Gi=}5ayF>(Dd3X=NLx;-fsZt%{wU)L8#S6Mr4gqnH*3VMF{XAKy$=f?tTUiW8N|j~DG*PhrxGopP+bq|X z|Hi5HD<;JH+K)Vch!hhjG2{vGu{nGoQBR!ZHJpZ?4(Z{(wdH_XgDS$nIt5m&1=?TE zAYrezQZYV2V!2yzKoI}>YWdBSa-CmV6}HYffk%dI%{e28QS^vJ$c>uI6^r_AZHZ80R<5SsZU!xCXf z&dP_JzOPRuWTrGReqS`C%~l8c^rcw8@D(IgZ9Zv3#ecVE5M&7U8^gfX7qDtZ!}m)P ziH)pQJxpjfZz^Yb*2)l_KSknGPWxr>bhB@)-`NebB`?tJxVCyMbEyY5$Zmn-?zrR8 zLDYG>J?OpL17CWnMOfOsd9}yGYH8E&%Vm0!?2>o+h0f`!YQKfrk^dh6PeHK0^5+;{ zTuCK+iN_X4EI%)eUD@uOmrmLGy>4EixlFjqqCO*Yrtt0N)mBar%;z}8&o}my&2#4aY>%hY>E@279y{{gNZT&&w|2a_S!PZHJUmZz(B`_$ zMzUvi=cnoYCfjz-_atxa8&9Y*q|;2DB3a7nfLh!!Eor_Ta9mlzeeYR|Nfz5#c8Obx zmZFwjO*G8%X0$nu9J@I}1#zPfYvq1!TEopZc9W?-vTaV18$MjuW_2-mYntarGz+{r zc&^V+7X9s=@0M<-uUD2s z>WBUnq<>{i%tr$M0F}KLug^M;TeaGc0@?Q>Ym$9dzg6j4TQnMIzBkgAch4K2qB1~0 z2mx>d0m2K>TM-dRb@R4rP+CBO2=DwAD3Z|(ZDOrTAcdu%0`*}inSoK61yxKHRF>Yg z1rqEb!)L5i@_3}Cb&&{h#7+_eKUimF9w zgEwBS1eK_PF6dT*N>EAntx-^L?<&wJ-SAe5g=or1DMd;4D@BAAswgQ$l))&;7R6c# zaKuO2trVegN(go;(O{sZ0)n(alm`VwI};RyBHO;s)k4e5v)YQdczwt*BJ>0m3J3@w z2!TK#5PED^m8;~o69aAv)CI>ef|Uq3gsP|#l@{LhDlFiLQ7Tk8r9l*^(S(ws!Jlou z)Kb1TUDMuy-`#J5l@!>iQD+21<~)=rsFf-RsvAlM;!#9O3J!vShZ}-WX?|M;ltyBT zadbLR8Hx%9Dh5mu3MCS!6$*%LM|$W z6euEv3^>IFmmId~S)h#NQiC}{gE2u(CLa_M=M)4=pv;s?7;;deqH@7y5L{xa(C<`E zVxrM)B_vCnVt~$28OjtHiVF@fMp9gQk!V?>P@suHO>vA+4sittPI8JflqfS46xSFa zlH(KxV+BIYPHb&T06kWxs5^b7g3=s3>1uT^X9Lq)hs`uK9*z5ZIo$mF_e;c*SRD*&UC` zeq-vNna#^=`<73pc+auf4OGuB%3*_Vj5ye?bVH$wrj+33Y1(wksh|s*3=5CKJXZ2$ zi(&M^g6z{s-0jrv(X?4CeO&oe;m(5$*JaFc<9h3_y8M%}CSIdUgB~b-p{dAyG$p(` zRMtQ_m&LAZ1A!e5ium$OPS;@?h=|zoEmKF_@@pnj%aSKc%tV@&kVBgrkBQI*7{zyZ zuf;K0^fGN2Au&xOhm96Uz)1ZqIG7n>fI^M4ijkVWgEG)f<2J$TeB3z`5tdmsqp4| zpPe_9y+2Q%I;w7=8Ws{IXC5;T$^iMD(ifn&S#B#m=y_SxWY%Y!Y>sLAq4V}G#npG- zr6RVvL!@Xjot}=7@g8(9F2@DkdN;EfV(?p`K!>mp&2ZwF5Ui`_`fYjmt`c=p+o>^V#rPh!9+R zR)UH^34n^w%)Hy7ScO4x!DvY+R7F&(9Q;*ShHiN(sTUL~QB^7lRFoI1M4}AGb5&?r ziY*3WsYI73l}>n|S=9)lE9x@^Ij^18_IX}>eI)f`)H<4NTX4RgZ%CFSNl!O4$?XpDXEK5L zi9eme-3znPXe`r2^44bQtjzD3aJ4#_%|7&O?BM0rdLgONO%iGSNRl-oNNqJsTF_iC z%MUr^e?@jtni`mJePJ(?`(ZGJFbzh>60ksR8YP zznL7-JKlP3jWyGb_~p7c{XUTSd$OEs52u?ZaBJkW%gFHtQxGn}=T+7gD z`gOL$>{Zq1S`>ypruV!1DJ_O)W#fJUae1!2-RZQP)3L6Ry|ilirk-AD6UaGbz8)Y1 zPErgOF2i(fa&uvvab58E{-ak+ew8kKsJrQ&=S^t5hB!kvVGHf1#apQP>Gk&FnXhBS zwQb&JlFEM@u*^PRy?59&6x%MVU)Srh&At3TOXJsil{%YEk)lwS>YA&wLPUX|E1qKq z7V_c;v30uLW*m1-(M_I+^SX>3GgYm-->taje|qmEc6~O!w#oEwT--W~b$#0ju4{pp zLm0@EBOe?-WBh?0mE$w@Ec)B#%|FA(B<_yuUiU@PwE7%z&lK#pjQ8Cye$w=cEi#-) zreGHU=fDE!3$VZr1A^^z9X}qL%3Hp7&l!BRTFdiYS=}3>ggJ|z;*sQpB-`4mhZux` zndw>*PX$o~s-+w4ZVHKUy;VUr>{^H!x!%>G3V`6Wj0yLA0-^~qzqx7zl0kr0ija5< z>=xn`FE}j{%(w+;jLBM9N~#IDX&AZ6#0Vv5B0x$B&3e@pFLkZfwE_!?R7o&Z6BM9X zu3DnenJTFw5kUpY#0KYG?+U~WiB(D{RVC0ws1F>~5a*7>pjpMc6`)y%1PG9UlX3`D z2m}pKln9t0o6k&oxhfdPtpai5%ZjuTPvK}FBgeergVdLke4EM;7%Tz6N2~GpC=hNI zz0Dw?eMs7ZHlV5n3l^fEd4La z)_<1b2UJ%>)-v6a>onGH$?58ZnJll(|rl_?Z%vXfw>v=TaQ`&eHfZE z3Tk)!g@DEmnAjNpR=^G`xWk6rc14!OEw#YOl5d%r-!HklEA`#asn+OvH2IXeO$21u zPmt`BXU`yslEd*5<@}})%;@kCKUdB9{{YlaPhF)RUdvi5i}pQ~Kshl{3QWlA7$GR!#Bi#sg5hA3F@oT_g(_NEx$nAZ}I#!QGA=Op&4Q#1*x?|6V{s3Znv0Qo0ee+9U z++gYWtlM_iV$rK~DYWgMM>bsPI0pg+;^+`WR~sx}6HB+dtR5Uj#}i)lLrl>s{)S9} zKB0ga(It&+Ma_s0i2@6FbQfffZVp%G@!PUykF&S^K-2Y_15qQu_8haNxWg;C2*NRn z47~Hv9Jv3but8vz26jC$ahg3DghA|&71iX_V#gJk=K7=3VbE(e6Sh1nXSZ$MYkjYerh0qo z7V@bRH5NBTp?L+=wCo>H;BWB@gFnkRa$b8`^EKIL!^0Dn?#pY-=a;JK{{Ssx)5ksY zPu9DCnmBo$$FhAP+nZ)Xa!6~Zkr|JUXTSOLP3M+Y!K;gpq~+91U8=gV_$}FNd3#-@ z+UqezFh}oB_k5DZOJHLf7{-V-pa2Iz3%|#X+bxT2ibOig@0+HxHIsHLY!a$Q2qx&m zy;TIjDl#Q#Nx4*%6;&~bRY~P)h|HT?tyorNYKTgzUT#{1V)Ng8drH(mf?yV+77*tQ z6@^4^T7fS&6{KY2e_GWQDym%QD-eluu3LeTF;pU8sDef+(WDb~xh+H>bE2&T5~?M{ zD-c8^khKuhK}O^dRZ5gVP(z*Ev?3_94sy`R^8iXCGccSLpn^$2M5+;R9cU1E>9f)z7@Acr*+ zA_NTq0)TG+RzzfS)j^b{L6O{&qT1I(s^0~gh%GVZwNPbuB&aeu zDpc~iDN#kIEEa00%6TnS23K-Qg#v|IF{c%okc&)Js98$2LdsIAGC3+NH04sFGC2y2 zj^u#K?n=})w5cF-9TbTwSxU7AQk4c$l@`%-R%A(Iqk^>_1^h@k^|cx{is<=ThNVqU zHsSI>T^v8slDZ8%bM-8e=yItQm(&X=WA>W$P~*3~w$q*OHHoJ?^s{8DWy^N(0JR*zRQb7cS+L1-}OFzP4W z*p;LdetoQS9Qm$j@R*o#ip%K_(jKzubAR+JYuD5WYFbFsUe}WsG`>J<#9_=gxmjW& zCuHuI!~L%5RG(EgV3#OMY{`ysgFqv@iu7FZ%USGxOBgTld^;=6%}9uKeM8hK`i&gN zoi@5|kDP{Av8Bx}W-$=U$Mly1&asZnl-XY_SJ3siep%F8Y+X0);}n{I7wB)GdXKlL zDcvSrbL6^X<1kE?TY!Wv%(+>0__9rA96d)y*G1mtDcyIrjCEbhx9e)3ST#uoWXKtT z#DYvQ!E$hQEH>LomN9hgWNg13)$Q5sT^{_~+D$v<%G6BBk2#zqHRdM(0k|)Qqo`uK zYYBHn*5$ioaz}mM#mU?|zj2=oH{EsLv$8*mU6(@sAGZ#&=1<)El*dbT=8lwkQd$grCFEcJOMBO!zpQGt zQ~riIr{ce4d1&?+I#!!a8)hPVE!#eqt?hqGcCOu&8%IdVPd_u69LD4GOmQ!Fcv8-Z zc4_9-WSpO?9__zV?>hLiW-DUe`P(ktDxOrCVqB&+T(;oGh%|Nu-r&JzD|u{)wmY4E zOqX9Zx@#bZ629zE+S4C`6icyGBu5Na%b7ZKs&+o1)W#J)P!96Q8HmOtjv=vMPD(^f z?5l}7+c~D&Vs7Q%P9IL{wv#ek>1>-V!Sdb#YljeEvoTGMU70Pu*t*%QNxKVMinMK< z3aFO?sD}uxKu{p9LZ$J=S|bx2eXCRwtrafza$1B;!*_brK*X(3L!zuT49F`~32KOm zi%|nI6{3-h6`;w{T8I*31*j6Jf=aYjW-wZyl|WS`1Q@FV9T=@b!78MPlN3Z1st9&J z1fs%8f()NBI9{wmGs@z$7?$M&@}0p@c}_tlQ9&h#r?py$GW)ynR-#Nn>Fn!4VdfY6 zRGj7W5!Q9?NhK^aN~l<|O6di+<7 ze5%ohzTA`&U494{d@XKB9&rwv)K#$G2z}W7iBV+15QCDT#3ex#sHR3KRfBXvO0*&r zsvLgw4W!2f2EUg3)DfGNu|Yw|4Cj@Ck|-FU5d=agiii+3K!89X1S5KaoM8dMNC*{D zhZO;tS`=1cl|ebWQiTgKR)q#)lvOp?sW2(dfC@wj&TVdmXbk4o=t>~YQi`^_!k~=m z&>6~5EafNwn3Twm^phfn#T2LbMVw6Fh3Jm=SQAO7wRA(q2 zVu5E?inhPKN+CJ-q(YH-@B7uDGn-qbC=BHG^GXX2Ib+(RHAZDr!KE9Yk!rp*zcJ89j2x^Fxh1MTl~`f4Weswn$C|!t5G~mrLL06@?Jkh?T>iC zuR{>(-bL#-rrWN4O#Q>NL7y_D1FC5)fP3804>nA0d2@bdbG$|+Nri{zy+W5?`qxO* zDQcNm(+9|#Drk5j9;4|Gpxc97)#-Iz$wvJ@K&5+U8fup0om5$SS>=(L zlFiwi=tNvN!9<&$gZxkHlBVc79@C>C^?I#yX1ZHp6DmNNOh`xnx2&dB2~G-@Iu z>;CPLGV>kDOFvoHG@YG9;@_%sW>(D@wnI3Z`81y8^y`}F(_xvN*2R3Y!X9_!E}uEF zU7B~@G`Ifg`#mqx+k0l{`eubor#6@}T$y35meNK>fdDRr{9VkiBckXy^WyP!6}v7^ zdbOCRWJNxnhrP|Oy34t7{1)u;xZ01VJ2t$y)amkO7e+bdN_IUZxv}YAc=>;m`FXP0 z=c^ywEAd%uzC-;E^!U3m(&>1^^$qDf#n<1>U+o&N{{Yc?es354IDHBaN_JHXvr}o( zB{*PNCR0y-Qj^eczxkQ+-5y#s8tAv-ve5#j!h(p@DD{^AK*o*i)W?dGyPoD1vIjz2H>Fsu%5|VWe zmrYAO;$-#$XFPnl-s1C?H^3J`aPr+3T{90))AaXY!)=#MZsX_L<~i3axu`CJrBLT9 z0t<@JobmWAK#7mw7N9|SDu^xviqL~Iiq!-;{{V8(%)A9wjNLJ66$RW?gh74lLR{ij zh(T~x6%LunY9MA_R)QzFQ4V+)D+@+t_P1KloW*D;s+CKf0n(7DE?T0|CB<3=6e>|f zsvQ31st7NS+N!dAz&g`;RxX%binKs5zXTex2rU5=05L%haO+xunRqIRFhxlhD2(0+ z7j`QHF!Bo31-575Z?Q@Z8!{?TRBnn0FDXGjXBB8rv)>3`*VvQ*e|9A(P&wzdA_V8X zP-iJY>#N5;6=^IUTozQFiYx#GI#dh`u<5sQg4u|LvHK8c;Sj8a1p|OZ2rgbIrr=_M z2E&|s6b=Fc+)z_RqD1r(Gfgoyu0DwRYR21}q zDuDokzbeWlX+i-5Xi`PKFj;|`&;Te191v*H09272RS2LuP%uIU=Lje!DNvQDXf2}U zBq&~pMkF#iy9J1M8XCk zpA6!=mR-+J*IBE@87<$&J0*%Y%XkX zaf_h7+8s67F6X0**0S>H{49KT&)DXAU?}Q6X4D@$E7&OInIzxgbERg7SYA`-54&yO z4Cb~j@;k4Tt>x2OPl_zN(^-C;UCZnh5>Y|L00N`q)ou!Q>hrYEF_LCTk|#aWNde{2 zgBuR4S0c?k&79lzx}5z^EzLN#MB8n4@$M?E#X(J>jbd(Zr*m3Z!SlJ#!Gb(`RkH=x zU&$NaOubJYJv?W-;h5d_7MuHfQjlt7&8C(J&E)x0UjRg4W*4$OVXEb}+a{9}>4(Ej zpHZ4QqU$5OmS^j%dYKBktxkfvj!`rktdZqB9}r`mdmhp;W5CA|)||0z(L3#KGvBGj zemMUCPb_SovV4+yWcv9rr>+c}Uo?ldj*J&JT(ARUd?A^@oA}_aNQv7UyJejwTk(6D zX*nlvExaT2{{VyN$*7e+P@5^)noKzmL4gDt!3Pk&Gi@c=;>&JG=C*bbH+9?MtLVkm zH0_<`I%7oAK*)5 z3rs=4g{VtziHgS9NjB_Sh*Uonp#;O?kqXR`2TU*Q`_|zZxZidQQ2`Tj(8b5ttV2m! zMsF)nCO>l2LZ!!wqbE6PAVD!&hzU@fRiMP4cdb!UO3*~2B%9WjiE+7DSVEy9CC24o zDDmZjqcT-iZ+sGoR~(XYR0@qUpkW0>qNXa)5#@5I%;JG4B)Qy`po24~+>`-vB0l68 zx)JAZxo9T35F8L_9e)HG2VIPM6hs?iZYZT26-3w|V3_kjIRZrrqu0b&jd9yb7e!&B zb8p1~0d={kDi;w8?e?guZRR}x03V79D##R2sAx5mq>vqmw-Aaz8+Ii_h21|KR20}n zL1zRRpLjmiQE)0Lz$jEIhJZjI5K&|VV|vX*tpNamw-qE))PV|tP$0NPt0G`6a;Rzr zY!wtSP=!2QZiOLGw1e(IAh8U#=~-4~*W9R*{*2MKIjKPW@RSTr z3XNGY1s4PgDxurjfI+N0D+494AR);GGUb_C6S4QJ2v+8RR0<0hHASKhDxkJ1fdw-a znFH}w1ltutK-3n&;fj*4B>p1x*_v+2sg)_kvuYS5u#96p&_DYOE6?jc)#@0r{o5^@ z=gYbsmY>|y-*@7kSD0<;5k;fW(lkJ_Qvo{!zdHlLaCEmc46cA^zbtQFcNMoy+_5yP*K0Fbixt@~ zx0{!JH}7#bF5vZ!hfk}UH*!gvDv6=fg)2iQkmzQ=%NMjd^~%kUJ(kVWI~;us>2t?5 zk?H>c7aMDBttzkSwe3c9-D0|-t(qoPpE01AT;`JO#9?~mX*9N75q;kD%glA2xu~-H zu-Org+h>OP{{R=N&Ds;UWjm+RPL|oPV;cE$VlqBh$_q zO_y)`UU|AS%HK|RrjNK>9X5(s`b|b-Ma7Q6Qn%T1EG(E3ji(JQE$Bu^u({x^=`HWn*?9Gp5 z@y5NcMXJNebz|YXbDq1G6(Azj^L4GkrD+t?C)UrGDqOJ{u6x?Xx0ZJsgn47gE}N+J zta^K+9kDqxPU~&^dmOAfORtV;o?Clm<$9O#FSBXtjH+qRsts|AspLKEhdj?R<98sq z5tFOr+e~=lvUmNiL`If2Pc**H+TMPg`j1lBWSObRU~iQC@@AHjd@f`}S`SI=itO}V zXH$ac$Emg~=J;;6ZL>X{(>yzUeOAAr>2+V~L~~8PX{X!vK9{OA^V^|P%%*H4QcoUZ zTX1Vj3t4c$3_2I5(BDg@yWU^sd^6x%%kbMj;Q2dmeom#Q^5#15+n^2bxI?9La%m$b z*Gr-6bB^9yo58%}Nqt>mZPp{3@=w@m&jNsP(rj_rN z;A>hkz3pK)@(Yb-x2oi`mfRTPE5_@lf9dl%_jKJPYA(w;u8XEOd%PpR$zMyeY+qD1 zj=5D+B1WL&T~##CG}SCJCWy7IFk^ruKt?0Ae6n?{*lvi`V({(V&1~~q$KvA-cAKVI zZ#3h-o^HCdos#cNsg*Y=W5gzAGG2aH2ADXs@q+KIn3#!;vF&j@XqlU1W!rc6Z}dF- zP2F0SpGRG{>!_VRwtJkzCCx5$$&V+*ImR)FU9I?SzL&((j}3=kmkeKm`zGt|ne)uM z)e~w(B|9n{9a7nBZ08HXcxcUkTI=qmc5Zu(G+h|&i~c%Ae6BSW_Nr4#<1 zCD520=VWWL5%QOG#eFWtF*M^!xLCTam&Y`G9NfG1@1<$jnX@%9sCjIZ$5A=0B6esN z;vUl266oAoLXj5o_rBNNsPW<=Bf{qF0WUZy@Tez6?g9s|_8949@a3xTjZif}6h6Me~LLBa0io^`b zy=oMepiIX=El^@g)C8!4Z&nnE@Rg-xO4209f+9(~qwrdyrZH7X#aI%EmmXNF0t<(2 zzU8U~8<9}s0E3SAM5>8YHjXC*8p7^g#0Rvhq)odOhzcn{4rn0ah)5yb{DKH^{8b6q z9)uY>D?&^y*8~*TboCS(wZh}Ka2R%TS)dABrF@##Rv0n`vvLByzvKtL!O zpgCqC@qr+;)>C;%1~%~TflDkr5CqgG`}*sB6!s4qf*p+JSSJNt^y>G#zTio*PhT%iPW=C;kMg; zw_&Q7vrBKDey7ZoAu*s}2myYLZujB$O=7b2ZIkKVlQyB6tmn>Qa1Wg!q-1f2I7S90 zH?BUvQ9Qh_aq{fWJ9)U#(Ek95EmB0iPj2chFsY%af0Zl`nn=iABhiFC>#fNgk!{>! zU6vW0MC8Xm4c71MneO^-a_IK1ow%eLhSqr!t0nn$jmjnmvCM#TdSH0syX*2r)>4&; zd2W}ezYOy3y4j@1kZu2C#<_>Q-$2V%~^jGrCw)d5bwS7ZXTXEy?Ec{pRr*wThtwuaJ_T4=5 z*&Du|hnP^)YJQ;Z$tQnJsnfK#!e*bh&_scy@Aew<$yZ+b)O2DPZtZb^-!+Ow&q8Pu)^1{jQP=De<>Uv9UW+&HVi(W5qbB&v(5Zm*_{y6X}eqwz6P* zGSsw>)w(0aar~sN!xm}5hA+!>MB8t@K1UxmD{{=+5nFEH@jcP4={kPkeuc4U{=Z*w z4V^l1Gbw1Z7JS zqKdjO*~G}JW5mijrWj3=F~2L?;ds4pdWI}{v^sXXqOxTzT{~iB`Lf6lot3|uV=}t#mEt-)&YM$qhVSM4c6P*8ms{kC z-RFDGqsew3&tuzsS-Xbsik?Sz(ly#$SIqiHK5U6>mQ3d~HWM5UX?I+5^mAU1CMmOf zhtqZOsF|f^BAaF@x3P4T)fAKGzI9utOPccPX+@$e1edrHFMK0$;LxSlM8s@;aA2Gl z-F4U2E}fC*ub=FP242$9nf+04H=j$nInY(_ntRkCR{ef4-eTvu6Ib44o7f>nIBIn}iyqM_M* zOkkGKCA2lL0~2-SYH7kK>EF_g$OjRlhB&3y51pX^R4l1ZY zgx6k>GF1W!Za6BfBXR{06#+1}Boa!XYDki#qDe(THn&=+%-e=4fbl^NR71Ysf82pI zz=TG?+@g{J6d(`?1yGS5&6TUgJ`EZ;BEZTDif{^1XflNb1_qRip8<1+z0JAD(pqQeTP>5;Uw%N{V9yZ&GAiniL2ziq=8pvc)O^EuE?g zEf7HkjqLnYs4_Jw7Dn?*ifclZ6y^e(f)d)54uW?p|zm^_K4ctQ41@1TJ)$gi*}_zS}od@7SJG2er*0GSowOsg-~MIa_gK-eptd= zgiKeQ=@U(Uqswf$+WUF5w#Vw-A5^%~Vdl4pkJ!IRw|nsmw>t)pS-BgkPn5?`6U@-s zHn%okDCNljJQ;H1+Oey)&7WKJPJ?~E1=V%`09ABpTHmVMYem#tTS;3-HKevJgy(sX zApZb4t?uexU$1Je!Gi3T{m8G^x9WDC9~?}~PaD3+%JlnK)O2d9t+S|uD^t>*WtKP* zo=`DqY)ni6yP^xZ=-TTu;)+dTVzK1?4=M9DhW$Qo9^Z!TmwA6n=6Z=!sp}fsb($h1 z>RM^?>DtzSW=dhWIE&nR`N4J?-2~0ClOM-#*8B9mb(dM;X4{J-dOn@J9R07lDRr7* zGF&BA%OCiPQ}Z<7OL?_?blRB79sQ1jt8|Q-OZM%@JFfQky^CaT`7%Q(tIJMU2D$gZ zbQO(8m!E7qPLbCq9CBYfJ#V|ew?3aXike%9G*vl-*?(t@8~QI;$!x{jZDUb5?Y@|@d%l!x zk4AJ|vt2&6bgE{%C}fuq*{%+ZbG6Seb8axjeeJr)k9NvShpvlmkLFF$=!XN;P4%Sc zdW$rz0*#u!_N*RFB&M~lbfD|n>CYE|#5a}rENZp!haAoGNQkd=d0b5=PK>u!H+uY! zr?5RZqtK@}a&F3>+8e7=cw?()la-Hfaq^^y0LB4<81U)xI(#{Lt==X`nA1kvZR3;m zuKixieLEh9E^JyWZMG>FOw-B6j?28aAJ9zFT*6M7QuqBsrNm|o00w4kATN#B!FwGR zp53<6lN-2E<$B*zy3Y>in&P@=o4@Jxx__!0@_id*?ftIjQ);@rw#;{kIkZ&5=T89q zu6%qg=YIv{F2{FO)lMz?TsLk10Pm7aQ|Cne1N2^4Hz|o;deod!~yg4ZoYz%y^e=wm%Ga zN3GEJB`rpwtyEOHpgv39e5m5qMj@aJu8QvQUuG*gVn4;^wVi71PD#G{&EH{*nASGn z(E-#K7VD;Vx>?&b3nT3MTdPRYH7PwX6fdbq;H;UcRy13PX7QGLpDtApH%xFV!PKmDU+WsZfNy7r8^uzs{lxl``}Am zFoN#JucemtT}Qnfn62!mHQs&>Zf$mhOYYxx-=_$0ruxUHRe5aOnk{aZCR_80wgToe z!v{uehdIq@4uSBk#Pw}9-}Lgwd~(mT>BYv$lcnq8E$5qNH&X4s-z(B|{lTN^IzQLx zRWjz&c~O$~5az?>5I2JZ-Nk%$A23@wY?Bqop2+xa-&x&G-LB^jgO>YaWaI6P)Q?l9 zZI4?vwyii*RlU?T4|~}l)BwiK4RINzzCKf<3;_j9T|--@wkJKFEtL4I_@m2jA2QB7 z8D?W0+_y&w_V9Ks?YX7sdtS3yrkEx=mA+tOU6(j$J_8XS5rDyGsP#*AHsZHUl9PS= zW;e#k-ydYYnteRto2MnUh_{cm*7o15TYpiU$}L&0(e*bAsp?0Un4i#b{af+idlx1; zhObLB)LG(L`0S0odw$q)@y44|Z#Em^JEnft8kejZZjZR?^u0n%*HXz0d9Gx<(xr*R zI~wCG7dG$GXMhdSd}F$KFQjeXU7eoCV}AbH zAF~^&okm!oeZqcbWs8JEON+9^@{CtuA2M0+_<1}}!%wyH{@XOKJ)FI@b^4!Lb{k$< zBCXX^I0+1yHtc`VvEn@uTK?~vq}r@?Qy0v%xM{exeyJ0t2Z~Kyy$K z9cqAtAdm<>kP{A@72;n8jEX=;F$yV+0tO0-V)F#5w0Jh}N}^y=p};5@H~cyfY{qhJxUO zX>|NtqPA;V1Ol`gjDxWSHSPP$2 zq2$I2K!}(vD9loTiBM?LV5E-}{wDVP%H5~?MoUYdK>2g-#0HYdh64M9#^Ai=^Wb$j znfP;APu{omI~ymTPfx*jt>@YXq|HZ2q^xVA=dcNaH;Ik8z{90}g@Y$OkuS%3rj~GO zFS2)5vE-f4P}!TBTVyttbHiT21`=W67nQu&`Qgmzdg!;@o&Nx1rh1c8N4-9hZrU$q z<n0+EB?`rOf?Xs@W((!d7g#oX`)1-wzKZ;Cg+T`c_^^t=egycJIMGmv>Jd zA6wIEv0~NZn{MM9W4FonHQTzzjjp&%sHYP3DGma%jpfaDX5-Klg)4CraED&X&hbkTS90h-RA6gdq&=>L9K@ zZl5>ZTPBw~o}1R}zRpas&1V>$zvB*@NxC;amvE43fy`a?ywSu<4BXMWPxs|;%^rbWi{7fWPGAV=mV_jNBBrswMUBKy7FEt9g^?Y?7; z-OpJx)7wb+{a#0;R#MT`)4EM$rcS3YFJ#ah-wp9Gy5;Sx_dXqtt3E3-TQQO%ZSQ=Y z!Ki3dyLzIgt&-hCM2YAs zOJ*W$wmGTf-A9c2eUeH8nK?Yg*{Ah=Y}%|3{Z?&NA3oVsU8XO}XjuBrZAB@~9|ojK&-#*b;hF0WUt$Aa0vB+?=B>Af>9 zuKrAMyL|A69+Ov#YMZJ{W}8t*Q2JT&W=(6L_5l%?Vnktb`Dr!QXU7>LX>9KAhcl^k zT$+5*ipu1gS7dG!+T5Dyo=%ZTSF6s#6jC1cj=7EvVC^gAs_PnT5nPwVd1jus*G=-q zvoGC?e6#GU<5AK(accAR3fgzm(9;1(>N4==&YLCVpEE7aYaQ7YFG05AXy7iRKPHJZ-x6MrMafkb>-y;8GiORdy2 zwv(so5~fJ3p>5LHQ8A^mswKAun3y^kuQAtpCM`!UN>XjQJ$t;8{R8E0y^>~dUp1O+ zpKp9QbUHmFv`S4ju1hD%WSMPqCNwx^gk#>l7CceO7R+#X{Z6|0)ZdoLn3=kFc0PCh zH}_J$id9_snoV}EPp0X#)8FO>GC}id9MbO=Qs%-Dg7KL&_-^W!+m6_Yw%M7VFS`}` z<@$CVUTZpB^XltaJYRL?!kZ$tkG&l~f?hD=BWL>giu>6M(rzR`8 z?7D5cx$(ALJv_PE)9Fk8nAMtjS>`%nET?E>BJ1HC7Z*W}+j;q8-R5_{FzPa07y4+ikvHJ9qASEflG8nj0otWwb*pSkTZfzyJc}(jqoG>o2A* zuE*Zp?sT`mFU)yDCyqYVmnPRp-gGotZtL4x#+=5}YWjs#%4)wQp`TGs*=6oC0Lz)u z+yM?=Yvyb=ep>6NWzn`Lzl6Pi%G!*Ro-M6y-R75}O>>Lgm_U+ZFkSwVX6#nY+veEy zJ1mhAbi{6}HOOHOaaw_%Yx)+TNh?D)INPOFLy1}vs6^bVGjX-L)}g3LDuom(n5u;1 z0FW~zt*TH6CFbITjN^GKgbE?58la8H1gI6L5};5+-O`GJs)ez(M zA|R6#8!-4nEGb0@98WYti9jk5C{;O%v>wg}TJaMuI@^Ma2BL%vD5_>Q;Doez;lU9$ z_o)H?H!2)2x3LC{!5T9ds8j}o4&J04PvG&=3d)i_`?yT?B!}n*QZS8f4Sf ze$+-{F2A3-2O?1d-31k9aX&9&P%$ybsVFEp(YH_Bps^Hzpe71|q@<%jR8)Q&4D6TWeMW;*^xtyN(<|l7nW0ua z&!e9U%RzuY&u7Z^#dCTWS+_Nn-FEBk<898H<_?GB#?Ox5hImYNdmXZlvP}6bsid0O zvR)$Dj4>Dcx|gi7_?WCq^E~={@!d9G9JfPl7|7D~2G>buY0ZdWafohfj3Lmu7w4Oz zlKR`N$rRkjc{6KnI)HU8HdLDO%-^)-ILew&082(!LKwMmuFzSME8oHBx=&NdF)_^+ z#@&;)KSQO~dUdE$&-(2%Rt94{Oq)>|b4OdoVb>McPfotsj!AN{{LhChO__1d-J3n= zm(Zl&8n%)}KIEfwSm6O*BzcnNG>FB(cw9Ndxqa={BhKOG=s0ux`b+ly8R7QF zpVIU#qv{Tb+G8ew(>_Db>lq|9j&yGEvgoc~i;p+n+Te3)w3{+nH0}K_g{u00q-&e9 zZlc3SDvGY4PM+D4$e7lf-q6vNrvCtEderH0&AV)@{W!Z#H_RKo>Un;Z{{XA%iaYk| z^#1^2Y8z|mv>m@eCZV%gG3}JbwqxbC;?Xdejt3RiS*7H=Y*stogGbe|T|WNq=UmXg zhHWONM4MASuBS`Yvw4)Fo?v^J*04i3zr^Q6_+bUc)Z?xTW9IL`VURkG=1N;jQu*KK9asmn%UCv0mCdnH~3BP+@?a>YK^52ERF;KPzKT^CNsww;?@8LgVvO7i9g$Y2fv5hf!D zo(tYvb-cT_zdp&-uACkW$8CJITbxO~VrA9DK09or1_&&j_Br|Yk2VWIht(@strD#j#bQ%z}~WNbB|dou*YOu zY(#K$n$1k-%XUfo)BX-gEogI`Ls~B`aexDyO52YSGc=8|F%cJo$Ds*|Z*Vo~GO9Gk zQ_LBJ>CzY*)8+$rU|$_XR@!#VJ1&uY*`J<1?YB?;E^PURREhIN=35@&)*4~WeQugW zxEO8bzSy2ON3HUy87R?gjX98Tr=gpyRFQw{Dh^gSpO*4mLh+w3Eb^4T-l56kpeJY4o!_^yY| z^!}aFcBLDg^VApAJoLPqvt&z1aNAmM_*_5xUw()cU$SxpQ|urBveIHdMJZ za^-{KYg*j%9Slc};`l9DNy~KknaeY7mlc%RGdIuqW9pBs*{4@hY4lU;s@^5i(y+~) zFoIy#^b5`W7Vo|-iq7V=*sjTRTW`fJcDClycMTh>bhk{IPbub0p80N;bAS!mha@vie}f zc1yW!jjw~Ww4GO5*8c!}w*^1a`E4>Jop&_b|NH)f(4aI%P&4-4dxyqeL84~0_KZzy zm6RfiioHk8*n5>$6}4Jh?bfD7&6ZZ*zkI&GbCR6=m7J5j&V9e0_kCTDE6`3PJNFsS zPU7ajj9-j}#K#TXfvdBZG~VxKHj6@^+DUeQJxX4@y*GJbZ4k&r2(wxa^g6A@FEaE6$GeBEKp82E_8Q+mkjL>!)Q+P!nk5h zQ-iMd{+NOdef}bfJKD&a|2;bKr_>^(v~kfOaSB{~gQiC+jPc z#dY;Elf6gBO94sU^ZKeWx(Lt=5_yI|MbTTtRDdpx zoIx{kdT529Am`UIa%?eH0L!)Xc=moi$};Had((yLRHa&qS*6pC(r*=-4dPwdiBrkV z7jbTwz0f$_?!!X0+>?9qxAKv*ik(4{#s(Yhx4wUG8*a#Z+gFjJ1(miQJWQF>1U#rr z^auIToI~O7FLn$X?Z&E`59K2TmYx1^s6NymtZGkV*y?x}u5>Zs8tKkEeYx6UPG);O zy{%e$$}|{#c3U&OANhCyr@DOD^MyuS6o0KbQsj?r`B!!GY%&5?B1Vi(v)Yk6Q)zq> z=on6MSa*;)b1_gy;PkpCEex01zUdWo`Q%qn?qT@)JMl@SAJf2DwU6Z>-8-L5)!OB= z!ivROJD=M}L#>3fY%d1uwV+Gg^QkU#2lFKQGb8u;?`EIPJwI8td-l#Nr|l7ZQ|?G1A_xB zA0L`8gnF%ex%8|5a9H-bIV#+bb4)}fqqpO;6V~YlKHbvc-EV@s-k6lsW-iX6rV}3x zJQejF)frf7%3}=@70vPcBBuMRu4o|8C*jh7Mvdy6u3g?Fbz|<|Yo8-%HzBc5r`jEN zTrNB0)HUw9?O0*px%5+lCR+EpK@KhHGN_mfudA5d$~)}IL@!Iy zT^TB|SKIVdw<#rwW#k4qql69cJ7#@Oi&90;Xzva?kvVaOgfo`x-#+B4{~RWg=ly+x z{`_RKf7;`QArk$2g>+i|gLsNiAkg87WW^kqVt=Pqo1%$dAARd<@~@%4;ez#2Dz zY3_W+qb;Y|&TDbR37tE%c4O{Z=()1(5&GP4+HtpMy^zK#_x5?o60d>OcC$_4J^}j_ zIQ(cA_GpuU@TJjxYM3>+VEEC0K1AmZZH+}mI{LZR#>VEFf7tdUvE=e-w!ME-K*$Ltv>~L^*^IlS*0qa@!A4Jn>DI;{B{tRr zQTAk9Sc`F*2zh?=u)rP-=Au(1&nrGF_P{zZz(c%m{iUmG$LDVz%!&NR5%Rj3-%hwy z?JVOv+hS|o_fNILo1J#Xyi*6fdZ_p^{q~x7i{2TCo;~!sRptl=U|30VzuzHw3SH5# z#VZNqB-HxEQEE-PT~r!Lu}L{rI=clfxQJwkZ)JWq@u+0Po|V^^)r71k)9zZbq-=sjeaLo+ z_zz$J%Yro3+je+}QUuzEQT5k9;qrwDCE^y}V^LQ|&dlzN*G$S4Viv~79#l-X>ZkIi2IQZGi)0Qk8fNeMZuEuNxd_W0wzIyq*q+_~ z`_P1guw)3N>Zm?W(%0Tvm3oC0dgwA0X!+YI<%B;ne?y@tjVSaiN80(|89%$?cE8u3 zg{yyc@4RmLFI4ZC3>Obig!JMTx$e7cVrM~qeUu1Z(|hVEW{r&_LzkUq+K7!dN^-t!6e*$<&pDjp-^eGA zzr)UoLPEjZBQ$yQCAJ}@Jg58Z6femS1@PnPK(km1by7W=*sHcr2?{I$NE%bOIM#?> zj|5(Ds%{2?Bfa=j-apk(yx=zxpX6M}R*y9_7^t+k@VX$F08R%8UtX%Z>KD099Ox5u z9)mq|5WtW4$C_}Z3q5%)AP~a`l4H}SC-90{X%io~X#pQ$q16xKG|7mt2~uw>D7gGj zEo#h1%gx@5@d`BwJ3<}GQN~UPaS>j9#w_#}0lW19SsLF>0U8;xe!+#jueMe7B&!;+ z!j(anYW)JbQLcX%L$EbrV<+_!M$i{kl(fZTlp7iM$E~AZ&5%{n3tO9Msf~;xQ9$}SdME_^t@+i;TvcigE9AbKt$qfRq4V0dhRFLW z#p&@dgr%1++}sAJ89>fUl$J}vMZ$%7-v!}q5{O|&k!eP^H6o}%{9J89QuKsJHOjdQ z$Z&;6I;)6cV|AOM7%pn=Xsf3=WpVaKCis%g$CdHX94J8$nYJ2E-;`xwjz zDTy@2SsB}0+2G`CR2Ou}&&;RV2Im7;lxm*Ur9`e9hB@{ex$pP23Po7g&hd6t_ zyKBPVo$yYa@yWC`5xtMQqk}DynO^MAT>8^Rzz+Vtd3))9(d5ndY13!n;z~6n*fZ_I zP6XA+bbor=C>t2w-VNo&5es6dGf zpp1+c;l|m_;U;8KtM3QI0ezvLi;^904McMazv3^}-rTS6mK>jGpYh4;VO{DKds$&# zZj2iypi!^h!;&+zTYrfwS6|!c;GWfW47_U}$-e1O{vn&g9lkJnR&cq;mu07AC-0@; zE}P-SRZ(dEM9-82%=d|rgd^jy_iYv}zx~WV_1gmV`+u$oE7!`R4kvlZMEQgD{;#*} zvzOKd<$uI&9LqgJr6(W(wgHSvmOoV#-Yclq0hO_TE?!-2_K3%_{;sdE;ZnD8o*#DR zQ@E!xu1nu@sC_ zy$OeDpxIcv!*{3Qjia9Cro&{8hx2x&1JcPO-3LB5zBeJ=1rRDxQfWbVUUI4XXN?Xf z`wAPo?7WdF&Z%Bz9BCf1@;iM#eV&0Gr!*hy`ot(be#lZixKdlIye+Toe44#}DEJX} zF2r|_5|+%AF?*@j6sPAZdw%2EtnAvg*R3*MCCCc`!e{)qqr@`&F+yrG}eygJN+z9 z@YQ-n`l5E&_{btqT4j}vT3%$?iICN1xRiKiUg$YSkNx?wfYKxpa~+B-aCq=G$9ooE zJ}$KjAQ@vKdzx{U-7KC|c+o?N{t}sc5*jYdx0)}koPUKe1SFi;y9J$X>d&`6YfCA0 zc1p7txTE)(D20a z$n;4+zW05_IAAA9Lm0;@7F3R9+N;SdLf#FOJ#+rGbI@9;S3T=qDHWLD?_%h+=%m;o z^Wk(zI49Wh=gwa4Ae$N+yY8$_@*kJQyi&PeeI{ko%}1LwPGNM$;i< z;nVpSLK_8(Cq)9`8f4FWhP!~7AO5{Uh-9t22#yDFk`+UU3APdq+Sm*s(<3YFDYdd5 zT3}L4l7LK0Pt_O_LYB0BEOZmW;h+jt0<~vpGm8rSn9%@;TgH7XqH5gx zH!lTVjj5`QK(kFikZYFNrdybV>+3ya4*Lz=BsQp3Mo5l7NY~*j_@x0ErIzTT z@sflSKy2OCDhj<(X$_pv37=$UTMY{;SknC_EAw0>*W4j@=dRS5j z{kbBEdoNJsW1S!rY&az6)L{^D7|gw)r1|~Fg@uPN!EUjj^XA?7no64URG>^6{p#+hm3PvVJ*hjW8^{#%M9Q1IS6T+Ve);)( z1SvMR-A7_@ULyh4lpajnBD5Rq?1%T$?IVR57U{e_{%p^#qb-|7a}qWO`g+rER^IFV z82;M0D}Bb(95^zLwo2pNQGmIOMN4cj+P|o97%U91I-Zzn=MKJE7`<7|MYoF<-plE1 zA6i>U7cW^5D4*92`X~1>F7mZJIMiBW-_|Gu-oa6p9r z#ql$~m)NUWJF)XeRT&PHsyKaMeTVP5q@Jx_c-N(&=KG@D<``R3;PQ`}xV-W`X(M!V z+SV0?y#|k=DD%!nU47bh^>$bKxbK}i&qT!}IY!AND{FRtxu?(vk5A0(B)#qob$M}j zeoQ!Irfp9-%-j363%(>ui?w5Y>FfAduTyK7Hq=&c-`<;1qj|hg&a+a^XE1p0HZSBs zPGqTzqW3TFfJ*WJXEnq51f0v=2G3##WrrTIl9|(kQ)A^{!9%|bzh-@5*K78?Cpmjd zHKT@ix_wuJ+{5iEbY1ul@R<`k*jfp0_Wv^|nd}a?Uu|s~^Wh6qc6o+AKS>C`RH9<2 zL>olxGMJR4Re)uUzSx-ZpBq%3Rd0S4bF@A2xLL&?TnB4qpZ=ShQAagiZ|vQw)6Xw^ zs+o8a#@DJ{t>0X{SM7h4#TOONzI+=0fvWI5`}$e5L1^DQgIjH}Fm*`buZs1Av$^oD zlG&q{m7b{^{>f{Wu<2e;f1}w;D)$x{RkQT5j55VE=5qnb@-I0zbSyI6VAUTfdG*_K z9-;-TTBqJ^J#mE8h11I}X6ooTqw*dG@1~%cf#)->C0FjZOmhcCSvD);IofyGOmswB z*B;+V%zZ>K3~#U29pr3guK1<&{dnV=J0EyUS^2ooE!q9-;rvlRgw)rDshqMN{j>}J z=(E4v5`H}rzNf>LGNBgU*I_(5Dz5K_|JsL)jCChZ69mO0&1=S=)v_$gFCx)7T{5fs zDP{#$6_efW&cHK*X2{cDtKqu%&OXU}C!0mkKj8N{nc6j!+WzX=y`pWAYYdGxA(}j#mCC2RM26c8PQtSCDzW zazPrNs_rOsc6NOxY^*Yt_xtR3x}`kOr|6_6mbw&q4&_~?ugz<=rXw8om0$m)@hN`9 z8RYx%to8D?f7Id*XmGL(TbKr>v6rLL3LsU{q*Djh#W=JDne!OZU7Xia+o_IAFU1TW z2eF{l$HVcXly3-0TsRa3KNfEad(E{C-x1&)v}Ecbb$Vi z8Vev3;5j0rQ$o12boTkT${Ss_NJOL~S{FvPiUm*Un!EKPGrCvz^np(uirWA$v>j^T zep(bSqbR8EEj9Q5Z`b!f<0B5ZygnT-da@7m(?IuY!8Iqjz%-gKSCFq)`=RL=(XUZS zJsChv%D**S6vYfzfn1zB+tx3|g}9Rxh9tIpEwqhdyeCLlMJGsOp>E?!sx?MT@)sMJ zrLgqWH~OE-A6v=?AOWQU%0Kl5cRE7T=~-X!E0>${3?i^NX+O3iQZjRiee3AqV8W2H zn{3rXICBNUBAwJ(HOiLIAw#sedL(&hBP079Jv4g|g+yxzeFB4MG(E_;hO8?*Dc|{-%YWYiH3Y-s-C5YuqNEe#S2We1T3w{wgD@48_`K=Aid))aw zl0RXH{qlUcV%T{msQsf|@HJt@CL9nxZszJFWgiUQWdEt!>xqyQ;~DexIa!Rt8oqq!@(C{x zAJ6Mv2GIj?4sAb4hm>>0@S;G(n0xFQnn)3?ZiLgJe)B7Ka@C074SX?6h6c+<^w6FI z))Y=)rh$NFyvQ6bO)eekFBpoHm|*C~ziJ>FkY={{@8T6(8aSewixx^sUw~=EW#jqe zp;z1Aix_Z&gIfIeXii}7I~*`Wa)$_Wzhk6LI?k;5CB$6I24zO@;G#4E0x}9Bjrvuv zQX1rnnW?cEaA~2G()t1*U)=E+J8tu}inKSL$j5R@A4Si|LWc_S6|<;~VkDLo45+ZC0;} zMUVd=h}XWfk)~v50B;Xs{5tdn^TJH&SG*_m$ghrdL4-L6Rc{qdM;rYRMOhYYX{;s& zaHebae^)RJsB4h)kD&BZ2(YI0JBDfBsX0WtTA>WIOfF@UMR8(|mR!Gj(wLt>1{Q+u zhT15e6v^NBms#>Ww;S`>OA(CI53exBoyx)cb8Y9peP51d)gk>gb09L|WbZV;7=Gs1 zJyx+?ns#@AGe&vGf|AgY*1vl5~oUpo7N92*ZWmEr~Fg$Pyo z>yC_ox*kyL3+IUw%~ov@Zl_<$wF^Lc_lT)_5OY^9A+aeZ0ag1wH;1z`!vbUvzKCZE;#SRQrFy`p6u?uj;s*1h{9_DIukDOK&I zIft0x&KRxb@H;+>?ZhtJ(+1_bu@o!D?SyxQpOVt_&0Ny4%Jmryb*EU-_~bRUhxW6o zCQEtJR<)A{f|vRuIQSdHq6oqJG~?WKy{&Z=4tvU`Dm)+fC`rNVRi?d4$KW&9AlJmK zER!^IFC&rUiOVvtH#zk;z3nnt=0-QnH>+~J7<57Pbb@$gzC;+2m}ich4I$$3C+oCC z3}cv!aAk8nwOCHXCHA8o%SOnp@_K+LI!QWk&ucz#UwX^DJ8TZ%q-HS#+H4ngrlI`8K@qGQVqk|x_JbtiVVqSJ1pBcK`<7>it& zzZS)r#wwZL2|F~TN*yeVC9}jzl#A7*%L9^^&~HgwmBk8)2G$8tl;H?Mpx4l))kIBO z{09UG2==p}QQJl)KnE@Fh{b>{Vmjeml3}WyTrGswivX1nm?+q4K^5=0L2!I*_oUv( zp?M6r=KIX=;xB@HTg-Cy5-;H9(HL?8T{t0bNJ)jpl(;pP#7#)`J;MXi@AhQPpW-yJ zr8~EyB+@=`g;@F}%^FG`Zj^8;07LP!3hyOprpELT)w#uG=|#*4w~VZVjwHRHL!j#5lzA`0iC=#M%K zPbf~U47Ga9;<*%-AtZ@rm<=pfbexcg0;iVjs44RfSnEE9b5N)<$2x;X3-3S=&jP|} zl_vE#Q5u{;CV|8(P?>On7)Txr%h%+D3$W_&YA}3-hHzCJ>!vdXLB+ODI_RkyHHo++ zVD%fylj`?$LSt$Ctm(gM09RQ81puU@FCX~-Ne2V0%_ZP^qjgAFfPOU;LPVe~YpX^M zqE0(ds)DHx%&q^nHs3v&llj*kFoL#_pz;0ryWqXJ;5nZ#-w*K-we7aWq5Z{XwZ-rE zG9TSbl1)dy$q)-%Fr0FEn9uQO4b$?ztb&^tmbPm`r4eo>t+*au=vN^tblg0 zyWG4`D&?-RsE|IUo*jSZdj_#6z+^gXKFcS#dASfnkRSumL0 ztF%DQnm*L$ljfQDw3AaSA+?jZbj6X5=?jqUwv#s-naJ`ob8lD6XREUeI+iQ3(bLjX zYp(ZnGMkZ{@!)^kUz;VusQ6h0K+J1;?ep|M0PUXztGNpIKSHq5H`1)5dPz7TVgA-g zuZDY`0Yt1NsjLgkhv(9|4+oStf8)sRT+N0Co=^P;=sd989a&S2o22rYRW&QJ2|kxC zKU+5zi1m75{CHi|b>_=BPwk?^#97Tl}?5qnmMRt-hEz?Sa3ja7S6-f|j(htw< zH{8!vqO>KwN}X3{=T1|`?I24M(-B^m;@$^jX_jF%@HpqHl3CuZ{N*=yzsWfos_U!j zFV~Ja9W8HjJv!o_P3lp0c=t^9__j#QDsV*pSzSK0J@l1y*6XPcKYi_5J-mNj|Gq~y z+l#*Bx1C+&*UPzhM6-cFU11tW@zE9n^;5ei;4mriCHR<7nbY*--7Lq z@o|>GfFTLHHRdy|kZETB5z2#VBrl>#0~lMvC{z{&6XHn)mD32}^(>+~dI@>Oj$bjXU%CD-?ueqwl)&ZRD}}6xVktjzMG+HbW{~eMDH0GM$S2Czz^ItA%;h!< z-PiF~ZQs}VaGljcu1Q_DSm=k<=MK@)0}Y3o3@c$%7AOh|vMPF18+}0nY|a!yatElz zO0S7Bg7cuH=^s2JR7v4Unh>75jL?>+rshfS*xgFk{sXiD5ORYgkrb~sOjGGbi0II> z3=$fQ{Un=cH|a=FEuUY9j1I%&U-;&6-^1TrL<23~qF9yHKr-$>tCc?_XlT&SG0Yrl z_;tYrQVG@wvb##^AYa(I&DZF-Y%O5dlmHJ7UzSd*AEm(a>J56^w6++n6<`@7_vBkC zPj<29+DGcOEz;gk0(7ZBuA(MzDYn8Pp6%SGgqYz9%Jl@D(nj3YGxbm$2tV!61o(FF zkTmLYl0dApKF@b(FHK2BF3#<>_RH-*w=xwfk{lk`>1yhyWi0!##Mff%5tyW%XIe={ z7R0k3ut*aqZ4eMgiuzPlTUK$_R}tRD9!{_w?Wop%ktG}uSh8PzmguCM49`6}Zw|aU zDQ;L{_U844GV5L9cqbAhNXEhj8V>YRT7&|trZiBQ#Z-_3wB|>62S;!%6Opx4DvGKi&4BqE=q3GI9I_W{B)c({5JbzVg2p zk0zavXtn^8;(05S#qKn6TnboC$GXmmd#Src(RTLw<&))Y8P*KZ z=7{*dBFgO{d&0NF0Mis@yjZGd;GcUw-o;G@06fF{qTMIYxG>n~0| zOf)7n*Wi7VHCeR0}!`kz$bpiSna~GkRbNg*Z6MO-Fcg_v6*FRl-+sS8S z_s(-k>m7Xd?v%IAWF|tSK8ttJzUp%t+%DW-an14lzX0dV?4P{hEhgO!GXLm;FL`bs z*evWC+^Z^e!duJJu=e?eRdkhoJFN9|P@tP|G(s^$u@F?J{$T2dY=pLJ zhSmeYnM(C!i&xBdxprA{6*64hA*t6fKJP4hO;_e*mL2fHd3u5sp6=C^%+JhtW%?_; zuC@d6_pb7Rq$^@!XU6?sTmJ(Xs>k0~iWNDi`}}KWtU&ZU=Z}8*l;b1Hm$n_N{Sn;M z)+Z0Y{NoNm?@i0k@ycb?%p=T|jWZ;t-3b_q59dn0VxmvnUNMUsSs0Y=mHlM3PI~cI z>(iSY%T<@=Fy}Gp2RsMn?7yO8oS1m6DB7XGfSM;7=T4Tv) zTJ7{5$M{C`r?R*!BwXG}_y%*a35SL+*wJ|h&pbX?-7Go2RSu<+wyO)W=(B@Tw5XmN zK4RI9Y+Dn*t7Ep|+`iYH_BQmAJ>j5mc4@i6bfvrJ2h)+{*S^aVSGN=U|+etrO7N-(-h)BVdJ@Dnwz&Bts|dWfQzs-=7)oiLl^5OaJ`-do1dRZjz? ziRTQKXvDQnaSQrwwGpwZev-ycl+`&C*`QH{+(g=c7h``D$py<6#1XG1$-{3ZBk`5c^8>wh7O+r@}VF$$$9f@DNW}k*K4^BvpaFleV`YV zHaH5B_ZZO?Y%t;Df7^VE?jX$7*pj*@IX#1+AchW2QUG=;TPR+kiZbjqKPx0Q?)`cg zCU|u*cfN}g0i_hETq!G5mm;emG#?7(4iu_8jH>zwcBtHm^uwe#tXHf=k{nOmtxbC>GAM^vJp zT~-P-Oll`585yN;UW;Ec6mbFYwlvn2Ye%Af%e4lhoD?JMw3^!PGPBywG)MVC^H@2& zFS8`esImYg7g!mDU;2H+raKn=;WkbzJ%GOIx1ZvA@>ooM&i^<~DvWJ3c** z@V=ClrSAzbn3UORcB!jV*DVVW>}O{fb90PY-0Bgj_I{iC9^O!IXkpW=Sh2qfDQakD z)t%e<8xrdL<5Ax6k#>Y!4Zg>)bn5EusLP!9ZLgSZHL4|NS5B{?(3x!8Yryws|9a-m z;3~h>mup*jrTxgCD(Ji)^VH2>j zv$@~xc~lF(d3u_#*nj$qql`K7NIB9OLd70kHWJ~saB#6N<-TL+#oLa|F>N5x!pQ#wFAN$yD(`=}|H5QiN z_pG$NX7pXG>axaznuDI;`o|ga=Cr$$Sxk4vU$b(EJQtjZeDZg?FVwSr{N9Z5OO*wg zXI~o54){Wi>Jw<<>5sDk31`dZB0Zg;hRiqLQm+T53*_gRH}TRAC}vj)U8O`DB_!@! zc)!5E7S=u$i4?Q%-xGJuxoDKSWx5%0$ zH~lqz{x?qNKfv!U^`qT}!j_E`u6IV$*$CZtw{$)nJ9gpKC2#n<1Oo3N1P+9E+O^os`OGE?|Kxs=(26M}QMM+Rzx&YS%?N`N z_E_f!p@k98fZ-a9L+bt);F$q}Qq_Az?~l6Ca&v|3CA#3UO~gGRb4YSLD=+i8*x z(yX_={VmJ14v&{|lH3l7i9!n0ujQ_9{a5REx(K_Uc)mY95DIzi6$lt*Mwnx222;Em z#iwCPgi46D^$0T@8v6STYgpW;Ql3UUgZWA^oRGqb1uNLL#uU>dqEO^uEO|#0LY_YT z9zp}ji#qx-phm^(cVKFgRM!uuAd~1Y1GhV1o2$TJm_Ut(AV&@W>k;KpTvZhdc|Zz- zR&2zhVd)x_mR#9G>kg%a*rW;$Ac82W0|EH2?Wn&o~MlVT{n{4c9H3B8Nw4m|^wAho{>Rw#bF zLWo*O2bFTykuq)XYlwKEQpa#(rKMd|6iH0trsN;aqG`|Iu_b zsQUNL`=GA&W@q%%Qui}l_#3hM)Z@2?>Fg)uKYPpCzGAw%h54RUES681s0X$LzTHGL zOc894=%y+}blVaEdD$7J`bFG3{2D!?Y&OTQ{gd72Nw8}X$pdGM-Do>s3ys>ZwVsyl zd3*Dz0w2_ZY{6-bM}|pFJ$|OTNGa^w*PX)gI!|WndD*%b53~m2c&EY_ovdb#;}ye zz>3dU(S2w=URF20?Ag--HmDK~jQ7)61r2OTjYLjquO-!`?Lh3Tel|talEX4aOV5fz zP8Wm!+4XEZ{rP7~FK%W%Zzug#>oNgJ*|FadGtXgTR4W@QleOhlZMJKi!DS$kIkf%4 z(a&#RKI6wfn=gtIhBKL52k>AW(8<~7Uq-V{XWQ#m6^lnjmDE%|36HRBVaz$SLOe#5 zMWQWE#_m~i=I;Y+he3+vvux{iF& z5-Rf1es>xmLp??+cRr{OoYXF8<55#2{{dM4a;E>>f>uU{_%wV?KMqYP{g-`g*IS8Z zrds1gO&?68i8hDtns}DKoba0ODg$uw-IYAFeWkD?Y}aNPr#~A(ba}@U&3_O^f^w_m z{a_lt&KKUUFg%tGlGqca>AW5DwfEn% z?Zk06HfWENOJNh6UamEkf#8{gTxItO5xijFiFCzQaIjJCc_7u~QzLE4hHgHZ!!ye( zv(fZ#(rroZ+u%ux-4Ab-r#W=x3+LC~Je;#KUXtbtY<4#OeE4NlCr&^(wsL0O`LbX{ zXX-L?#O(>nH8MIcepF^J*GH~uLT)Dw>COcU{% z=O&u_@3@Qh)lJG;##VHud{9qkrT^89T(jv+J1+VE64(33-r=m}s9kMtqNB$&kv)8W z2K3M1@f6+kc5Q?>&zIh2<~M5>5$ti=)77orWcLHpaUZ*k`1lSDQW)u;sVqdKuv&T9 zu#{9KC0j4?u4ESLsh~jL(dl4(3~>n;-Na~(6p9i9#K*$la1we3Gz~%@e}sI{fTF7F z-U5Gg}6YX&g^_WpPUL6F}; zq4Y4g<{LecUX=gWDe4#&vRE1zkcfzIw1dH*;Sl6|e^VeaF%b!X@O${dn%js+!C<$x zE+GK`G0>Wx0wDD28@aXHdr-`8t`CpXO@YObcmRra&*caS2dW+<*Yw@WEVHa2B3FWJ zj0^eYbj$M>VYdV=`_COU9;coT$mL+}VbFHPYDX5d-=`9*UYlVXPgt_Y zd$&OFY`d#Ik$KU7g^i(qB5BoN`0vPkfW6cHnbp|D&(#l+`HqL-4U0|7fj36tk8*F8 za`h8L9GONksPaiTq->ZcN4&@K?)r2Eb+a+3m4v7)M>NsU$OmW%)6g_4hPC&o$|Fad zQ=PP0lXulRbf!FtM8>leYttu3Xv-(4oZ6GA?kjAVK-OKZeW>-Y6H_$w@kvu`%PRjK zE^wHSIr%Qj=43Cco0#j#Tm-gym6v-ii`IvKa8Xv|{kcK%Ol+ny@P|yhQKsRzAweZv zHM^R7?Aar5SHdnaIc}r1b`>N{%u4!KbN23MVNH8XqXblY`y!f}1oGrbUI~F+*N=3S z0JM?tmOm(NBjIYLYqTIk56KOBKys{UALF5C41=f`2ui2~TuV;4*PYZMh0~i6JnTfo zzDPI(^kMZA4W>BiP=nV@4@|(&fuJ~T5VW_q;2=u1eUMn3CZ!F)x)%8rdRL+F0{%YW zT@wW1rAQg^Nt*NRD#0X#I;t5^6LqEoRng@; zdit6Il31U*X|M+mv8HLTdJB1sUdYof+g3ne9`MeiddO6x|Y$q8)KVw52udj@@} zr87Xl)P7uA1+lx?)B*GjV=U}IT!s8ufhSbTd|S>9P&={Mp(-v-di4$BUi1IUUUmp?%bopIVccpgz$oCCgv zkKj}DpS`=vG=N(n=ZS?I%G;E9kO@1m`dC}K=vgD_o+BaJKHu6XCWiJzVIzYcKuC$0 z(1!uSyt$5$=`PAep72YE8(T+%;^nCU;Vi14xM=NdfjkhBF%s^uoE%gEL4tQd$nREZB-b5eY&Sw}so}R{d76Vvp+5 z>g;ME<7;eV6ttf4s;YvXew#Dfs2AHR4mgto83~4r{;n(%KJTxcA0mGO_uDbha@a}ruW|&^KA}Uq zk@$E3iXGHu8Lz|W$pO(qf}H};b0p85Hqxdz+T!i8EPtx(v2GfVX@(PRlccWF>P~1@ z_|OWN%fz3Q#ip8QxSH(6_Mt{W-C9&z&m>4Nd%1)p1V~$KC)YOmg8EC`x2pEX7+Y}- zv3|}cLRC!o`-31}0LBhGOF{8LGFa}%_}P8L(t5*ExZ7C5WZBWv&`ZLP38VS%pjzdsh9&yYa? zVr)NtkeNw~Plcx|)M@hIs|Yc)5OSChT|<{8*zd<*HKCXvo9O2rKAS#fYlU3(s-7&9y!&lr-3G7hg^IIS{sU} zMHB}?0%Go)S?F_uwGePEl5g0D0?|Z(D)2oTQb=O%3w}9)SA6>4u|5`xx^O*)6QuBO zzd!$GiQcu5LTj0evtwcOgb61(mmU$q7D+!pj3Fd=!Tl`N>n zgY`NbX74ZwQ%wB+0|EOX^#%!>#X@|u|17xz1kU=nmDdA8-Km9g+9b>}SGXYH9~`cP zev&uQ`;Kr;rID7sG~Q~XBFNLKw8Jf86gDSog}GX#g*9#4C_%v#A6l&83N;{NN z{c4Ew{XsW9Rct(L9%DsZs%K4W3i|HpheG&uacY+S|Lg3*Isp4VI|CuxbfD2=L(N#+ zSPXWQG|kxK-Ah*NT*3ZUzDYZ1e|rK7+g}&+)L;x>BtP^Vu?s;B%RkQbNopw6Kbw$$ z>+dWeKi2s#VW9E0X2>d+KXRCotef9?nRiIkH`ojm4BqJb{Gp+z{IKph;zdkKCGPq3 zm!F_O`5o1<-C!HiMDzz z4GWOKO4Tm_q0X@wJRyRUCQqQ-NbYhSgDRNKP)4Ni3`i-A0$fakXQgrTVkD#i8v6dw zC4>!XZS(495LKJuMHSI-Vqy`);6bmYT z3}vNpYA(H-0CUnnbfE+Uq5)ADGEI>;{5;w|nNNY%%>i8L0u$5Ep#5j@yrwysn(=U& zpB5$Y#Z|V&*+KwlIn0qd41>TexeomjhQdGLNTG_> zfjUGpp%!Y~^MVrGjnODW68chPyq+aFj2E~qcVPX1YWVBxCXp5Kc19r-khUtrjnpmX z6pU~3B?K)J+uj9jVrD@KH5we)Ss`17mtr)1^Sy3{3{{*1MdH!c(fR%1-q=}Teo^qm z*E-D>U+WkRvdi)Z(eH8_rF;iH$ect$awpbEWy(NN%@!2+d+6i~2r@IhfFM?xuEG%7 z6e+AqAAqOBltQC?k*+`l2IWL3gFx12m4iSq&=A5Raj!|E7{p9OW@62h0qlehPHcP8 zu-fUT9bAm!O-{DPGnFWFVgIkCYY%6#|NqR!j2La^&|#C+Y|e)W_1$I@Lv3u!DIw$# zIdwohv&g9s=3KUgXNHnP4wXV8hoU5Bl2Zp1it2g#{_eil@4D{4c3s(BT3m0;O0`-P>XN7^a`T;@2^i8POt1KZDqWvFkByB`k@!OA1(_% z)FjoZ+-P<@`Pi1mskoW^GKbHthj%J(VxL71a=&-|)JpiNS2VLc5E(DGnNe!m9=uuY z?CujQ_-4c#sPfAdO1$pEmn~+8gyKZKEPVDW(U#T1r4zfWo49c4v+@XehqQ#HWji<3 z^UJsv6+QybUriL=3QfX^Pv52FL?+VF+yC~`t)7#w?jBH1*W*x+7ch<%4yMF=QxCS{ zuAT%tDN@w3Di>)yuyD8@$5VS#$+!tCh+qZnn#YrtnP;F^EbzA@8u2AtxGNS?7D%hN z0%yI&8n)<#khyUbq1FuI%GttdT$`oZDgGaPj%DpDMDCExKi3}Gs{1T z@a*Geo!P_klb_i_m@$wERv+1{OW9}i{rM*Va`=iV>G|(ecWhG^Txtj2uJ++jkEXzQ(lil{34CQ|1$IfFuf_ z{JDoupW!*G=%Gv!|5E4FDBtSYMEwdeI-fwwsX+HHxX#mVYFWeZFYtWEZe~qe zT|8xSpP>7_&HJ`N%bkFzkNNfHy4Xxn!J?|Ul#B@%wS3cP;`Z^gClRHu{zV<%sk)Ln zqtX?pDDpsgAAMtdz&@|zM~1vt*9)}dII}QiLh}k&aA!11yOGmlTULU|>ot115uHy1nIxblJ(zW*?A?TSnHz$OLfXK{fI^!nSi@t&~S{IkquCLPV@|2V0`e+Dg7cSy>-l0f}q24CW=j3zh zZ5yKn>mDBde%&`b4{TitaP*%;zL0K7N^Rp%WZ?u?HoR>LieQp7T*T`5ZB7215V$vH z{H?g63#y<*(bQw&u*@$&R$K3rY<(8|Gg~0if$yR#Fu4q}GL^Zb^Zj%~%Edjy%At?* zr^WRK*ZYXXo7};!NnKz^R&YyzxL|%-UFlKk1J{&S7c z{<#KGJnYHyu28TtGC?71yM|(t9KirhQwe;$ zvtnpdV|5}g`gDEf^7){{pQ?J_EPOO2@mdtGQbw*_&s6ieobj9f{Z5}8?jAzwIqRe?L?KMt*J>d#`&V>d26xp5F3gM8j@#))D)q z{(?0YmNrcFz`PTv$vAc|XE6=MQ>u zPd%F))PFq3X?k1^|2@q5LQ-IWgmsC|Ft`Ga<{=_sCF#y#&`R?fO$CDEfpSDU(Guw- zON9WgKvaoIl^Y7JhszlXw(xKkS@53)H`NmMJNg>8*4Vs88#wS>-SbVPX31;OO|{~w zS;|HH8kzO~bcc;B&J)nXKe^c)OVoWHB&~lbltAn7owhR9CBAPBZuV$|SNEk2<{X4Q zv6^k5Z*UtJTF+o&n%Fiq9;GYauaby{oAS~5-k+gpJ}sd)1@J}ysJb9Y&;_XZ3lxvc zAWJf#5OB*N>{?04v>44pQz`eEX7SpH5| zPujEX=-iLN>E+*>K6?i5v3=0{toQ`#^Mko>EkE~$S)aPd=GFY3NsP`*Zqk#X!{e z_`bV0|8goO=^w8w`7oSadW-&7YQF)%5qbyEvhojaz5lWp_x8XMy;%Pd{d~QE0gabS zdy$<>tyB3Hzar;5t(sPnBgfsLSj(o*0Y|={1;fB`}Grtu!sAr#P5FY34b?j@1 z@GCgKoOyokq4C@Z-2kU_F6BGlcW|C|1 ziCIqCnqYup(kte{2Q@X(+^eu^WuTd%ES*-8$HnmBhDj~L@~1)-oIDUuF7X;Jdd2|0@b;&3Txc&QR5?WPr7YqcUo&qzot`)#pWNAYxhpCkT>)0=g3zD8hI%$4m z+?Z<^Od!gWaS@eZVUo92#$F^5GBPK|&YZR6B@_bDexxoIbZ4y_CRHv>baA#CimrjW z1@6>|dkpbbYu@wevI?IhXMI3wyb-hu^QJvW#g$inHMA>8Hr&4-wBBHTH#T*V%~gIM z{U}Jv=qLf=P5{>dXl@Jm}pf{Q_HGv!1gt`HCUQ$fW1j~Fd zJO)Vkq=KJ_%f!lP;NTCujVrR(+cdw~gnq}B$u{|jjInTknludQzXh~6q^UsVb4N$3 zWc6=6G8t=}h^S!Zp2a5SaDyogy|J?hpL?^cNyR+3%tD&K9mOiE^=ZqN#*5-2w%A_>* zvIj0XYYk;z+8i9DJ-NRpvQYNAp|tY2>~5u2LR}Z)zUIY8OZGL*A$2SHPeV8QG6gGB z_O7Mbg@wKi9U<0tPRCxl#i`lqy5}0#81wm(Zp}th{k66ibA!0ei?5xW^N*Y!-D?qi zFC5z`FRiM7^9;7QZKJBQ@-g6;R514PxR&$ggIlRacWyff1+R%w&z-Ob#rHal$}Q0; zzdc^gUo&ry*o?#fYhzb9=6A7q^rz!k{ZzbTUgYt-3qNlbrCmLVM2KCfFMI{^t5?q` z`*?UuMjLv*SHN}unM{0G86E2TSl9KW3xioB4ajwxZ-(e_5zczP@i>Xabth}cLnQ}z zLV;#3SufWQ|&Gk^Iu0`*Ip1v_?@-P zM3h3KcZF|~ptxj5D}Y3}LXX)aa&#jt_m%*X`K>pC;z?u*`xqh2-b~{ScUSaF3Ehrn zRDWgnf{M&}Hs(f%NBN$^9EKB@cCzFBcyipsB6 zB`~qc3A4B~&I!)4z7{fk#VE~IRmp(VbJ}YdV{4`8{-$CiXyYSZ+tt>;bw9J#OYund zUuLu~tz%!$6&9rXJsl2wuN7b4ymGw@;NYKa6NjDl9f(xZ@!ZNDdE7B=_9)C~uDC*b zbR%Z9G+!^+XY|)S&z_mRr>jGEf2a(4VdVR)D9y|+Wc9C&mwT#FGkb7Ny{ip}343-t zM*iE@4GS^#;1030U-`HFlhOQyLrQpPV|Ah%`>=lJE|0S#6Cp$Ab6oN(mo+KZACuSQ zD}9Qbr$d7&E^;Mt3*qbRbESlVPtkXWPigo^R~)%N?x%I#DK5m3`k%tTnRYx)+me|T zBa71|UtV82cfI9!!0e;HtOut;Eg#yBMUF(>#BLkBTG=rDd3*HNaKq+s9rpF>-m{g; zPqBSo5|c*`!35M2fcxbS_nk!vMi%tNgks033qWD&XvJJ!vAOGt16Ttr>7*f~K;{ zZ8pgfcHlIsi`@aBefY%jvAEp@zFh2HB$P)gi-J=Bf{0vvDT<~d_^em8eDACBK>F91 z+G`m==e=6KbX&KhdwyXzhD9Nh{O43=edij%1{Vmv z_X@dX=4*hSxdy+`3UR^KUXZ0I5a`Ai2=rRsA6$NAVnmebBMFe#fssxUEY*hmXN-qX zbMOu8LUu>)OR7OK3Z>1)hbVSdg9j%bqPalf2JWBDRqxAxDm10S6yZ~wI)6`EBps5` zFZpog_Q1bh$<7|As~;Kfg7h+WHjbR>Gp`#lv!5FZR8I)`NO~JlaViTLZ)tJbROq- zXZ*T56ZhKKv-eA~@5zlK^~9VT-b!TK+eTY@gg-N>cQapYcXVj+5%T-!_vf;*%ZMDR zLAsnj-o*D5QtAUSj811DsJ#NY;T`Y{Ttz?28DEy2zz6$qoA=oPDqFO-1j9E~lA_Zw z$W%)pT~@M#XF=7a!(i3rejq-HgtS7CBt!~Oup&^STA+j^CW1`FL9A!f0GBO5O{GLa zWZ<%Gfz0jZeZFOAq7Wv$imO%7*1F-Omd)A`V3H>w=+sBlPGSQc&nK%s*NK6>oB*39PY3VmSz2wt(4RDrdb&n7d#(yODL{&<9b9_ ztajboSh4^PiMnp;jessAZ5X^nIbTD8Vi`G;Ds#y6RHn~*!yU_)qt#kQ*nootNoBzs8~5*~CGK?BeO!~Rzo9;@`I7YRrMXeZcI<30nZ4}PbVNdSQ_-D&$^nB}{n>h^2gYM5fRtWZmc8f1X z#Y^nrg`LyVY>A$Q(;7c@Uz{`Jty#o#r%ZFNZ#-Iw8V@!YQ*m$EG+f#KO}I6`-zsDP z(V>-dkD7?4-JWc|3)?=(<7%Ube4mle41{^auN&Tu-7}MEb&1(VN)DQxc0O3D5rWPS zxN45euICDXc0W{DAmJr0B%*EArE65|)Fd<$i6HG3SsI6kgy1WIs`lz79&j%gzACGKD|WG1$2ObR^3r3fh=1}6X=fOtzCVNomrBZg7Y zmDJU32t`+tp^sr*^-YheAr3s%C0^kU!;{?Xza}*kpk1RiDect^yIi{5s6+DZRT1zNc?e~0>WRs@;;G;`z24=gWyG0|L#gQjn z#!jVn4+mEFot?Pw;qN!5agWUG%U{p8WRs$vC!73OJ5=Ft@x$TicbwS=JB}3fA6%bM ze3a)N(r{lJKEF3@UJQ^y(tM_e$uV4&+_db>^F1e$Z)dXW#w2dr_@xN<=Ak(~2$rc3 zNA9DU8jzCI1V2J)9D_<$z%x;upBQW7#B<{e(+Z%t^enhG`HJ=*!#tH_2%D2AAc6n? zvc|A*nsh%h7lx3)(|ho;z2&eyOaYlo7qqhkB#K~xhQMKAP>i*1i&Ih-@H1!{Ld_`& zDaUg|AcXX~a+rK2IT4VWZQ}F>w72 zHB#DXkX*5vQj-(3m*tj%1!>|tIOvr8gTEhKW+i}aMt~V4Uksr%6Xc*e0RD0Z_M4DC zdZioFiU55+@P5rL6;5GaJr?rM7q?UQ!W{>we9CyOhB3Tb>MNJS!;jTB#JRX@QNk{jd767~MQy#<78`ofr z<0l)T&{ra0!9uY%=uatuG`Y5bZIoMz+@)VEoOdmpZe1LYPwi#kU8($ZMt(V2h;kPM z*ufYy7y=HwYrx`fy2dHBr^cx~d%n_nN86OPQ`usdttQ=totq9*j8bdSS9oulUxcb| zh&SIvdp!Vl0+5c*A{A2z|HtD7aiE>7ZiLqnE!vUh=zFx}sSwq671|~#MkYq=V@Q?8 z)#(%0h@KonE+i&JpNbM{oJL5s!U==01Yjy?%iV;0lmuY-r5liCxj{={PAE!>k(pzn z__vFo2fAOSD8%EC%i8yn$>7rn*rsB4=P2jvCcnODH*R0|E6$;2{s}-+9Ls`s*=c!- ztZYM2>vU7*T?$H=K4=JhLE#&SLimB^i?grn(|GsUo%~4ZtIgyqxCK77?LS;?Ptgf6 z-v%|u-CbOV??5kR0$>9v%RCUqR#9s;*aD~k;%ifdK}b1TzRf2%a!YbqanwhGAn+5#y-~*r)>Em<%+EkIM zF1gc4+f0vbNSrIw3)A1fvtU=*|M9Jel@ zPmJRf5ux34e0{EvLH#IeXu|>+PP-;=Ko{r5`vGP1GVxg`y9IQ?S7~k*>4crUvG>1Y F{|CkZ>W=^b literal 0 HcmV?d00001 diff --git a/docs/assets/ssh-tunnel/Setting_up_an_SSH_Tunnel_with_Your_Linode_for_Safe_Browsing_smg.jpg b/docs/assets/ssh-tunnel/Setting_up_an_SSH_Tunnel_with_Your_Linode_for_Safe_Browsing_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2af6395c657d09d59f0e3e023bb9612a6d04634b GIT binary patch literal 83514 zcma&N2UJsA*ESkLLJ7rCm8Jm#(wj->nm`E6AS9uqhbl=RbQBv0LJ^SOlu)F1klqvp zl&bV1grZad6-5!d=a1(-=l$*-Y<6yfNAThX`(a`NKF-(mWHObx&~5R1Es2=si&c%r=Ka<=T3V{C5~{&h{6gHqRQ-Zw|7`*573>j2 z2?(M1`@w#<=;rPp8e%BJqVzvQpatOZ|84kxoh=&e_qhHp9UMaN`X4g>*V4hHD*;~W z1g~KK&>#;lR&m*XE3@YA|K8E>f-GwE&IM6ei{j>s_4f#+dHIEyV-00kU(`G)o_biU zHUfb(Mj0Wrv{5>mnmWds2n1t}4XzSpN zjIp|`T3Xt=Mn=ZQ|JF743l4Gf^YHq&Uka<=f9mS~U+d}_2YI=L_y>{v{eA!C0Bf>; zh<`BIKLBP-M8OpBZXOiB-!Bw@FVKI+i}ebkT=Me71^Lrpf6uTU<$s|-R|A1E)9VALyTT?>^gF?ytQ`hrs5C{YYae%=b+#IZb9xe_JE*@S8 zga-oQh4TJ=L3#O)K#%bA3JD1d3kgX|NJvPY`0vHW$;rvb%XbV4Jti(9AR_+X5C4B3 z{^|h;Z~-rY8razc06+mYb^*4(o&d%H03bUX>tYf5pNk#D(kEaJPA)dU-yioGRe?$~s+?MWR07BN6J5P%)b z0R{nqY+wMJ0FYf;QxJr)0kfLd5_->SzwuP>m=Cs-#; zoRu5|v7HNIbX=*I&U{&R)`xlL%3Zt7@I!-(jF$7uyO-+kI$vme@Oar?;j-BXE>7;I z6n}iS1ch6Epq5T4wJx_UjGm=OEShc6>!K{aPh|H_l;4u@`67*iJYF-R#I0~t*0#kK zXU8(7vzd1&{37DHkI6UsB?$#EKZDYgsqsGHW|~x<-_UPu*%%Cs@Y|!c;j__~b^C^{kO1 zEwPNa4%nB%S?Qk&pjW5WW=_?Mu1y7*lCfBlX3Cu^W(8GmRK#f8(p=7i#8&KWQ_)Kz zB`4ww@ofz=v<7ophYbh8*$`oWGz>Z9x{6)%eo||b9@1bjNokmvv{Kf0U`{F#;=vIS z2E0}G;A6&RSsoT`^XmBuwYOHUQ7Fl($+HD;}5^@(^%QQNFKTX>u)QQyd| z_WD4-cSlHhH%(7l5@I`zAle2yf1sWEAS$+Y_nUHa)Yno%y(z*z3Rfo6lD6c=F;E2e zoDs7bF6wL*8Yv%5;h6xtTlnU}K7c-0i%Uz`Yu5kVG2qs=eyn~w|LF7?6W8}>tYC5s zu!b}>^QR_W;#kTSJ}YG30a&@YQU8p_M`m+Q{_KxmW>=ZN7h1{zUB%DcBsM3PU>$oG1rw#~GjX2QoFtE5JIWzAfA#ypR@jDf~T zK`qQ=fUv)BML60C$egkO6e}wZuNpLdn;LfG5l1Qs@8`;LU52tmoXtpY+|8>(MOL*xk_B*ve?X{O3^!FD}f) zbIqzs7sXuJVvk>aYp!%XF{x}E!Nq^cYI|+(P7LQ;m}}H#@VE{9ehNI9TKvl>PPZCp z9j-WI!I|(lZV%nnvS2vucGSjMK5C8N?OL1FGhd2Z$XpFlf;#q$X4Q)-7__=8gkYM? zlMiZilFd&xhw_W~#c6DKxTvX*g556TwsKv9&GX~E;PFCu?ws07fkqpK$Kxmx{Kb6b z4?t1jv{bF96{maBJjFiB48}cGEWzbhsyw(5?viswy}-DRp$l%gliZEmPwbsSDEcOw zdWejw6e>g3mO@eyoc-7*;$ctHL^BmKoTpdKMOz3K1Mz}0Q&32o&8tZ!>!Wd()8PJ+{kSaxf?IvA|cVH}SrGz?8 zU1+e51{B8LvgVJ0n(C`dy&ckQv9DeY*?EvrQ-j~g$30%ik&P;QB(Atvu#$QY^}O^d z2X@Gf*R`$lRo5|)M{mhd%|X@eH>u??3>r?g2?w|5QRjnKwi5$PUNOdroW zN`FQ6d|1$xUAuDx9EBua83uzDa|nRq;NsCk77G?m95YHqs3V=+jn#z=N)g5eVC3Uk zEYtQFI}#^_*C`T(aOqK_9b_e)->z0Lhvj?cza{J}zBd=;M7 ztGbnOS+8}?g7yIZX30+t^*t?<=BdlCGCm>alaWziYA@u?4;v1D(zLP2c)P$%7Bw2t zu;H>*x@OHbG;~W;>y>y1d1WR+Cr6BEb+v%3qn&DOUTH`w3oE*y{F=+)B!NSmiwkNg z$EE{kEQW8SdC)>tZp6#d&JOH0%7->OB~a6OO;C|Tq!J*P(XD6jxUXqpxixp_J*nf8 zb?+I+&DmVW1JU4#D1wSr9DX)MaY;~JbU~=5n1c`d9O5XK2;r-~&j5yo6l(2on{j-N zrd2(X|EPfP2=?xKwj?KLwJ(YO;;|uO8OwMVKYc&&O&G7Cm0IA2g+0|igQ~p|5Ss=l z%WvN*xyALB(|jvkDN$`T#I>PK^Q}ygOmF#eH?zpAJo%?FwpxW7t^&6tmjHRQbmHY} zyc7xC6c88RfRa(5RW$E}{BwuEC~OJFNl4QP>O1WA&DwT!7$$fl&ZAW}?W%~xsUk2} zHJ4J0U=La>sftaP-_(f18kkFSD@XE(6%P@y=Q+;Fg z5qZ!jyfrnwx+1k9GG6t$6wsuOAAeYIGnY1-K!HQDrbR)h#SBv|L9CKdD$WKnpmk^5 zl#btjT(F=RlurrOP63c7dD5!JEq!`GV-E(5pT4?Q<2<31pP|n!eDTrMT$@%6FsJ)i zQ{BL?+rW5ieUu!HJ&!ChGUuz2lilr8$W=XJF<^ZZQosi63pyu>i++)Q_QO|;Z>HO4 zrA{x$K`_d6_bP62O)LL&5(pCCOGi%aAWJ)G{Bh3dECP%)uo30 z7EBsIj>(g0{r*?+QhsjUUdH#zAF7f^SSsVd(9huP51$Ons!%sUt{kN-Gy#kigx#LG z!V;-Ua|GH%-_|qtge%K?q|?f{8_?wF`3ZvzOW(kIOVRVPcs^@}M&N`rP_xJ7+KqVm z$Eu-x)?>XnFqkb$+ituUt`x@=k@?$yJTExR@pUz2OHui}s^aNSlA*jJ1`ww7+Vdj`9cC)D>E)7zBkITxx8YEfh_upmX8UuySPhEL%~r3DGLl zT$SBZo^5KhFT}c-J8JxP1d?-ywA*qg!4utUkc!E8Uc)(9SeY<%7vo}YIhTWqe zqt{l0211aAi4W#7T*IhG2v5jBYN{_Vr*+C2s`;~u!*e^Sn_z(8qgn%W`NB8^X84m| zrqgf@&#RsX@$f}N*#zUtr6q|-D`za zmz!c)p2PrYrViGY@UuHUr$bie6-nJ8Tobbtn`#%W@HoVb2?i*ZZd11CtYk^5k6fxSIG?zwM zXlkxY?Sg831*zul)eA(ss!EUo-Wp?Dm`g^VO76qoNGSf493@dfl`wOQgoqSD$kD(n z?zhbg_Hd>L$%fTF1<_?(X>~HRq`EAzFJj-ODYbe76Y_Ji5yjxZpv7MyuLv`fc$Vi% zCE60wU|iA;I)##SRUw~R!wFv3YM)3Z6Nz*!-`I;g9#S}~G#);#4+^a+?>gCvn|bO4 zC?1)!tFy2Zinwh2HPO^G02i%1w_4vaun;{jL0DTav$*uC`jvBbJ8v4V-(^9Cl>@#! zT=$rvA5uC7p{nhTEOp+2>_^i_aC}~6+!pPS_8!b>@E#!ee`Kd@0b*4H8GHoqrlGM8N zbEg8>`uHG)E@a}{0w6ZnwGwWDJ-e=-KJe1Ed9Z(OqQKz`@|Ee6qSHuFZP7j~Y*vrV z;8wGg@iERoaq#)<8C8hR)aEuzxC+wl)lhWXbzQh9#x>`xu3MNR(#1QU%$~gPK(FW4 z;!12z+zZV^A8Pc9IUlCYbHtQrE=jlRY(Mm~ih9$lL(4D1H`LLCm^y-^#- zaKBN;Q_Zr;<-$?4`d_3B57#1;ibQE1*WiVnEJ_8MP617rBb8F?B13X$R+=r`n#`7T z0X8VFvGiB-!y-bmo>@tZQz(~ne17r|^QvEb&%J~6Tc1~58gs(%7yT@C{h>uwow|60 zQKlk$kl6gEkLf#r;n04`LE9JYU(@R;@394nU+glXF2O&MvVK0}tN5631|K~42rB>L zvlv5sN+uAs-MM$J&m=sy>r=~s{K9GDN1A!B1im=n$FJtL566BVV-DKX`T%@PIAKMx zVho33kwB4+NQ(BB#q0LI7YSxV9F~Hw#6O}R195YkvOTq74Ho4I+~UGbX*sF;9wDBd z7oVN5kobTnlvxWqUziaEUdOteSGskqs7}yqQmdYebkl>T0G%^FD{53iQ_z8Bw9jV) z^A!Qhz^N&Nj>7^)ndcJvDtdvu-kY<>OmcQ3@t%wL?~~l^?TSceztD7XCVgWEvq3EkGL+hmK;O)AwQLB?%(^7sc-Y2Y*dChsh=K?RAgXNy) ze;lE{x*M?3+`79TIC@b!R8{0EOqC5POec88anT9DJ|X8yb5-QbJ!()^Qq*j?nLM3B zDFaPT4OyN&8E;ludqZeM#lODNO58K@!L?KepV0sm#;r(aEiFvrO=QocnC`&%*0(=J zuE72RSV}(%eEX)*-09n@d5&_+bgLNcUcJDz{Ey;g+0zLoLeGlA5C@b(yAc&vfXq_oP_-!^n^jGmr_3&j>d8@{UGQW@5*4smiXLQ zt;X}mn^5}&Gl;ph2YGeDE?XU`CiyF(O@>m)Y)`!c%4+-0Zsd?Cj>)avWY@e%;WbWD z$>cpgd(>O|q(SoGa%(?WE^Id=(m?dm=3u+r;{8IGb5}F7pFZ=IEo;9biqXAjuiHOn zXmtj}t1!YH1RjZxqx;nq(fIH$_NBAtp*ocmptP5n07Ji6wk$f~oFTDGn7k zN2!`l(Akq3iO$A%u9jw0?p~Yp!!0^_y0x=7T)Aj{DAQO)a-zry8h|S=y;5w{c`dO(P?sU+@*^|4 zyzuyw8YRJKm>FsreRkZVDME>5O?y3&Q7w)TQgNi#!jnnuePDL5w&= zczh~kZ7=E zM78^agSyvGQ*)Qaw#N;@K>96x$J4$K^S^0$JHceQGpZ>iJtI>kq;;voP)%4z;dG-* zvK2nRV_~XCS2@sW9>f6k-hq{IcYaUT<<~4cGMD~bc8z}YoPL+PYn8#&>34h&{RRCT zO=eXiv*YiU*0$ZVjJnx(@pCY#OMs2k1)N|R0AZq1sUS=lE4WLyC~RoUEv$u#3&YVb z(T}cD8cPKqC-CqbF-TVziP!l~_keuFlLe3SoFe{_z|(shPa}{fqf-Cmo2VKX4ykX% z+3QT4%DLxm$>^V~Tg8gsnh+!CC&| z`uanA@_h+_RLT6A&2D$Qq$Ok zE4o3mw8JernJQq@_>2Z&soIb`#jJ=BJAQRO^=9B8UIE!;8LLO83OPsZsz3+Z73qoT zQSG-qNf^ZRQNG%Pzb&>cAYAY>EmnLj=?>S;L<3)!KO%}xpepW zE9vE*FEmz-*WQ$RsyBpVTuYCZjWH?|G2Df;^yJ9~XcF;mTRb*=uKUqSyaFN;;vgc# zd$RNpo|NbNe6~k%VYHjw?lU~1XBMy2AShi(J71P%GKk~2C4vu)y#wu#1qxS%lSBef zrMxqHXXA4Jvg#8>6EdU}C+&ql*GWp4(}Ole1mhpXG8BXyqQk5ye*k%2ZtPubc}H{z zf;!GAq@f08BB~{mV-1{6iofQIosgdfY}_x`4lbrFHYYF6Ol?%wD$QhUB~RWkKDeke z15>zr6*4=}x3_t=tv*>rX7 z)tY1TZzT{cRjiG6$}eN_Gj}J_9{BxyINV{rIrwtGdt}AOuEC0cjc+=wrg-pUaclwK*j6E2||JKe|m1EY|YW=HAN4`{A(Pjv?vR zAKo2|6D&^D6ByvrRdk7J(u0Tjm%`pph@b`PxH)<-bsW3{5z8c{S5iciKtp`i)PM)# zOVWzIfcX2@`OP1$RCGiyHz_~~cA^j=_X#{AQ+{9#lc;!9D0jA_Qw^%LYd}0=Z zQj4Cx)6RKUPGq!U$4()FwE)5Al?*ClYYsHuE%z`?fHnm>KY|i znX7SF*)RwnD^^L<=h13&jF0Dd`q+PxcoBl~xs?^o-N5>`@7(_jvuK<&};iYUgn8u6>(JNg}U@bu&GeACG0*vU7ttsX6jmj-)WCDn~8 zxWrGgdxWg^n~PCEJaTRhZ3spXmTo+uRq%vq=G9eHs?qCN6(>a4RrC})Tcx0oAyt#4 z+*JlAmv|fQCCx%}%BD&il*p;E`wP^Mq;9wEogctSu_+Mu~NyWh_^f(1+Yt0^9H%<1T`xzfqc z*46sJ!mj2#ts_P3zQ3b>bVbeQu=S0&@T{Z0-D=0VE1Z|d2s;D})GUH!`ToHKcp%c6 zF|agHCb|#S(84RjA((6yR?CXYt8#rUa_|L2_3c7!O?qWKAEkqj_bm9f8Vl?X>wd1Vaq+1%iXz?J%fBL}d2i*F?#o&JM8$gK zSrm80VuDHRCvzk;o4H5ECrK-FM~YK*cv-_&da;6Wgs-uWQJj_3GK|d{~m}h)Ts6JwxcYMq=CBd=kmoPVjb&ej>?-!S+vX? z7yd3XUH0s9AT8gLLy&l1-S4c#U{5xIBP!mJHnjPoz_f&UIHdU_q^2_~rmgcq{W9hA zkkS=CYvr`N1)i5P#7cDTA4nSxhemLoYYE1291CtWAf^Su6kobJ3_njuNJ`Q+LB{xk zb){vpo*CxZD30tH9cCXwt6FNVnNXo&*4OAfGAN?8LfYmd4Y&e9C!H1ICQP*$*t}2| z80CGf>gx+Y780@XJU0;;S-|NPIvG24HP;*V9_DXdG*kY-EAoV8gyP9#y2sXO{%DKOySe87h%WBK z+rW~nZN|&GLK;EC8wR|wZ8fH5y+4Z^JAa?f*=@lY(~2w(bQ&}gW$xyhdC_Bdjsf&1 z$RBZnk^bmA-v*b`wJbG4HOd^{NpA8=cu>hXkKdc3g=n=py{@@tvnn}hV_(k&vW%qe zEtCS-f_*DC>)me?XnEG-<>pz_+d>5^u8yR+h8MYx`BZ}3jzC;SFf&|5x~bTIxl?zH~=_d3>(;ln`{l{yD66QWY8yhwG(?UOQ)kOQZg@B zwexj+LA}_!a&~DcaroJEN9Q1>haY3odDXy$XddTOg(UDnSVoFsJA39R zL^>6gOEK~Z#j9$(w%ImG@1nOc`5a>h6M#(d^i&wvJVCjogPQF zQY|1CXInPz1Z#;=_qm&xoX4uzSJFKypgSq^v6Ja0!+KQu6_=%(_|&gbJ`?<#L8$2q zF}HU2`tgC2ZnN(;(i|oflw|obi{l{X)Ye(yq;&}6gX5e;4q+I>g1o%%!okTRXzk>g ztePT$T`!&YR;c82l?_k!wJ!YyFc&DfiM;wYX6I2-aHEFvl;pnCdrMkQP|$PYaRDFe zAjhWs^X#i$LR90Rrym?AUhJGG_F5j?Eo(Kf2)iIML+t5ezwqRJm_w1CVj13}ZPtv9Ub8z?mj&gVx{gB(v?*8)fPFDtKv7=7w`F?#EK!>b}y@t&nE4T)A>d2 zOi%xh7kt@?`xRctj%I%{uugL=W3xDH5M0N~Pu1s-%V$GqmPmt{bWR-!;fUJ2l-!lP zc?(K9=Y{Iq3hQNknMTv9(-G;UR`UJj zUfz0k-hiVJjp2}D2hPAd3$iXt?8BwGYLW`8WQ7vpmTx2Qyuj*Xt1Rk_nExw>jN;v=U-FK*6A!z5Fk*cUpee7iq8w?Rsfq4Iz zwk+vuDpZ~~9TXI#r|RlMhHkbi%Ymkic;^tdu%DIXvt~PeJrjlrcJ2wn4MLHP)xZgH zOsyghn%IKn4>x^QFVpd>I8~b#>|?aGDU?cA;0Zf`{Noci@R&6K6K;a2- z7QGl7pnx+~2rF#P*G_`lZJ*wd^|u4qE(DkGkAza=6PyDp+q-6t3i{(z=bayI6ovnW+V{jc8{n;o~b zte!4{-163JoLojsRJm_^3;_1HD792mLh1HmdFU%G?~fJN@7}~!NWTW!ipDb*t4*+p zp?Z0`3bls@y|~C>ZirRgKvHFF}FbF&R0KjaMy*acl<5i zJMVZU=cDep^O{#6YND*lR6F5slD>Mrl^T6S8yxU=B&+`{`6jCEbFJzA`L4;WOvKTS zono`rXX!-g*JsoL(T!UZyNM^_(jMHmMad7$5S+~Yw6ile4GQ9a8kJm7`Y>g4=l$!z zxi~v4dzu-7CoRj1r&$KGkR>>%5M$qq(T>Qf-A zaCMf1o;0>u2aJr}BQlNStb53^Yq(0ghU#yF)Ag}gWvLj;jFh7X>8;(-%bc=Vw|Db& zBB6+9-=+>N-bzqjzipp?`O5!(vMnZcP|A1C;k%j5rKim)bI&jQblF3$g(~WK68J*R z6g5~KZICn!rr{C>Q|<<5-h<28KHA23 zm22eY3wgInrA42*FCHtNhILE+es^GSS2o@6{O6Ek6LS-e+NzyS*f`(-GnG?VNzY+_ zUV*~jY+jyqNnjuJqG? z9BX>reYnaE>~!x#X`YHOG;&s??n`N|xVf^C53LT$U~R>0&XbDT4nG)?dmKPo^N0H6 zsdFMCqupZizhz#Kz0UvxNiGHMIvIOlm87|}nzT~(@H#3Epr4=3kL@ZCf{69nmGB+U zz~HXBYb|T}E=L)RIw^uyS_{(1*{km90i1;P%g|)duo+mtLdD98{r+Rk^|WY3nObsm zF~)-qNSuM0no7kk$J=$~`jDCM2d89}l!vWLHxjv(M|t0flqVX+`!#z1`&fL?b| zs}7GTO@iCo$j{*&Xfn=(va=p3g5wwUrz5=`NaAutyEGMQ6pdcb#kt=LOemqTF9k{{ zb6Qt<^=VzZc59|Lfdi&PJM->l5Rtg7X z`=%`ZC~J7XxG^J^BWBcX$h%S8#QY>^?kq®1agI-c%rdAZ}(44cP%gtD2mk+N%A zky(<*rue~qV!y6!{eZJJ<`-p_@FQj}nbP?(hHH>Wl7t#aJ3<^)Ju_N^x7>2p4ym?D zyE6eCj1+eVA)9=u>lhI`9x;*csR6FmmGeP-RyR^@pN*#1^Vzt3pY_n&5v^cSjH*#d z&n6BzlZ-+R6A_Nk!Z(u;I%w2u4#RxqZEmXFZBl<@=Ze_(o-1WGuI~qnH9C(&{oiyi0{mSru2gGp_v*QmF+}u=10~ z#@u+{iq+QXN{gmQhKfsPFG|vtr&ENNzQ5Ude9VVdg&%HxN|FAZXUFdFtg70sUeCJS zgpaocF2OBf9&LsI@)f2!VW7uuV^?*jevG7DxI8Og4hXXqn0y^h{U}Jv7}hzEWjlox z!grWef3Z&xT)J9j5kH@9!wr=dDP)lArr(ZQDAPoYD6xh;0Fjj1v>g>R_3v4&PHb;=&>@gH`~9 zMO!RGC4I&uq0nBst>3X49z~Av8{Tzo@s~j?0~42pi(8me z@ucan$0^_}x6T5Hm~A_@+D66!lfpyY{eZWbNTSC*rMXVE=-#$c>Z|p~hjV$ubThu{ z?1f%8-9!i68ddWPRcfe}I|q6ngcxJZN`9P8RNHH*8XhMl!4|>TN@=G!sblP(agA$r zsDL+ii}pFgz1h4KPuNuNMStWe`E*t9jC0X5`~&ux?*%TR`u;w5!!57sd6&xz`id9v z2XA`3n8C*vNr{A__s`HPr- zq{Su0l0QdYUZW<~+dd>S4Xgl{OJpVz3%s8Oj&ct>Hm$|<7w_qTGCp%GE#SWqlqs>^ zKy`PM^r4TZ#A?`%DpuPtFf>65*r( z`VLJ@9AFk4oN9T7K{*pUlJ?p64y8wj&)wpGvb1ZK##SCJX_&Bhq^+8|UUaO1(AbAt zv=&WuQn*lwqBBGz;@F-R2jqPX52_M*Wq9tR$x@#GZyqOvGl~t5oe&-+!zmcsMQr*a z@_Rb)R&<&Tx34X?FIC7yqzkN2j8lpxhKzNk#?>+c!-BT zSXolq+R150j1od(*bcn?B2ymk0mD4Fbg;XZaVVjB(%WA02b@T5e2>OdoBLAHpKsis zNTX+a;8a7Z6(3wYUNqlat6dSM;6XwfIbjr8*x-#y4$Vb-U<`G~=uCA6*{e&M7E&mj z-= zo%AN*h-Kj^CvG>6%c3mQvpn^HhUmga%Pc2EnnHAnM242Pr0^-X{0hoycVF!rRjCvf1=vCg7Xz1*+TZ7|m&HfPuAI<+8WnE$+$4s1VRHP^?b6uh zpa-#B3pEcR0e2h6D1mYtFX#%IP}m=~A|kDdr;-c}PFit~Tzwn$EU>OciP6iru}w17 zeg+CacVn*mx)uUU(CI2{Uv02TufjTEP18YZVP&CPX;Xc%~rzZ z(Eh_Am*S%~kRhQ*eX-Z<6*oGcRJwZe&ed9}6Vq%fO3SBC>pjf+JoMYG`JbDI8}g`q ziH?qFiT}M3{rkoiF35pKfD>oa>D72$hoeU1Ixjy0zPLPgVVJ7~6+aO2%$<2s%y-+p zDdO%GY|sZHS1l_6ldqZ1ujlaiF|)koCIfJ&XdNj_tK`{Ajf=Z<$)|e7cxoT+U$%4q-ZP6Zr(2qGVPgR7mb>cZ-YQ( zL#oY6`UjpH8>YCoCHQ2d=MWu=e}gc-;x{^B>m>=`%(>K$CVduS#brG7h_vjX(?TnG zczOJ!L9y2_*OeMB<8Iw> z@xS1i-WD=6)QM@E44{`ZIQ^PM=9lj;*aJ8S(I2RDd>;SE@Pz(p@ zwuVJ8UDhO(t_&+lpxo2WkGNku7O3=DCE-^4XD3e&e zdaJzr_Es~qY0>S7oXUhEA1J;&$_7t7HHkaHUJ_6#6XW7jyKTga!hS}!cR4!~TU$Ol z9UIxf9@p47``KK!^j<=Xzw$|bHHBSj=o+D=?nI+8yc#==7vyx${Cb0Q55LWFQs)|j zUX5I~bnqabR+_J{&Ap9nOMJsce)Y=h%2~A&nhoYz^@c95ZX3)#nMr2T(s&9$}HhFC-WN%-tqFk*UFjd2}`&(kzW<`#Uw_!d3%u^^P0*p=@S(Z zzyerut_R+beV6tR$Ns~*qJkoS`gejNe;2@!Zh)I|#$9joi>PpXiwemab-_x!@rZ6v-u-#4hK^{d(*8W#Va zDy&ne3MSHRk>$H|k-Jq&tPm5e67LHsPf!MD&e*JTmhrZSXfEOu>kYR@9Dj2(pb^pm z51byPrTg$}%3&O!l_x=o_2)*eO~;jfDFXI?v_YCCF4uKz*dJzRG~c`Rq0fWFoGnro zFD2oU^bd>_M!R*YYIpAB5`=vRsoPH!dPGA%W&Q=VS=$QA9d}^#vPtdX{0;p%-x)eK3Ihm}-9;Mw#`gJ&9>$P- zYA-rOdDS6tkk>Qio6^ZV)Yq^Y#?UD3?Yp_kmO828-(WeDrR?xX8SPl5T`3V9Lr>$0 zn3JOcDuZu?ETs3bbLz?hxQpXj>fjk+56)+yYvnUeGKobVq$piX-|@Cx{u=y6>Onp_ zC3q;gCsg%Mi|dQwnRkUczFuigm7Ewzx>9@iUD@yxv)`Uk0jO2hp>mSLJq?+8*)~wv@f7$gvOv~~(jPAYt3`_mj=TP9yz>YFXh3Qyu zVU8TA{>ii*G`pv&*!)<~21D6byquwIGL^Xf_V@>eVr5KUXzbXn(`eSYnz>MOg@`EY z2*eo;6H-XyFPj(NNQl_QO0y?xX)VlB2?YT&WML{?G-4W`UVKVEj-Hlx-UT0Y!}M7A z#H&EJ_EtU}KkXFZ{dX^OrxTB#@#AJhuueu@7sNYYcqgqsDc12>Crn={62{$3i;R0IdRB?{k<@g$hogRdFEn)^i9}q0G;+8s@RzynJ+RN_A?bKa9 zb$>+lyd}8{a_5!_vS8*Aaj9z3!zcGf;(J0rc$6SlDhkC%WO8aQV4ReEYR?E=S42t` zS5+NXOA{IKCutqoT0p#ASf5u=@44IUV~tNd>w&E5~Bz3E@ryyhMuQ?Gi&9Wn= zul($Qi47)~IkhHd;(_s~)W;?fWfO&^v@=egn|}2&YH3xoysQLH9WtBVK9P!=cN8# zj?A$t8IjfyD}Sg;wdD2w8~O*VNc_L&&wf9EqhtP9+{3`otiT3WM0BA-0VNky_&bfC zODT3po(P}iu7ecDxVBm+$WSO<(!v)%Vojv7Dy>eH7i+VL#EwOUTjyri?v|#paa6LD z91@b8$B_gPH+GX1kR`*#>r$aCjXojNDB}5=={x4OxFE?F$UrO2{i zwv-hO;UTX@TodbpPum-5Vn_^rH9<{Bl7iFsbg)*qt@*~0;h*gd?%&ub+p0JoHlasKOpe&Uyc`0y9H1uh!21%}B-~kqnfC95w#B=qKdmHj)Z}Rrymp9SM_C);A!ddQ?8CnOM zcdJKhh^)UQ+RaaJDvmieMAzxa)tx1$U;9vsak&PO?H3K(B+>KkGB@FQ;AhfW=% zTJXEZ*$ytLy-axQGt&T3){AEC9MBQdM(FEd-|~rtR!Vx-P0!bIX|4yw!jc2=S%LEV zo`xedH)VsA1duEFwCh~2ls4{T?gyv11Nlyje+>&ZN zYx>N7<_zxt#d9FEgPHBmhZ}+*@b5K*C^GWGU|QC~EPQCfLV?9|C$0+4Pr?&NIlXuA zB854q9&)q|E-tR5nJzZ1NvxUAcWW*lPnF+V>>8^k#Bo7EZXIthgO-vD#^J2RCjs z-&@-1aQW~uw@CMLp$w!pI>Xr&X%>B=h^tPUl!oO(*9xzOkZ5OdVC8;!{pl~yN~q)Hd8T~ zYfu@a|_Kp-8Re*rXzF5f?^_FA%18$sM`;>xaZ0ly4f+2&b!wA+iG%%O!z zNLdpeDE4N(WA@2M$LB~EJ}>u*F^U$%p@vBVddIN87hA&;w4ZysKUe?o)Nz>m>O&j`%{mC|i}CJ4`;HGT+~(xop^nYR#gwu^Q0OR{#A*hcrPi0M%E8 zjLq$p6$UBT9T5qGm*@FLyxM&DbGVt=>1ZVaY`18f4>J$(XygPeyM1gpKU$z36m-uy z;lmhbN-OnER@(cuw7A~z8TrX|+IJx1DRtY!^y=NKW1a2ggGiACcqZD1jsbeAsMb8( z-#01^DY_WR=ZTtOV4M(Uypygmh#a92ZH4&xTm4sapPh&^*89*cSAWgyzIo+aC*;#W zM8=;~X9BZJqX8M!>g96ZZl;VP$Y*V7hU&Rvm^{Mw`%J>I_bKgEJdWJNYj=dsSHXsP zgO<*wIDIfSTtcCe1Gh-e4eJyv^9V$FuBMte<3FD^>&%4!|^Ok67D2 z8Jkh8KmR@3K)9KuZk!2)V+Nt2M3=vh-PSie1*cA_Y~NALa?Ma(3TmzoF_U4Z9mN<2 znD!F!9)$yw0xeOoU#N_zJ7EIE=Cs?Ffxq*v&l`yfN{cfySBEYiR~13c9rqy%Q6efD zjC|4*Ym?vEG#50KW(xsLP7rUhPU%h>yZs-=-a06*cKZ@;++6~VL*wr5?hZi%!KH(H za3{Ei#$AHD1PBluf;DczEx1dP>G#gPQ};Jt)znvYs`}5a^PK%`U2AQyP_e?CghFrL z!_j{g>#)N8zw33vz3m~_7w#qBQx7QF z5hPh>4F3W)qJ#TRud+BNE4vdhYs`@&!Yj?#Qe~qdHFsEMx}JWm;or&(J6(I6_90{^ z(x?U0FDbL}pc!w(M06+%=IjS(LaZ4KnV6OO+)+MZCt!!bF4W30;V8jcV={%HD`E1E ztV9q8QMU)f4{e7n<*I9_bots?(LAdVMEM7;Wi$chOC!kGQNUrfcu~|)0r|GUyRy!# za@?qjRu1VB6$2H8d-ou6^hgeB&|q6ylx;#i^daOP5jfVwM3;P;59M9{?346UYnlVu zSw1`U+O1NbQ~uPSKZ&%G1+4Hwrqyqy7v`>%ObtPUvvP^S*_-8sal*R*QL7L~VpbV! z%paz>rCwU(>$`S7G>PXhw|i8Yq6{M>Tgk0ehly}CrNao^^C*NIn6vkfp!cro(i$J> zK}!UDkLgPsL*tqDAu(7D4y!SCSJ_hk8ZOVpIP%IkCS)3QBdi~4SAy*=N zU+wM`0(nx~2r;b6I=@k`3~^Ok&JFrirrT~u#$;b%C$N9~8pkTIiU$`%2YNWFhLvhE z-%$7R$&}t_Ry%QK*p^QFP-^DZoaR^2I@H#t@ixe-xNGn&QaIT&_lxlj?y?>i_`~ev zzn_NWFE4?kAXE%k%+k;xH$+7KSJJus~Emsjv+CuMXxmRX~TFT!B&fVm^aVBEm@v-Bt!s-N)I?wu(3n^`m1R<5ZX#;uXGu zlUu;q#PpE;vsg%z*aJ@;qBZ|74v8T<;)H?j4 zlR=#V=l_CB7O&sW>*=;4m8Oi%rDdPtfCO_}TI_Nx=y(YDU7<*(V|!O*MH!{Vsr6pI z>DekK0vuHlVFv|>RH={|KHYyxSWCo$_bJqiM_7DjfJIS9N61}bgnF@hDc9_!+K@dA z_7H~+1&Xb}jZZH0V+y**6tS=(>M9eaQZFJM=P~{e$)+I%e{}WIx8cSK*|OFiAIZ}&+!f*Y=^<* zTTH_GPJz|Il(smCw1WwaeA7rI%Y+Zb zFVlwel#&bQkOPdeW$UCmR#t&Wu(CTeBVGrGNX1Z zO#BEYPw{?4wXzO;+*ll?uZ$0~P77+15gRid2&{f(n`LMs!P-mxS^GvhZq}0|2C0e4 zv50?kJP>$pgDFr(=Y{pVi~&61wu&c@reeUa#7?Wd3o8Q`018QQGzB9z02pcM6qqI* zQjDpETZA$M5PrAK#InEl)v%=~>c_|8MBQeVfw*)S{}^6jPNmZBYDHRa^%R>AJpi}y zGg~D3Or%1UHHk14r@zw5@OY1k{#2v6BPk4fPh5?;$twiIn!;l43{6XT3yqcnMg&PD zwJcBiFZC?C6d`z7`TQULBs#KkKZ*&2DNv1uV9g=E*?uhQGay6xjHNYDL8o$MH0S&H zeN`R!6LO`kEwXua!#s?R;i^xjWD|;xA6wb>R-90!d1E*^=<=cFG_y`XuW(Ni)1Q$J z)~IULO8_|wjD5k0tuF~2|94jSpCs|WJ2)cLy#2h|gi_j4I{zeyy{Ih3xN7A}xR80T z3u%L8`@J-I;sgRJ}-uJ zYRa9?s=pnS3%4i*BI+Y|!#rD# z4mq3>+6qsj;IzvPfGc~^`jwH{vSjQb)3mD8+SV3hXFugYLqwcJ=9>pk3f8pZny;*K zch_a+{-Tl!!h>t$OGR1JTcCNQB~&hrrX!Xav2VraHfBm`TSd?Vmid-fvK);2PxGxT zAq0$L=XIPt8TnjSX~-Yf55+U$v*;~~CGTW1G`{P{Sj?W~?+D1G$`JNqCOBuF5;m+w zCsB5-Hquz5u#%OBhYT-5i>s((K&W_aiRAN9!IUC^s8ou0dSht_J~vQ;2?qHHX)cDt ztXS*8ysuNx{VH8qBY+BIlKLvKuYgC$q7zEp5^FZf0AZCQnQ5v+;&-ATF)0RH^UMy$ z!R7cC9XHS-!}H@zw?s9v#LLoP3Ft6p5nOk`!P zWfYA}BRV1V&W{)oUHVsH$29gYsSkH=+)*t*NSBR1u$}TFm&$Or^63-dd>cpHHM49B ziwXxsN?V~~!jQSxww{~71Wz;rvN>L@nHR!E{t%V`d^#e;Y*tRaPHAQ%w6KRY< zGMe4w+X?ir47;&5RK?x+B*#qN8mwB-EE}zCG8e|BdQDV`3*o9XBs`(KkY_rSW!i_q zdrsvB-6_AH+J+A|}TLA{SA|pn7%zJ~W~7grO@K z{0tycfpbMlbgElI7oyHL^jY1CWjAI;7-RPVU7zgiO{;E9vF$|7+W?&8DCLSt69{l9 znR!=pqa-S{Tva;Tmv2l|L9o$%Mwv1$E+To<)ovT4d`|YNDFi1jV-T+uov36zr5~R^ zOCL}!*IsPjl4&c;eN`YDLr4j{Vp7ZYJ=8cHJ?u6Fz8ZY?dVFs=)9-t-U}u`!IHPq) z{Km6`5cNn=5oadnEw(9EChZ9N+}VXxT>$AElRRppN^>m+5z`kmd=Nn#8m!TU`5lkK zHyw5}vK30_WbsNHrIfzgAx>H+#J-dAE8?FT_0oLr+~!V2ooa{ch!h4HvDVdMvk|JS zBAbY+ERHH;2dR+HAUgTFX`p(e{>m}JR@lIu!`^g&Gnt~7CM(9uf*_*s@<<1L=i2PF zPE{7kU?W2=;u<4lvDYX3nPbuAN)eh~_>+ilk=&v|R*6-sXqh7=2G>nfK&o|e0ulmw z01f&dG@Pzhu;C5H84$fyk+Py>g`QNoQ^r<0QJ<;Hl$Q5byvHQX1){+&gM`V+Pu5LX z%~Hdk2NsW|cN0lBSNP@&9}Cx}EIf@qr3|SA*-&QV~cd^bUJbX%mJjgB%EN0#~Q%M?~$X90xSIeQtIjk zq5nTjm71AXH<|QbaorM0PfNwSYM`3-h^4ED9l@oCmMD?o>%6)%4K4pd6RRkaQ)NsJ zrrc=-$r-lQ)ST2yr<-g+phg&KWe0P^z&~(D3#QVHkMiPgn*49ClrSl24gJq=2a z%gon-fZZQV%Xi;*jvNMlCP-ttni@=qX0DG}-(WBH;};?J`Z2FU(?95+Q(j#i5}>M% z4v8yF;X~;t#6e(@R(Ge0Esk-Zi9*-LAgV%T^^_^mFI0l#OLq{vl>xg8qJ^Mngx9mmHTaKgmifF3Dr^Y-Dw8djoo;~s_FDy>@>jf2nq>&!mjV!`a)3cmL@y9-#DwI&Y~;(wE~4-R2zs zNyf4%X1O1S>#HG`RSmUrdK5+I&J4~y&?==b8F`G_aOxfx#xZyD8Z_|UlpJXFx@--_ zZxGd0JW^DahThEf9{+n7`5)(NNn?2blB|SF{J(MQakdo>_h(Ypj{hmzmDDnH!qm0i znrUT*ik+vRFA-GRH#R8EqLuKa^VT*%P9o;6hwjC<<`!^~ zd~=XChgzE@$f80^2f^`(JhjYKu$;spq3R&lG@2$cmPIzDEvx{sdIVO+NC}m`=bNR| z-3J&UIoN&eD8e?l>BRK?A&PU6&k=0R$Y3~9k?}%lGkMZcb#834u}`}@n0GiZBJy>B zJ!UQEU3O(#&8779@s#|kaQpsZm(X&j8r4?}k^QZD%PxvBHr{WSUI;QwxUR1soN{EM zl9{b4>_rOSs=Vz|SBNz*;7WB3MVyycC*VzP3h!h{CAHGl6Po?UmrBWzf!(oUtpSc< zE%8avZs}@L;~SIsPT@`g%OgvgQ1gxi&nAVUwdT+#CgC#gm^J$&9<*>N?=Pa{FA5Pl zhOo4NBm$RdTaE)X+d9||VFshmgv(^&h0@t*+0oblWROm>g+xl# z@PbrndD?;7Y>|NX*S&eolyq~TJr?jwIe}ZaGfqWpi&&<90$#iye_8TdQ8Gskj$GIX zQ_TYBEyWRg>j#0j!aZ)vSba>~_lQhxjv!*Cop9#VOXVI2?zA1!^%&c^kMdDfk?vdP zHRE#?*Lc#f;_obi9yIkl!6N?}yn^hG!hz3Z;z??8fCjQ0wI& zm%Tkx;;*O1XVR!nVhKv({a5D4OacQ?g=tC7W~f)IZ3%x|<~uNSJmFxcC#tX( zSTHZ_GEO3AqLNx$6AU3``2F~)#S^9bz0^pPYe^3?W`$g+)Q_myLlv1( zSG_WYwfvs>tpO5U?uI9Msyfb;LlXu~=WSb&u!4+lU0gV_l=HTh7b-3O&tdX+Z>R?Q zk-*m2$YZ>hO+HKjV!slGmM8YHSfhCaFeKVp1AGMa3~}Ssb7u8co4W zrfI_HeTqs}*TaNDr5gd|la%2)a)Qz8a-)Q3qHK~2rP|SaE5&h+RQ&^C67&<1bbLOT zN-4GJc*!nTtS$XA=Nv4aVqOma_&svZf7y895z+aQAXo+BawL!nYHnhw?8vP7Py zvDgXMz7%pIT{Ra~*o3gDTqWb69A3spY!5BUJAs0&-zU5|2nBueNWdpWTc80!5ySft zmzl(hx)6{Bx-x#ISUOwUeibTI4(BfLSK%6n6oC12gjB4;Wj{uBA?hk&$gwi~Bru(K z)moB6AP$hqO^1AppJQCmiO6gATB%puxRWkOu2oZYHFMXtt4B;clC&63QAQVraR10q z$!f~(nGkE!3U?s`rWZFAaoQG1&vr(Dd}ErmPLn;g2NnsNmQJ(m&8Qztz-gLDLhnM(deDCD-tV5$6^X( z2uw?6@D|1}J_v@*_=4zh@o~$tjj@CZt?Ohz#kz>=*frYmCjhnFmGeGXHyVUQ5SBm% zhc|(<^y7kWeX)Ugx(4oT%5rEXHvxFzqxiiWWoWDE*Sp~9AyqP9!t5gSo?6ARFz!md zPR{E0k+9r}^d9M$E49NA+G?**Z^}dE|LD8@kM{5XzBEK~Q%qW<)TJuy#qe5gOz4k= zwFzy4B2Z1t3lKLYVdAz+k0i0E$DkY79r)I#f)1;v@`HHAeUiT~Y`%X@k>d;>v3@N} z_6w{)(g0J6oxT&mYmno!K;>j%wWB7N^ z0sKrJG}jl>Mv0`%EGM+y3mMG!E3DM0`XwXlnZkSEs}$nBAA>U$^c}l~Vu{4T6Z2i_ z+SmRUdb%OJ?q1=d4yCS7l-r5FDKu^^zQzmEw_J7=q3p5p2$7YAPXyU}#pS@64I)mz zIX8cwYgV_d7w1_=y6(}iwRfmsIzHRfo^Yp6r#Y7sWb7{%)zjk!X%!TobgC3aV3k7q zg%UJ_||V&Is(?|N4Q3)kbHX(xqY&A zrod1Ab!BPzC$t`|hVWKIg6peguWBjDY3OWiJ0H>b_iG9r1p@|mBT~Fh#u%w< zAX{cCr`&=7&&rp2#EcBFFy=7;BR`T6yF()?8{cxD?J+TuofgzS5_3tLnwlStO!}J} z>^ivu3v02ypLoi=J*k$@RIclCmqy@_)BZSo%t#MfCwCrxAjIT77}bn99RnGJuM3st zwyorg>Wq#~eioXKb4=HQK(G%z;|=&6=aNah_=3`z3va$t3oJz-4^AZbB8H6-{!${! zR9R_5E1vV%S0r+DJXfXzZDg}fM-SleF${&BELA=*!_-=gfX+H&*5Cc~n`?X-S;~h? z(l5oUS~42vcFjb!-nZachwC4Nzx!+-n*2KRe7gxL&CP`xfwrQ>HpduYPit;@jBdh#i7!Hku z_g!L6cZ{;2#WjPo+KG1&k`v_ECS&Nl;io8m&B;Le=V+QKK0z0d3VnYlchWG&{0(Eq z6DGaW8WbzJW*;-OxO9fvno(tD?%^%$&TC{}3w5mYMKIT#gwn~BF*IId`KweJJ2hsG z3U3$~vMPADwhM~T+jp}lhtpNd&Ze*WX~+%Y+Dwu%Yc+~9ZOY8wtIRm@SOI=e^t29FJG(($?UpWMeR z9(+eL_e`Rl(5avC7(i@$RkT6rpCw39;obPGh=>e72D!Ua`06Tc6rHaHWq&C(*@~SZ zbXR8*2?&z+4-_B2Err0;gq^;5D8ZB=wr$Qn6Dk-$~3aJK!}WChUAedC=kuylYnc%AMjKWxcFRkTx~lG?IYPH)Zw{^ zL2k1&nL{d4Z1FMND+|1X(lZA82T$t9YO7T6q!^f=T1TzWKlZ6I2M+Kb2N- z2r?QMT87fI;WUyM#xzb;^t0l5abd~pHGR=h3gOe$8QIL&(4}4wNc}|WWQvd=Onq&y zmmnXeVzUEDhDXoJlEeq7?ja2-B&cwy4&|G6iSdoRp?j}Wwm7dVdD*@iX}o{1A2Sx4 z&x}sG#64ZB%rB;_fP?N-mlrmuZQs0-Il!bsje}VVB-|HPZ#;S9b#P#(yiI9JcTisbyV`pR^WpQ$2H>EH#eRlG zC6}=|D@{0GrESs<+g@eOi!eu-$RCMWN((tkBW>BQf~Cwwl)?8s{&$f``-58kQ~%aH z2L%`5rjLzr`GT5Y>&N_gDgu&OYqh@sUYbQ9mwge%)HL1O0cQX)ns%#)@y-QarwI1< zYF1Od^5RrExWcs3(0)B(SLC0QG5h%6c4kgRKB>E1In_z9$vz!R_@TORuy{BB%xfz^ z(WT@j415=VqLPcorOJGu?C?m|PpV!st3q6wtdA(h(2FoUUR?BMB#Zn!A(5tZsnH?N zZK2L2AT2_{5p*_^vn1phlh$)2)NX7`rW>2|_9zM@iFdT>~j?Jf5&UYYBZK`mBMrt1ZI3{mP)qjR<-J6^(aav z`Qp~_RA2cLMGAYSeA11C!FWH$C^B~u*Z0UFrkrD9!ajR^i=h_Ga?3EuwR9=R81DBW zU59eDdeQHP0Zgs#q}HZkilHV{d?cZv)OliBcyO_lKuHygFPq9TU|ogQc?d#Q$HnsU zZ?%Z0G;CuU|ErDO!-DbY(J?pAdd6fR&1?mE2+C?MZaq;fmX???&d(Iz7D`1zkV01x zT2~7?o<&MQdnavUgA~6qF-eqaXup7{qg5+|vL5mZ>#{RUzB@0RxemGx>TImXs4^qW zN$LCrPVRDkhZ(h>JD*Wc#lBSbYg@q2%FW@6>6(!HJYJ$ zVG@@SiTuv;x=A_08I)`@^`pz^pgUJy>92>vuO>JnB5H$YN|yD4ByWFw3z%`|dHss~ zX-{Bvrm#_^FKBJWc40&vFRpW_^$~CM4%@jGm25xN^9{Wu>6L?!^(*v#p+)R3AkR*y z=itmL!M=Pk;4D9_xs16LIb3=ErFBl}JTs9=H6goWO#JQO{2Ri{&Wg!GHzK0O zSrP*v&TcW6IXgyKXypA%DxuQ4*G`6=ep0#zx8(8pVnQ}JIJ+S1M_A!36GEEH)l4zh3j-E!xWnYU)}0ojczD< zE62+)-+%psW)6C1LPd;IDaeQ~8-k)rzfEIKD#4cRqc+Yz2c)DOvwItV{H3<#*Ua!X z?4`b@8E24zokYjHU-A^YD<2$|%Y@w?#7FThA|502b^EO(J#x$yTg5n0l||Aq=?S=L zJG&qWNrL+rA_xDtoET)w)Cj)gDPc|H_s(t-qQ%IGbOYzgtw|h*wu8(uqn8Ij(~Q}< z5yS0fAt1xSq`z9-Lq^`Jf+)D=QN&l&Inbhe_#9MIx7gUdkvFJR;v^rZ9T;o7FGxwd zdqW0@Ft5W)?#QD0yjk7g&ht)N?y?Fowymv9V{A1q9(R?(KtIyHN(DrWi~W8SJn4E+ z$7y`vLgo~umC5kuT-V=~6)emx(#5xb^%KCN_>@?scx=)J{7x-|^Vi2Qld7S&$9t^y6x zp8h8j$YSuFkVi&`J_Lpw3Tec_Ev|I^erYP?_ytQ~ff9jk-#RW;u zm%;R(;g9i$D+N|nmFV1)Q(>;@O0+$derQ5nplf~P(??G0 z$Rsf3pdyx`g4tg{758U0p>sEwUc`d@%5)!VNkSO2k@y5zb6Sw02?4n=lsvsDPqSmj z^HRMCYo4zkM^?gT^=lZ2pw?9xAwl^mZ^*=m2dNuppiXDI<&(TCPC$Ky{1stafEXYOmn;kMx4DdoTc*75WLk6RbX*eTF^vDl6@ zxi@j~YrGlsc;&)okfKDoEEe6bqow` zA8V?G|20`v%DNM=zK7=vAQi$+!etzzAdlH)-{M;YiaW_+Z}a4CtOj4GPxYS1yS0Xe z>O#&khpXrv@I%zrtS}Pbv1MnhykUWw+}e{^r-sBy>bHZ|4CP+9y1n#vDNrAPW_?Ui z^*w{<4Iv{lXjYn_JiEWKMKA3c*X2#G%Z;6i5$W*=7&1H3gZ+mR)2nAa^;(_})zdN^ zu}W$X9L$$u5jv`#5bpU23qH59HY{S9RUKa{!JPmm;R??Oh2>7nU#$ikv4f=JNULDm zlyDOS&tTwIZ1c7dFO}BC+~Z=^!Kvp@HtdXoB>EN4Z=bv)jh77Tr;-K(#P;ojPTbM+ zBWeogS{r1*#B4r7pUhZIUvoP=xxII;SuLmJ>o_!gT;6<02+`83Y@P6Kor}hF^diR> zuDk{e-$p>;XfqfRUgeR@?Y!3$)yfiDxFK3@hIB#V68t|nchJGEdCHgq5SbNuYk$8{myMY3BO#)s-uRbiY+j@$L~ zLI|%*I=x@!;xkLS`mdw!LX+_rdN(ZW6BO-ZpVy#T@giD^b3c@vXv>qi69W<;XwqMM zHIzs5=EPQp2b0nFocO;XEuGKuZ-e(jU`hq{CF+EQi@YxD#9mRi<55hoEhC&~=SpZ~ zjxu%>BxLi_sx)o2>VNkT5BmF5{0sZ>Vh8{sY`g(BM`tdA0erh$sYa3pQ25pPqd&ue=MxI)i|WO@ zKw)Gx!(#3xH$wBvy2&-}z#nL<205{zMK(_2IeTS!|KfcqODhbzlt~ zTPHM>=%>&tD-B!4mHj@R;sisu77=<9&XjK|^7=*ye7k;fRhfH@UJ`~j@;mW~-} zr2t9*^QE?vGWG}s51670I;I<@D03_WWi@&=|%lsSF7ztgMwF%w7ybmGTQn)gVLSGn8`9S^5ju zy$-(N2`ZD&s>|BLOqsw;Of(P?Cbi@K*7|Kt>jQ+%M1_{AM&3^C+ec{zvO#%FBc&9? zH7`^lAN)f2@;Z@t*MI;SbsL*Ar@_xx2143X2Lw2Hy=N5&yhVji_`W4RNB685N6)Xl zx^KREa2jKjZ_blkzM&9>t{&{~dtGs@G96;LYdcNt?X^Nj;>rioUs7$N4Jpy#w8~1O zVw_0LnPGxB^uv&H$j(J~bQabAd&ZjAJ$KEwz2dz7_kK&FA@h(5)A(@z!c(at{)SXC zhb9CtA2V$~92#x>h74rdY6hKK-UGZYml}!)(jH?=NMv|3dZWNyn5z5}prq`gbVov^ z)?=C8PxGDRmx$km6NSIytRarQ?moqHpkR(euGNJ|P?~=eFBDlU{pU*XHh<;Kr#_W~ z0?wU7JO2RR)h?5c_Y#0p6rga#HMRr$V+otEc;Mq-0AIh$fQ<9@E2r#pn%AcchvdcfY=%$)9=lR9-`jUJ1%Nn; zYM?%k>gYNz^5MYk?#T)?#WoZENX(Y&jfkixlTKV;Q!_RAygH*RPu#fL{UTWIGc`dmfA;8ZEjQvR{;MocW!_v> zRQ27vv{XBzEV<`53xj_FWmD%AuTZK#eFc9Y(KEeuRKGc#f=!-hB=27T0&W+QWc<7O zPC7e-D9w(jp8o_tJ7sr(vtPUw_nV8n#eUOln%ou5tX6usUx7#5T80dG9nXXrj7Q|- zYt!43KNP^1u+zy}*YeA-5EM$a4sINBj^c&eqT{XRhQC#aTZKtx&PxxeSGBxy-^S&s zj4uf+(K4x|(wE}WqKdJ7iS{o^OlL2VVYRm`k4nF1d_#d2NPnX9QPgu}S<<*3c-$K; z_?wfx&&tN?;Eyh?pgdo&*as*+t7o^+6JHnDc7u(PoUd~!HOI)9Cqi#0)gbI2R+Qch zt*m4c1)z1_sYYmV^(*c|Y_DcJXuQ);5%$w&38SmVcIMkW`1Wt_`~mr+u2qlc)%LMHqrUc7?+R6Jx z)m;SBMig3yL*}rV5|5M)Ir^uOP;4LaEID7Vxzqf?_JSAT+K%HIBl_0a>67E?l^gKd zG-&ui$UnaT6Y^w!w|@7g+Iu5P$SiXO6eR5$B@_a>)hUIx!0lkL3!QJ|+<2UhY)mZw zsqi=SUI(qMaSu(zM(M04W^%OvDYK%9p@y*4??zYPuf^vNxN|`&~aH(G1f)TNag2OYY6X@60!$ zFlYD7qfXp^lV-G;l^`lPS5WENUiAXn3+5W3X}2QZ$vSnqd82Y8{8_j|x0{NWQq5uQ zMwXX?Y$U)G&RCU&^7JSQlyrAao*2=E!{TactSVU|=DA??>)k-F#KqU=c^sAik(7m+wRB&Q%>7?yeZ8Lyyc5C$HkAL6g-Vzh+aG=( z5iY#us8CW^Q{HUOH36@Rc=)p}eAdox^3Kha<2Zb>`G)=B_@ts$ZExvdI%{b!O^8;% zLt$X;=H}qqwQ+AOGvg>W(XY(Gn2)e_#A9B)tz*$6|GHwRt24j z`Byr0cN!1kJ!d7jG^tJD&2{eech}6X`$?3#5Wxc*%GI&m&!WLU`adc zwN4N8k4{*72NcF$12i&@k>dnbHO|Ek*8Ui|te@=tBHJXF@HXGbNB~fi+D5@3Am6-% z3z>6N4%easZJnDR3>6)3?{CsDc&NXPLf$Nu8^}DsQnuMCLP0dM5)BEgUz1snBEkLb zN@YnDkGgF>aZQ2>mk-z$czRz;G-p>$-|sosEBlue_B}cel_VoA{;}tm+tNQfx&8~7 zH+SOx@!h&EJ4$ev=|BiqdS9l#8*=KA^l5lcO+rEEX2FM2tX%Cf_-!dEZu+hj z{1-sr4=RuibRiSTc~aK=C17PHnL8ZOXQI=a`4?a{;gX-V)rOWsd=~X;sQiw7IMJ%A zUUk)U{=%?s?%u=Q4P4>tVR0*1?ek0U04yY#J)9_uv2`#oE?$dGn<`$Rn1}}cnm3_= z^^m=Y)#Z<{@S!;6+7)6l82u&Zt}bic}QG*Gbd>>O<>~< za)oChWvjvdRq5a*Ud;)T{2k0*KrL7x|D0s?X>$5I9c2qCUh?A$iwW$&tYKEt(fM0L zL!w(Fk%c@4SM$qnisi;&#C6~;z^{3Yf%J^|v2#~2 zw~Ok-SHq%vQ&>A%yR&J|*;Jv+AdCsb?&`!cKX6ygxr07cS?7X?T0{y@0=K| zM3XS*=S<|$B`wZQKE+mcanT;%zV~$WJV2I;*sV>nHK+dT zuLTyo`o6>o{z@`@X?(WvkO+NBTd?}m<`R7T^lm@5J+FZM*I$5#OK<8(e3oHY!j~lf zXT$kv<6qs#ODPEj2T!R}2fPy&uE$4CE^cFX=1KEC=MofbYvP+1R(JPw)P`=Z8Rh9j6gu_8!O0kZml z`^1|Wee1=)NuY)G)>Mez+=UT&-G@xgP}X6konlT=J{%_x1U?Dyhm51oUlEr@eKjS! zHg)0&=A5G}`aYCJM@LXhGNQY2AZO1yDwMtkKDs_-Z?4!vv-CIlxM3koLbBM27zoQ1&K=*b}TaKtI?y;u*#=RvrPzppzY&`rwk8|O!F6@^WB9RHVY;R>g z9`l+__DMZA;}DzHx!( z*@@fUKnAyh&VwW0ld{8ZQNhw4>F(yqfkBULftxJ_#ql3rtQy}BT9^8d-LLN!J)e3A zsZ@JZkWAfHHF3Doejgj|oGl%#Z;1ydJtO5EW5K?D!rXM68G#~f7mF`Kg1^h9?ymO4 zk^9x;%KR_)yfRVG3psa*lh(lQ?RQ#8fi|6#nif<~Z8hFK@5t^XFV0>*QU=OSx8kb8 zfofsGN%7zDpwQ}nwqQ1a_qb-?r-bu52k5fw?SF*sWqABTk6>4lg9EN66OlgB%?fl4 z)&OZr!|<#p%e7jy5^}R8OBq}3Ocy?ts<)T{Cb>6z_jX{k8RtScVKOCa42D8GaCNFv zir{UeI;{Q?VNyzID$^63!?*h5$63pg!=lZ0dqGit+&cLa_3IDBAM_hqWs>j6Kr?SMunZAmbAOpJJ>RmFE zabHK;WvQ{P{IRH*9U8?ATv#ZF$X~Ns#Q6ht7kVqh=W`4XONR;s6vY&=Ie1k!4{_Cx zuiKVb3)DYW->>1&9rxAneh8=$5{<6l60psBp@%g#!nR#C8pWEk0b=wW)Uq6jnzFrIjw#TUbwjP-uffH zwMkTu*<{#aen7I15oJz1^ei8w^04|M_5$t z`(svdwsIj6)n4JUf$~Ry^TM?8@ciUie{yB(xf1R+y{(qv)62ftyX-z_aBHyJbcJli zY`5$FVQ`keX+d^S^t~6%fiKK$w%69%M%Wxcg#Vxpnix^2CX0$r5uVoeG$wYojatv^I?<<}sEb8OhTjQ@v<##)5V5)Y!?n>fL zms02@o)Xt9=q3T2Z#5)-th)ELofkT#$}!zvy(zUp4-7x{sc*|Gu}-odSn;@dU=*IS zRgNW~f*uOp9-Z8_w!AT2?=tbodWXW7hHu&vbav8Lxk70YD1K}=j4ENB^QqXO{>FGE z`+{+~8FG46+rGE;yX!CDjp}T778EnKJbFP?PROk_Ps>IcWc>ynMfUTG4L|i_8?mZi z{XhZn+SU|TeYLO9Q&8mk>p?UL31cj@%4zwhqj&}-)a~7O^TnpCC7dJ4m!j;yfD`=S zgwFx%HTFD>Wy7Nusb~-* z&<7%&LtLG`ih-i7evU-Ce;YGNWrm8XT9~(Q3HEm<=CVN3OLk|St= zcQ>QBm{e2OOal&D$=Fskm20}CxQLSLF#w24~H`s41Y zp7?2G^Eq+rq&8eQWH6h|Jh)#)&ZVA3B;%fWaBKIzh{lI$K!Q_Mc$9U0Mxf4 zJxOmKOIY^q9v@!k3=5{8&5oa}eD?Af$os+)d3aZ;41+zZ!KNPzRCoKbE_;1o9i9M& z2TBHY#KtKq*^%*|rXr@Rmn?^dDZbvj`;e{Nzy<5)EJo2e^Uu@cX`F&i!((Ha`POp^ zOTrt}e0nM0&>014?sw+aSBPSdV0*AE_eRn_wZ899!8=JbkX!7m_)JYVp1wV2I!56M z>En5>Avl>j{VmD*+MKy^^z_d0FJN!&q7RDct=+0^Dmt5PplNp7{`+zSW{jK-M*zALInOT79yNr^3wW&h^i8?a+~^A`|7;NN?A-}aK5R9{Li-vl#^ca{)bp_{*L8|FFpJI4Ek{Q1gh-`sFc z(x9<@YEitK6>(cRS!p;~`GBtj{kD5x+@adXkg@iTbgU0%qF-xFKh`+7HPPYsv#Np; z1`1nFm~{NfoCH4i6fi$)#&h?Wbx7f8eF7SwcpT?*mHT|Wn6nj6s2G2DN@XyfiRxCC zLmi5!=9!vhirnCZA5d9!YjOr^yH6@;hB?I_N8aoAKhrctCy}Kjol45{f0PyEd@nFv znz;T$RWR}x{N*TRbd1h9o@UY)+bJpnPsIk zdi$B!R*!-t!C|L3yU&AI@LCeis5eTPQ876O8q^^S z>Tg1}G8|Yz$fE)KW_|?(#(Mb$1V~J0X-E#j+KOMG;1%7y?Ge7m^P%j)hh#~E6tHii zat|eY-Rgub=h#p2;6~}lEMjwBS=#XvoP^>8r!`qElrw#W*`L1+7a?GQg7ZKclcNHR zyT5>!-Ogb1>1*&?myN4F-9LY}+WQYblpXTH%eCMSNVf@;VmplfOXp*?ss*-wPX>q% zkBuaBS=i>*^cPUt1UZ0hyTi~S-q1xZOuQ4RcvB;Z!G>NwM`GWq)rh(PDA&47R|pWs zhjsn-iKgGepXl(C1wo~0e)*mm8|i{AhxxP^pcZW5=x*Cg8b1W2es9B;2O-1Dxll@o z={mr)pX_stknQz4X2Ho`)6+KTi{!~QuA9|HN>A_q2f_!|{9|4X?4-pHvqYC`LDr~b zspC`Ux6ms$B4M%RmB)`MR@ju-n{5@u0Go?R>@B;Pi5Y0OR#&FC&+ZSBaWMjq$&~-abY@MVKknByY+dWk2=c(kEb3}e6a%N^ zab+2OqvUkl@BP7P=bayA`>`)=;`w4WzxVc!8YvmFg003I#Y9sa9%111houp++?`eQ zJBKN8Kd-g!AWrkE!#cCzGLxkR)7mH4xXh2oIRSPPxdoghOdztFigJlgln-7rc)B(P z99>owJ{p<5ooOJv-3bP1C%5Gh5j)9!O!zvEU&RLw<^)GkhtXL__E%SxTcdlL1SPLh z$~4(|#(zlpO*|%@^EeglmR>HZ?$wKOqK4X=-MM?SU4`pC)<}s1j0eyFuUiY+BQ@=W z_iYj$&4G5$;XStT?Dg~ii>&VsYU&BwjSWQwRBUvWE={CLi->?o7ZvFuARvU^OQND6 zT|fvOk=~_-9*`1x3pJs40-+{^gb?oe-MMq;oB3w=hZz#)?AhJ--DjV2M1FEh#NC+p zOt!=Lnu1iu)HMV)#Ar5apkc(XVN=VpV>TAGJKps8qJ3|!mBoi>1|{1SME5c@Y1`Mo zY+SgJ+6S1)uY|$+lv!|AJa!HoDu%A?fZIE(Wjb75X$EQ4A6LFDJA^2--}@LPec-+% za&Fd;uL(Ol*yD37y;snz7_M+9-f)+jviEfMJ#46ArPHrdCwdO&KiCPZeolC0- zU1Nw*b-39;MdX{-!7e zqU>v_6Ya8U4~Kr94xd>R+6(LNS$S(GkZYrc;%^=8d=NmEOXI0{^|@)Z?8UM``JCf) zlbA^mp=xjYz`_tY)&M&q!F;L~wwEaxD;fT)TPBS@yb8Cpb%*quD#Xj|i_Fg@`!h^j z!SM#ba2DC#Q>5vLX;VSBy?sA+)YG>6=O0OiNL4?;n<<#|SuXm|){y+GlHzf+c#5;@ zR82t0_Vv5`y+5D)ZCG`Zttvai$0QG8Xv}!$nf+ym`!g5`iZn%+D)SXe0Ih+&c%2o5E)*JZk2<8~}5B3WGboE?Z zcRvei`ukj7N(T62kZ!Sskmih~ljkCEv9YPo)%cCh)~lbNPng;0T!~*3%9%0 zR_xolsP|ItD(BMNWQW<_DS|B~Cwx=;p`=lI&<$-+9k0qvz?}W$A?%eiTXAXfiyvtt z&nGDX`c0?~7oQVcWk_g8Yo5}vDb-A*Z6j*dm4_Pjd@ki|IeqHCf4-av=UhT7p}M&a z(QQu9i4+tex>VeDy*PeWk(I3W$dL1~-S|(b0y9>Pknn9c{1f2>+7RNm z4E_*i1bH-AyQ0awc4n{Ho_$2XQCU&|qs2Y8g4x%A(8Pv?(zcOOlys%Cw>t_*a2(C3 zSBnq;N5J-h8R|*P!GLaF7Wz6?z+Xx+p&bEbARK=DFXVqTY{~nW@s)w`FsTYzkR*ut zc?NwW^$ls~ML+v29FxIPq$aF|ke$4{6K)U)&#P*b15inJCR0C6x9NjF11%0V55#Z& zh0`_s(>U*W4SYv3)k2RzTE;-i%oC;7VVbLWC8&k~CK*URY8zgWwVtV;R3P5R>VL4!Gs-0UP|FI!$XE#cB{2y#8;yq&> zH#H@0qAt*6-{BPGePr0zbOrX#@f5Tneu66kcI<|-*%M9=Jqn_SmV63A$|Jx+50J<0 zpKQGc0wqpCmB<;OgRJtOGdu;=AD2;tk+Z*cY%8}Zhu`OCh zb)hU>3L;yZw0E*Dk#17zKQ_-K4V1~_rbxRF+GldZR4g7#qtIr822Vw1<9i25hbtRp zyctT-xkZ883ot$K978YV5El2T4Z0IS$pdZ=oUsd>9)iC3?D%`qLotac8|^n8z?CO< zPsJX{mU;#Xx(xf7DKA@RG2(x7Lb^pT-}oo?!izTyLth^W2)_T%rB(7gMmdo|FSpk* zNH9TU53tzsRpn7c=vOA^Gs2vkUTU=r@W0U<=ZdWQt0O&r_xO!0p=D40PCE-QfCOMPEJ6`o02kujID2es*8!yYn}TM0(1rF0*uzA5d)9Fa3W~ z^?xl_*SAvpZ-vTse5M9`&+PxGNeTRz)Gy4|PZpc~r7C_aUm!)!>2}=9hY>O!OMr2r zcDKWemp^YST{_#2X?pmdvu^R9s^H`s@9?*QPywSWFCLuLXSv!mBcgRZX68BdW%fkQ zq*4wTE$SJxVoIoKY*}R$RdESzb>c>W37yOC&fsW2 zH_XGt!`#+7E;3uULpP}7d@GKK-XMs>)#H>@%8qO2efTn#6l$pYveKNc2NwBYV~G=$ z;FGdXU$D?AkqXYWx4tI2KM6&B<_cAR7y^>Z@=fbCsQ(vEgP?M*iR|;aq(57vZ1mRkFMv0nrn+s)qF=JgD zas;{~E5&N1j+*qwv?+Yo?raFrx;cT!r?fk%rg@ixeK+pe>I;EwxOvp#?Z#wZEeXI6 ztO7Xk`9!NHoD-#+pP=zo|CIHok4L(#o`NDPoyVf#f$GF&ru-(8$R@mgFSGbUXrzJ+E> zV1=Iy4wdH>t@9r5D@%^<>a=u>ij28^!+gz0BPLI!+ij-}(pwfji`M3;s7*%_&9S&h z)R`j@I7f_RJIOk@>MZHp*t|yq`IR!mX%A#c8no^|A>H{lTg>$*Cj>Yda zUQ^I2gO4(!!;Dh10M$pTcjx9~BJErMoO{jnq^6594}HxKrTX?aZUsGsT)0qNu^ek2 zHD>@hM9Y(WfwSPjBTM|>2~t%24g<}>_>2HsriWu$o{Ne&AJi0c9?g2#AqaDfKt9b ztpLOW+=zv~!!p;0uK39;rY=ralWKQ9k?)Mc3hSWx5s)L71|~a)plQ@K>%{0^-I^d- zNoN0vmmaQrK17@D!L<>u0CK6ENYdL_&Gp%Dl#W`8_k|R5FPS}tW}&Al^}M0EE5CoL zq;#SE4_2`YUbA=SA6dCtg-1ns3^)vilxG^QYl#C5oICb+%Fg&YA}vM20d6H;Da!xc z+R04QAuIoV(`BiJjseZM>HP#N@+l}QX+RWD9ut1nQ2AYyBBvqGIU^7oZ zlE74O21Ush9z%|(tB~^x*x=yTcF@UVepwW=xKjhkJpWq08BT=mY)prM8Ttcm#H?9q zyh0g7{>W;0mQreFjzAz8Hn7VSI{tC9x-GkIY;Kg!1AeJRU&klEux1A5&$P?uk9F1$J7l};LIO(12*959(-=0ydI|!t zG2%m*I^GY!TDWN7!4s}0M4;qgxb#+bxZqU8Y9n&mlbohx3W;9buyGhRyB+(%a_wN> z7w@$-m`j4qV^=xXmVucN|5Ia`=;8SeTNssBCv?4|d!Y&#%^+yQ9Rpg>1kDp5vcH?* zK;VEf;(TxlQvWh70amPAwIxIK`_hf5^+XSHnb-#IcZpER4Ifi#y8leG_q~GR>-RP( zCNSE$M)f*huB3g;A=xbO)+R*B2_D$xK}kog@2o^LAy2A+7vW6fKLx!`89N2d!ggt} zb#i0$;{mcDdR4YQwLVgxlM^7Il@X$gNg`p~5qBT|?Z#b`B_zZZSe3mb-Cw6b52+Fy zM6#kUB{O{Z?R$mh1V*2;O$0$jA!48_+5WE5pKWl4$HCKyC6C+cVJHuf#>M>FkUMPp zSEVSqG^5JA?k4O6vR!&(_Y}mvLhj$#Jn$><+ZehYw@S%Khg)z04^DYPODE>-0$UG^ zpPcd7K+Ga#_+@oTjvU9aU^y}H6f``(89^L`5nQ2Je%Pb!iRe%=xYyU+w+ZTOW;cQ{ z$jqopZ$jh!PeCPo&9WW9U;2va+QJxSACbg_2B^i6@E+U-Zew9g-C#Q0)YNn?uMykK zrOgE_sADid6anUx{xabdL_$)5U&RQ%7Fv{sBR(>`9%^vFm1G^U|2*A7H;LQAycBMa z*1p+u5NP2|sB=0Ra6fS)up!5s7v;_0Ufe|r9f-?`Nelx2>}H8VxrLwTz^rpIdBbzJ z(-xRRV7)yq)qj)*vZ;VL@*9zSy+R4u_o|73p+q68+ahHKy$O};Uclmkc@R&Orh1=D zZ=YrAz0q0Ov$>h4T{Jc_S9g15^*DWSbKlpBN&D}K+U%nRYnBL>;YXke1wyxu*?ZPw zRfAsSIHim)jtwe?BZyE^zS+}kcy$@eDRKMWux-gxQ0}jON;F(Z^HI6U8R;7@{04n) z+Hu`1?ekSCtEN_R`S+|?55`IC^ZO6NMQ##4mc<9Sdp`m?{O; zHE}MnI>`W@OO8l~r&{>*Ob3*4A243*!EJ72sX#wT*So#L!h`Vcv@+hgyS=G5+^b^s z{>vY$2dtX>Ipr=N$4iZ~N8B$6&d#5_jn``J%2UoO=h<4ap|%v1nuX`*+da6XBv0@8 zM)k$|KMVu&e|e9hmj?v%pMTM6wd%gbR>#7i^j=|fYjrB2CPzzS%d60#Smti6$_se| zy&sQO$hvNq>ypIB7qs2+EMamyJTiCxb9b~JfEdb9!iLlqZpV znPNBx=$`(czDQYvnJ1Sy`Rsa(!0)%0T@rwFpx?Mu)$8?~qpydJ@(W$lr0y1I$LH;F zUlU`QVCm&p&w^b zF=4+Snm}m+nthapM@ii6_PZ53&d!&!H;Iz{z5NZw*@OrAL56{P$QL|Xg+NF$ zx3K&x)$7R7qwM5+CD($JlkFnMG{u+bf~qAQz1e-f>X@t8>b$VDP$9s_x(}yc?0Wy; zf}g)9Eu8q{AV@XHlwHM4xibq>N1E?nCn~}U%s$F&o|yN5i6C+nb{fp@?!m7I z)?Xg7(w`~E8hZ1&qQ4YK2PX>O%zt|&Q}0=jP^?|5S_jjByn#xea};jchMiTo3S9{m z9SCINhOL}@N?v{%uX;l|uJt7Za8|ArJ_O7m=l@d_-2i+5-@gI*uo!wj1PB-+721{w zmxp=pzE_q0X;Zd8*k+w%8m#!KF6Gw4CcO6#PYSfpbC`hb5%gQ)E_u{Z2!xF`;6LOviv+H z6~Sy^DRJ3$=tjKGSYOl!H&Y)0_ukPqRW6;;@&CQPxSX3FHQQZz@k{SbRQtTe&7ns+ z+zeHAVPO(ycqI*7&t7))^7xzb;f=Z&uT<+*gE0CR4BsNQg&c1bMSc6w`fMTi3eN|I zz|afX*Utoe(z^*=erjy{X6B2&UdIKEzo1w>-3%vRi==^M$Qe(;8SA1^B4KYdQ)8$M z(Q!sL10l)G|LSx0h2OsbL$N>f*Iuh-hhcqqk{@0}`|>4oJLts<{s`%jRN*L~e%w1Y z;}_$7q}LrA^ML+uP{^Lif`PHRn%op`>r^YZ(-&?!FXO_nI-}yEhjibiP1@Mr?~Xn6 zlM|D)d^H+g#>=eIwc}1NvCOUJ^QH?&T;+~EfUf9t)iCm2FsA3Lx}j?K>Dze64HXCk z#lz#%p%eNTllmo1ck7Cb5@GkU!}%96kDtaffId6lYSe2o6ZrnCD(J5fZ}{D#d-JK+ zY;uB)K5<*6t7ZPqsFR#>{=k5TU)7ZRekRe4Dk=mLI-;c{V1;t3$LH^`C4Ex9z zqx&_*2$=9JBR$1MaKFdN-8a7h9_-1Ysj}WI30yZNM+qMifZ+wK%-3V8pP#K0%(G?l zbhd!&T)0{yIz9x-t*Fi_{3UD`(*X>9?pf`)&xEUgAb=o8;M&kz;8Wq>*mQ3zPe{nV z`tHhYyCa{tH}fJ+j-iC!8Vqx+;5?Q-_Vt?p@?T|KsVss8Ra*AMRDU*x^3 z#qR2`KOR+WofHWAQ}YYI_?3A3p!j(h^8T3cFn4 zsCw&}j=+ny=S$)&g%9n9aR#>9ZGg19-sdyjo7Zmp-j7mv1aF+DYZ>Bk9qP3C{tIuc z(s%jI#rIsFvLT=2ue^|BqhsWQ;-f?1VlmNThNi!(v-Q9K+pg|9qs}+(kT?;dQ8QxR z-MsMO{dVQzLO(gehvLUuWM-awk*#K&Cri5&vl<2AYcOJ>M5Dza^5(Z4Y(4UXFPHcK zh8T?%MsaFZx0yrfb1MeJlQtAg9p?<*FRiHYel?UYm9eu!aW#rODM_AwOeChbX*{LG zF)B^fJC$2@-V5XFd=Q!SPwtOZbbC&ldvQqUf!zG;uN->1 zl@tkUf=pQ;fBffZ_Q1-~$*nU7|7K%NFMjo^L0J9B!booAn>Nf;)$QEjDc=`avmKlw zDMVJfM0CI-XrU}^iTC!-n{sOAndKz?$jJ;gTCsjqKB6rY#2xt?{$xOs0p!a2IIvVq zl>#1050Qr#{#~3#q$bNL*wfQ~h1FczXsvIW>#9>YoO9IaSFldAxY?aD*cIy(thy?T z?2Yg!ua??y@Hx}!*(oX64XkSWHv)eof#iy72^iTwe}4S?bS+367d{m=@Qoph{*R9K zjy`*^=Qb^ND@6xi>vVlvwtVHWY~nihUJ1SH`S9W=_{6pmiu3IT?8@W4h7=agwS=w~ z2Nual2er=^e}cvw%4{=w#jE4io}P=%Mmc}z4Ci-g>rA7WN@%mYb?eC)uYF#7jcF++ z)kYpw!|lZ!n=Teg2O>UATXkahbzX~ouaJATDinj;+bVJ<}}v6%9f+(D;)ycNmwWhB$ffJ@;5prTZdv(?Wy?}*PYYvDgFRz<6X zLGNlMXN;$KrM&-IR(zsO7-*~UW47#XX$@x+;~lyhny8?ILy3CoI+WJc9wI)?WoUnl zMfHqt^M#z}tC8gtd=NHsE%}2qR`b8ii&AWuZTekh1_{OTkXKbW$-;2cqkW8S%2s;z zoHY2kN@$HGM0}a$ohj|l_}HJwqG{v(HMwy5$0Wrlh@!nz^2$C0Et1rbU~a{It&-24 z&++N#qZj+z$)6=lB#lvDdXWj^)Q#6uzsI<*oxe`~sCQl}Bx{(rHRVtIKI$5_qU!Q9)>c`kjv=Wtab;Yh|ESepbgozFz|AI zY3X!*+0i73|H+*U`qIa~Pd}>!b*M6J)lLxXb84-&_FNspQRer;OW1ecwHE#|aFK-T ztM$p0=JL=5B)Yb4JZ>sx%&{MRTGnCv&Y>(}lH6Q}6WOsQyp~P*$T`NTobY&!cnwqK zqv2j}YPzPcx!#lx1;5pnns^eB=ho}=aVb8bt6jJ|S;OR-)Kw-|7l<7&L>dRF4P<98 zd`fKBvwK&VKg~1CuD8rw8<%5qDfNrtyI-k@&fLoI_~!ZaQy@=dX4rKwP}`Y`{O{` z2YV%wePNha-cOTlFqtt>J=!V79u4Tqf|52*K{^ZXJLpzE%ZXPosbtZWFme~jQAsUy)Q-%@^kY3L2u>6R!|HhzxgNLir8*5`?b zWNvP3&T^EVf~Gg4PC=p>{i_(!%ryqKPxghieyC@+_3oGcZF|OgwI%4Ql!TEaz24fI zhFUVmSuOAEdr}qp5$`Laxof&wTJw#bUMpbel+Db(>vBo&Yc+m8`F9OR_gx7MWpia7 zys2roTs8;J%WcOm^c#gU_J^N=h_mJ~^SeH!Yu}ZV^)i!#Y*ta_7fg%EAP{q5a@)^h zovbegEb1BvJD1m(D{Q6m*J@=23p}-$d+p=?Ny-%zBXF;ucK-T1NXPAx!x&m<*lqf6 zF7b9cRxB%U3uE3lbl*tlm$l9Fd!va!y?OT2ru&)ABOvR2gqMSv&*zx=VX9utSJ%V{ zy8MDFyN({mjas#|?(&(@j+>FM-Q2u6r0rhuu>QU@>=7kTOAn_r8@w%yqrEjc$15Uv zPj0M)F}@H5e{3ozYu%vXuXv|KQHl;#`)~TyQm8_pKK$p>C|W&i$cyV!Z%`~=u3oW} zC3i+%|K!d_A7n8A{_&0s6HB~%qMxooRo%s>=+|{*(b`r@BeTCdMr>Ru4K-C!ehLy; zlV|2l)30l19z`$S0x?_?blEp+AaPDy9UUxUIEcYGM~Pb-evF&Mdibv^jV5Zfd_6HtW=@Fw{#T6#3Htm0J>bw z;AX#I74Dxgr^3FLJuF-j5lo%B1>GZpcxhs!W*>7^DBT_X^&8Z&{j{;cFx*@(VFwN)y1M$% zs`j?F{0`8w5z#{Y-o%fK>yP%?TWW>Bq-&kaUDVu~>?`mmI}T2sF6SmoX+_R$=2kchvwjTOFuF_+_3onMim1Gluka~ zv{hfH4cPWVz}MiAy+(JjTubij6XaoO@4_H@KR1fX}nvNf{Sy=8Fx2fv%lG>LG zVLR80VIiw~{^OW64*y1|Gnf3*2uKJB`(2PCw)jnb;7ssw}<@2E5&%D z3@*YRoqHoga5g~k?Tt8*3#Xupqi;|t7}en*qoa>#m}!E*yKQ6Ns;|{7{yXr3OI4BU zQ*33D=8JT+2*q_LVk|2;17)!kXEZjWK;}oyOjDXcpN9X;erM}};@YA5zDNzmLBeEj z4;#w$Vt`;fBK9J9krJl_Y4a3ejJ+G)3Q^1aNli<0e%DXJRu*pLHnjwyVd{ZeYPV4t zO6YnG{b){gBZp~^^O~a*7D48hp(dL%O6>j~X+j7h;`$Nv`{W+y{MypsO&yn^1gpC2 zFp|ImGAyG~JUjY6VPa!k^n^~0*rerJ1DM%&DbhV_VW-qmi|xqKb@tueQE?57jPwYT zsj+U#7s8;^uO$fQPt;(i?Kf-dV98pBO9xhI1n|JUf@Fw4@PJWX6Z|eUx_LBYTbEOB zB$WwfshX@Z62ZGB1q~&Ocy1G zj*mnt;VIpsH9gZJ1!q*>@V74c9PPJ^Ikhp3^-nY_H-+yoqbjL-wO`(SsKJk%WvtQ#jM< z{?1n}(l2s+tA*UmR;p4!oiT=i-)H^;0IZHX#0wdsZooYX(>z3_nu@@Wg5KF}g;dEh z!{SHavU3%oA12ghQAK$gd2sw;5*CF9zd`QnTQ=BFn+q~&bK@kbioC%fpLlE|IJt8h~IiR-J_rvy$R#&z*al5pH1_(O4DwXz!z_s$RqZ9L@*vZkLUZ9&X zlR;6ngOV54>ufdA5ofW&sn~cqFHz!xsuJd=;LhRJ2|R#6mDllTW8>y1ak%mWvcw_c zu2~!)_x(=RS8j))smi;SnpyMUWek=ZWUg`OgsVenFNX{*0}9M<0)U#1wNt@ znf|e_HXP@o7o(-w0)=9|Dw?fufkiG@nWXZ{-(Cu%j0`TLoFWefIDVISZmph(R8i%% z484cgV43NC#XGNU5Tx5EEN<6gL@qp9Rjy9zHz}tYdC{Vz?2Z`%S%>u=6;pY3z{!>6 zYV$duEcH33y+hE=MsR9gCv^-_*CFpZh$YFV@L|`ZjTdYrE;`b#*R>2OM;xg-q8GB* zABw#lQ#It`VyY~O^}%ym43m%F&eX|q3_7ul^zyj=(>T}TZ>}uIIvwryW`z=vY~L(1 z(X$F&LsGspQM{d}U9D!Mztr{|X=eSbmC0$cZOfBPM~yx?s={a!_Sg56;s_~$x(zE@ zXWB3yd;`)X^O<-m_-+X5$?mFj6BWT^HZ0lWq+Xt-IhPVx_0mn_cggc><9+kmwB_Ix!pdSLaz(&}4I%V;t-r&MK*)TCJFSih9@O(}K9imD`Y zI09=?2{{G5={}eMZkT@l4V0UXC}Cl_R>Re4CFWi*dBs>s;4SjyoT6h3_!Z)I%~i8> z0rRfk_i0ub6|<4q;9%yGGg1OvZ&o&Bmw~q~J6V&4<#useikJ@mH`!;|9(L!B;jC z(1d6M=!2=@<#w|PnWGxhXs6H@i-cO3L9By+fO*51dFoV3r6#=k-?&DonAXYplyf7i z$#I$Y@~p;5fjVGxgFRTpm!phMYwJjyv5v(Lx?q*K3tsBq`0U@QMm@Jo6-Vb1=o)~$gaI6 zIe&dbdgX-4f^{aKD2~54kV7a)!i!H@LXB7+Q`h332o>max5)P+9k>Eb`hik8ir}s# z;V7Z8`cjBbk=@D;JOKM4UqS0&TUhg_P!8^d5y=7Il*|p0aQi;OM^ai`#MI-xlqX+b zX&akdG_Y6Ed?I4|a&ClpbVwviSITQGor3VZgtbptk_dT{JQTWcO>rTLhw-RoaMbM~f%?oyPK+oAk+wv)&N6(sfHl?o4}@nHy4l z_{5?Ep>2EM!8g-%>&L-uX)O6CmW81;@4@~{->9^vXhWSiT`?@4>!LHkizI1vJ*uNC zqIw7ADj5^0#5anF*l}{;T@CV zkBtH@^PnO=WY^+$6uGgAF7`sIuS;L~r2K4w7yaFr4BC%eRFu{7rLpb;#~@;9r_P#Yt=M(=yZH+LAE?Z+-*7JA_K2fc$^Tn!x9 zUU!?fSvkFQGvXE%fEYOwJ1sN?1x(mWBHodupme@rUz!PeSUEZs8?SB~LuD)uM54^yz+F`f1a}%XjV5 z=c-URpVqgYsu{g6CVyNd-_oj*BJbSN+Nkw7M%y$LMDGKzsgulpZvTz{&apGEWH*)s zO1L+UD^dB1=OSy*jm3Y_RY-nY%yGl8@fxu$Z+^LLbQzHSwPi$n;HENdEM=IdHVt9Z zcoAg2i6;3YvQn49DTs>+i@=|-C7yyfC;?OSxL(X)^eg*onPmYVn>KXYx=CsOeZ}GC zF-+}5lCEQYtA9}q%`HT^rn=7b+ke>dN9 zEJ~yf$?HZzPDfI9PH+HQpc@wRK^80wc0Pt59?6?G^PeP5mF3&AW~_%a*=#~Tt&_lf zWg_d&B!m;K3DEjXBi5+#-MCYbo2-S|;}uvDZ>N8665EIUWDmQ2%;LqW*u1aMi#GkM zNUPQFpJtT?aT?2Alrz;DLiOoaubv-GRu@Xdyr%UUie}7|h}j)gY`)}prOE&LVm(C$ z=>*)&{@oK_&Xr!?;TPpME48zC*R@La5aNW`j2TZGdIMliKH>?mopB zrExot@LESWFx}HM-}!4g+m{&W=SrxDBWC zgL=zvG6RZFYbPR_ipe-GRyJf>`LRYFTlzQt1Rn?wbVwnvIWpdq`fKhY#hHPk`Auvu1 z&fm?cqmqdBt5-rupL}~`J{J>0S4mS-!jxIqeALGE)!OEVbCg%IG|I7e*2c^(Lboq1 zWqfPGm#kD!SJf#O)N6rhKC^kDeYym}XWZe<@>O_#ypJ%FxZ8-g0J)@Xz5_&{)W0=E! zL^OU0$y%bA#=B8w7*5P3-X`Nr(|QzS-q-83ipuw!a&`tYXW8owx7ruCyZ9@_K`JAz zcSP^q5|fXuZ_oyZSsLmpJp^=dPx2>gkqXC4(}8xUAhUT`7VIcWKMPGku1#!vxTf%* zM1c2iZEpB><@KYv!jzgt>Ll(-N%iyJJ4E=wAf zv&XBNC+(*z&goEE9#A{cc`0bHp;9smy;m5?IWe}E27?{35ih6%3QNP?rE@2lFQFgP zffmxlVtQBW&KvWmCG@GB(y>p^R!h?x$iRb=!iUL;7EFn9S)29{b(>c`B*1CrfYEfv zT|wIw(7&->$7{#en)By-Hwqe49XAq{Z*Pj)?>H2Wgx|_5?=I=XG^vjzPGziX7kTvj zkO24n2zq&awS9@(&WH1-{bWMgEUGS`_T$8Xhien>`p!#yb1Y{e@wrpC^#rQJ-t(Mh zINO4~vq4%(Kj=-(glxo-kK{x&Q3e-5M4)TZ6BYSTGO6ii(EB(?q_l~DD)ULkFdmw* zE<|^v zIF-#~(By<&_i%0)OdAIpYV}jl1%7_&js+m*)?HR&Dph>gS8MTo!wVrS>q{pZEm2y< zp(tEp@bBn^#wECf8tW%Qk7hPK!g&_Jm+k&s*I*B6w_98=kvaUi_8-mD(B5^)>R0E; z7shwq5U#aa!10KU^bNBI1={^;N_dQd@6p#M>@6R7f@3fE#rh#%&-Pb$_$sHRSdgEm z!q{q$^$x&>ur!(o?AoA1P)eMDi`03=mXniwt`a0ra_*GPn0mwVLL_8issGxzdGDPY zW25-h2K1{;tN=oEGGvYmO`R^w7R7bXTw3gck}~@V=Eu;Ty?{+%#s1VNc-$E4OT2Y! z!5!*AYW_}eQ3X0)z#6Bg-tsCAorj`$>KY;l3Q%x{?q0x-fc4daU~SlA&K+>!_GSUD z4Dwn*q05rr%ptLplgTz+!^ss*+ASnY5o{^D~QU?<~8#etNy`r=}Vwh1FCxF z{&kq{;)!7MF$|HnyIrQd&6NUo!9JcDpPt`{^r^+@`hd?rqu7e2VYQJn6VwiZ`G5<8 zp-n>A1L3s!Lm~Y2>!!B4ti>N?c@!EOzGe=;0gM6epw6W9c|#?Mui=lCSPF|w4ui4m zI_R>w6ZLT4cYxeG44&}kd@aJ(j9pdCdK;_(mE05&Ar&x(MvQ&Sg9gQ%{>0+4%_pbqgM%E|M`7(=rCTDH|7xQ z7pY!fql9GUChO?PAL&rIPFjde#3U|iz42iQGy_o61MST|KtXh;{R*O?6;46@*)($g zh^PC>4cIF3aBlZLj=$bQf7{tBi|?)f-TmR+OW1~t>AKa~IZA=r1!2zP@pLgQh?tD` zHg2h8p?<=9C{XuUF7SZD6vYlrll?$lDBb+sbbc%l_P4BDkgTgqgD;R_(S{*hB`W_s znnb(jaKhIw_UmZ@1)m#tFy7+oH8XMkCL`gBgJ~JgGo(C|NQTJ`^A}$4*tvi_>oxBuDLzcMbp9EH3D z5_r!T{Ma3$#S?e(9rB)^XUI+XTX;^#ic`*fXf;jw#dPtYCVq;6kL$qK!9e@6;aiG7 zo5Nw_p;ud-C2Lc}5yv;bu0QgMta+;$64A1_KFx`#@_6KVF8@}cDXS^gKLgP%E;Ui* zdcv)6%`g12(Xyky_y8_uSt_e#!OgL1HEFz@xRuiToS6Qcg)^rwg;P!YN@H^pw~M>> zgZGjTvh<=@BHtf6HYT77<5Mmc1U?Ch7G3PqC{J#gHyv87D_(aIafPTqsLR1dI}Fc# zOvUIlrR&;|{ZFMiiGn{q3u6mr7`(`&FQS{pb`nbY#!zZ%69qq)4U%OZ5HE&YmL;)@c2tgl98 z26GLqZIXYr*@tB--lcM)7*vu!UB*-f)_~vmox>@0M}NVEVykv)|HZ64`6oVVKf1o` zy-l%Dek(uK?{);q>Dy%e2$|^vKRdLP(I-L$I>?3Z21+AgOZ6VCd4L>&8cta2AI=z~ zeWQ4nTSL<0k{WVJu@_SkF2$sMXx)E-c^rw29hJOZQw)5x5#|$?i z{%WwyV(J*05`v4?bjr}q3bN}#L3l#{LKgNylh}1cxat^1?Xn#Hm>L@)_4}I<(V1Mi zY|Xx##B#N@fy_^iNj=PSyi16|wHHBFVJq$>h2*edn1?&6WvX78w8PtlN&rn{N( zujmO}S=e;!m)dQyf!>ho(ciyBrK_p2t3-zA-!i4{Pb=!?x;d0!d%9pkL(M^5-6{8H z3qH%));~Lcw0w3^_l{SN%xnNF9_M1>oN*A!^jq-~g9*;ZRE);PPJ;57Ytw+L$P_|D zu3h=)c+5H21QBhSUg{4;i=(@^*uDiaIrqJ@6V@r{FM*4*?b+v2j_~QZw5*SoD?7FO zA9OjNTd_onh2s7F8oL=DjyQYN=00dTS;h950{f=K?C-(Wl%ZoCNh5KM7`DuV`wkd$ z%=2BpWCm4wgW~2lc}kR74(m!qa8}osr)S4nh!(o;F6A-`NssfQIii9i1IirED83)M zbFE?}p`nRmwZU{+p~iecl)vDy#2%;IVo&V5?DMxXSh%&7uNX;`3PnS8IW?=uO$CDl z?~?mbMz(BTcs4(daTQ%+wI>_5Lk5^)Ne-`tzEj65D~xIMf-T3-<3)A8se~!qmM(#YQaWJJH z!3pl+BXf?;^Kj1j(vh1U?HP_;)OLO4VeWd)9{J*AeZ2ip!MNoNQ8e(0G~6Wp3x#XK z&CjPhJpOt&W=-*x8pgA{U9ax*HLYvct+S=+&E9IVioCPB=N{rrU@Jk>sZH|1aZ*( zJ0DJHUEdEv+!#Aeg8i(x&{oS9W_QujDdj2V8DpcAT7=4 zPK)ktMhGJ|QW_}*X^`#_A|;@pqGJ2`?fpIHch3HTo!5O|*Y&)w=kwwBY2c>!nN0qj zxuB2}LUjnnQCsp!B4~Y(WT~Lx|Flv6^ltC3!KVb_uSGInlJh$~?@B1Safk3+KZnZ- zY`~O;_o^ej9DrXQWiM^y`PFZ|FS~vseAn#zUwrh=XUMkapRphfoB#jeysguJ(eS}* zwyWR%Yse7)`G==Qp8Zyx^JA5n({Wt{QWo=dnZ@QW$K(C&JKu)(YVO`Rd;I6S$7JQj zGlD$|5GXE^7v%N_Rg+{LO z&bbqrK196_RHC1E{G@-rh#k0eOx&%@vLEa%9#gSfo-T9oc|sxZPD!a{+MRg)dnzLU z4}LOJ_p$cPC*bJhDoO6Q2vIK^i{6EGP?Hv(YFF>>^nTR%AK8zPXCz0}LG;E3*VZ|6roO+`N+*M-t^jixI?)2Zii+)qA|<|oLnPqAzm zfzc+t-+A*qzh12GsQxtGzy8_x1bxTI$kAe9TVdyJw8m+W@O8GqVZ`IcPJv0tzo+d# zdS388e)C+)@7bCE`p4G`&+i6>7{^f_dI|lHOp=F4lFl$0$oHdXLEi?Vp4>e>j_zES z{}qRN8>f)nGwcI`R2T(CQ6y%-#PHX zOt)e7mwkRf{6_TX8n2Pn+E3|L|4y}`D3I&6^T8iPe}CoCMfBtUkqu0~yqQ%zbbht1 z9&-J6_NLs+eMi21)-F}sZM$nw=RfvzdLk#rywlM-51ohF&kCKa={G9TC7)lcE8v`sc1p$f!rIT z-Z;0sh>Jev0V0j|?}xXtcbaOJ-ux3&vU_-oWIfWo`?vU45c{7G6+d22U`w`yC3J90eNKkq|cnb)s&U-I>ID068Ar6Bm%`mY{w4<0 z9v=S5y(9O+PxVRd_lg0TC%0}%cQQu)61Z%A9&LBvW1#Ku8W(=ccWZykqqm`96twDcmx4(Zh-hb!nO)eI#w@M7_v`6shpK)=g=t%ut_xjjBdz^)8a$cEkY-sSOHAl~kE% z%ata7yZ?>zn7#4c&-mPqUoTaDw+x{J{IiObnhsYW5`p|mmhg=5Z}5u#0p;J7%-U)V zh>%3A|D)-?p7r@pn_>>SE?y3rh_H5mCEluno-()ZR|vZlx8UE`t1UD$Pt2^~2k*9x z`;I#Ub8XN zL`Ru!&_O*CGE55LqCd^!a`WGbch$GI0>sVT?5qBMKwdTLY zz^-V%2$kWxY<`a!=s0`qC1CzQ?W{eZ3cJHA~Qu=>f=ez0Jl)7)ALlVgj} zrZNFD@Opnm@I!gs6mu3qZF;VwBqwk!J=6v-fV~8Lvo9;Ms zxB&QA8weg|X&4tXjEUv+T#jPhn*_n6%Sd?Re1`y~E?KA%pW2W9P3Z$NQ*#6PQ5Y#K zG(%1lVTa=Y_!C&n&+eMJI%&a~A259CkT8gOrYBst#-|n6; zLb!RKZV}I7YjN;GJjHb?a|7=k;qKS_dR`e?b+(+b_ zGtDJdSW;lUnw#c_=V(ambbE;cd3XRB*OFh~;VN*4 z)vQbUZP5GV0wWb4 zTL(CBaW604CbXhY>qKyQwoE9|1d@H{Gdg-whcivo7EwYhC{Wd24C;Bm6VKm+8ZBMN z3Eu9Lx4(wWdLOA9zq!HeCEFG3z03lV6dCn$%k}XRr9gJWa>9v-lRwdGLI>vVkd5)c%{FS+18!gEehBL6gXy*F5+L8?Rk!>nhWO0rHnzOZ6st_HF;Of8hsi; zG^|!vuFX}3n32C^D{Kz0OHW-T%&HOYVXZRK`4aIZM&{G?QwAz!Em9orHWEr!t6go$ z@yHL2eZFpJXw|1U+aTeHn3$#%q8*{iYfShe$AU~)psUNmrPa^--*lPa4!DRn7a|p?acf$GOhD0uKe&QoVdR&A)5Xm z$Cgf;%0{Igg|%}{V|SVhdN!hxPVGuS?58YXf@uN|8fEuXBJ;k%%Qb^$U(~a^)v}|P zz^>eXWvUnJEF~Kl8gDOYp}dmT#CdH+c<6W*S;@p-m=Vm3e)d6%E50R&eP{nfiQg*> zi!T1`e3JdmVhCD0r!8cP5GMz+Qn^5|DI(+|OFTsHJWQ1!NJCkS9n%b`ox!Gd6PX0-6Qn!<8CF7N-rBeF{M=SL^9z0{ zzUxRU^)+VNm1owsnZI1&w*n?D3b9z47%QIJ2k#Ua{BRV%uxxtFG%(3AqGUk;O1he& zP0~c^^eEc_gB5K2V6Hfg) z!X|+_3{~TF+`h>%5>b$frrbivP>OT6pk0HT0+TJfGGAuR@5@4o1yJ51DiTiL^k1f_Cz_FbKR&3l|9^*Ms+!=5^=1(8ZABqkVgVg6iM5gh6Wh zq-*Yc8%g>*G$W}1+?#H)s*A}b8Sy?vm>hbEb&E^|3nD&fp%kc0+P85`ZSj8fiPYQL z*{~S4vKx+cO>Xy0{E-%x z4iGoE%xyE}3Y9!mfq^e4w9;MA!w2)!`ud`%zbZkyv$k19wM0-t$hH_5v*4`8w zM1X47#Z;S<_EaTX1SP^Ex`78Yn1J$vXhjoJd*b(E!fF3w)9|P@N@lv9I-KMdG^xB} zH?s;$G()zrl6{hIeMZ(m@_9hW_sYDeBHMmI!sZv$!JrS5Ik+T0xeA@Mj6bZWzzyr4 zg7*#ok|zVG0Bp~}mOQKVMOe&!q!6THyb>eIrg^o&kcP3;AARJ0=Gf`IcQ`|Fn=t+S zO5!*uU^47?1yZnQaHBKNTCC!m7=F_=+@BYteVh@z-sn5qwDGQg$8kZ-;9lI^X|)ED z3K-X120^iitT;7?g(0=$6<>|Otkuj+mf&`}S^~Dfva&}G5VhN+h)p9q*(F+iB@1#M zjCXFob;rH5v}N<9GVw;X2CA;7>oFVjwLTgy23>e^aUK%uxXJkzX(8{Xk!{=6%zoy+$5j(w!Vke5p*q#dt*V(d)6X#tTR;H)wk=C<8i`2ehi21$ zE<3@7A#nm*6Xd@3c54-T-=Y`ST>dW=imW`rQ$SsmfkX|&cQXkVB}#A*C}1}9@#ILV zzE!VF)V;gX@9=g7OWnc2yQ8Jg+BuTOlNwD#JkCaVbGrkAsp#}gL=4R15G{q=DK=(O z*dtY5Up9;?RZdWwL?V|{2crHw9#aP9sQ7+H(@9LYSMlbm^5Av2SJUY;)WeWgpF+N8 z&YVIO=dB%0exi4oF?SWvQO)6NbG_V~b$$pQsOQ#F=Exi%2;J<0(vHTezH)ap&Gmnn z2lNos>O~f;nQ-!DWOUuM3q%|nlSQV{=T_>kzl7=)*51!uMR^X9rZU>RFjKP^=T#ls zq9KuZ=yb_(Q<&uq$=kPeIKSnZm_$+a^?&=(>E9!DE=+RQ_=+45z=&JzW%U z=WX6d?7I~eGMkkq9YP#I6~W9bfj+c?E?zSHspB_8!DB7;Dhm3twQ`FI_0Pn*wOy_0 z*!WF&DH?#EI%)+dk^e>S%PorW`cO-^Ti|S{GXwS8w-(-7R=Ap5kZ`dLqsgBSDdYUQ zlevggXtVnT;HJ{@Cy}5H^}n-Zd4?nW=ZQZ2w55ngmhkM%XLXOxQ#ugw->Zb^bZxIz zA(k4|FzY=8z7OWdtntev4#B6>O<(8S6^*WmyoHGuT3Bj5X_y3)Qj=7!bCGzMhXac*aJi?I{9oIdE zmyqIaU1I#80P5|pxAQ(bIEr-*G%uWfkvsyB2&uc}#;!+c-Lbg*a@E|WF7z-;xSMo| z8Kv^N#?mr0BAn6~s^ky!j3_?V8H>#1?>Z@5*ho>do;7K5)QuN@S!D2LO6e$Wm$5LZ z1F_|h2$h!X`rsTeA>)P~XWEi&cCSbdnCB0>HY;vgs3f(1_`Hn&eNFaFRKvB%(b2Z> z8pJXWYaXZ5lU{{z@pIS&5>5}>V#FJ<%Y2wBJrk?+h-%G*468cLS~!yV;ZgqfHC<;b z{Ii$=H`gB>(m!`dkn3*&1nU)s1s(xJNNI&T%$RhhIiJlRyH|s(9}#L+R^ssxlu<@R zLZzU6YfHrIsXJ6XY9>v=+hkC5&Db(?s={9RWb$VYj=2{T!}@JrDBGMA+EOK6Js8?d z1=wb7HVw;}r2hIkzB!*d^tw`2$>)p_dOORalDicOCt6=KH1y3s}(L2$D>y3tUu~upmo@Sq?h!_cnj)bq(aH(2QxnF{63f& zvzbF127S!ReQybPNLCXZ3Pa@;qi82~0Q<@9hn$V|B=7}a&NkD)F;q-R_Po%!PY{}K_-KCmy9Ppe#sYD$}C%bg{&e9>h57X~>UJ1>DirCbN{?SbO8q|;eU%Iv$lhon}9{8xv}Q|obI^uqkrn|$6((N8L-?Mdh9PG``2Oq$lgADNT#;H_j6R>FRq z?j&Ds|7{xcn=Y#Kl%oL;?0Wu;a{R$NDuoAMOI>FhZyaAe^}(JHLdD53j5(#^R8~wR z;CM^qH6)#y*~luKC+R^5kSVXO@N1l; z&GM2{pj<-v?+DdoL7zNv2ao<1I-R9rdeF>s$EvZKt%4;-X7bzjCLc53PEYhLGlrJ} zsi!3S2w;&o3*zXb`7RSOW$_T=vPJPY3Q1K}L}jjE{n@rl^XLvQl+BA8)4}MGW-82D zElA~5_ix9$tj}FOeC)$dDq)yFsIyaBe=>fj9N)sf6t^pd{bZ}di48QHA7@Dh0heHGtQ^d; zq@jg*2}f3CDvIEV=i&uqR_i;E=ZBIpI=c2(czmJ~u_+P>(GctpMA*_jx;5HO+ts}F z;{)|yWFW0n{LjlFE^V`hZndim?b~$)KjB;C2jw_Z;!$DI=n6%xZ#L6uHb} zHIIaEs@Iy-2BjhO6|ESi*#0c9&{rWP?-lovi%a^aBpd=?#Wrl?>hn|9fozushJo@C z+t4$lS^c3OPsdhafVOxeIba#NqLV`NX*@-Ocb7lXj+_^WE$a6ROBVKPY^deNP1(DI|9C`b*jkv+ zSgRFpj))ywh|-hiORPL1B8b?-gW0p2;i=RPjg(Lk4ND5IMn0fLIFHGdk^JTkb4y=i zVbbT-F_GK&oL(2g@lk|aFr6PWKGkBzyn1*?+!Xzeyl?ZC)4x2qHSW3(clE7qWj|=$ ziWKKM$=jd@qQIYU)9+_Xi`ZbKbPSYXLBeJaR$vS=QVNEnIq5fY1Czq}l6)izv;I40 zDzN&aH(J$j1`SR+114or=b5u{uuwWYFN2SQQGeSaZmartpf>HH>rM(q6lCzSG-1O& zSX->*TN10==i{zOk)I0zfQriczrInm73ZYv2~ATfQ+aDIJ$TAGHlhHsq|sAItBr&4 z2v*?Q>;)^77~KkF-*{@mLwizM(XDpkkg7HE{6@AmHsx)*RZOCa^5>;~2S^^DlNmu$ zd$Ae|bWs$xS*$WEHLlWxhg^yIa$V^kdc+%jUC9_sEnO&GR{l}x-Nam058;UGAX0X4Q5U~#gnILKTbk*P4O7Z!l+Ol zDUbBB4U;09i@q2#5S@H?Rh|`FwHE*-1(+H$Er8`58RBk`Vw^HOGS$VoTHfx&`--^0 zVs7Ecg7tKEDRQv>`1=>3Tg0~k)V`&>poq-kJ7@3R_#RA$*mw50Z@ikx-JZUGuJh%o zr2@N({N3>L2%#;V?K5N7g*+l0Rj#Wd)tu$<^{Iky4sVS1?FLs5mJvw-ak~T=%c+SS ze&!TT&QK#Bd(or_E8J=z3GI={1pc6A;ws|P=ppP#HKQZ!V7i%O1EumTi-GS0)Aiil zsRveMYM|b$h;H3XxBhv z&Z=Q~Ea+Cg1{DwXBI+L=b@1*cd!~0|#i<9hFAYlUB$hBh!fXp5Er7)vC(-#dy-uep(%wAT2Np^qpe1-ARv;JZq5wNo!8<^BT!q9LjHeeYQ8%3q5 z)7&GNmMZh%YhOuRgLOd7vrOg4GnIrLyZ7FSy z{;%R&IJgTet^bO7>@eWI;lF()V-oz~rVe*KwnSxLXMhQN>o9N>v5c;DMfNdgmPZl9`H*9MYQ1 z-Jmn)sHRr1)y($=@a)if(>BkaFVVF=Hc#i#7}y4YQ39 z`qjZ;YNYO`>|nj-f2a2JAaZBYw(q{ENsn$F&&*Y)1aJCB5QzYTO;+3)v-s;;+I5r=RA>Q+xnmQ3> zXp3z!QlTMlZ@&lKHu~aem!Nw$iv8Jb@ja z_Jh0pdxasF+8%S&jkIHo4UIvzq@uQXpIC-*u2#&LF{RF0BA=UeM|{w4+hh09ldwT~ zb9%WEeVAk&;PDCKk5Jr_Wr`}A6{R1o95z_wV?Qz9@h;V(C_uFKAYRD4$o-xYgZE}* z4AL+X1xzo77;zX;(Q)1_R9cWK9hc*3JGaDK-r3D}s8`%I-+Ep9{3K|m7chW_UsM4xj)ssY!^n=`Vko!DeP6Nw0 zKLuJuk=<{v(1a8^J&r-7ExBb0YDlZL>|niY1U5H+*8b#@c$A{`%G3R>q~I6jJbPo5 z8jWaVbh-Uw1u9y#JE`4m^RO{slz98>?8Jw+^8$;@4+`#;PS=aCt7lO`jIz{rHSYI8 z@~~BrJp`L57qwe+@@+{-DtyCB3Ck>EOr901-b0H7Lk4z9t!E-@g3k{*#ihd26QJRM z3==jv9@y_-ZHi1#nMRP|(!>ZD5TjW8)Jap^c&7NKyxkS8ZuXoJlV2Qt(z~l`06W#! zJ{TpIK~NRKdH%lE#`Q~31<=O$HSCLl=uz8sC3M=o3R9Xj8Hn0{9eE--RRA?=fBj&Q zyeN_=^ZA1~WI1cW{ZISqrJluZ9;chTK4Vs`s}9R@PK87GQpTBIjF#q#{vyMUuliTW zM)~Z_W5c?W>iA>&qgUM}wD;T9#Cy`PqUJ`!!|QL-X8OL@1e(lgh!|*C>oBfE!5gs_ zLk={^jjruj9M3+rd_oq=FjcTdZyyK`EO(H)j2c1@0lL_7EJ@%! z-v)AJ;c7rAKdJNM#eA=>k+&g893QKkS@9OB5IkbRFQAZ^4racIta2I4Th@=^+g~9> z1Xe0>d;m#*e6owb7?*grlQx%+UXu-{W&jX2_m47I>R1PZDxK8rs-2!EGSRz09xnWs}Fi(N^-w-SGyX~mCP+schOATSXTcA z1YKw%vPep~=_16^{tf}nsqhwEIpO*<*^i0cy%V4Oh51v<^z7C;eR;RjmB!snQH^J; zPh2d6%bfo}_CI|zxA?Sua`QMs+?q-_>O3Qyl)dcO`g7wlWVPRv+<}~W+8H4qQ-F|2 zEdnKMZrdkVyWA#&zx0ms?7@G&LV+7+iytf5-4yJA(J$@f2L;sAh*UH95WM3RLFZDp z4Hdxbjn-B=zA?4Uy{oD@K%Ol!8VV*3va5EN*W-^>hZO~QzU=3|?=F^ms~~$kS-3bO zF6{SMPz+!H#jC`I2?${K^XfK3w8~;W+G70C1I~jnLDZF$GP_oq>1Du2R~SG*0(d8nCaHC!!iY z<8h-1)Es;jbi6t->yyZ*A*ss8`+4&*9VYC$Hq}8{6mTyMEy};IX5o#UMFWL<^H^P< z!f)T8_>(h#PIjTkK*#o@N=ugMPKp;(mq;}ayBv{Cjtn*K<6B4pD5$Vlk}GIL@;2BO za7e?}+DMIfQSJqkOi+y`yH9Cuf1B+sjwd$(PJ@1;GRS3>)`;Xh4n^nI`Xs{eND03g z$jVNOOk}<_)%~{LGhw@gtKibq;j>VpzQEhqpU>lKg4{mu7O3E5czk;JfWdzz6+Z?> z!UFpTl8Psf!Wr+=hGvOWAS9)GLN2DSZi8HP5~T+EH*>yrg+Tq9**tCIkrK}z%v(;V z8uf98|uBJD_GQ7Ht^1@AdQTwNk#wk)~!DzWd zW=E!l8m-?ELTi(Ugt)PgK6WyuuxHGruX^cyDoe*6DdQwP9bM&cDGYHlxB=v`J~IKwyjsx71P0 zfGg_uK+o!&a3BB-=_gQwq78Ud0%53suH7<0SMlGiR zVvQyrI3FsCP8NTD>{VsfV0%lEfT%fr`yHR}-dfYQ#L52jrQglU^e@2dFG&p73E0oU zk#E`$@82{?x8Eyf0ETHTmWj9EnU5IkC{m1&Oq$ZHEt=BY8Q1mmE38O+ulZ^DZP(8_ zyhM}ZZQs-p5wLz9zX=dP6>E;wRA5Ab!7}* zzWs#ecs)nzij1PvZw;%O%nz>AJY43sC-$A39Y2mN;V+R}4D%V6>KN>@dh2?&Vixxo zUB+vr&}{27Pnfefc|$UaJXT_1m^D4Nef;7>wz0mt&CppC$4T%0;1; z{qQlh^W%q4md6pV#hX8BKqmV{HFZ)+$%=Eg{A>(?Dynu6}5cZDzx% z-SXaYN2?!U2Sf@TlLp5s2vA!NUl|_OF;J0My-kmF$(0G9gIL&xSXg9GmJCMw5=cfb z)#BEb>cs{IuK^^fP?X5GZx<)CVjvsVe)0O%Rl__F?rJg)5?QbN+3ic`?pySPe4t2> zCU3`Sa!+{jc(;%=5coEp1i%uX}gWsx_HXeP0zC%|{M5 z$Ot78>yp$dCX;wbABhCUiH3S5t}aQ-HmqIK`ze&Njiljx{`NKdC23mIa0jH&2Mb#4 zv!~W58GSvJ&KQ$n&*%x0#YRtVYX?nFJ1F4rib!A^RxSKIQCBaig$k1J{fCXroSaa- z;ObtOX{V87=HVzq42fF!-bHI!0Uj_0&~+%4dBctKl~xjfWsxQ4=XG*)rn z{D+kFQ-gwLW-&sKQCmom_QKa@y_YNy6~_g|WpShJYr(amQ6^PjSzBf%mv)W3N)EgB zHg$DEKC&dBZ|cA&wC^NYecKHwN{@_{&>JVm$h}QjqtAKIg`k3z$gZ0>2y?WMUTifP zO`thIUhvj~I4ZGxu#f#a9`bQo;^3v*gw6KqvbL`>^XitTbbH*~662U$js&ksyti^H z2PYNSh3i)+U?Uavwn*SIA{XS6L8bD*#DS`a z;r$3;M4ZheSc3zne$!u^oSctdr|mq*(ES;_+>HBvB~ZTdQ5eci%wLN6H2Zs=mp_$6 zS>J2xr$&95j+cBnL!NVe$8~Yc%eT!tXe%VY@&FdU+>Xkg&KY|5O5Lh4x3zzt;tKtk z?yZ?b9hVyYq@~E_w)S!ZzP+YyJ-qLGy|TEgl_ILBwuoKs^FmtrO4{m5P4`#vt`P-> zGBM*m1GSqI7+SAp+3%)ZC)lR+mq!9cu3allCzqClje&H1vvQ8E%r1-7^g1u|$j_LA z4r1FIS3gthwKaWHKv%qmgTn1>ehN}9?B+IET{B2RRtyHx3=ftk{E7Lv1=3%Kw{>bG zQ!%tLr1zDK!;V&qA=esq3{1<~ITP)&vY%UAVt1)2nR_St<0jryeOM%cj@(v4Gno4a zw?2UQo=MiOoe4Y)391!04x?JM>Z|)!I%4qjj>ZF)5?#vBT&JaUoTRnCoEs4lXTZ_5 zrrn@RoeK+$g`bHWH9JNN804=~LA(pTg8>`x((6baOWWJMo5Hbh1bc zbDd+c_;WRePJrfZkibF5Gf$(Xf`Sy%N&#(5A)>J%p>-&g&5^*EN4`X!N5kSmf4<@t zD4c?>I8LO<9&(W5)9W7OC-Kfr|Dw~JMMhxNy^>P^T^_9J7@Ph=D~#d zlltX)S1&?$Uv<{%A73Uv<+1{j!P`#+hb+$lit2flw2kRCatLnLkc&<^$6YV!Cpj&r z$l00$Q)lFj+9K8@jPU4A!5FL*=J6*!r3tSmnk}apL=!{@oX8XO}fbOX`g2rBgOU{d7Dq z`(UH3%Dzkf^Ns``+l=3RJ9{-qwa|>Ekok)dat#nw)RN-c>_DHam@4|c_^ToO^SYc3 zz1AKLn<@b@`iNSt$4I8N!@W4Eix~w>vdvL!+GvH^M3!jPKVY8x>BXk6^Lu>C=aal| zS^2xmtBQ4Qk<}p|mV(W79PL7OZWiZgz!Hm`PFi*Py;7g1vdH(_wKb032Q{Faka;4` z5?IpW%4vNEv7fbzI;OMLp-DGS&)UpDhpr0f(SF#CNy3hPz=W`8f)&Q3E(NJvbi9yp zd%r4=M&~cte)bth++tdLzh!$ZvnWwvDF<*KyQf{bR`i?SM+3BvYwLaz(5LVH3Yj9B zkYQbRk4l%H%dWaUrKLLw%X)(cD!(PN#&{ikGm7tl#X7wSiu9mCL6%83{D2#4V~%#7 zU=Uen9y{wrW{6KFRE~*x@`^;}ZOyfZG!{tLq%n>$HZ_JWDe7v<;r!f4GF1Xyqcn}i z)FU1<&+g!ZM;<|~bq0*zmA2&eb9e|@T06!O4v+Bk^@_@1?9Hk8(5inK0$#8r?%5JSw9QXVG1E#KW)$F}SX1( zBb_OxF4Qr9FWwup^W6HU;b~zPIP(6Ou(D&%{DM+hYJTipt<>s&ncv#!j|E7u14<~POehd3h@j&Yq{Eglo z7Avz!CHgeAO(ZGxL6$kOn(s^?mZNVvf02zl_x=1$(c<#_+uZCz-#_BRp>$n~v<9)u z-;2B$e6Su#pB-)2hki~}tXw^Tg(<3mtaw+Pwdga~BrI!FfxPaXuWeBstM5*y~e zpi88^2f~F#WL#q9i8niU#b4mi9}O7dUMZk&eDbsX_ZFUTUuHU6={uAv*3!Wp-6T!` zJk6#CfwL&e6{18?yK;9Au{*XeB@$ZPWPyZU@R?dilHF~ipV`rA!+@cX^kP)HxI|iTksxr3luv)j=ia*sb&xpOX_2Wea|)yzy-g`@bYTfw=XHAC z!Na@@^y@{+NUwKL30D4seHZ^ByVtjbW!G{lGUg?B;6{N<_*Q&9T~7O)vH z@31mMxR=umUVAmC0(nktKg0;rtNb>l6cjX&&B56=Q;-K%_kB_QOTOHMYn8Mqf~>M6 z!`fzDHexnkyByU|x;~$KUiHzE>!U-4PR#srt8#BmH8x1Y4_6yeb%-b9r@Rci3T>X0x6lF6uwTiN04ewr6g{bvG(|v(GJ$fTUmp4U+Dd-y}DZ+Lli6rdDvItqhr$~it zx{WkTGl47>dU5-B#mv@Js8vkNCMRkgMax*cOI4_XIV2l=U&T{p7c1y`#2=i-@@h4q zR5p>MdFy)9FXz2>u&b`9tNgTHJT%hGlb7(^F6qxL0i~d*zjRX@j=T@P2Gy2cDfeB< z1Ra=Qq(ctRjL{Rn+g;6G-?$L1HyH(g{+~qK>88 zm*@+=-XeV9GxL&+QeHeBb}q5FS-6AHb)U^5<(BvSZ1wER3bv9L=2`;XY5&5`*m*ziJu*W1E&*84Fesg0^4Nf=)#ZX_$1T%rUS*4ei!Q$ikPF}A5o%=}Tif3iigiEOS40 zr`hCx&rEW!eGfXotv~Qp)$>#F)8^JOJ~TF=d+D-l)xY9_Fz}jYk|#w}oADH_WqrlX zVRLvejg%+p=QnF)Lp9vM(tw%~`Nl?eWM)@ChFF?n16Nhyn(G}gf120-sk2^|V^UzF z38Vj`iVoN`IZnf`9COM)dTDOkrS5v&PdWPW<@<+~pE`C=f4$7ReeQsY!Ik1DQrF1Y zMA@gwNlY0eRc!%5!!*J>Qq*EicF0TwAu1DR{R{+bA3VE+&cKs!6&FjZ=%iozr&`bT zw^a`F{2hKcPknI-tQmyPGCltwJNem*prt;+tzhhY6C`0;2L2t4y6TTpHDm0D513SH zc!F*ga^K=$R1$zrM|SPpSPecX(v5jN8n|C%JT?}XBaXv1(@&7^#E*v40ltul@84RW zb8=Ifr_uwn5D~UU4ogFit(4#Ar+3q$H}^P&o8B2m-4>sI|7>oVN3gN-(~?RC@Nt>3&Fh&`I z6r7&bmKN<-o`>eZ)?yV%=WO$jP=?v@rWOum&8aP#ou)CNFzc|H=wsY_{EQOEQ@A6y zolEESGjZe+VP?oLO?IwmZoQsMdkqQ;)93Nw#|%?$=40#x$FM9eUeE5Fldz`>9Le2B zk7mARDtG_*Q_kl7pt)s5CjJqcpf=31KgH*Wi#=X)@gSYR7o z9;ZT2XjZEEWH#UY=v=QFr)?330Z&f)p`#!TBrGY87v&r`mCib7&hR*u;&wR&xBoG} zKB+9Rr7+NuR1nnfaEWA=SF_>u>snf*St;(UoC}keOIGPt1*_CTmIl~AuQ*U#t>e%($y(nt$Opz0u^=P>dBx zJNDF&DdRJ!{Z8IG2lyy*q6Mh=)iQIy1@h!(sr@Zq>A_+F8n<`!XI?zn| zQRfCmIIzAy8<3ie3iu8#k>{6)o4H}zz?cZJXWg2wCiP;2W%)j+5iumkX6Ngl02<|( zFpQ@Bx!-f9jIhvMv{!T3<_rKk)vF8xQ79NXn2#`Ch*p#eNKxC|jk07xY{~j~OSD5=KYV3zr2T~_?2MT;GY^osxF+qJeVBu{fm;LMc;yjp&sP$%jf@W4FFNOl$ zt*+<8(#Ih3J*j({pNmdYI~#&Q5eaEm5=+M@dIna~o~E(JCn zjeLb7N0Zi!3;fP73=${ZT?)p_Ii$0)$T?zG+Hd`#j-sf4Gy~M8xj#pPZ>w4w9gZ|r z5R*yqI1K2PALBr%79{rnJ@*c;CqkjsnN2FSg|$5Uxt0LxSK!+jGgN5BWEW1oF8+pc zzrjU6Wn0oQAw{%RGxi2MLJ#+FZSI<;sMo2*2$h5@cDtLO0z z`zFCpvrM$jeV|oa+*Srh)61_cI*HHom4}WRy61f8gA3@`mMJvVoXx5`Fv|^Y_TKtw zGaWgknp$PyS(P@z+S-04JpM@GD-|XV$&=>Qh&dpA!Z!g+-Q01tkolFI_K8uma@X## zz?va1XHr@mX@>Ik1{W!VdB^<=57LGlDAeu(t9`QK{wCm(=j8?5rb{QyzT9`Var}5c z-QI^%4+j=RbojH=S8JGO>LdTJjr-Rnn(&Ir#6axgv!)44A7GO&4>C$cWm0BG8MB{o z+%}W2g2@aZQ(Y#BcIu8_6$V)NkXS{yoo_goH0dcM={MF#OFQ4y`_exSqhk!{0Ju>} zRWj-_B!Z4jW+^8c+^#lCbm?ovj$Xn*GWCmlg5t#8eVMOuchU~PDqo2%GoStvqKs%zt(newPks$y=32CaO^oLK-4(^dYH z6~T)ySjt=orWM&K#pNm=t7&FiZ(%Y}GL6TC<>>@+7soN9n^SVR1pcH6u7A8b; zGR<2smleD+#CV-(4NN&Z^g=4GzJ4Yoo7a>*v~aYqthgFlERnCY{YQSCC4xJ za^-^5BX~4=izmSkvDo>FaVME)RF(6O&PaC%C~ujLjW&fQwmV`kQCEj^2UMnINY}`? z%LaQgg^AIzi{C3#Ik@bd%9O8o&nh2_ZobBSGMl4rU|VJiMCD*&L|ke~OGdz+7!y-C z5$n`pS~YB=00b{qvAyO9(kq%bJjgb;|EdVe0RY>3{zq14krd7u`&Szs2AgBE=ZM*8 zr&fp*@vC=!{g6uEC%(_Ey_6~A{bakEdlvCHDR;g}W$YjOIZ=Qfdxm_doh@_2CtsCw z!@@=o+7b+sEO#HRkN2%QGNxa1> zwf~k@8@Amp+S8=A7ywzW1Q}NG*<=F&1G1K$u8mTi>T0z!W3)P*m0IEJ)+Uu#xIB## z3aC-q z`rh~Np}S|0mK|U3Ia^i;9AZj`e1Z>)P*2bKbGA zNgQg()m@r|Cvbu?qy`)wWW@X>Sd#SKAq5z>vY~{Mu8rG$Pgt`mk0nz%(y)d6m`O5l zVr*Ju=*3(vYpXOq+s>nPFU}AhV~$M2Fmysq7;|YeK=7T<{Hd^+iEhZZ!;Bx4>_(KON=M((6N?m>tT6 z#?H;$DXh?{VVm`jmys!2O`QagjQVu)151;6;rYrKvC0&Q9{fB#GTbuIt{7D}g~b0{ zzdZ{NkCmfvL)jB=;W&)meDCVj1D%uCcEsA=gWO3OYfE9&ns-45gl~eEs%U$0;(ZMd zv#M^gNpL8D{79r4DK223QVw}4w1G^|L7T6HWLPQcMl?_AMU(f=>IoQoN-h;#0`i8` zqFRJOur`5nE~|!5d-{E=GrNnz7e8!NADX3=q%v_R zk{aEGX|xQjcxidOFFy^!P!Fzjcqlu~+_kTyw=OcfJYIR{fTB$iUymie5~!^fpUNXF z);D@0G5eC#ne|k!*uiABR1-&vT!|6-;hW|ho2@s>qdCOxRT+diS!bYqQ7=y_fZh_?s5a!2@~2!6t~cX%CG2Wo-TD_%-&D%w}omd;vkwztcNAJ zX%4C&0>V(U98x7Kd_jtun$M((dE^`|Q|l0j$6FxRta}oqv;Fpo*k_mI|EE+=^%gRciohDDk<Me>L+Aq&LD@m`CMOO z`oiB03+Jg%-gG}MVb{R);^Nb}+}q9I=Y*LdV(Cm>tDw=7$Vqj_NvO);5)*!n{P$u! z$FZM~&p@~&^~b|f&COFqCoI4c<>6o@*R{-Wq8bz|D|L;@78Au*WpJdg6Z>(CE&87{ z9x0}O@_6_beE$Axuhw454f@2W!QmrC$<_*QC$}0TS@~v;>4ic)GsYyf}L@ZX8(m$!p zmQG;2uBuLqSB#=N;YTgp#oVyV&DV;?WU}a<6aHlT$t)``AFyzyK^Q7iHpb8*y)I`r`p)?@au$c0ewTO6ejeJPhrk-SZ3ECW&0d2vXtL}S-_}u0@ z1!os3CiJ40!Bn;A0WON94&@<75@rp2MGI=$NSq>4B}+hEfFy`o`^Elafka;wUkm&> z$OR)%m?Fy_dLb9WMA-#*>g%_+`^f2_wY}x{$rEwl;c@d73_WP=P1f89Q>4bX?A9wY z(;#EwkZ6tIjQ*4+BWDe8s%f-7ja4MV(O#z(AOdhlHG5`?AiLyv?(x-D%Fr{`PCh3} z_0)||X2%1hr0UBZx_V-dq@>(cWI;m{#WLCGP(OA!+<&Fw&CbXP!2nuTR%&lEgrfvO zv=p(#ZL`|@8R=q|(4zPeLSE-BVuG6PaB$8Ikk%Wi)g@64`-_8PX#pCO)nG3MRF?F` zwT~vfGYIS}fguwK4@Sq;84tm%=ndZltb zia^5Y7Xl({&9KL+3?U|j3)3fxLg}Y~&%@(wz6sxFH81q4PVOZBOv+!5W39t%H=VG@ zG@VQ;mj1bpuQc_xkdPIDZGU@ z@}fV9m^@h za8vHod7i>*7qKLyc#0OBK$ni`0j0{#QQ4o7610uBxL1-jf#=R`Y;12OaKSI43jrjj zRa^fIv63c|Q{)7=U^9sfD_-@pF>>zG{u!+@SsKW{rOTv*i%N=~4Prj=#FA)b3cG}1 zTZ%}bW0MR^1v`^Ym5YmB*vc=ceQRY6JdDTqhp{v!rU~2%i8?4OWCd~P4qIj5YCJBJ zk42k{yDWL>S>Y0l1}N5a$5#5w&kI~gU%*)`7{whd$%Gn=s=gm2yq-dt{cnr{Y}`6` zuV|s#m88Hnt0bE90H4PZmN3g5_gUN^AD7sEpXSWrDWKsSM|t8H1+}MtFZ5F-r3z!I z1iI-i#8Ug);yQuphRJuh8N|3smfTGH5JhD^I6Hf_FlGV*9K&kI+X^3#;iYWou@Y8TnPkS&sVr3bx~MNtJCl60i&X?@FtoI}=)Msv>yrNV({k zUIQLTKs5kLE9pRnO^PP@1<)~NM{UD{F|T)+`(^$L+o4Wk20)6FR^!i|I46x~CGyKR z9CWb>*{2qSq!Mag2BjHADeTRJOM)SOjNzr6Epu$~COq*y-n{A&IO;LXqV0rWi03&Q zK@x4QfQIdgACHNP1>8_7s6K^VNf22?JU3IpG3-kZge3ybKb>|dFmP_{w^ZuErLbKD z6=;S&XhZ_Yg1sos7s&u6I3kw|ZGtXK?zi7akOhlLO|bBb^9_7j$HN3*1S3{eH@!IOz3n@_AM<2zVSD!L0rdk((ILWmaJ9S zqXkGKf{?>CQfeFpB#mRHenTFuyU6%YL`hZ{=t;Mgl#f!=02_+Xl3sPnWK0O<0DT?X zD~sWfsGm8vh>jC{lKb{}gTpo3^Ix3U?p^-Ph+ByMpXrS_Boap>SD1v3mpG)EjwBVI z7N1-F#}iMD5)YC=AInKm#z?65*MNvcmq2D+S6*I=rQOfvlpX!>bgd0G4 z1j`UmO=2?6DtsKAqL5B*H2Wlb)72>)1Kxyu4#w%xb1oE2h~?w)8~LPxcu1C;e7onJ zC~?SrC&eFNZtDLP0xgsLnn(eT+_d$YCWy6!X7C$?psDeuz%t&liZ5?BLN!?2MjA<~F3?&w9Bzeck z&xk~kP{Wdq?+=FvqH99fE?K-S9RXQAO2jg<$CSF5K~4h)uGp%--z!}~XCB`n=faX= z?Ai~MJ;5>oSXwMeYlI3LeL>O7Y9tUw4fIxe&ft|+SWp6NnTdVoLOq>y*Pia1)awV! zEl}p?iBe0;DpLpzqnEs0Ev@L=1PParb5eBHMy}lr+aRL|1}^Y5l1D~{oP1CFQan!T zEX{&i4!IxhUu5|pi`j=86K2@d_9L`P;gY;9iK`-r*>SKUN0ZAeOG^iTIZ~j{)NLhI z$m8049Lffeond$QJ6{B52NOBBpQ2oYDx2%120`?OO)a*i=_G`hWO``onKo&0XVc6e zY3mQik$aWW4JERAl{@t!+^O)fj_Oo0CBPrInOI&m@IS}3_tLPeGMZ&{-LvOY& z(*#gkjzGAYo7Hp4Ne1mMGq+ZW%=xfYh3a2^;Ewi$G#PDHye~;hd+RGxd0P!C;rr&x ze_foPB>edpIDArQApbPOaEthdjSM|y2j9}(Ody6nElNI-s@UD>_FcanQJ8j0@i%+55+Sb(O{_xV?i{JULp|6viOFVD*gW>*gZ(0@mt&avwM z7tpKoPPx;rI@@D6 zf8`2{^tuT7+~>njw33<*H$OUmDDj76sEpm`j}wOKkUcGFCFS7@6iKVe>H&m?TZqJk zj03DrRxI9+*h*uqS}~jfSRob%ErPoE;mEKFggCNjyEt)#@~05T%_o54lhjQLX(Rb} zHqld2t`bjwbG=iXe?nGO1W$HS0`TEEi zg^kTIPalIx1;}){#l>Nqwx!{guc#?(h6W2~5dnbxE36BSuskM4(sXiLH?m85!)Qi> zsXQGQ2R?g9gEt5G`|KCpsg>lL`H(dydYU*Ob<&j2NGVU~epD(0x;9eD1Pf;%Eh46s z3{`r=b3~1duNBn*%o;-F&WIt$`R9D}^eQhYFWDfvCrW}c3JRCu>Uztu^hI_tp4-kc zHy%nB(RsV=hO&uv0=j5@%^mkciK)|Z_?ZU@O z3WHtgKkFMR&MjUBys`sOO@}wg?4mW<`-?JxB!BpucW*yrg|B6m{|D;ta1QT;aV+V_ zuI_7!WO+GX8vX}r*X^bH(i_}6zH$9{SK(Xc%FpnIm4hB2Q1S?Owp1674 zy$?DmO~h)$cNw3IIWMb8ANI*Vy)O!uv)|O)sC(k(2{&=at$Z-BFbPL}$hf+SCJcd& z#SW6bPUoB!QTs%on_tniN$?4Oo8rnl`_rV-=?y<%g?3T}1jvdZC}QuuYwixJ!3kb} z0tgIoC}r|U(|gR7l6m)uNV84CGj0Q?hK#=6&s=NQu#1^%ruGZtwT2fKw%PF!nKkoG zkD6otf32qhP8csRvFF^^l+)+l3e?HOq&n8&Q^h*fm4}*OwXVcSCM5$q8GH^;5uZo= z!nC~=RdK9u!yv3$!M)h#s3mZAD0^eLBRe3z1u9}=N*yp#;j-3O_XBFht?+3Jq-^_- zW~SY^ApLm=2xvRiHE8`_F`~m(nDLTrrLZ#r#_kCf!Z_}{I&R5To!AM8vby76WX`ni z+l_yn*WR(r>nhJ!#LSt@h(D#WhMj4L_Kpz_${?{+Yz<({mh{-b!9&b zJ-&M%Iu!cF+N#STgXvyGCyFnj%~UT;hA(n*DQn5DqQ!NesAM@Yubj_?Ns6 zy7&{ovI|!YNolP=>2%;KCgW3;NS+2UIi_yZO_D;wF^cL%LW40xVtlh6N2EDN+de+> zC%ecwu;b|6B&h@!KYy$sF&}(rfs;jq?rFE)zuP)~rht!fQQbyL?5Ykv2~(aUHSaTz zGQ#p6lIjv`w2non*LSlCNCNEC}VF-+jOeTLJ59w`X$Bae$L}l~YZf#XUz#SNr=EedFl_c?9Jars&A8TcRhlvbFM2MV?5@j&Ru02Xz91tZ9Y0Nro>*F&hy} z*3hLgBw(W)QJz~YZYcW(oMPkDPdZAY+Z3J9>rpTk#lad}OsTCsl)MYn zGWsXk9JQI?>>e=G16t!>J;qXu>EAR-?fwZbH7FK#V9+?ax7LZ;RGf z8;pJ!LK?}d{u8~kPpkFfF}=K$#b8r=;?M5-#;4E3orZa9Q4rqBkO>&y zqlsBO!lKxidX-wYZfGh4ZYFHNjhk1Uk`D)@Xl)cSrPN6PNCY3nF`l#f<1aq1R~HQZ zI&XG2wIsF^W$K80_vlND1c9Jkd65ZclX8XA?LWOVe@R0gkyf$4?Qan|rR$@-iDUdxg+|7A2Bt()H;#?MbJ7n*)eUt#7R)mKT1Q z?D{x4kS?7yCiJ+Nb!17qq<1Y%m0zXlcQG_2FH5(%Wx~veif3Sorjpbba1{guB8#cv zz_vq71d4X>*eW_kc3UkhpJ>!F;BRen`}aC^uZ;H3sWCs=InhuNS0bL!D5Hz=q~~|4 zl^I;5;D&@k3|xKq(>Xa!cT$ej910r30{R?3FF*c0T$b=P=KO<}ry5So7*GC#1SUoO z&k7HNExLZ@K1&~8kLqTW#jc-W6ij3=7YoLR!9HsDNxv-4%gK(vdorew*Ys+`Yn+@$ z=3mHzw8j8I#2QtAyqX*veaNWWLP$Q0i~xt9Kcur%vl3Vzin@+6 zsE|QSQLTNtvW_n_m)W_}`7`&zqYp9fXd;Q17~+tNF2VHqKF7qK=Q6~eK!<~Pj2K|B zGKF6A)^W@omMNDyQZo_Yl;V>RBcy&`@XGeF0TsdoIQDXf+Y)A6KPA0sGsJS~BF2 zM#7i2Ih;Vx5YOe_R2AOB=v#x*Ck&i1f|ilwxKHuXmEmR|bVAL$QpsXnYO=4BzLpMN zi%)wCOD#@J3wVI-f4jpHgsLNi3lg{U@JjP4ou%Y0v0<6K9 z4a936MZ$Eo3Pca}V-7oK)~bvQJ6%pwJOnXO0G!O>*e|qxNa=@D18+cbEPGp{n@jeN^Uvh)X-|NxwhMn*0`;O0wG#2HRQQ&lV(5qStqoA^SUd9Z|#1+^}QWG3(A^Wt4?~o zJZLZIW~0*8!N^`r1(Ldsm9nsD9_ZWY{%GV%@!R+C7(Oik^Wf|vNbeX%M1G^JtS7A7 zjn8Nx9Zmv$0FbvfBK@HHQow8HuB;il^Ypv6I!-|J?vJB-hvy}Sh&v9Y>JBV6gZ6X2?vfM+>T7lvg(FP=d5vc zrr4E=d3m6YA%IvI{O{`#WMXIM!3na%vHCs1RE>)Y`Rw-4lXQ@{JK0#9*TFL0onE1z zvnQw8v7FPrn&FsgyEC!1LUm<%2xbo5Rt;kppJDO#u+Wi3&L!VbAbE9?RTG-3Z99v2 z^duvb>8Vf@P6S1~3+%M{^LMkV?XRmdzAiJ(VSGB@bkJ1bkDYC^!V_Oq=}*}`>f|(xSYtF>st*Jt(0Q=zJbgq@FB&LPrv?{TkLu!o|0GK)z#idSn0GluqHsD)FPB`AF=84{XQkMKfzv+Oro#pb? z@uSz7t8IQnO82u8UeIf0kYBx?JTdqvINyG)P%_Z-1oHa@-|8hIZt^_UNop{A0$Dn2ZKA5o`1^ z!Rg@eH&^HPnm7}mjMG1|Q`_rF+K6(uq?7&glXXAFCa&I*oat@Vlghqv{akBalJ1At z?w?=#K4wi#?S2<&p*VZWdq}uzk3sZ1aHo+Vm$d&QZkZ_iJ&lRw`-Azrp2AW z7r7?q^Dhnx&m=uX%adhmO36YX=1(R1W%0+k$`Q{X1-e<$Lugafz1a_K&fzIaTM+s` z=F@!wO^qN#MjbR=5gpG%#F1Ux-F?8X;^L7W zTYn(=>aR`h;F6@TU~5OfD;5R1V=iPqgB}Gn&7&9s_6%egd&>VTkhIanVI%uGqFG9{ zQZutSMH@QwioE3XVCWzUr327&L%}KnL^f#-&9dZCAqmQ^=$}5t{$4~5V5zq3x?dMJ`fu&!nQ_$X-s)4*8g@q;lFy)*TarEA?UnLb`-q-5O%mlcAP+tmg2-NXMVe_jjt+c%mc@uEe@{W>klQe%7Z=q49(cr{GkmN)&Xc$mFRhQI-z9n~6SjiB|ZuYZQV>#OM zk2Of#nGrDsP8OY|fcP;0fS;)@0~TPruoywZh*>6jUQw@)*Q4;aOFy}CFN`AfYW+?O zv}r=E(RT@xlq~U%c~0c-zLC`Gq$U?qQ1ej?YG=nX9PJLGCV~!~{zn`NHwtK~U0kZsx@kbuk$$r_v6}cg(-WEe$?$&%Y1$ zTHF5lb8Nn$_mxG1Za^@Vqpu`X#A_!IuRLR^J$17@#7u46_x;yD4a{-NJ6AsMO{Tv9 z!5_YKSsAUH8^<#bV~KOKFq_83^0+0p=fUDmgR#Peu}kNF3WOYlm(P9Qn>(L%2dCc! zhfi&8JZ5GRG+x4Q3e}_cOaxy- z^49I@rlBF_XReD6786Kk=WKxBQw~{X(3r$k(N+5tIHg-IF0Q{;rU@+rNtY)w` zMfba<_STJzXwf*5DsgH0(Oy{GB^`2`_XFAiJO->%=7KLPoyf&Y(Giu#d<1imI950~ zil|C50xl=Qir-}f=C^O63uZke_Wl?;vk2`(&(Hq`8spyzsB{tg>U_Zy;Uk~80rYqs zXz2h_R~kF5OlO88PC948Z7RUvvymo?P`al-#9dPultdsgZkVbIY+4|7$!75JKe31o zJ_hEI0JMA^Q*#}+!Wm0eQkvo9A2dV22wADSbgY~PWd@jSX7RT<`Qz6===w`+cJf(Y z`AyEqK!jgv$sswAIjq810|-j5G>knH*MT{q#n01$Qhk}j-4}qjSXSX78Tyb3%?Ygw z?1Js$T!bc<@AHc$iHqMcNUwS_8F1g!jX5h(&=Z62B`= z5lBcX&FbMpDCqmXH*;9Hd zAhvtT?@aNf(iTvAOcQ|_YwhpGSE>RE<8^SO8ht4pb)xkO4spX;MuxL*M{oW{N{qK0 zemy<}(i$VCj-4LQAODWAf^ykOT$fjo1GK2*K5r6cAJ{oIXc*GBE{1Q{^!kB$;y{2? z>ijc)J@WQ1iZW#%S)F}00DRN-##yE>NpZ>1S(`$ap;c|(ij#zlkgq37;A zzT9`KD688_v*@b5=}sySQfWE zecrV5z2$CQ_T(0Qp|^4^Cli$OUp@7wg=ajhnEcP3pd$c2L}@xdl(LEUBDne&Uv=qxoGs#?xZ+a zlUGlPnnh|^k?)Jey#)pABris^lik)(vWhW#vpy^w^E8~o(NP&wt;mv>EmC|@;qGEn zP@b2Pmbx5$cK6{__*FB08|z0d>8p%_WqCGADz>)w7#Y(r5^WhEMMCk{F+ek9e zWo{vbhXD+3gZtJy<}YsbJc37upuicF zpL@;Z$P3!y8JXA22_%`XbY#D! zY+9@~Q~owP?^H)@(mtksQeNJnf>Gdrh*OtIfT#3GitaOZa zH7idq)MLw=^o<#cAzR@+(Ks9Y@UgcG8}t=CJOJTIXzjQKB|&@KS@#Hs_qqk2R1!Ha{i)(1$R_)Ntds;DKAf zkb}ZJCok|)XvuIdwHdP+_4rN=sQ&TQIhr3$P|)eEtdpq95l%W>a|mm{7+pag^;v>N zRq=t5T9~6$`es3BD_Ypvr~X*50x^CKbTsBqpKhV&`jcnjd#) zSsG3f5!mrZlCM%b!^F7yOi?ZbaMG^C?PO2Ub&hs6`fK3=X<+4Bi;)pSo-Yvp4uXpZ#OA6tKh z;B2bZUpOS)c3rtK+|}gM9~G@4};2_a9f#^DeTjO|gtsE)kiRnw(U= zd#$_V8fV)^E??-Z@nJsh!`%AAq!$slL4QsceuDU3R_ZFJ5{ESM>#$^rQwV+-xSUPr zK|4W*rF@C``CZDZRV49}N%#uhPe4UAJy*}%O+|$kOvbzos)mY52i<#9?|Q)DR>-7I%UM2u;t<9`(Ib*m zMo;O)o8u-ww@bIPW|zApG12~pNLPMXzAMkeUR7v#wv=IoW*-_?tPMOxo|T!d&uh~l2|PaB*s4s(OMY-Cdz*WO6e+}+WkrvR8$@# zo_wjq6F)=DrKX1jQ}BmV0|c-`3DJ7*h#qGQkTQ)HGhg;cd*_n`>69QJ*>5CzX?Qbzt4v#erlS-Sf~##T#0)_Dm+K#6)uBt zqcl8$X+l)QdPS%Ke@l5h$7qEDUw!XUdJ67@|I2W~dN|$|>AQ6-S6PfM7 zQ?D`9wi(b&{vXXmKxPzxXVS9wC$#VlQ}wXcTmiW;joSpgz)bJHo3#%@_M0b1#Cpb` z;VMtjzpnp*X39IRKtSd+6fg!Aqb;y4umI?Uu4HGQAU)9B_fW=8*u719(@oyyVSYIL zE#K0C4bJqSa&AKdMA?8_<D;rgs+%8j%j;`HElOfg==@P-Y`fP+QAdN$5+m!f`a+Jxh1A;|E1fr5Gp~vX3TsQ z^Xh0Nd0qaPRS+lRz=ruw=Zd>fHXAgYeF$CbS_M#O0 z`b(w>SV%Mv6ri!wRs%$K%nWp{PdJ|5jC>d4xd2x7>@;BDi7K+QibgCp2odZQ=&5{` zD~hLrYDu<#6lYm^thni0I_1elp71^l;+uX2HCxoYf`0q9nK3^!VvCI$XCZZyO-nqK zVQgmAEMgnXRfOj#MLQC3WwS#J$ zI8Yk@>avF-8@<8o6I8M1{g`w-41%LP5x|M*q(o0(it6ZL;^6`rJj}LSs2$fFb#g|Q z>ANB0Km%Bgn63Xc>G#3!4mI_Y$;;(6TB@3k-q?haw5){L{*mvFR(?sLN5;o&!O(2) zvz@~q?dxH%xp)(^z=;|%1zKV8os8&48SYF>@5v5cifH(IRbdqhlqOg_O%;cUuNsbO zRwOx3b$Z?pog*7?q%ikU*Axmv5aD2vdEI+n49Ac9oy8)Pcuc?6Sa`i2%JYhmfYv|u z5KuqoMW*9equ~b3`i*KcZ(E|4SwJ9=Nyo7=zz;uxVMuVc*f_$Vj5ZX> zQl84bQOruLQtA9svOAHtx`R~1!m_id2mQ4kKdJo>kacPmOcQe<^gao7d~m*ETAoOq zub)P$W9R;Pn>cEtm=xB*yy|frFd!#;EgIzX{w`G|CtJ?o4h4Y!b&B&H@nc$JC-{>$ z+ikGrsZ8-4rT>^HC|&QG_`99?|& z^hazU`yPQyfAhC@vYdYWm2X(Q3tAm*a~@dU^5P(vf(2CM?^SEC-aYf%pK#Z8H8)?m z^L*Z2;q>DTt#u;=hW<;N6NQ`sc)_#AVl)HVm;B0#;wISd-(P5bemR$QFmdGn?vsS>V+2xRj}%dGxYS*yZ7&Jx`TY~oR~tf zS=taJQyMW)aFSKSVo5NoI8y8nz_dV7RTDJ=(*j3if?{c>IwezfN0M@Y59`@XrwBEn zseMc1Y?ZN*>d9rZ2``px<~%|uC`*$5sHX9wX)pb82Tps*^gH)Iki&-l!&%!+skk_* ziR3?q+C)s;RbOd(+$9{b_oRUyE(OI&B6Ii zCy}k3y0}x-PK{)v_iVKcq`Wy_RZ$O*{KlDUkiB`{F#?S6Dx| z2b0uKcMilh8JQ-Gq)Owh&+4AfUzYid+ph5i%HA+1N@_C6{IdHKUOo1OVb$fteUJp! z*fVI;GE1=4y5%WTDyQbcjnBsHY)%^@-*Kjj2EZqecvucm+`|>XC|U4#QBMu7F^^HG0v2Y zI^0v_OMw%`gwc{v4+<>lln0Ew0i{)TXeQAD!NOLuJ7Y(hX+TY+8K^flY&+uNjiekl zk7l{3!F(+K>@`Ur>{?m$wr`SPrv~*OjEFHnra0AosALz@b@e*@@pgUq^Lf(dS+9lN z#(vt%52huubS4??WPfhMj@y$|dwP+XyUagFXYur`uSLjAouXXHCXENB;M8-Yg5AyyM zLlS*Fv+WYc^IPxgZ=*E)xPB;S=nwyLrx6ypZpPJ(;fm#X_>hGp-+sx(`xrpm3g*SQ3LHEra=R-h>H{{wxwys1*nkc*Sfwk^n-xCTqkou1nzxV?znc^?YG z7R+teO4IETCfS*dVJofdKa#q#z1In(txAmG`6ClFVnosWF%A(Fi{uq9TY62x)FT&* zhj@^+5;6-s1WZ(;{>?_n+kekPs1MlCrH~DD&lRs@a&1FLBZlQ!Ls>bIuax0ZAtmwbMWTIN{zx;U?t;{i;Xbc5--6sb0st zt@oe%bq0THT;`f0*~6-aptgCWG**f1iF(O*U;V``TllW`bb@2}zPkDmRDE()^feo% zu>Ha8i@5tXCB!M%p}IT)w{C9KqX!wJ;AK>@%RSG#WT;;KPWa)MxDE^M30v=Q^_e?b zwa-e>+-S=S6 z@>*riLwRVK{M+u6bvpOyC2Yr)Y&_RtN9Pxpj_c1Yxq#dOmLiA>S@u?Zk~FQ!QD0$Q zR+)~fLL_96nrFTAg^0hU36%06{Q05$r-YhAQ%0^hjE~b)2^XJU#;8f>2?0cMW70<~EUrGD*mCzKd+AMX{vn*R)66z@EZA6=9UsO>1_@q(XB=iS`@!?24nwRY# z3q_gV@8Hk9Dha3x@~^Zr@!?N);(S`97MM&g-ia}w1?C(4QF6$u^2(K&^E>?t%|-6k Uv0NinJT0t;yP;mC*?)`w57-neRsaA1 literal 0 HcmV?d00001 diff --git a/docs/assets/ssl-cert-centos/Obtain_a_Commercially_Signed_SSL_Certificate_on_CentOS_and_Fedora_smg.jpg b/docs/assets/ssl-cert-centos/Obtain_a_Commercially_Signed_SSL_Certificate_on_CentOS_and_Fedora_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fdd40a2e70f6897d420725e199cb4e285f7a1826 GIT binary patch literal 51998 zcmce-c|6qJ`#=7gVJw5}%OKn`8jNl1LPG{)ow1ILEQ3P!CAlqwicrd0D#n(rEG^b- zWvnSe%2M{wt(#CN^?gnEeZN1S_xJJnd>_9*exJ|jkvVhDxz2iB*Lj}ny5{GbpR)ju zxe49`fItDj3;YNC`~%=Mj-dFT2Ot15004Sm(Hv9AnegynU1jCKFeMMKAWv^4N>G4u zlt-|#s*;K_pm#hf*n{Hl9WLeRecCrrU;5A14rwW0FMVkz4J#F^;1k|we9fXmz3rl{ z?J3dz6df<=;|5ZCQMyq9!2#ak9#T;OX9L4@qx7YJb*>BM8O6%dQoovn`|C>^GDejm zSrMd81ciD_X((wbQdHGdq_lLDR5ex9HB`}37!_45Wfcu&6-`AIRb3TrU5u*K-$@!A zE!4|L*VfqN@3Fvd`qFfE_=O6Sy+f=;0X@5w0%{&h)P(1O!`I{j1~ua<>8k80-4gIxO7Q`#+}f zU$zdjKOgL^Z0j8s6cI}C2Ad!GhZx+u|Mx(QhTv>;Z9;v)L-9Ck97Kr-@D2>e8|zDh zHA-H-Ub@D{TI%W=Cp3-JFS~yOXz_tz;U0k$?|;Vi1;_oH*6{yHt9v5U+ao+E z)IKQa>^~epI1>~e6m}*kSn7nGrWDG`gW?;=D3D_u&|m8{_73%p^!73d4GNI@wZpo; z|HTZ{wG1(a8X6`zH4PkN_Buu;nkG1mmN5>eVx*yVLi%r7um57#{-V`X`EO~J!O18y z*yBI3%RfaR4>Gd{~T;AENmQ{a5x7X&dJ01EAen1;^yH##L3SuAi&QrE+!@>F8QwnVP$3I;^Y$H z;SmuP zH}X6p*rhg-XeT2S`ruWzgUH5QX7SS#qv}Y<&9H~zrJBN&q^uGRSraW3FE|e*sb!+>SBpebi4D2e&U?RC<|_ z6BUAbl^)Q`Dcw}3RuC44Tl#L9xF7aGYXirP|9lI{y7Sxjk6#ifAhT}a>h*PSueld@ zfgPEqu8GcEiP8=xA%RvU1BY)G(|)Sy!hgD-)+=3wCEK!=YxM*zp5(T6yPTP{Ur(}i zd-6yFVPf&Mh{@pARh9U)c0g??Bq<)sTB+PgzZht-=aj*B#RM+*<28$GFIuX4p^wxo zyE{bPen0P3bi7hR!uy-K2BODJ!Z!^OIT?{u7FA?eFuwrbEoN#~?tH_&W+36P(9LB6 zKQ2**I4AZLUVBRj&L87t&TaKW79|&|ClPe{ENRH%5I3zZa`WC{Nv!nk*N3>i!;+eQ z0!&D728jbtqOwU{rV`2(MdDN8my~ZUqA^yRIeI*_?ZSD_gr3C^8?7WHhgd2}4>^+C zHPure?&)s1MW(nVpxtcU64Lk@kzL-qU>`>vKPnY>O*@o2xP20m#kXVj`I1KCFMqed zE`$W<2Biq8)$l!a1N%ek zY?$%+Xw8eL0wLkclfOOORs)mgO){l^$_sRYA{`DVT zupQ*CNWI$7EN!BfTGxLxeI`C9n8`NVvm+Q`{znV$cm=oBR#s32ZF{lFV$GcMleSIr z{Gy9!2-t&XPkg21vfCq4JA)%+&xa-O z>Mv>FVQOMQa!ZgrZpUFaRb%OPbP+}8wB+O0`XVr$;J!YI(mliPo!+ULyy4bwOq zkze(yJ4;TPnHDq2+vQDWW;lYQzOW=j+b(IIgij|+V%E$>t<^H@2Pry7CF>`;Qn_u( zvuhUI3^oACdk0#SkfNpTEx%C^OULVpak6MPYn$}9D1EumTeu?0Y6YVaSEQA=OmldLxuks1NKdEPyeC#VYaa}hXuBLFE>^7XF0?uM{_Jyb98%0Mn>vFj((SdCoo(VVcO5o|neAV8g zd?SgOtJ;%(J7G{7L#o?xGTmm-&26Hr;itH>1Tc4B^Y5wX@Y_)9gpOod@KPjvcTK-! zHH{w;OoooLeZoa$J{xxxsdJKkFB)UvIRLll1&PX0bIO(I0QFr@A}(byPYCVNYy-Ox z&m&4Cl49uWYrXSmeTR_)SYk6c5_CY`LNbd<-u5aVJ=8rw{WT|?IRKd=G9))!=ZdEg zQ&XRDd(IRa9G#;~5V$rT{c$%!bB08 zWN0dZSspZMriUTZ_p3{Ul&d9qDI|OZPNcNx%YwuO(e(KrNKvR`V$b0h1o~wmm6GZn zOZW%D=j>}W>8#a~0%-fOJbRYVfkXB5IElndCED$rq~SWILmyD{^a}wC&J^Wol(V%$ zn$XdzW?8g8X{!pEnjaOS9Fix@N(x?1_NW*-o>E`rL8S0CHJKv9AtDrKiqa|Q#q8py zC)k3jl^==E#xqPTM6EQsOAZ}UR@aW>HR_p<;M5aRfWqQ^ljsM0r7Xf8%w;? zzD;z`6=LB@y{vd?%jA2_ciWBVc4@O~C;1{bhlKHQJ$SYmGV(%marc$YZc=d%GE{Z< zGnOJ#LkVO1AyF!RrAI+r59qFadiC-XUH0n(C{M={W!Cm4PIZve?Gr>SW@$OkmTRuBIN`DpW+}s-#lDOczaU{NwdjW- z&8MoZnr8Vgqx6yE2WIjYC|#7XV)O8D^9K--uw3OYkd|H7KmWWf}WevA)FBvk$pr7#kp71D{?Jp5IHX3 zJ(VF(-5y=;tl}lN)9_ZN^mcZD5ZV)O#3hplO=Zruo4?3;zUceNK}C{7nk&(Gdtv?} zYiUbIMUg|((I3|h%L5uVR>bd2+cMr-tZFHI&n#5^?8zSk42?PtoC;U zKp(XePmpiq&gfCB5pBC<`~b&=6zt^G(a}ATtOKcd zszBcnP-g;E)@xL|5(G8}(UPYuxti#k*we4bw;-#%x7>YA6cU*Z1=^tF&T^SdJ1Ps0 zC(r;-$5FcbeuBW{`O}}>eS4HM#@JVTtM^mE!*uxsxj}eyp0md!ed+z z?DHbwXRPCp9ND_U{)9%6LDm!mV?t&U;A$$*ke)JV3UoZuKFs1_0U_YcfLgSNP(^Z@ z26H6s4RdsGucB(ZiH#!t5fzASO8?_6$V%_6cmmpkZNrTq^GSUb=6w7OR5Qo_s57MT zOS^HV$adN8TjTqEvG308^7v}M(05WN-p)$;tlPWMu_4udFHc0(W3BP2VjBPcgCA~y zmY~Qzm2x5C?ax`C(Z_k}wm-ZGS~Lf7-Id%V25Ml*Ecgx*WcTUjp7jiRTru8fL33+whA&w@q4sq~ym6P1x z3-&Q6Yg6iW^hE0Jy@z4Z?z!N35Ux6er&dF9gVHN!so;pzGJ4loHrl5^T+-;x)pr_K zISD@b3!=L;iSi_fb342M4X0&Q)6+!mdQ8}=88MfMGvo$o7)WuiAs zIYXA&c|sENYn;zZLQF^UW}eXm`*CrL%v&8xSd7JHotm<&QuuBvpYE-QlFZsuhKl{D zO5`_sRXi~s1G!V9>aN!K6wP9K)cN=|!6tgRD^PGgxC`j}3GhQQ$)!KMXwOHtYH#8| z;Fm0mGOjV*yTX=sx4S7^Tgoc=05Tc$Ay5IuIwOvSDfq|F->H}gmWgdj&yl0Y32fqNKOtRS_LP$B+ zq6+Gr9p%{qyx60sasHX@A|#OAG}{6fv}F)ww~yn-SnzSOC~$qpZ=w{m58l*N6z_o} z$vT^^N4Sb`u7{)vNtDH3OykSS6Bnk6nya|-AYRJFRv#*UHkzl?ag7!U!qRNPW(ft% znhOZ-TnQqB+6T3VE(nihek&g4c4+54OUf9}`>Yg;9ixc(a|&w`^FnQ(ax8Zq3mf>T zbuv`u3-@!=()Prj1?|E0hz->9`z^~!rOh>#31XM$l+i5$p`Of8^F>PU7Y-3(_GT{c zlH@k1;sr;9F1fBK-H(z_gGDQ6?G=+=WqWsJ<4=h8vcqBEgMqs@0qu)PCFaRAbzEoh zmD7D9jMci}WX$5)x7$Ij+o6B}282poX?%p9YIeYG2`y4zoN5SSD>Uh4eoSzRSg{2S zu_N75@3Gcfvd%;cN7cGoyJg*i96$a< zyTA5+A+@r&W4rhxAqe2SVPQti(MSlIb z=P|g7Vo+>%fKNtxUe^N@ldJ1GF7xUYQL5^d_zh!j-2>UiMZ5QsD*RQp8w>nQvAxh> z;au-m9_i*MZiH(!_^@vI==zl()Q}E*|G)>>GcDk97XBPJx-gk1hwqtF_?x>QPUpuE zj_IY4)91^ClQ{T>i3xcI7D5nH(I+IqekC-B?J^cGCbkqhY#Q~{#Yy>OUR9kNCRO>S z2^86q2J>g@V*!SOs8a_)D@!Z`q9#|hsH1(=cOkcHw0o1a6DaE6B@I2PP@S?w`nHgC zTHr%aE0m*Zl&GgcpoP}QfizcS^XFN}CnGY3Aoimhv9K!u>iONgv=u`Ea(!Mu7moHsp? z5evXk5^*9qyCYRv^Vie+583_Js}LMm%^rcpX|d*hIAqHdsG3Q)=iFCaoP?~@go1Y~ zPX=rUYQ3yONx#ACQlm!y@sz7d2__7vp>Ur|)~Ey7#j9v1S;K~``Kt6wu^Ro4u-p3$ z{YDk^U>rLhEu>82HEJ3ZVp++9QhA@ElQcrU)w^QH`CW-7vFc6k*zND6B75m(h__7L z{GJr1_#I{+E@lr9#qE~1q=v{blrb*%347-42{hof=`J8mHOI$9Loki$?bHC7CIR3I z?z@@Vaz;A#HJ>YiUwRkLS%4;>a01SFTzmpc=-=&xsD!I>HNfd1Ns()Ql{FQIjy-4$ z)G1v_Lgb}CeweG$Fdcne(Yx|O5vp{&_mU$=*i+Sqr)R6T6y&3L(;quMd3h)vs#kLF z$*qw~xibOEdUX}2^~GNO@T(o~QFOrEnCkO2K&eGVw?4FW3~2G07qLvUP;fpSXq#2_ z{Kjufts#L=M7*x5FUZ4!UB})uzEm^z(9uTT?+D`vDepX*U6?awGZeXO&sRn%d$pBy zOQ1f@A7B0x@RokHTbNn5Y1Ngg=a_#*cj(qwL(@dcF)hEiHm@1!4l3H>=G%rnyIHwR z1)(3uc~5A$7YS?Y-49)SYH{&YM?6QIS#66=3gyhU<42dQuslQ4)E{;>HlG*i5@-vH z(&gI*(wFHurFmjn)w6H;GM@XRTdW+EXwAurZ2>nsbO(L{?xg-jB!Yr)cXVvepWlSf zw)r>(E(P>VlAG&#$SOHQ`a1#rt+umoMZTOLP$k2+FKI|Ln4kQ1BUeYyA9JUFpr^>^ zt_bLn#)FQ#{ol6Jf-N~4?aIW*=~C=Pk< zR8NZy4PowC+#v?rbKVRM4bM14^EFf!f++$;d51!}G7~X987#06o9o8?BM%7C{&6=x{x1bgD5c+OHF%=O^rX)$pQSk1aHL5XD37GJ+taqCmI;-S@p*mU@LN)&STG3*&AN~5hA#-yA^HYaQu#;8Q@>CqRL9|!b~{Z#SdS!%g5)vpy7x)v z97ciwv!Y#LnI%-os+bTR>!JuR5!t}v@vpDbse}(`k{BLv_jH`!oZT;GyF0&nJUdl$ z%)6IIb)`4!3~O<7e;qo29_*&ceCK&6-6zkQiVFz2ReeAWRnKmVq(>25hR zC+Nnb!zqO?31vv+x8ZusqmPm_&Q~8KZ*U$6VjY7LX@WQq;jw+V zA|(9`{a)CHO8W(9evwdQegea2QB@$OfN8h`~Z|1c@DjdUu5TxE>F(+ znK>`cw}wr$!ca}U8+BQlTe+kvWaqtk34r>r+;iW?HId6wfLuw z(`D;shtGHKoX=0Q-gzQg)uYahUpv`sU!u97K@XMVTiQ}ORQ=_W4PTVM=Tc$}LL#nK zc4;t}K5+4L$RYNRcl56JRwL_fPjjs)Kk=IwVbQ{joqgMA8nK)=N4l62);pg00YqFl=Id|1?oIts;p_^b2xTMUGp(HO zz=t6uXsl#0IUkx*|14DLToHThlass5*@fG+J>(;LqMMxLN`spOuh*u#H|&E8PkuMj zE(@HB$R;CqugQrA^(Hw{M!+_hO9cyMhby;Z*s=~On;(?tYi#)Q^xPGHy)#O(^4T&P1dSSyDf3_N` z&%=1X;!PnXa8Ech$ud7YlhpI3+ua?r^9X+d;Z?di)3L=W=28X;mxtg8B)|WlssPOa zg6CAuj7=3;U*%>eI)`X+<{EVf#LhK|7hjGONT*k-&~iE`nf*>>yw$m>4XI_wQ8`2_PoXV zemh{972`F!As}(Pn!LUXhfilrXPtufR3mz;m_QS2qsTU7P2(%Bb`rZ|Hz(9t_!kzQ zriduraW*;JkAKYe6S%hvMBW_@3@}JbkY#f_sV}-G)RVn{bV&K6rVyYv+_mLu#@kc? zTE97%u8}wp*$aYc41nN$;k+^79r(^K$_v%2-{pXXg!|81h}zmD)!L>vEs$pE@bdmy z`W0y^Z@-cZKO#zrO6FThm5usthL}hZ#2Wyn68 z!(;h_lT?M@0Oku6SeR`WH#V7Y09UEuZSOfAc|01pIng_dCVwmug5#+nHF_ev_2qM{PgUQ;5_XC~OCvbbE*O9V={G@h3t zcYPWrSm_wNlFU-5YO`d!HabRU69U{1)p6-pDnr)*84G+Lau97VNWEIyg_rhdzD&TPi+Yjh^Ev zo?XKs$#dUCE*P#OB^xo4Af7cx4`rLRb<59+=yFetZWNTWvi7^~<_BM{a(5)sBXl%S zv3JK{rU zi`N=m&538m7hKSRt11u!t69g)uHP;}Kio6JPNjR*J8bf)t=g?;rO>vg7BoA@0=j~+ zc!yN(ftZ&;tS|I#@*dG{T>fm4&t&`1C&qRU zdL#OnE9tI*ilXAhvdtw4!~AR%^@U^m`y!aF%{+vzB5NZK$NW)aRX&yyZ>wkP|0Ut( zv9PB^8sd9H0a=B8KF)f=QBKdJV)c(+QOdlWAN#=MhaXk&f%H!USW=fjH!04KTdak*p}wH5ie63JoVPDe0?t!IW%L1WR|b!Q(dO zd_2E~vd^3)iq&xNkx)v?LM&7e5^j=I;8q^s=yU@VdsYdJGvhV`g$6^-$t7t}R9IFu zldlX=qQo1c5=%tkjtb*rZh&sPTzML0)M7mVVDR0rkmj5O8}kQC>4z5A5RTR9-(ME7 z9PsCQ1rYi3RG(8)^6z0=K*<$19+~V@T=tyNyfJzm zKz4iLcS`{UBDs1KJ{G!B2Gr=i=45wls=XnMfjYFa!Aq{3LNjH~J%`DB2fSm=kKT;B zrjpAQL!HaL?pT-W2C?)FAQ5tX&leJnPdEki%$K1iSlE+AU*Qi%1HuLD@>MQ2jmX2w zwhTmI$cUwd%(4AZdN-nu z+i3&)3Gx#Xhp~^WAaclgYI6$>(ej(8t<6<{%m;3TxGr^IuTD`?_Lu&_l10~;OY<18 zW1ohYkm)@Co+^msk@b0>x5k8ikBEh_U;msp#^PHG8u^Uq43uK|5JV|5Ok?HK`JlVe zpAG{+>xXfs;Hk8=G*BI9b|vHmRQe=K_-9G| z@^woj(H$06=Drn8_PNP=pQifjURn?YOwzT``p zOF;i9tSbhNxW?JXVc&TbJY;CzDH#D86=;OSs!6fmC4|&=QwzzkR08k@LEo4gODw&90t2}TJg2G`cEfyo*I)pYX5RQL znZPc?1Xl1pt=vLs5CqF5D`AybCU6fWZJ~Iuxet!Bj|smiCHtCtjpzrky|=`o7M#+g zG=KHSLl!~MqiFIGC>n6pRhvru*qu18gyhE{FL@Dz-7TFu6Yt){0{mJ-REt|u4$_yr zm@rWAO7%}ZMDg$`6iE= zloDsL`UH0oL`4qEHfhXvW&Q`%pPBi2JCd^xW;e?ma#vx+&^~K7!5lDYs!U2;y1lH!g!+^=vM4e^1}cub?`IlX(U%Gba0!(rn0abJAzs~_^U7wH=fx{cHEaw&8>x?kazc3a zp9p7MW^n*c_73bTSThXv=9hzJRB%?nXW&SM-W6Ce04eRfQKMbVk%YR5CGJRh z;{;nEsP}vv#suIM)UzER1KF!oxB(4Q6P4gX;}_n5jsOs2W_k=8xNqKWfWRii7*>U~ z1X<(}4iKa%hpnQTH+Dj?1i=;hogNqus@is5fKG1U3ca@d74$N>T#R z*KDc0y>~gOg|Y-+6-0~~g0X+nm*qmqW^lcCXb@E}DX}kfrSe+QU%3$!Qu73uw^zF! zp)gwCEwka%j_Tb-I-_h0NBh|BPax*^d3?)q=KAoQi%m_IEa!Xw1YaS4FoHFTzaj>; zW81w)5@N0E&*Vx}Efx+p2sSG@6Y41!aOrE#lm06E8B5o(QK$T3jKiPUH(1bc&QZOAE_JoJ8oEvVW4s(@LtTT>Or z5^OKJNeQgM&a$U~C#?6LN8a5$9CE4@POV-floJ%(ZB!WLo%Wqq!pLTVF(XE8fGyam z8GG6WM#IU}l04lih4G55Ewj*np-0 z@@MCbT1NXKlg=h7q|3khDZ}2V<%5|ELee&%8=#T^Q2W%9HR$~i=EGKiTe%>ED9<+FbwC+SFg}6(;rD z4EM^8?%f-8JHj$k$ds9W_b1i07%(bJa=!Cr>2(VJJ9 znO$S1#5|UQGwypemcIf3*uy<#&eB-CWx#+kQ@vBXD-6w>dbILTY28bSV!D+9jJM~; zJp{~lKaHVTsW&QC~Vb+u2=oh0;r-rDr`$S^-V%K6dF*4@h+6aZo8PcP@h7u)~*- zkuwr9H&;%CyMk{A-9Ltu#}%U77zY+W-QasP4}%goYlvHhqs{2VP07bnGJOSGP!O##;F9OWvSb298$m)Dlf_N0T@1Qn<-i4-s zo!E5)@NEbd0J2wLmM|W0=<*ama0N;QfO4$huc5*DVHJj9U{oYl5FA5p9$FxUqG~di zgZzTj1#GgQk8bcQUuIHHfeEC7AP}91`hkuC#(9lWIGdCi_Eqc5Jr%xm(C=UV%97!1 zO@**U zTRqx9<`3oS@An!Gt*y{6I}aufw4{lq+sD(XFW&JwYzhe!YJG;_cOcG6+BGz?DAd;C zk^)UwD+$D1RQfK&w#XP%Ozxn3c5`&In@}G^2qNHCQ@dHDQ~{=0D2<_m7-e7qUmp!#- zeD^Bn3}rMvo~S%)Kb9+!vWA%*9pb(nohqc32FgRX*;_0d!}oP&sh4dV$>sip*Z8GG zX?+-o`eWcnGSso4zBUJC(DMhgK#@JP0)PV*0GPl%0KhF`WC43{DG*RE03hU&2O0EN z68x(K%>R=EE5OA=I>924jH;Kdq{9pD27H?FI45G9gT+A9Oh`HsrHy$$=8KSL&N>y2}dTrn| z&Yo~Yv%qKu%lmvzdiv_^@1HRiWvR<>YwrXA7pT#mLLGN>jvdo<{HZ$+L=k2 zjD3WIL-JsQEaor}ruAk)!EhQk6*Vv>lg@ehAg}J_K zny&_4tvHJehHd_M%HrGmCn*9a3W_344d0ubuP^e4az*pqi^&x&9Pk%pL7w`uU%rI# zI0rXg5Bv^ID02;bhG1WF37BhiCfw>QB8b$I$JhxX9Z<&Y{CI9h$`-U*fwxWOe7h(8DHzvaOPouEo^}-# zQm$xG^>hrKeNa=I0>-k;ZFycIPlYE|f9xY^PnT@jE#ie=H;y%^gT^W*Mx36?M_!|+ zA#vO#LYjomL@mMY67}reIf*-F>J?AmM{YY|I0~drj( z$_lxh*>Ec`Tmm%kxLamqUu4fDFQOb6H%_&HOu40YV;2XnVWV@)Zm0~Gt-K=A*cm}+ z-Tn9(QV{a(^0PekViwLY;%oy$SLtY?4s=6 zFbIJ;9Gen?&#V*3qDI z2#(ZLurFtD5;#BR)4-|sk#c@TVZ&*~b@Z*XgqM|0X7amf>?R*=hHRMeut@I0u?Ee2 zf4I7oM;HCIq&mt^&31QNNP`NO0uhuq0(_iH8ZQV9h{%Apk?W z{|~3Xw0|Jg(yf!DlWj2tF)UD`1R9LLJHfv~~9*zYKm%p$!^@b`q-CqrT%f%i9;Bi~v@GIT*vX_nSLy>fZalY$a0ZN+vqJV&*$mZQyw5 zUJbLT9|jCc-2yfC@kgxH5>a4$;fY%C=N+ZH@-f&dxtQn#H3}{TZZQihZ2?~`puIU& z7L{QCzsASlnpHv6fVIR{64*~s^}0b+!>>kmdd^`yK{%RkfMTr_?1g}nuBcbD+OP-1 z;O%XD3pK$=@Lse7>AGmkXb%`8mbC05+Er7*som7lyG$MPV(7VIh%w|*E)sNC87G!z zu26kk%@NmOjF$nTcI=V29jjYC!-29}8<0_FxZax@iO-2X$=Q++>&smeLFRICAB5f0I$OXd^Nma|VJm@lvwhV?{S3q@I`~<(`4h zuK$fC{XK>t2-|^EfaPEX=U{~Z=g2+EHmFB`0<_|5DgvOopCu-PfrzSNcqA^tID0mW z&MqvYD}`Af6=^yC24W*>!Gd-+QO@8&oZh8+7tRa7ISQmNhFUBPvzu(jV-nf7m=c;; zqg}_BpV6BMdP6J_$1|Z#CK=2&Mu@Uc6-A(nT|VlXFC8Bh>RnW*7k@KuSOerronBD= z;18;o=~qnTC@(8`2Q%r^tzAgW4?uoGa0}I>&P)1DXFDT!k!r61$WZIC5&j zzt+^Ibd>&LXSKyd)os_kIblWdoMS7o*=0(7(&1pxE>O3;tZ8*mQT$fA@<-HKc|`f@ z9cDX_&&P@aN%X(

    D$ua{>P11kN09Fs@`2%@|o_OzYWR=H$ou+j*6Y*98g89=WwMravE#Xu z#s`r{OPRM7o^v+?thD!9-!|So(r;`q=bd@{rDp9z^dfn#eB@2`Z=oMk@A?j$qi}=- zrBzp@St`xNTReDXzH{s2!^-iQlL1FR)Hq+z(7k*VHCcQ?(5rZ(;hMw;e8tH-ig%1X z=fsAu&=Dc#c-`aT*u8IJJ+*P~8V|EfRYqI2dOvw|>r&0M=bx_Qt-);yns@pJcrUh| zqZBy11dMnOOdUEOIC=QcCRfd|;xYf}fSI<(GtGe~Q{J?Nja=NtA;Xj_dzx%%zt8HQ z4m&41I^}YxF=nP_UzdxkF?2igULoo!uUmMzY>D7donGwSp1r0s0siNHZ&Vk(V(jp8 zJ^!4*qc!s?{^pz)=LCI^I*4wNJ6i&J9ZElm{Ep=spr_mU%Ce#n1R33jMn4WUW3Uu_p2v|WIWDAO&`5lh~v228aZioEI+N%QFGLp zvYd5_^jz=2=Y8wRk(t(_iJ8_WBPGX@itU-|hpG2Gw0n355yAIRoo$uV(GpAR_aDX& zkNaxr>$h1|41UU}6m2rUJ^%e4w;zMWqd(2P`|aT$`9lMQ9q;l+7e~LW=141(@kj5E z~BBI?ezZl=X3j+UnT-Z$){=; z8=d{`Rm#kyeL0$kS-oYx_{5WS`1jUU7pHG_4NGC8SNB>cTdRE+_7p4ipAi$QefN3N zpNL3?G`wx*uDd0K}UPhl9|N5dlcuHyg)yV2OuJ)m}lj--@Zr|H?teGs?dfOJdmL4Ya z9&1qhNIiN+*!OI{e)z+W;gej7ckDke-Jgo2Af7b6dSCzh&x;%qnO2UVM{G+R97?*XcAyEL->sgr{N^+@^ELL-YSpXN z(}($%ceE<~t#ef4$8TddBSltPT^=mlAJc0+9S~q);}_@_(RMgT5jXwvpmg0%LMKeQ ziJR%|$CLM+PM@8eIT?5VquoqIXvDppZ}-ZoTYDu}LD#{7Ur5T~3*gjrDU+wZjIRHf z|N7n|Xu`2Drn!CXtLy#gQpa+96)~s6utmpurh-1YvGG(YGWNyr`qZ6~L#qXut$(Nw z8b6LJ8@rP-G@Xw0wRn~5-2eEfXpJSeSo^oG$h@GJQNN#Rjp~n_sqGJFX!HMbEJqFH z;7;9V8&tQi7|%dp?$+bBq~JD~oT*jhyW*2KTzwsDUp~9)pzD~; z)bQc%dclXO@RQXI>c793l5=^z{x#6(-QCyW)qw})NK~cF_XnhebztRc=b!7xy??(y z^X~mu@Av&bf#`S2f4a8TwoeDRUR^*UJ@B*j_G$OU!JkYTvqrr1dHbQ|SyVx?jpF1? zd3j?~D0@P2gztk*m(yINT(CXTps}=OI zk)=#zsLc3v)X9~~Vea^fPlp$LA5V)V2d_Sww94=uedbUyG4*8ePZQ0uFd|~guWoxW z+wK~j_b{4V7)uHuo_oIKmw0`i+S@;&0(vZ)|RqN|ZVqgAn zY@%4Z|E~05=2#K6G{1mosa;!4*G## zjoz7k&F}zCNt5oJa z6$LEgwFf$Y{w;BH{63@p&1A54CW6bx)4D&x(g#lGsdjDIzF zaO&>TjLY4JA>%Xg-QyG9qtEo4J8m3Keh~Sk_3WEJzRWbeaWTl1%o%;3zO?qk%7Y_t z^pXQIXg|>TCy-zGG^y&Cc~EP-{lQS%RB&@+WZZkMs_{3CvX6zu(sM=RZMJyh0sVJ1 z(Mk&krpUNOrGS~V`qt6XJBlB78tvllI^~p=r{*BLs=hO=d|Q}aPsXkL%*{->?tN5` zzS4d$Q|sU}wC9r3D;zjciF&s0&??hWna%!(^;?SXm+HpI3Q}8nTRC_p)s1oVDK59M z*9T*F-ki`s8gg%>YLn?>L@fQGZ{Yif=WNSOE78~ER*Hmj z(7D2(udD&S-?IGMj!jwLw_2@f)uMzh;|Hb&eTYsjp-IKW-fLp(KR&I4oI|;~_js)> zpvCr1hb`ewv&m9rYuJVRLneOa{)%!NOd0Nfo|<~!aNlIL!SBwDQkLC0T$Np8=*(2~ zEw%n*n8(^Z^94SY;*TTj=UI>Xe~s*#5f$5?$+O)N3U9g9qG*4beX`l#&g0cmb?zq< z{tG#FC1g>iX@F@Y=TZMR6_s)ot%U>+zM!t|q)3u4ypIfoXuLL?4WzZj29&tzNgESc*7y z@9SZ*gp!4+f|ZgSg*5^)b8=mOs%mIZCpJLirQ`Hz2ZR>8A^p*mPVMf(DBU0NQC-Xgut`IdF1V|6m`rVFtLuem{!_!=_3Ef$!0vMqMk zcY7lwty#-_Ae4APx@o{Jiy$a^66=Cn^@@8lUrEV2T3reX)~g$i`o2rL)36Y!5~!9Mh#~0$lix-g&sqHhoa@f)UB_D+8@-*%6 zwxy|-JAb-7m>lc)B+8{1k)L8c(}!FApflwZFr96$gtHzio))7+G$ppz?|%)N*5c|Q z73BGiy&nm*>tJ7fSMVdZ;E__#=Z3le!`pj@HJP>h!Z?g#g;6OA0?sI%fQ8;IzyJaQ z0zxPXQW8i)O(YSpGg3#YQk52pp@$GcKt(`c03n2uMhzv9pg@8Uf?wv{``hR2{l5F0 z>zwbpzWkHtTFLdSd#z`!_1tUSzu)hEsY8zuNr>UC(3;t;o;e||gzov~3dU3RUVukp z!H}I%YG_?do16L@p!Xbg9Q7JL8V!J*AoY8I|H9CcwLG2*4EyNgQqY)tOY6ORUroz# z-o;;*(N$wpxN?%GD;~L-`K#2Nn$E+`9Mo1b1feiaZ6qR%+c%EjqNJ6|M=c%be+1$6 z4X<2Pv(CH!=qrQog(GkZk|tO@_YN2wE4$(pg$GDa$;7d4#gw>br_X;mGgW~>Fk>5H ziEr`8^lI_CNYk`yKW85w^-0W4mQv5Ez$V-@>xp6zfORMz8C{%8*(8r}A-U`bBKqXB z3ao@Pcr-|VAt%>9Ty&75ur$Gs$6-x7TUo9tB{op~TCj7Zhw?~LVj|QdKiwu=bONNS zhxG&+RqJlne$*mP@OIyPrc1_r)!5nSqBe!T z)wucKO=>&68VHM8I+0B#E;A&~H(JprugOT6_^Y;kxnBcHc(!VeC-xA1=mbS#C_#RO zvVFIzWqFV5hj(RZU2;tYX`U}Tt#uZzRP&9!Li~#WHp<4m05RWT1Kl`QGMXRb@|n<; zM4U-ORLs2}BKH+YK+Nz`6iydObf4wa*!J)>Ir#(;6qi_*R{9+!a*e z4hK{7*Cyo;jgFkef}Y%)$k-`{0YQ8VD)ERCf0!gb}`pHV!#$XBA6pz8%bVi@(fA$q&J5>C)mMH;3B95 z31@0}x@+=W^1Z5-jT^_Hz&%nkqY+K^{UL%HRRNf#js~HeA})e#Z#IG)=90a#LC#5e zqSb=BmaR3UX*Vavaz|FNH`G&1*XDx(IsEn|#v3vYiOaZG|t zmq^xU=6z5~5*>vR977RsQWaaUXp7ASc(*c!S-(b%=DXa&AMHEoa3W;rjNi@$qs!PP zde15XpBEI&AbZhbah(3WRB}Z}a#L=9>dPk}CtH_r=i62`3%9#}m-w<%5SQZ^AaXMreeGjV?o*@{&u=7kb>y zrH!eliCKyD@Q=`mGjFC4X<$ADy2qt9m&Ai<=c!1{fq?y*Lu*b$M;qp>t&?xdPl(xU z9Y{psSUt@%ZmXg41VmW4ZDzp=Zga2}&Aq!Jisu@cDpwtr&68gHVA7|5?sVyQxAYt0 zw=$iRT~B;a`fyex3c(s+ka-DExPVYIsz1QDDI2wk#AV-it#r-^&-pCA+)<2;v}&ru zR9sUjo!b?sIzO@56SC@rJt&Vc<>^IH8I@qYe)nIIsMsXv0AUMY<3MR=8aEWQ^r?GD zoeUXpeW=ihoPrPJ*~mMzuc75|zxq2uG{?1lT9%>Y3e6xxvqN#yCi04K5DZ~L2yrSW zme9@5<1{X`u>16N_G(M?%Ak>@n1L>v_)8^s?o%9oh)}rl1Mk>d=uzQoqe%~8tiO25 z7@1# zzICi|2;lNn*cr7aqRbA5k#Wf0crX|BoE{sp)xVQMVNMvIj&{f9C`BlwyGN=lbpv)1 z)uM|l6cH5p?M8%oh}k@;o0Db<_WT2Ux5~){3pmd_GTC4o4!Q@eY!ms8a#w`&H_#nW zsIfaFR2nw;SC*Ek)pCr_(}3^hXulI7sglzZiXkB#&4hww|0YI}(=nggYoCmIcKdjBo63HQfx1zUdqo+ zT=-^jUrquAG42UlizR>@7;ANLzWkIIPTd;ru+gSDgE8&Cdas8x{!maBCYpT$-vZ)I z(6Vt(bW^1 zmr98XNgSz4jrI_<8|)h|LPOxyF*)$9So;16DyLx431wGA?20(Gqt^VTvtNMN6bo(#i=YKmPexxQuxNALBefU~oaPdL zs(vYbdRFtYKCkvw{Vk9%3~&HyCw+6{!9j&PLP(;e5VvFD`8Oi&Kl$h)VtxGD5^_jv zJ!e2UTML;)wQAOT)6(bYXs-S(N5s^(E<1FR7uobS@U_C@lTqj?y+t#{0cA1#mSWpG zUVIQ#ZvM?03-iH~8Wrx~G8&?7l8d^Ke5;hk(fwee{(jS}n;%oX+TNQ&9D}Y!z+?jO zYq)|l9lCKT)GCO%{hj3}S-!%J;si!I4cNiYqagqRq!nC$o>xHlf(waV7dANmeUTfY zGX6@Tk;b47L-r`V_-2A@n&TB3m63O&=|#)n*mDH4hWPqhCZ;to-t25_T03#Ml~)_E zyjjpT7ZN|k&DQfST-4Cl)%B@4L^|)!>`b{J+PS4{?AyH82}42vy;iedhOFgpF(6hY z9vGkGT3X(Q!#p~C&^dlutYz}8f1MzE*k`mWh&_-3)-tK=@EObMgQ{(0(sKTi@K}XU z!Emw3lUURf1k+T0V8u0p10Y^6d*=*w?Xq&}Sr97`n6WxE*gtWIlikw(fc_Y=Bl~Hs z1G|?_aQFHZd{`(=)caMGzL%#XTkS($+OiKlC*Ro;?Ma;ToUJTGR*&@S{}559{kksN zWWlOMp)&4g&rldstH{?&IPq`fzOhE%KnIyn$j*aCvayQ|6K`N-xqClcbUg0u%$rF; z`3T%?;M5YjV@1bUdD4$EBZIu0eMB|@XJZ!AX2FqH$R5nF@wW>IXhh@W+~!6uBqsV^ z7gLqD=A@Dh_ycU8ZPnUdDj6y(*Z82;X9PdtyJFx_Bw`#UE}Z*c;Qps}a$xk7ma9!4 z<_z7p&z5P+y1bJ2HXU-Jn^)*J*pCOU+W#Dl)7(xkT&{WS7Nqnz9arAEzL}FIvg56= zg75F(7cy1?_2Bl6mT$Aia+3>oG;+8`$r_f2TCN)6yPCv4#=XLrjyLF{n4g)zv5gu! zx4z~c_aq@*y6Ss3r5WAH3150Y-f$@=3?b2COe>KIikjk32ymUa@(frawhWgbWkMR5 z&fPm}nt*M{-r{WGV~1E8xez_HeO++nuK7#c-iBgAwUt;EyT6VR@9aGTP~QxwhZq5J z>{WHL2r{6GjtGsXUgwDh_gf#$!(_^81U76rXe#Xzd>lqA%=np%acEsEQFGdp*U!yg zb_kX@*A{v$Vv9uOOp=BK)Vm`q2thP1xpba*H_5*8(54MfJP5;^`*;LT+hSI#Nmj2Q`+9%(c?@WXP z!uYaXx5Ul(1qHr%0h--CiN=*txLdF-{YYxP6m0xiWgnbOmTc6ZRJbwY7HuCx<0GlDzHAEN&*Yj(ZgB~Ml+kTiT(Kl}8@`1m#+4c;xPtA2`R4aVAbP7^ z&NNs^AQ#Z3DfO$2V$Q>p^}0K0VXG6>FnnIEFWCpUNv$Qe_o)vgi%5F4q2^+;Ux{SNsjBmJHfL28#M7lYP@|O%TlaT^dVt<< z&pK@BJyIhL1>OcT!#7RDhjFwtYlJJ!$X@G7#Ha(VDOawc!>4y8fIi*b!G^Gq zfe42Ck%;*M{}kYUqGkJ>z`<5;R2yWh;g=Z@nS`sQDOY8%HaF1ERV5T7M!o6g&O5P< zzn4JeRG_r*e3@LbAnvX4c-XW+=9xQ#eE-orFoihB1^C+q{(_3X$K&^O2I9oX2rb1 zDSwDOeG1ssRYTX+^C9@W>p3q~aO}0UeQBc?NOG#sH>#BR_=8v_?~xY?epK**lT?py zhwUH;9Ll!322%I57ij|bx-A=WyCgZpw)uPOquIFE5U){GbbQMiWi#5FM1ab5eV^SO zhY><#`m*bGHbk2(zSc5P-Km$lv!i9s7VTHkaQdq)V$g1SLg83SV~cMj7~4vZO(JNz z;;_M(iLefET%jEUv&;5+I=`Wm^!CMGaQw+O>=PXLU$^yGLdwvawPfy zX%6Q2vNv2PHHW5~_O2FGO<`J~f7X|MhzqB-ZZd)__r9GnHs5}ajE6?;$S)$NV&7wt zjAG+?_EIw*n5q00x1@0drlX_;+&Z)7G+R8IYp)|l2WwA~Ch&2)WP)DtB7DB!+^H_t z=AH9DlY9`Hyfx#<29BlONK2&w`h!hG?9DR|qa9g_!G$Gv*+ll;Ae?amgcjXU7O|W) zWjkNpYe`Gao4GC)vTqJ*RJpwQLuA<2vl`<$^3hAaHw<&JUoyYUaps12IVzh;^R2+Z z6QxTkhT&$Du=Q3{!zSC>7k~9K@`Y_imRq3%4J5YyNxX|<>^GS4U<}quw;Nl_UAaK& zTk!x)j!-f(LqTjek6#O+&Jetc`4u^RKBxw~-m)3Ms&tWA0v z`+56bx?w1sH*B!{tD^QE+h3`o=2h2OQ^kf@tbE#}{S!!G76V`TB`(OR6n}luG#b`N z+X(w1qOVc=v)BMiw9&JpV~ex9HZ|(Gx7my_S+l!@KUUmV4~-5nDUk}V2+a7H^)Aa| zgWzx^R$#f6%~iDxXVKsyM!<`l=UaMX7+m61;%6wl`1iH%&?0MTG=4 zuLw>pGu6OLMH0@de$>Tv(HyQA%~Q~U-ON+?5Dh}qtkHD{N3qR0T!6K6+ej5?;q$1Q zZfV_{lMD>JpS@Mb&mPBpGzvK}49E#3bul3<|7DvR3@{R}(lz{ORiD2?9lE1kG2q$J zuzF!+5^o~2Q1Hh@^VHFRxDfF-$XKgt7k1EcHlxHwDkPk$m#40!UL{L^Fn8J^HLE|~ z<&{J<#q>pWQL~(T2&>lg02N`mpFpcOVsRrzwOw3uXFrbD8V;EhGxbm3Rc*6a1t_KH z71;$jmOX_mzx$}S3VbGc4yvYFK}xq1F|_#4&aM#i`fB~BQXwNq;f{izkU=DBQ~bh1 zThhYikGi4bet|HyuipOT6Fo^k8P*){+O)7{HGS9q$vy@7Ckyx=AR6;S2Qo9hZ(fou zzGJKO`Ehf4&riv7TBoi*u{mESJa1PG^!{D#`ajOwFZ}1)g*Y#jgM(Tpg(O9=6SxxH zr6bl0hk-e<1;ripY}Q~cZYGY+E~G7LxJNZ}Pa*=!i?YKDTD#szzRC#?TN~B1P~KCni0_m_HmbsX{a2Kw*FneEnYku zi6TL+nU^f%?YrDEvLcNlr^T9A0ZG2~yykK2$~ovLPavIVc}zDcod7;g0^S@bbZTa* zwE_F^TCR6D&puFmz*AnqBRW8c@&S#@G-L2WIh`$C9)Ufw1A(9e7l1FH(QtrDL#z6d zX^QB_ts~Td4Lrh!JO!Z+GiZ9pD1)s?YHQ*$>kb$K)ByIIwhdE=0L_)7gbgAx4l1DVhPxw)9?LM0{s%)b0(5%XTGrxpgua zs?l0${aat26dsYZv*z}xEF#xx1&vj+y%_x@ zf46%7=VQDe9KUdqQ@3s#xe&t)}q7TNwPCuWEXFmku1?0O+^r@!x&Hx0)9(@TS<$&4Yif^a5f6jvbU-^?wDi#O2KMlQooF& zH$DYK;t(EXUwkOhtsxCzkt8qt3a|h_0&<}DO^;M%^c=k=45dP@V9I|CsF{8vL8C=ae3dhBk8_)V+Y)CU>tob=WsF)KrulD!JmKpj zS~|{yyS2|OrdP#3akTy#+tN$01ONniC^`%#YkH4k?^_S>@|SBy2a&=H9UZhJMm_MP zS3&i$csk0LNWg_-w*#;Uabav9TlI9F3%T7)?sta}VnU45GxIlE7w)@~#j?s*Q?{;f zU||ToMCOZN;|%MP`Z#t!PP)VnVO0hp=oR3pnL&q?+rHV_V$AN)Q8I8G$7hI6y+m^8 zP6H7eSURoMxVy_&-TmR@726A~X_c)yGhZoh5e!*I!ehvVe5*+A_!7)J0U6EC&NEp zc1g@gPXDm&?J9F#Oo~tMMA9(JO*|c(EP6qkhPWlSrvyH1R%T?_IV*aXEl?Qn+i75; zT;H{Fjh{EO<=K|oN-`01Hk#*7bzii7ndoG5UaXIY2tXY8KrfhlSI{p5-88c}ghpJ=6d6o|!Hhy$QMp}b0Dbe9 zx<1n5KHp^yY*dFzTq|GQV~?YNS_AZelHnBqTO#Cnqg@07LL(kCt_SZq+V-ILE6Js5 z>^X}6x+zhOo$9^&rzkvmy#$wd z?}&LWs=U(5C?%Q|6qW>)ep8$Yp(JIL`n7rAquw2={Nj~e2HwOGk2zREV~Q7{VfIbv z!=0yu?-RSU8zR#k(;n?#8uS`Uh^ggxzGUX2$~s-aPvs7h?KwW8Gk zGjcS)I>H4XjWf;(P|2M~t9amzJ|C)@T!XrG09xrdgvByz2?Gp&Hd;iD?sFM{Y&^Cx zJ24iR%lM)eU7r5&qS)TuhNS0ZO*1qYJCzp!*>oDGqOtkWm4v? zinfsqVIaEvON;OBSn*DQ2i{`HfNa47{ZIw;cZq$XZw|J6QHTg! zvv3rd=l}=voX|*&Sv~o#U^NtJpUmQv4`8(q5lv;kfA$C+omQRuflr+l$lK2DegXw#NGZ@ z4xG*RBp`tTV(SDQV7r)8mSnov$KM z32ZiFV>QJW%8LGmts*n(D+{aK%8bR~S|4Yh)UzyioZZ%$Lq5@=5)dNq`4mka-?EBY zb>*^FndB3l5UI}GpUR6Q-dch#D4jT~ zm#tYMq0@G5yz;=Dl$7Pe6E2C4CvGHVn;yAlsFv)lc;(9JxvZIA{aVo9gc2w_iH994 z-rQXIL#kJMQz$H<_(uB0zTiYV3D>C6 zcCvC_WX{vy@^cq$!|z0=HRnZ)p@^IVKSa(nj7JI`xiCbIs8R7Br zTv>4l*SjlRC^yy`0W<_FAm?6dyfB)3eir`U*la}N%D3AE^I$CjP%UIiYz1TtP&MZ0 z5utZ4OCu4dW)vyPMqRu2yo-{j*DHYw{j$87^#Iriz5pTR^@%nA%e($fXuc^b1mCxx z^*k$Saf5h4q%1|@=)>8fPls%@#ETziuv9OplV`hrE-l$RC={jC#t;7;W3ic5{<(}i za4GueCO_+lUrVJnt^Xe(7S@$Wq2%;1>+c}TTfYiYs&?fSA^84JlcD!wul9qwB!w(* zzlT_%=)k{`#QvpK|FTeY6l&B@@s3>?9`Pa5pJxG%Ro~2T!K?MsnmI0{=b_o(@@!%) zzM)QHf2Eodj~zwJQ3RGN6gJ64a)gK>(-5@-?q~4K-^af@i!NFGU4`NyTAmPqz*FUY zY(x&E47n7waAkgt7)j06kF^^E42Jtu6S8iny6*u8yriyi-W~)#g?v=M@K}h6Ii&RX z_rw3vOc9Bct&`N{t-_M#83b?}g1bi#zU+H;pSVbRMzIVC&34ESy%r5 z=dg$fsenQ~h{tNeW#H&=&8eEFLaDkY%i~I49?}nAcK=6egLJ!xC!7-g*t$}1nZl9IX8E8ip~i*Bh3Rm6V6EA1T=>O9R%@9)d`E$RBt=o=y` zLWzdIDf$20rT?3f2R}q&ww~uSM;U<#+8%h0XCCrc3G_)nz^ZDa)Q@R%@2P7*L{yAl zUdgmr4ti`wXGfrw5H@<7P&wv7fa_r_sbDv+%k$2e`EQ60+E36o%^XA51nY5&umWsN zqaQGkj$PIr-t^c0%aaVQX|c9bGwhS`BFjdl8r*+GOd}G~TsRBtNeaOeNC-><)wd9> z3LGwzSlZs7o5s(ewcSlSjB=CjhkcT0|KGIaU;O;Hq`}|3FQI+U+ zfB0c(F-a_(#Apv_g8ZRBl)?i9&fv!IJ`K!C(3+VJRIdQnDPlGl+q}llf#KPV$lbzm zKn?Rn$1;^$3%FheQrZh0J&SgK8bL}Doi=?<8j9W0rWJlouSrC;!RhCj-H}v?@#&oP z?vtH0(0b9LNx9}NhxIK*!kXnrR5@QzWS!d{0(8weXh4pal=tm?FFyN!*aYF4gKBd zzzoPNtxTB;%e#YQOt8Ikn)P~`LwNx~HX7s6mtFEXw(hV28s5+W>I`+h6As@B;H|-Y z#=I#}BX!(y4y*PG9UpO+Q*4XyZgFr=U(sr2I&!#NN(%!2^!ua64nN^Cr7s0yQV>M8V-h+}Ztaj#>!0>i<#Y|F?_pzA>nU zwP1Jv+b!J#VIS3@_9ngTu3;D6yJYuxQpk2iXgD^8Io>z~jk~amfD6wNRN$-hewj_jQ?zjUKXDk9WFaS8(%9Z>m=Dvj`{OY0bcY zTLxRMrtQ0+1dY1R(u#Aw^$n0XTlD?nHQmhnv#pPA&5hp1mk6c0^QIqG>2%G$H$1BV zeQ5GtW3>3&|D}`j@79aXZTZ3pCn2MDj*(&9wJReb_J_O^sdW?#<~0HsVP7gTdG(_1#=)A(eyrgB4St=Hw`;+aK-(D%Yyi!N{r zXL#jlEpMq?+}DUheR`CB6{x<-jk?T{VrccQeg6GC6$yjXwA1r?NkH8JQehPD$|(W55MN z8TpF$RP!W|d zm6CGf8n?a+_VC}^_|IQLQn5&_#UYW3lP84UD>75|#v`{Dq4Z_i&C_$EhlFm}gZHW= znIuVZ(A};_a(L^<=O@O3xqv4n7J;c+)slZN1J^Bzm-f#)<@*X#pa>-yR9!`cs##?Q zVLy%jb9Mhy$!P=tZGFDTYB+f@8JRpNXrX43hSJ+_H<7(k3?|CXdU|QX5u?LYy=m znKESucY`i1ER0S1op{>T>qm9e%=3!8dqd*ImOSmRt+~uO1AD=767Ti*DYW(Qx3IZx z{2#CS%&UAMjZkEYL%MkpR$i+?ZRgLSLsqxu3<5ISIuyjlzc#anj!>V@6xDVvimRM+ zGhl8yW}6e4fPN@Qx2l2Er5jcg~~%3w0KADGk(i6B?(NKOB@9f+Z)%c_Xj%hinRe&7usQ~3{5a?zYofj--t&}OBF z^R{2P;AvZ_s|F6J%JlIu1k_%hamlOJHr>dC!-Axqycw}MpLJq7Wubc0eHmScHL^1* z?A&cEk#I-l9{clu^!-0y9ZLG?%ilx$ z9}1UGW$kr-`lDD#zi#<0Sx*QNh`cAHyNlbV9rwGJa9#BV#$RUrr*78|(_K#zG50S> z7Tr{c7t!)*c?kLKncUnXQFYZO3tN|mQWqruUSa>avi~TFPK#j6(mRD{@#RotRZsci zhrqZ@pWod%d5M_gUkjO^h7cO}W@P4kH+z2nJ~S~lsI7M2_?>^eC3-YiN)KfNOnF+d z>Kl)2!w))s-~Rf3Y{9zl6tk9paipU^r#6RbzQFZ24+^TAboTUqoLIDm9NI3QI$*vF z+oN@SnBWbqvbV2oqy@4G3neX^wK(M_U}1({H9s|&f-P-?n7cSt;Lp#^`J&60v_nB(tgU1AdsTP!VNY1WlX)}4HSL5cWFD|v(shDI# z__Hq0CCqhm%pkVD^XM-4QeiDXu1(`u26u@5^+i$ItN=){HyfSwjCQN1+99Gg0-v$k}e{&=q;mn4_dl8XBHkhUquxyC6sVu*=|Gc zvNJ5OdGl{51p=v-?vEj*Ykj1g?u#LxB!sd6u{FX$T8D7_AtLcZq)D`uFV@x+yGSuc zLIkE+NP%zS+_@YSxn&BGcihf?)KLCwJi&+)Oeypmj+PBQ_Cp5`dHwqu? z7!Z%VM39rlc$Nhis%UBd-0-1sDy^pgf4{RIJ~1w%J+wEEXwDThr)8&+>V3T{?P%4y+4W$(9=gR9=BT=od`YyTpxGNo% zH{|Nz73kR>4o(-z*y`8G*ZnVW01jx!^7=@pO1zvNz;cj1i9OY=Ax*u1K73X=@a>n^ zf2?TLOc4c>n>c1r(3hbwr>Nb5UZmbsvYUr}ZKAb{JC=Dd#$E>=S*%hDd=ezM609|q zLZpTkW{(!g^JPq36=e>*S^gT@AB4SOP11W6IX5O>iQ^c__gIDi-xB4mvUejriDI|L zcieS9GlQPa>6%i%Gf&Eh1IOP@G#Zbi<=h}$gUnu`Sr=U)xW~W0lo^o@Eb#8&Z#RN; zPt-Rqp<619Om8eMQR6On1Sq$w$=mykXLd1lzDy2w3vEj9+xj5_8wJ1hzfWZrWA$3}Ob8?BAWw%X@ zT6vUCyq`G}#NJz5i_0?$pgxd6@Vlsa2a1sZlK}h*+XM%hOi!t>i9cG?IyWP^8w~p< z=rDa5x!LIg(>|k2=x0VvRiFwRb_YLaC3I2RY3V;iJSF4nC`F)Uk~V%uVdh&x0IwDq zDnC?;;1RfZXkmNyY(J73pJ;00>NGIbGjwaro(`-ZG%_^C;iHJSI+lK{CEh0`zy8@P zBg4T6r)2PV^)}zD!6f6$$#>za$rtet%7@k*VPFEvrIn*sR@_n6f-#l6S2H+Yo|jg- zeE4fLMisKkTb(oLHkzvT6%V|eGGzS*xATOHkb}Q%=;(6*1F9!$4RE#<70&Ha+l3o! z*R%!J`VW!#ahx@HO>S_qaY+j*mtAZG0o1n6%w@g=5NJCm+59bd;*g(>WG&1 zq$-o<$Uvn3aJJEJ#)Krt(t7k?@6f0EGM@pHZ#gI4Oo~b@p03kbfUtjI{w7>v{+rJ~ zAn!uSm-kH;st+@lEF5z#h-*y0clNd@3_BgtHF}sL%t5lxUnjF=x=jRs&f%x07{(vb zQjQt7q)#N~e82SNMW2DmgWq*?O)U(qD^BWP-|w{W?apQGqJHHf6Mcths<>6xcYT?ud52x_K(8p3DG zVFTse3T#_grKS*!Qgky%13+}_k=NCVb3Gh0(J5TO-il^mypn5F%}f0az9(w7@zr<3 zDCBZTt({YuTj7Rkz}QlmWl$J)*WUW)8m`y(l4B+>sF$;)cF0_Rfw4bx50;GFdVXAg zW7mfS9ib4>lUTWXP)ExUm#TurXn*v8)NQXEla{%m*(ih7bB4p&ulmAz0$t3P*(32q z)zxhNg%sd#{7)_=jXXgiqp(n>2822=K;9OB%L?KnLf&;Wj|L>`jLnnJc{Pt|HO}lP z0)?9of!5Zz;Z$t9Fmd1Zp1DddC-z&bFMX5Wo#S$BzW@{e)mtyyR<8*@%+8XY zkgL#pI2+rkjA#D2l`}VuIyQ$^%gG#twHB!9heF_iq2-SY=_j)AU>L(WJfTv^&A)QB zp~O+j;Z9r`&D^nYUlYE7*W z_PzR;;kyF;+=9#dibito@`LE8>~9LJXBhZOc?!Cj?Y=N`$TJ(}ww@TyJ>zqm^gX0g z%0eIvXD!JzD(+Ul-Lc#IQ^AeCn$X0D&Xm!jOdCt;F~i=^OYGtVSC^7^To%^GT^}ieE;g zBI(=<{o64iCo=DXN5?`k>itPrkj*_I?t`Qu-bra5&>C-EhO>W5CxHM~1Mk)&^OB`B z3{3)5x^P_&X*>)edU(jPWqGD*gjP~eomf>#Hh)=onwdwiWr0;J35Me+WlW@}? zB9`TpsJamke5t$ERdI&~u9EC_9`j@en;J26D8GCMZ!&OyF7uX9SEbHat_ccX=x-eg zX#{-qMCli7tJx4u|1FeVn)DYm?@jhoRm}dKaIQhqqb=~&rmkhY~{JTAHdj3 zb0S_BEb-CMtMcm-1m*K;C4cwr%-|$drj9q%h*G)M0K&;LI7#lUtm#?FdJ$8N{3kW5#&=x{RJcntc!tf=%E9M>0pM zo^{Eb!fHv~FBwYtOnvVC04jdob zi`Rp(3i<4;edvTynInPbi z4BCQUt@rZ0JK2tb9LniQ>>DhO7143cwd`^8jQSnssgcXxE`sNUHSoWbIdkmL)!CU$ zIC`-_@A2LgT{=p(EPF2lD5qcX)fpFUbu0ed(xtvj4nyvEs<5}Z5k94y&gI_-V_~;2L>HALgWDX*Vx@pTF#+j7{76r zbhb=2Wbe^jsV~%Q2Hr*VT>20me-!C6^H)Kogfq%$4t5)u7Tk?JYY&KI(+!K>Dv(>4nmv|w`Lf+gHQuS$w+6|-!)N+ zZFR7Z(_B;k>U$FVo-E7Vc8po!=MVby4w)-HY2pJZ&{2vW-;LXr~He{DZAlh0)cHNnN?Yp7PW*_u?mnc*l?QmtTkc#)W; zZhLaiutO(){wrfPwA%}q`9m`16q|92Dw!^Axi@I|gu=x7qr{v!jkH*6itWIrgI__o0%OFtU460%n zuRH-*I_^Dob)EwPtVFx{m*L+L(6{hN=^VADskKiF5he15-!Ihe;f*mA;s-JWrNf!WHUlZE-kztXvnneYS(tSE1qt@#V} z@v{#u@fK--MMkUx{Vk(51Ocf++PifS7GWd1ZCbaV^+#m>w#-7pNYARa)1%i%cQ6l# zEVf`i+DRPWXc>O=wJs2>w2RRVN=>(ctp7H z==!aS(LnXhCoTDN2R+d_&qIe^$IF z1?fryfY=Bcvl0ikw^i45kU5_l-~RAH(NaTKitoKG@gi5KY?Abrs@JpXdY8ofcjxCb zGh9LE#XRxr&1*2ak znn;9FiY9PWx68qOjph{3a?oB7gYi*pv(Bj^wD|Z0;W2HM{;ZmUInY3sS~*FmAgVg( z-tNAcJ0SDKM<>{5MChR85HT#JZHHMZ8m!gKp{4L$qVDUT>YjBJ1d65A2u|}0LTum* zMM!G2d&y}75Sf1c%!W~)x(hBV@LOkvy#K`B0%EFJFj52JB4)OYN9yrxnME~^mbXUU zSYt>_rK?V9z2g(n9UZa$tt~hUF0VCJOa)wXqRH`UjN^v>EDM?8Szt+UH&DNNIzavEA#H|O&_~)^=-3l` z%|Gi8TCqRZ98a{l;{GJvSLvHY_-bp4L-Ai6#>mvLwa%L+%4;>6GcF=5@~^V+fPDYc z)&n276$+okp9?I0h-?=@e~57Geu!XS(|NVM=K2~%+a>etG+6v@TKx}^Eo0ve2X}2g z{sDEz{QQFg^Fp20^X7ul^86yOZLS*K2 zPv>@;xlorXXIm&SRF{@C0oTUT2~CKfXq%|1Er0`U5ef$oKtQ~Kfo|ma@-gw-cli=p zj`}8FzvY9K3RCqAnBn@4uLV~@+SW)4HpSeElk4UuoSET$z74Z_M6~L+SA3r{-*<|= zQ`kPsWi(@%5cv80rslEiU71rfEVJZ$clvfd2Yxbjvcm^6sO4ld!;Q%Fmr>Id@~m)= zZDdmtn8c~bdOSY?<%^DK+S*dmxa8X<;i}q(EOTL9_!v%d*>jiBY-{#<;9a>Ugw!&q zU%=D(m}RU7l$4G?kXiK1-|=-n?_KfbSKm8PMQNmyJUlUh9);sO^QKNKRSmOLG_tqn zTQic|kCnGunJqu@FO`3_O@z(`JIqv_{+jl@UvAz3F0s)DD zND)Bo~ zx&QnA_r167U2mN%$ja>5GqY#*H(%Y~_wy4z?5Q*oZd;TWqc5GKCECcLJinzWleXts z(O+F%=IpBVI?;G)FZW^8xU9wnXV=X3~OP2zU{7G#oWJB*k=f<{SDt+$Lr-`_9X| zcFl07Wj?R8?)7VQn#2FWv>X#*FTxP_(LzpC_@~l2_14Uq5WioL_sE-RQQxiP!n^xD zi+A14`}f*EPqxbp|7ZF6Z(E3S{sRvZCFD&-e53?9j-kTC)1H~$q5ROc_^tyA zEot3;VZI-Be~+f~b@>U#)z`Uw9VXu9eKr>a@6NApSJ(ZNnGMvb;^UXP!!DePGj$zflU{XC1z{#f+fa|hQ*vjv7-TIc zwrOZzZ@gORBCIHTXggL}*lx@0s93Tz2j=~P&POnex$lOSwZ}N{IiaI zZ|HhC{yLL<-`4hseCv`!`^_&l*M+U)Ryysp3n#C86q>5=+$)X!SztY4pGx5|{=gwmglr(u@ZK!m)Q&#U8X4 zJF1R1Pd5n|n(Smn@$0Y2W5+&fzOdQ#wkRCYitl53I^^XMSWKzwo8go7)$88()26DS z<@1R@N=(YE}4t?(aX#F~1ZWQtqRn)LGeA zW$$_?GxihJd8d0(DylhI3Y7hRLw9Qczx2EP3u@`|>m-|#ZJZw*-faF>JG7{AEUMot z{<5%H+F;*vrx^Qh>zM$-+_?JFn2EcFz_O;`F?jY4p=M!j;o~f~C;sBxjEb9f_6ElRfhsHG^N>?syn~_qtQcQ@mg(WcE}tLL>cE zY!yNJvSfnv&zv`i4&On*D`%?;>V83ycaHypzQTJawuz2rO`C$zD!M9-`uelCd3La~ zAg_~2euVu8{ud-~`wJ?1U~5iApt=t-1_ zu~PoxzkOF{qp%B9w92}vAzZMKHaFP6_yOkiZpPA9!chAF$rLj><&;=-5??7%=@#21k+xJ^fCHC?%%L`f` z>?GzzmnJ^-;jyRB^zejTQg6G8R?4kyHVzE#RlO>&m|@(!x-njUQZmUg!{nZ`j>CPu zKkP*+cmnb+Zch%_FICQSl=cD-ZCY_oX<4gE8NsuVY^P2yK~}Y)w==O<=Fg_ z2?HtRx`I1pQ^VaM=(+xd{z~pwSs{)Q$Cj{u%JA&qa<8P{{tH)mN3-C#_VVxjYw@Cz zM$_vuRj1b``F7EBb}cLw29Ni-DH9f%Z>v?yRt|aDs-Uv_B@Gx$%3`8geLs$QekJ&! z?*^E0dJXmuu9*x(E9dFN)+nX*+uKO=#9dVv{otoF&}XD7#U;?#^u!z5*y!(PNNnW` z32sV(ZqY_>39&*$wW)RA@f|ncg_N@* zrX4DkstosPGLm*3V;nR?SXJb*Y=xYiPVM<_%JA8zq@><`-|h8aA>O&qlZGZK@9xoM8OFKeMHErm_fZdroxuKxLc+H z9@TBv`O7LDem>oI6F=K!*?YpcT6v^u@pI(^Dx|6v%1-sa8iD%Z8Z z7xC9OX}brvuO<@;Y((B^+ZYtS?XQu3Cmx@jI%3}Nlf7=?WxL+E%a_S*7R#rX*L)XC zrrdmrwaaFo%@AC04prqgVo`Q?z57-?I38=i7d><}q*~VZ^WxRc zH>EcnI+bM{{N8!?wrMf(#4OJKm>CMQ+U5DsuGwac=S?5rxGQBVYF{Ls7tfp}-$I!7 z)X&$qNDBD{MPFnSKCTtBx1z;of0aXb-mT>IfZXd(d;JD`f^jzrZmlsi`KC2V*{`)W zDu=mm&8&JXi;V;>#@C$)5tB2Pdp9s&XIe0)VV8e0$GnQFw@T1K6TFw5(JGE<4V}X` zkI#qPc3Mv8k@&fIt*p&Ao-iQEn#53StLxcYB>32|eY(l`sqScXzecL_Cq7J2N;^C4 znWJY!x}-HW&Af8vpY9|M)U?~So*dIUqR|)KdSat9H{=cq)BUCH-neEUWx}?(rg{7l zVWncw$FeG~Y;bXttN4$-GVL0R#_}H>vqF`Z&h>2DtCsk+3Y=8m+II6Xzo&MxPjb!U z>)BK%pXP4Ulo7$WjU82;2Rkp%swHEV)uVwiXK)3e{lz0MRZ zzBXI#?oW9*oCKZBniaEyhJg>YpRUaNOY9~OgZ`npm`_haar3ML^frk?XADw$Kg!C&~ z_D{VdJMa++z43|kyK3|{6Ei&w46^5kR(E_m9OJ)vY4!D`+HOqVvGeK~pPLo7_w3u` zvfis&3d{SB=boe(jb4_!JXHDGb!E-!q4v3k_QG%PN}Ai&&fmOgzg_hu+*Z4o%Fkpk z>2oDUGPs4fzYzFg*(cifWBSTgvqxx}?Ut6`z1h2)8j@#1e`>u=Fu`M~j+YRGqIGDxe>dBhE+Id-*MHpuk z=d|AUv300a97#BR!FrT$0xF;uEZ1xMFLdg;iuLTH;S-N3ye* zmwWkL_3QaMpQxd~k-acjWdCEjQzGpf4YU2me!zCuE!Q^QcwBUFjdf$y-IlEvUxJ;< zqE3jk-!c68{+9Dn_k`1KgWW}Zn~124aqbM|2_B3iYh(9z~s&@YyO2Tf?mQ0qb2Zrz2x5yzpA&#$?|& zyy5lU9R>TW1iZ;f@hBhLD54K4>Fn*^u)Nb@RXDu|6+Fi?D!E@`LDdFNS*uiKLyN(* zRzj8Ab(W^Qdl}JKck`t>JHPKTqT4lv+nn+vzP-PoSI&OxUgm4q)e_Q>I*Kz%Lz2mJ zO+T(w_?Dkj8jJYjkZJJ!Q_oOu#q`vE{BNKF|L51>U-tkII)Dv`!0{Lz5hIhrqiOWO z(!4z^zv3!1&Q1icSws*(uMQ$QsnLoOk5-mU1xY5j2;WnA;f_c=x3uGl$mleJ(!60S zwE*M_rp@$?!wguShX6R55D)(nXXd|N>)(H~YG{w9{&8B4%WY$U*$sp5v!am;->n<8 z>)fri>%-4(d3c|eGmQt?&rPNlF6x#Kua1qZ?3<VMA?)|qVt{=b7bacnXb1YOr??U=@?7v_6f7SwUCy$|s5EB-9Qpk8wS3M2* zLRoZvV28Ei`d{K@B8?hFAOm1)HGE(XxZl##yRVMU#GjK3cmq&wDU;pd7vD&B7RrvB zjCnYi1qaxnCTs$eRwVz=#`E7ls)2$NgDm+gE^Z5x&n}bjLg3Y1Y>L}3nW!O7&_-|< z75Xz1fN+0cbzx*mmDE8d4lnugFg40Y;DC#G9XX-?Ob@o6CQ-&Q#0MyE3cCvBC=waq zW5oadi2kQX=%FAzDg!cl3agK4r3d3eB%B6#s!7keQEWEL*Vv+vQUWpp^h(8iAKznA z>8Zy!j{5^75=QZY`_y^Q6n~KCxr>~~- z+Wem4gmEfilVI1hK@s@jtej0osr$A;@xb`Ru)*mS6RokX7g70+=HiF-yHMJfr2yLa zs`nL|v`n1m!fltK&|=_a{Bz?+DtajpiB$BQ)&jOYnDso zl2NB($EKrotF#*H#R4NU@zQ|A0HhUIo67DRL}A#r3wIJuJqlUEilo9=dWAnU5);@gk!agM46Y&|{dxiF-(oJi8fSSQG z4pn*RvP-;#FrL+LvaoL*-nA z3rX;;#DC_FNWiYhY%0UgC_v*_*23*8BpQ1L=-&{>YyTvY(WBZ}nLV>m$sEa@pCzh# z&WT(aS?wdfI#4)DeZ4KzTiaM7S({AA6KZ+Qs1F0^?d?eVXNmx66C?%({o^D?hP0^G zMvVq@1y6x7(Vat_xPw~9jCCo+-B5^|_lxC#|8PjUYpah3wmSwT%s90}L=pZSnbnDxjH$QhYU?DpjZmluFb6zbCoR+wr z^i$k%No(nWoR`D*zE|cMY}E>JzskQ_GLzywlt3Qj!DQP=VRx;C#SqJaV}|KV-}qdi z!l7{oz~n>>i~|V8|H!?NP=I-C>j6eMgbT2!h0J*9gDCXK;G<&VFj5V3TaFN*31Yz5rUe+c}8Uk6<6H#YHaG5U8R{D0(&9f%^5w)QXkFn>OpKVgkY zIDLP@9+SWp55S6lt9fY|02?Z*N$`_|G^6X{`L3V z9|+?Aw=@Qq&;utzXc7g;^M1ew?*v8OGSYhHq74}4q47?7TIsf|SWBrlP8WHaI`Rc3 zOM+yG_RvbtT2cN&-rop`Y)%0&n^I!V> zJ@NlV??1bN>tK*U5Pj(|>IwwWAjHg(0A)QEY6+%&MCYiKFMT&&E{Ll+`Gd-M;1OD( zP{Wm;S6?gEvQM!Z+DpZCc^B0S4EScg=;vV$w&LzkV^J>P4q*HG^^6*|>dOJEj%TW^ znUHp^(BS|@2Ik=)7Q+izD=Z*lO(Oqis-Rr%k#}NC@#r5pgVk}~DO&8O^xKbTmvs@$cnnW= zy=q&kS5*s9+rRlf^78w#-Ht+?yr}G4#2FEzNPfK0u^dL#H3f9-gJaobSk-kT&>eYX z{J|)U4u}|hA&CHZ72FQ#OOJx{fd0YPpIYWYD`}%11@0UA{n9ub9FYC{Ejnn0vj2o_ z2YU_<2B!rye{gyT?EL-ekU9ZWWRS#+B(fsRh+q%eg{*$Cd@tJabB*hAK~eeCXqS(V z#{0gIXpQVF-aI~Kg(9+?9pKKMpXf>X`sI#ptqs@xtJ&Mf1S-$R>%@OL`_06K!`U}i zwrSvQZ?EO^Z)+=W&eN?Iepzw5!>>GfoKv@J!)->ezhJOi+NN}6NWzdOaUW(23-+>dz~eLp@ZfNe!p+tDUlwMbT@;`aEN8y%sp*=IzQGGZY^61728??7D>EF*-h zIe1ymK?fT|4A{j60TYiTdBB5%ynk;{)a!z$3buF;Q04`Y$ymTrlS$A1H?%E@wn^kV z3VJb;o;hh_Yzb_U5aJJ*vEzT*IG}GzT24|&gdAi7b^`Qt7{KU4R3=Mg`F^-QzD@bt zk{w|c12x1NOMUAzD!G$uRzkKLZ`TsSuRfXdJ#%#^#GWABenRhl-S_fw_m$|8)$J4` z``UR~wyBf^=lJ0He%-ZxlVn0{mdV<)g(=e^JD-TU*=fF;D`n>Uul6jqRssihjtG@o z(z@{tINL17w!fA61-)6{F)u%VHZJ$zGAmcCopLdizbv=*1oJ>4FQE zTkR{pFE?K4Z_JjbH+Oz9DXH7*08n0O_Ht!B>mrzEu@C`wFJR%U-;YNsj^8U!xZFwj zgDo|wyiL;VcG>fkqpeCgl8wPEU8M;kx1z#&RgBf1CS1qoN{smH+lt&rw-V7(js6ab z^!Zz-C~zz|v;;~slRg=;0Ln8mB0=#DLJ(k{11`XT097M^;Y7y<#eytuA~hDwkr=}8 zGhh&;xdshjKEYw&2gn8mOo=oS~Kxl%HU?#ge=2^9voFJAPtEcEdEj`AsEXncL&j8x)hjA@}yxv`(=g zsM$Y6ce-O$Ir<{I6Liv7e6C^rrYxYE|HCJp$05wIhq{%cuY9;( zD&Sb3+l`}!!qwt9=?g@sF4{a+XdA|U+=e~|(-@8-Yp#Ho5gSuTCwz;%5JuO+CPW&9 zU>8`oCqSNs!=S-LB8eFC{B!Lq5^(PA@GB7n9^Z^tBFdvr?I5zAPqVPc<61c7a z@&yWetsXStAesz{yFCFnsMmh9uxI!}Y}*!e8I`XDbbM?`D9A*mPAz}ETr!c-;i5yp z^Q6cx+JMrrrSee?%%RK5F{AQ7(;3a#5oN^)(bqsZpeO(^(m=v5!Up=?kd5Agz{ue& zEKqI$gti_Ga*Scnn2mNO@oQ4q2+-n>tVNNm`gOp}Jt4JhG?8fuX$Tf5l5Q6bQQ;UT z>hm)wM+#kcbRFjxeh%E8kytIwtjn(PyDY5~8JFV5k@CrJ9uRXeQjo>Zn|rj+K-+SGL!zx;hF*5a@# zNBx)|9V+f+MvqcHuFtkgzpxk|GW*!qZM-pS_b|7umHFhr?Xkl}G2HY0Uk8(OtfDld z$}u0@&tyg1@(pZmvNRKu-L?1y-J72YP5A^?mjbUkD17;{*qX832>{aNPUQ|T(@7;b zH4jsmxajy@Izn#~72gnQreBqipQY~c5clc12Pk1w|0-%E^mM4lhwj~@f3T~2=dtNd z=s#S#t}B4C!kTcC=Q}8n!j;R$br^Sh!4T_YfeX#(?tzQIMU; z1|Y8S-_Qj_lLDe@0a2jxG)sCH$^uz5L!K7BgvHYxNN<4jqW~ie@u~4J7)+hbK?o{jj&bsQ)$*QFN5D@Q&Nk$fb?5ke?7+um`^|G zXf7z06ohV|xV4V7)=Gg)8i2;djBX|&M1wzyu`XoP zFon;R)4@-HkIG*k`_z{tAds+XXAmRFYJ@Z|KqWvm!v5W$+5;a058@V;L52VCXO-_@ zj-%2YrBvR3ety%o*R}6zRqp)y>lw*1_H?a+>i*l)H^v2Ra1N`LBf&3pHN$gCE~R;@ zt@7PjI6H6eXJzzBs8G-jt0vDSZAw z$Bbp%c-2ei7;|&VHl}&{_1fv3u=F|hf$&)`MK_1K?AHJ_QTTaUrpsI1)wUiX0%fqq z7Gi6xZm(;R_GkBYQd6NwFnwEApO68otq;3ub;my8Y|Dp*y~@qinjPWZj`MW`Wk%Y5 z_T3+9siQeA^ZHv+r?g5VCK9wB#&x86=^z}r1HEgJ?@7| z)Tom9Hr2(O>H9pYTMxwv8Do4DSB$KEy=E??H_-nGu-8dtdgFam`(vW*E*W>LCS(GH zTPu-1%G>ND^p%QHwfr49wsn+DGzcyEj*jX%4)B)vOF+0V-T^@D2r=(NEZ(XtSZ$)f zHC1Os#DUm(3A9>+EeOcB^dBg7D$OTA?f_}D3zZOoZw8?SyjRNakvEP#IGWX_M_uLU z9TYTIpb0;(k&Fw?JTv_+>JPQ4`b_p1gmOBhLy@z=7eT ztntgE)ktYB9(B0~H}co(X=M!b1KF#C8c%DrHv^xBV(=1L@&luZJDfMUj#LixM|2Mt zDKd0KT;gGm@kB-_LC<=@kgkF2kv1~ch?U6rjz3#S6!hLyQ<4gJrhl_koU&mTDmF+J~G)XPR%e70o4m)OG4KugY+4l>c}U zZyYa?ZsF~jV(MjT8t=<|a^$DeMy#rctAXG`X)|rn>=MwhG`#L)Y+5#rH~EO~w#!=r zFhIAc#T-s)#EGT?Kdp@$9Ep)A6?fnzwhSC+xUG)^K-h>>GgHn@aLl% zSz5z*uAN>YQhU^y}uZ=84EXP0S_nik|ooQb;!rOB82hw6Ey|iP&ed4;xh@K=dK4Q9Z&~!^o86c;Pi7fm8IMr8yF65^ zzBT!kgU~w=m{ES%bN)lKu9J#t_k*yKR7!!p_Ko8ULt-6li!PhqMJ+C~(^n^d%IkP> zJU6JKmx*VKFn!TIVEeXvnvk~d_%bY1Ug*5{1#5{BpWW-5h8E+;zA`qloMn@8aIC0Y z=FSi<>*5jc$e6l+pHTn~R|`Cb;N99gM2c1nQu`;YS&?@_ zz)N*T_Yo=wOO@b_)n47EGx?lmy@W`rr?`Q-MP=fM?1q3(E7Ls^e^h}a)y#!#}3OHZNcj&j1+g@@^J4@Dt@6eu^P^Wt-aIg6WEe{hv1`qwyYCN z*Ph3uj%-8u4y~)#)MIwcWTD)@Ro9T2U1YbY z%pow^=Wv)a!YqT42!t*p2pw|r-ho)EA^p=d&ZDFt1-SEs*B00;;PyEcac{G#yc8__ zD%*J;t!QmnTIM6GltLHsG&M_d#wxf;>&smgA$6ya;OoU4Le_Gk4bk`K+nUsb(r$g! zom^>hOiWq${!PTVvX~%CX^Jb$Z(Igh2P9jDzxr7fKw+G7ixo=i{fo~j$2tGlzK?6Y9XszLjWgtcJuu+HUmQn6LGKoh@i zch&BrkzI}JdW4l0YcI+59Zl2n$&^n|JhVP}?jPy!seCzoRybO@gkUB8?aMpvn~qu1 zW&N4bR@(Y8N%ld#K0=DJq1i>(95f8hJdjU3rC9RvzNg21uEa+V74e{IQH(9cMR8>! z^+3C_<5wA4{eZscsmI9M%>mvf!8m5GQ_Az*%knSUOe=$?k=C^{_2)Nft6_ zNRyL(1{kKm#ff5mMBWn2q77W&QtKGqY(^MIa%AZN9SC?U^`bCgFi^;m5Pg`#$mg^y z91k6JHX4LBv5em4pMeFDZ7!@p4@Wj5RVF9kb*aC(oyy)-ljZ2xIOzMnY)&A1m!-Vf==L>f{Dn(=WZ7f_n zj=@o+{abh5dD;g*?fOh?b)w(!81eR9IEx>bmug$}F8*=zq_y{RxlP-hi{H)r*Qy4~ zefliDEC$xL?c~BgVZP>!}TgT?SS=p?Rlra5NkEGp` zRb_TwuHD3<^7&p{PYv2cfnyRIY3YX=ov*Ar530rUtYZ=kbUQ$&})^9Q;NHBrorhrAP^2@4*W^VH__Apr-W zNt8?s1_p5#h8$$_X$%mxz*ZNnKdb=9-U;kN9Rixp3WgUrR}8L_g?bLoL6ls-{!rGS=v z18e16EX+P4)!=XV861RDA^8DjfLmU<3*`yh5JB{q=^B3**)_~JYN9xthxa8KDuEy- zutu?Y2+fKZ15khQ26ZMHBJBd)oDoZkdH|&db2gIN90pDXG)Ou{y@^qktOo-lscwbz zAtnehUvlc~XE79*!}mymrr#O|i1K`e)y-k*T2Apu;I$2Dpi-)UexFdPfs&kzd5Ppb zm@wle?^HyC6Iy)+<3^nr#l7){^lOiEvUp#Sr`c(K)z@3oJhVn1S|e?AvfdGTW9eg+d%Fd^=maG_pyPB9FhX_>L^HENnY$JM2tO?xyOO?`Z#m z*r&@YZ63j zSKF4Qy=ORRkl)`$5H<-5OB6R0dh0qGm6E1fR3(s`UC8a1@TCy%(x9@!b{ts#fwNukGj>i+P8Z;8S;_I5+@IqN%6qFa4g54UlU@$;*KK(KO+H8#0m~$a}@KjG0z335E3W^45*&U z2dmF0I1Daq@|-+N0;_>g1tOf2XC3MV-EoC5lf-)-8Ag)3;m{D4$^}^l$1ZUi)~A7b zg>8T)T7nXvv*j2iPqtj$lJnulVcdU8EsP46_1K9o(pu4laog{vSQX$rE`J*NL+1`x8` z5mu7QB4SsLjmDVWp2JJsYg4 z2**dF*eik=iHMB%yn^8vKogIF14A#0Gi=4^C6!A92wrwvQwLhrK`aK&;U>Qm)d;I) zGeT&Dm>K4<-g{m>9FWFXrJs&~=b$0@i$c1YAQ2SQJ&77a^OvgZS!I(iLGZdu?LkQMwSSxxI z^^Bw+fT%13^SeNtfC|KkU{yqSg0--pNl_-a8j3AEl1&~3v`HL_aBurSewZVEn5an;^=(qhr5of9W#E7$r!3hB&?dBehfzrp6h4Pta6+l6Fnpc|PRUoBZsRYuVtMmsM8cm~OYt zf(}ScR83g;6kJQCBW9$?ZFN)&e>&8H>v(ox%_s{ms5kuVGP8C5o6_b;HOJojH*yCF zwQ>kn<5RENytf}%Xn&fv&*f;-u}10cI&zJUURbU|o7K))gx>~+ZCY#{eww0opD@pufwb|il% z@_{kQZEOycXXAkWl4U?9z)2F9+py!*@6{t@A9vAIoJ>>L^obT0ZDd3=l-fn?Ko|hA zMAo*1;la`X`?U?6krkbewH<}{P-BSmLG-$4haFwEaY z?8TC#98rAD3SHU|F#JWK(E$i_lEe~hNGpp3wlz>bt(L(#&%tlNfPmK*7}3DBOdp~L zxFN)Hg#}AeM=9W#f87TR?Ds6*SYUkzFJlD~l&plR#qK;l$`67fQAl~s3x4hllJOt8 zRGPPLFxkq-<4lIPUgpI*Ssf8y=Hz{X)(!mp%-EUpV^*ASX+3v^5C13WzQ)nW3~PCB z0yA^_Gs>u$rRS&{R(i!)5kv)<7VzlnB1Dq3fQ%VZaJhb|p9{J>~o zZ+qWH;d<3#fC{y*u-UO7Hu{BIO}6TjMx-dtby7}J5+s+5h&0yD@Xyu2GESu zUqkvc2Oa8( literal 0 HcmV?d00001 diff --git a/docs/assets/zimbra/Install_Zimbra_Open_Source_Edition_on_Ubuntu_1404_smg.jpg b/docs/assets/zimbra/Install_Zimbra_Open_Source_Edition_on_Ubuntu_1404_smg.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6590f961182f33a94271b1eeccc23cfaeca5c54c GIT binary patch literal 99701 zcma&NcU)56|2WQc;6ek<8R7_WE6%h~!Hm>E!L2#Vk$dE5h&eG$O-n5eaUrfUakbQ5 z<|xa7T54uyX0|Lx+5FObe15+_KELndcXFx)HHDeu0txK{^4E;kt=_QM&p% zdb$9M1Bp?70bxOLDF2}2ArY47Pq*%&Q6YhrXjdZ#J%=cppx_X@Vt7<|P@EqsG5kbCta+j(`d`4!`R9L|bNLSBTTTkCy&(z#NAN8LD&7UnM@R+$1 z!S+9M@vkh=|9PmBCr|2}G}MWVIj*a3W@e_VXP|3fpv~{09h(#p=a;A*5v%fF2!x>6 zfS8b|xRA&Q)L)2x{*m!Ok_CfUl=wI`CnFG zV}rxlT3K1~S77#c_0}dvCe}7qX4YmVMg}&9hUou{4g6oQ_MfrV|DR)Z`HRv0OCJ9( za`|r)p9cS){txlP!;1OkN!K%oM{ z0{pLtkbr=Yh$svu0)vUdMgMicMa3oH65^t}b|DbEb}7iq%PZ{pp93f;C@3Z>wi^!L zEr*mu%Kguc|Gy`HdI6F`pajTuFi;Wzk_3V!fq(u1Jm#+t3IqcA>-^6F1c1O0sDPjl zzxCh8fA8?+%)joy0YESq1OW>`{$7eeh5rtbREFq7tte6ge&}86(ey$C!Kxd5h;eI` zm!F-GF>QvbLjGw*EF0N3s&acagBU#cgm#Q41?lKe%0fM5_9%tsIi z3IPLvk|40M)W5*)TK7Zqf$~9)8wk9#c8W1XeD+ttA=9K;ZT+f7MN7_V6E*>VW&xsL zJ`_o?B;WvG{lOu%{nZy!Z3qic3@}X>iEPVsNEa z?=tV~w+o}k1*D8V)$`7T`bmVn_^omzS^0PMhl6{{OC`dtH6Ixbw6J`!ghecVeaAZ! zd~WR)A4aCA!2$kX9z5j_;GZ+WGM@MNzmosHsQ)*t-KLg*085xl3QE6(58!$&BUjFZ zq%OYs1IYf#gWTcqevYC3bul6s{}&X?_uRGLDjP&ovlmO4toVIp1fBY`*-XnLe*ls@ zYzgP?Yvmw?kH=T&&mI2)>Zy42a}usozi|M!>a=#&pj5f`ab5ii<9v5-s53zUQ=-Oey`gvpMsL4I$~xC(?iMQJySZK78PxGsoxBMz1?Q zICO-4A;+ETbfdMEcjTWh{Ed;<{dVC|Q=QX;XZ&74q`jGDNB9dKz3vvK8p%I-K)yOG z{QbhHfl?o;ld{ub9etUPGAE7H;iC;N4A{z_?v>6B08U(ZR~5Ze+}kOC&1&U<(c?VP zy$2fC4j4TNbRSMR7k|L0OfmrYM3j#ix92XiZ(jdhv7 zlZWt&UpFur(|@rYf1qrKDIWW_VTW1w)nZ7;)vh_%JRMJMp)m?%Vh`Y~8oP_F)#gW_ zuCe&gk3pcuZdSI=3R&(}*$%tbmEQr@x=avVY+x6MllXh-3-^A+Jn7tB z0^(1*f&aUmV{ostrA*bHYZNkyf78ff1huuV?C&jBc5GwA4m<7e&b4w4+RrDWpho@~ zM1=n%$lJhHQ8zSFIUj?}!LG3w_*%0tRv7#}v1xH1uNBcRbULvFVHN#5P@r{%jJ;Qe zU$nb37Wh>+{Qe!k9)qQsv594!+ZNADg6P0QieU^t1iUbYr?w|8+@%rH2$icdRkSlcR21aa$NwXM}^a;-F(YeK| zvtgaT9_p0p9~~d|tES|S(-a>psYJTYj3XA1tbhfDlKJcd7o&KTPorXgVqUYH;2CmWV!H?q;Z(B%^5=*RRup-wZAj(@%HW zoDx$vrdE((zoNUhJ$k!$kH?b6`guAjBC;yP3d%{zYm*|CJkKzI`-lPy30DQtf#5W- zHT?rjXhnMeYu}o2_g?Qau(`bUfP<-CZc>sO06Ik!3GYp1;P8v4EHMO(4q{bNKtMcM z6#^NG3Z;`#RG~CFx&&^DV=H(t6|rd`P@yon0FF%^H-Lv;$|7TG@u{iUG6GAz!~mGV zWd-g6F4o~UYZqJaZwo@1%1?w80u!rh8K7bIMxPe+4}g2sDfm8pn$=(kmA&QaU-8^A zgVob=@mlbmDV@EMC%XRm9@SBOSnI<>uKmje>>p^>J{z?*b!GdAAB-$RS&>&ZY-3WT{bb z&Kb3tZm`pDXnpUX&p#igf}~Z(kL6hHK^9xyGm_LKl{n#=sy<)^)5VW*C}?_ZuR8c} zp>KR5dJ)UkHu+gBg*(Sev(3e1p|c6P$yI&$b%e%X{i4 zp`6&j3gMo4oqidBU{ z_>fR$q6`@%;Uvgr*BYzzg~Gb>n%*q*gs+ygLDQCd#}RNi9RaP9s=#NHFibls5Re10 zBE#Wk@WMkN)^0vQiEFRp%i-qP>8W{SIdv=0nui#OK^1~Q=qM|2DonZ83zOp}l|~$s z(Wj5%u;jL?SvS6JuW+A4k}!$q3kQ3%wL-?XpQp8Ek6ZMBi-y( zn#Pi2sGlC%r4D>*>Ru$lub(goN2zH7@Fb@jCZ$sDx(1Jxtfy)F_h)pkL|6V|z7z{<{T*`9JGJ@lo zEG8c-sc?ERmo`$3nUEEPvav&4q;+!2i~}vJtMKDzpBDWq$x2?XeEzyW=%`V6z$S9( zW`U=yxw_5l{Ylytdl8ieqr*1mapU&%)$+z-2L+rvSK6K7C9U(o`KHoU>4<(mA@>nA zQTB3~M4+pCyW`OP2$z@))zsjoG{JJOMu?Q1kVhd|=2>vR4$F(1Vf(Iv1|K<0;vs!P zmt2-AcD;=Vb<+*7Gf(x}KG!%qxEXre>-Ijj8HH> z*;-a7HPa3Ufuvgl!S^HTtltWkC>7LMGwstrP-~WukOWB<1((BQ5CpQj%$Qq{T|j&- z>@uDTE5RUH>7~>|6Hw0G^V{z- ze_uHn{^MLm@$}^a?CrU49foo7yXEu6!@@-RUdOM@d0KkCcdL@CAv4Wc5_JOry&DF= zRAh_3UE`Ey(UEPI0WL{ zUjl&w2}o;vu`q~ge3?S-@(y9=eC1%T&LX=E+l-97<3sgtJ}GUrP0NdXMVk^~Ui@gE zn(C9UNKBMZR8(M>#hbuAG- zh7d}n!(kA(DFvRF#Q-0{rnNX`MAEXtn>VJsi@4IeRbkmqcn>U{M}}wHNok;^Fm$RQ zp9+N(@q8Ut0v`rstMbVXe9rnYl?}&2hA>i))J_`KnT@b!;#2XILtwV$U5qd&1HSrz zj;#SyNLy8VOn4=tB3q@iR$9Qb9tSTiu2G?*o!tfnN-MVawJrry8Wa+K&DVa?|7XpJ z+vVN96kmS(N8B}&Q=_|^_p;g#$m`bLZ+cZRHRJ7(_#*uCBL|)RXOUOl(6|?S-rsz` zgE(Jw-|w?`*G}C=BXa-q`DZD%gqW?1iV>PYSMHmff9^9lcV&A2*G?0(;hWl-!PgUS zI}}>Fg7cD-w60r~?n zpGcGe1E{+27<@;7<7;7WS_jgk)#2GisL8aA+UY#Lp_}5B61ADiCp)B7?4D4l8NKxlvshgrrc^*7! zk=*wosuq^%lqGRm(%5cBBhwLz-|m{SLYYwX3Tp|b*m^E0E2CgNJ4z@E3T9_V;TNT2 z6bV*TRVWdQM#8}aF>@B{45x|kIo`wh3S(aO*?y6hW?P-$4PD2ab?30iZ)rWk>G3A+ zLnTcBt!2w*Abx$ej=W-6&X=M^^uBCWhSbeqt~_2uYpT>k*p1bj+ZQAyG?Hqb%FK6V zXrfw{NIYsJ_nWqr$W?$HTWQf{8Et44L<7&ug>oe!7q?t;ov=4wH&k^mb)uQ5=`0^j z{|6RE_m*yO<@cRXiXKkd!J0pnoy=SJ(Oerf5#yG4-;r$Tv-;%azW+7?mi?FX1lg&< z4B8it#_Mb71rE2P^C8XnSS!437?3XKj%TxDiJ(-L6of&=2WP^veLeW-2Lj>2WGsq` z_mE1nX5h~V+wgf8kEaOM8px0W;Ru0jUv{Q2kcG))1%5{hOXC9;Yj;V>VcR%Q)=FMh zGiI1qeGQp2w0-GfYxG|huueAD+D=46VJ7)woz_`vm4on}sCVV>YLdPc9W0ui?rA-K zFiE=Ok#O|)Hn-VZwC1l*Y+ofS{H$NPe5v5OuH|%4L{r`ixl{A5cAulGSf2*lr@Nmn zuMA2_kgNum@5p`eUr|@QF!$?m_&x2eyoP{0A)h1Ilkvwx#@D6>gwUS-9_{Nd)4c+!mPLR*7>lwjYnoKmYE z`mf_@rFyYGq)WT)6h{g5@lZXvAfR5IET~J*>Q$QG&GN-M*h!~MDGXkXvjFeq6>{|BwkE#KAo9UIj)&@ISZGS{&3WB` zfO410tta7yH#+-mGF-*h%u&hFzePqroc4t23AMaC?$5$mBQ8R0mLwEJRD~!DrZMnXF-cgq0<;hUfn^IRz>y#T zIu91eS93yqK{`(0+i`gIUurHS@@aWVD;tjxubM1}+7P53Xx+5Zt|ke*1oFbzJF$8r z#xGxzB$u0UKRhgX?*--ba-8#Js8%R`^wHq%*LA6rZ@;RywT2a5i`X?fv)S1{KNB*V zU6K34^MSgjcJc+2ftcCX#xvE^*HsPuZp`=k9GGv%3r8(bBs-@~yMFh22;+t|Q5 zn|SQQor5Y)0`1-=o3xqbk!L|wY-tfirirGysrje_=}y}?&RzD*1x}o%iThRMr=E?f zVgGb!JBN#^<;G>&ILgru*Ji?RC7oZ%mcw#4zX#r@wvUO6d$lok+@oG4g}KIf%y?2C zd2K&R7OK+d=+f)9Ih?D7%2X;>w?@IlF~Urh0erH&M=am2I1CPiZQ-ry z=wo^F0QFL2`CBySkUDp!XrAHQ_#}iM7N4yN{m-nfxD zrVNd3qA@T-WE5ZXOZu|1`4LAH3WnyJYACxb0Jc~@nv9ZSkMqq@6yG_q&c>tSL8+GdsKk8 z;rHjvF4wUm1&8&04gy@xsJ1FE+zdSPN;{78-77gRIq08bM@r?)t$IGS%2&*BR;CJ7 zPEGF7g*^|rc=Y1rptrbjf_y4qzEx+|^{~5q2h~3z^P28w&l#6vYm*WB*G*V&iprxr z*A@=lsx+*8Ff+>A@3%jHyrN@u>-P(teN;z_%efb)Hnz78mz|%d+kA3J=+`82@AiHC zA}(^WV8r6KY*oQN#g27{gv-3)^Z$$}67SO@#$CSb{$y?XJ>Kmy2OD%)^RQpDob=W; zB<+M&NRq&v!%5P08HM*HgS$1QmbE*j_eQ8aL853Tb5)+pP6l62;CvF?zBLE#d@=XD z(b(}^<#2#uM8N#Ym^1^L|Gd!s)}uO7*ID~3$b0pod(Ujh*NPnGfww>mY0!*io z%c*Da+_Q{#MqXIiwX;UIvHLkCRTfn3UoOF1h-!J^8IcP1#NdM+9ap~uQ)meBG0!t! zPwqyjwtrh)Ux43nokw8C;~KBIIlDfuug6-A{P-aV6bfBV;rpNk#x}Mk{x_F_lj5|V zce=!gevMtO(pW+u-{A!cT`zVn=kSee7DtNSpADm?!vPyFW&~_kK+J zr8cAaKFWUW)ARA-MI|eXH5t}Ht*r#N6cyFE-RrYOGUqOyI`Luf9+mRJTB(}U73I7Z z^!CMZweCQR9)pLS%gScct6H-Sjz@ zq%YyIgUH4YubE3c7PHu9HuO1M;9fa>O2L*b8Ek@XABPzFy?S!e?Xyd`f2r}$$QsQT z_7&=oNbNgUn1{McV$61{pJv1D>UYrHf(STTbsXXBst#LS!Te&p!8h8_fDeOquX$LNTiDOP)Zn8s_h}p?)06zFu@F2 z%i>l>#vvcO5tr4Qg!5QKXT7GeO)0%vDQ=KPpU_3dc?L*QBDB~vG+P;O%N8P<5p*yz z5HWL3U11<0a@>uFf9*jTPV_7|ex!;o?k7&ii!@2$s7Gm#^L}lYSP6PRrNejWL5ug( z!Q}%6L#7n;@S210)x!3;@9*^Zpd&7g> zhAxUa)jBW|oH;A$ygV)SKLC3jPeT_^&WLldHPJK*f1jl+21f`(VyCnA%g+ zdQLhWBLyA>Pg4s>I0}kY1YRM)$!2*V?g6Ju)uX?cPP7>u@y_eu{A_R+40FBT`0 zi!4URCk`Hq_gr#)w)B=WdRh5G9XPB~bM)>V&nun#RJb+6&##njKdZZ^_GIYIgFAI| zo5>sH)0x~Jz+JB>*Hg=;sa$k!3;_02;h9bGbw?p|BgVH_hT^61rbgU~Ah3Cj^%{IX zGA6Z4B+rAIYQ)!pFqCd^l%nUB~RS zaGcbvq=ubSg;tMu*6n;JJ|SHNWF#Vlx-{k7!D(uy5_+#gPw{MeQ4EZlyK{LOKDbs2 z_v4gwaN@YFV?@W4RGqKP>z{lBoF5ihz@me<$adM6jLLIB1*T{PiBW=SF#W?6R!PWR zfSm=YK{1qpLaftlX1D{=9%zK0AX_OL(b#ED!4X`fZRo9&q_Ya_xUFsKl z-mxE7MjzH`(;^ps<-Ai4HFW;$ao-Gupnh(j`@DQJv^{#(%S^{ph0oMZjhVa<>)96S z(M)py=?(d9jiRv={-+6JwQfv!AO?y%v}(je1b@|`m843`@{#v1%3Dm6eNqyNy{qVm zZ|;BFS><{8t%8g+6kebz1Y_C`De)j|CR-U6MbJcHK~tD`kj8(+F<$5#5yTH#AZ*#^ z2#`?vNEONoAMy=lC#k-wFgZ$Um?b7PF{f|y1K+TG{0R$E>gE=}k*)FR3N_`Dd^Nf* z_mo!!_i}#34`bVB<%=tojCaKCt{wI9dhgkoc>ny1wB}rC;t-aBOO?maz6*AW@CUGo1gXhq5*XQK%6177|bx+@FxY}Y~ zzi^%HEo-#m(x#GgM_jp|GuE#f_uCVC2J~<_5y&J*Yf1?n+5FkdD`};uRN91kd#sZ& z$C(`szJ)u)NA)_`1iHdUab%aU?^RNNynDZrPk(${DTJIZjuUHD3Khtj7soDY1W0`8 zS==~e#Zb4M#W~N{c1uOoi<1DU>B7KJr~Ls4={;)SkB`ZffDdh8d7DO`?x_VjCv&i+ z`(H$Meg@KP2JR6{Oy!@+)?bHxgJKe8_CO`kBUgD6GQX%&IApmh%pe7XG$cY1O_c-X zYW~?J3Ec)GB}f?fe@pK5pXPKl1HfK$O$fz zbUd_EvZCO}c*3+0Xrj*7JxEg!S<)ybr$Gri?`HE*%fy($kr`a%VlGq<&`c)q z>pUw}2$>^P`I_dE1o);s)byyqHQblAgYB_nD>}F=0fdI%%Wz8A-18&vHr!?#U8PYD zpqE_R77OdX=vmgLR;|oFN&pWue@Rcdh|EP@kvo=pvt1(ZdF%zKE^{`U!qhP;zAK`| zfH3URQ|VMEWq>(a^YN)hio;yF=)06;_0dYri|Sp^sVEXAjRk`^kS*E56f3ed;w1-_ zUWE~%iWC1z&;mG10b$KI*PQq|MS(6xHlwNvVHB5`N3U%&sYLkPGXn*=&(VGOu)V4x z%`d^}^^EMO6eA0`#n4;~)>pdAXu+8>EOoOpFH0gWoBIg(hVgdrVZ7{*BVl5 zS@-kTeUt7Vk(%iIRM+{Q^^HSoH!gRazB_Wsv|dsW&&j7Gz;ZF2Zk_V zqvz=%VGT!;ffHZBjzZvoGu)nTDS@66PMYn=$_;zK@I$(=ZxJZeD^Y_`7v<2Uk#1ps zf8aQ<->th2V)T6puEMXf3r|aj)1Iny zF}=3gynpgDqGwAQ@&QJgdB>V%5EK=I94AQ8N8<~WnDD;QD02<+XCkl@;#AAeN8v_b8e}Fv8UZfP zAre&i`2tl4I$MTNO|Y)Q6UkC=lo8&p4Fc@KZu_v{=lOjJ&`1_shCjt?g2vCau3x1mPs6z;~$Y zOQ_)5`9cVI7|i~Nfk9HY6dguNC5QL8a~VA6SGmlij8V4F#iY;{>&=6zL-}6E6{Swd z%^w7`#w@ScZgcOK2MW!uw5QD#vrNne?x4u|*sNroSV2(Pt^lLO&5LB|1Y(iSb(ur< z8P?}s&zMTY{IXevk~BI67)=&XnGf4P&Wu;7!51|?yHn(Tq>R~3&uvjImOnqG`CWsb zdvaW1CXy}W*lNB`wfh;$A38fbjbLTBsq7RgsiYh!sfnms%?WUCs-X~qv(G}|E35R; zDXapb>LmdIMHHA3K^agolHe4!SjcW#YQNzW>+iC3^UI!~2`j6W+IaC}4HQG1h>>)_ zavRrQKjpIrf%mNX$kZICiBa7eq<-YKsIdK27zK^Eb)U42Bh=0fu8HkWK>u*gOA zyGIZOu4OBgue*`-uH{=Txs!Fx+8-)x&!xQ?DtUTh>D)kKw`_CAFXbrzt1Ka+916kN zja5!#(b04oqU}O?ZXM?qw{wW}_|f~jZG9-a`s>etYcNzA40@O&S&wi6pp={OJwSYV z+&CZQ9Qaxfm`CmP4$_k#+iUc)g|N!KJWO!`DjnfOl;kM)NnK^z!O6RRt-|piVHyx7 zdyi5Mc?)5!yrzsU5|nmjltFM#E9Y_u&ch1{P3Aer!*9DfBzDYAV1;hg`^7VnE|7kTHj>3!fErZ2O{|YD5{+6a6Kug(fTV^>C3Yz( z+Y2T)+oQhc;nx?buptqv#o8*`R24pyjJ+1g5X4ntL1HBODIC5jk^rtMnWV)C)`NRUMyy_hqHI?!}hPeupc9I-pdcekn^qE z8t#@gBGE6uYc=#z@GGli5`b)K(r2Rq=owKOcius(fr+vf;v``?v!7H#b1f{pkRdG3 z5$v=g@-?b*AN&V9%Y+~<$JZO;FhMj-gP$Wf1V@S)+X#7uMzR`_3ohl(SD!_Q-ma&! zJ~biCFOXGRN_Po*jG%)nXbkPaP+E|5m602}{eDpTUe|KS1FB257+ilb59cDlVORJB zcexh!YWEw~4>70W%Nq^%qPcv3hDT0Poo^}R1h9!`kv6)NZ`hpOSOn{lHY#P)jl&gj zto6^^Ez83%cFpDq4H7rKI0`-=LtlzUb6BETmE|C=wAp)>{gg@1=DXF&fD;0FK4*w6 z4}&9%cX2+)m`$@abN8}`(kUHmnN>Ojyuid!^}j2HKt=1_Txm0QHyS!|qR~q?IveG+ zo7(I|;_+dQLbWax4sbYrk|5qpEC4O+B?x4e0D;Td=Fxag5?cXBMmRC?7&CQi=5iUt zxJRAbbHvCXFxVOz2a!Tpt=VhP_%bjt3UiKTjStx%o0pJLypgL+J1ODa798b88c-p- zo&h3?wJ_tgsQ^^qq}7F8Dnb%Dca*eWwVZA#y?N>C%muBC)cPgXWJ4$m9#xxsg8p24 zIW^9(h`GBw5hb8>s6^t>{G@W+h$-`=SDv$wPq$opuXe?4XONZZvE_!;_3aI3K$;m_ zjI0W)0>EWqT*A*vRk@NF2HN+;Njj~*-j%*igSW9PWBl%7+L zM9`1r2=WDKc5-%X9N%v&k${n1Y|_}68afI|fK>q>49nrav~$|b-%+S-3c)U0va*rg zK6$wJ%^auwoh zac=Ei8O&#~>@hl%{PVIV#qUYmP_Plf=;LA&%{~hbd&_x%8{{PGY>bDU4DqdYy;9Vi zkP-mMOH9(N@bP+Pff;sLg@JHHcq&G0N;Ij~N%Vc=(8A%4MtL{?0+adf4{L9no2pRS zQ^2*iNORObj~<`>*t0uWCOmGHm#6UsVoD!$>K-mHJi15cxUH7}<2m7JcaiYL}@+Xlf478Mwx;0x4mQC@+nwGFx_PQhMC>V;5mhkeaMJm>UWe z4(``UV=RxQ-)|xuAIvH}br6=j5c6G0P$^-p==BD#CAwrnCSK}L!#$~chg$2DN>}%# zbOg;SC|QYW4lE~G-cgL78b7v;vo_aXICFTQwamM&#W`ViPuj;aE8J0=bC++84G z@yT7@@s+~39l_grW<2iA(v^2v`^@)W{P1DPawa4{!TTTRj?WpL(d!#WT`oAJE_HE4 z&p-YAGvA|pd7r$oY=)e*_X%lfa)E>aD3xjTk2;V_ut-+8A))e#A{qLHlARiVMR9m zE2-^3D1@ZtV0kktwz;_^#N%LYbKjMV8dX1KynTm;FODwWdMB+C*7sY4Xn~aUmyrv- z>91|QM0!I>))N*%N|%u~+}Jl1L8CT4VIOH$%|hU-&@tL2GK|NlE;Lh!=n0bxT3(i0 zyA{TMQuYU6I2>OXNL7{U5qemH%1pzM9d_vwuh4?d3wmB`KK)L*)+66wDwh@`AmT}T z%=1=j4pxgLoT*KG<|Vi*EG3lA?LpV^UtOBlFYC@Kh-7S zwN1A@UClej5}WjrvxRE1(QJOmvxrR8_|k~9C7Ju0(&A^vJ+I@0dcC~X2-bK{4k*Gr z#Gh{!&(be8cWBl;kI7Y$J2^NJ0l4mPA_pvIkIX-hNq+uhO4kZmN(i$!~1=wd4^;`49r|8DHrsT(u$2&ia1D+VBHq@KP9IafrGiT{R{2C~p-zidgwqi!XJfZu{ zw~Pz-r6zw|zSTd6e6zfjG}#9bM_xY~@wZU=gXkB<+UBIjgV3E9vDb1|X19_>&a@@z zme}enLVjG0?peH&@xrm3EB-hz<&2Gef?s`!Lu4HBTkI88pH^UBY|m1u%<=wd!CkRT z$5}tV&l79Y7^J5fc;nt%a}9=qr1&idp|2Wi;Me(vuI1u~)UBm#e_Wr^PyLk0N}cU_ z4vf6ZhOen_^XtJ-(DNqBUi7y&ivo4=^0|AXlybX}DRi-t+tf!Qyn@iub1PCpnwwAR zFiNwVYy~5NsYp!yB1_>xYRHFSk{a*KVJrYZ{{Wbqql$-_HUyXSG>t1$3W=6!3l@I> zNJuK0$}or;Cs>Gl%aGKxrjNqVwg^rEMybY1C@bA2lOZTZkr2W0*^Teo*-4IrDPqw~ ze!YTAx%EbnKga%Me3!wO1)W==O=VX#mu~g#p$Rg&u))vCwZ!Zk)&TMLY3m0AJ|SIR z?~Gzpjv^U3U6@o>NiaJzM3B^mO>dowJ7=OE9&sy7{#YPMxOF&w8g?NX{jP>eYj!Ea ztuYEyHS8+Y;fvsX6#n8d}p(;uA z=irr=o(HUABg3hb~sqBOguR9h}|Ruefw5is! zZH>1={4UKx8@h{k;K@;$7m6OSD)GayvJ;vPE-OOET%BJ95YG4=uB);5@KKNZn78+& zvpTUvOF|Sqs~P`6EK>$#J#@M%(Hvclq7NZNZDa_QFCMtS%M%RtMauYY|m+ua8zfZ?+CH{W279qJcFG#I8i`?3I^RhL9`(858 ze>g|pK?};~8R*XQt+qQBaf8`G%4xmw;0LctPTwWj5Bjv6y_+5#zN8oF;Ci#~-OVQ> z8wC&b%E>+L#?3#^a!(Id&fGm+v-t<`kf`hTO-}dmkIIzF!)u$8{zsN7N7_mjMO0Lk#;xx{Os?5w;4ckuYykp6pVAi<8x*NAltGuB!#^9$LO z&#q_vi|wk>yu(gFKOeg+?y<51-Uu}_NfiWvpVDG#vyG{CvnAz92ytO&!E=51mw`5E zsI*d>2aTw7aWzm6DrMY08ppx+A2Dyn%3P_o3sfPp4d0wruo{mmbWeIboqPA3_CFWn zX9YMp)yD4Z8}f_++I!#b_a*V^QktLLnp%iX?}EE|_OGm#ST=I6IGnH-4$h#f6U{>$ z*pvPYl*KQ5nus%37W4zd7Hz6a%g+t@1D6t4uU4UjSuiZ0%=xUy;6%M@w z?c&VR{LkTT7Z(tY5}O2ZX;gmtIwvif$SA{U8;R64BK3OX<_BE1H@(b1)K>c5wkTn| zWvZv@YWp{7wPB%wP6S;DKZcixYTcJ7p~mL9^dX0pwq_!&d&I%>U1mkfsMrur>X@n% zbBP^=FBAqsTxyAO<5O~qWRUp)-$DxTfNHQjWNd_6NoCHta>M~fpvzEy&Qfz^S?Gx@ z|D{d+-ai0?D-`<=I&m$UXPsHizDrm6a^3xSSTVU`@_=f=oc0rEQwamVBY53Mu<+Q4ZzgdD12A6H23i0n0Dez%% zPopfWEfrNg6(#E%aja@Y7? zSo^mp$9P^JU7F9Td^}q5)w1?Qb;j1ok^{&u&yBzcC%JBBNsMs5-a_RS#86YhZU5ga z9qtSJvWp$VsMP@W<3lEW#S*i76h)7v2XnV%FwZ(3ALYGripPGvujx*w7Awv14wC01iJTvFQ_qz$loVIsjLnu>JTEY4Zq)tio5;yi(W-4@~EhUevR}Q5)xwj;0+xa<$G!F2Ydq?VNOZmX@!^(GLLgZ+% ztsh2D7}Ci2wlw_gDyxYw0{g6KToPgWttElAd;;OtZfD0zyL|x~ith~#W|zW5w1hPS z!Bk`ny=S3OY;N&)t@G(iJmzGC9om|K9dQ<%bDb%O9yLw4tW)?xx%-sU&#bqRO*wTh6NUU*@2_d&`f z|B8-QWNxEVt;G3Vr(L2w%$cinurtBHTn;12!SE&*GVNU0^htPpGSQjslkREI2aaeS3y^p5%%hG*rnU1Xk-kl?_mClGhF1TyyP%;xt^tx*1Db#t5 zF?}oEtMQ?Ld#qe2h<9B!-##kSbgjrfFRw_a6dSL3L2a$1{=nWscKx79X7g%O(=% zmhL{jqpp;a+!FpFW&VN1(}Ml54;?C(#y2Aa0u1-~pQk%k?X*5jx^n!ah7@_E>R~b(VP9G#D%%Ld|Z=YI=KKn6) z8)YSmd-{y#5Ki*@`T+7`(!W`+6`q>ur%j(VxEU-f@Iq50IZM9rqM?=F#q)# zVW1pZ0U?sr4cy*A?c{O4ik+o>cbzb+Uf=$Oka*jJVM~GJNP={tR3&bm;aEzjU`*Jv~u;A4c@db@DVSWudfztm;5(cs< z($T+57}^hB_3=Xs4~#@Ah~MVBtN!_ku**Ey<%VoP+9mivF^L{Q`;LtWpRMqJlYkbU4Ae3aB}58nv2yI$HO*a zTr{K8e_n?5yR5P#)r4r6TBpxi3t5fM3bkb!hynOS82qb0f>@X5`1d z$hseN*5@zlCrz-G8+RP8E{z4>?~8l+vb?#8E{QX$jz3Vo`FgZ_PTt4%Z8s62Uzur2 zy#T#`tthP3>F)Viy+45C9S6bOV37?A{)-crMb>T_4*9bFNo!ni(;SEdxypQ3UgpI( zC1>OoC|Dq_H`EM^AwV2Ed4(wxSKyP1d&8VksVp4*2_sv;wwCa9cDH2S#;jo0Le4h%H zfx$u??y2^dzJqCN->0d~V~1iM^1%_X$ScI0=^F`g&GJY{Adu>$~bW0}=x^Xq=i z)YvGUBCPS1M#A{*iZdd{!fx*xD4M4pyAz+vlDj|9Ow+r2wU+bTZp;o5Te>`X?sJ|i ztpg6vnq8v3+!{QY6acG)LSO++_~mT(3HYRHC%%71DfTvsz!@j}0XR19yLpr7_ox8Q z#ITTjd)hWTy*9TQ4bNf;7;gEXOD>5{baGu($tZki}g;zL@ z0R^|}YbI^#itpwooo{~SU+}xlXnNtmZ1;zI!~z4ql8=pvUZ*a4bO|JvtR~lHUEj&I zX~L0*gagC4j+5Q{4DG_FBeJ3m&89YjFXyFP$i)on9)Vt|LyvSFywrHb9Y7y~w?d%I zb50a-bbTL4*rtD^2$CvBlL$e-B$$#CGk{X*dQmB4_;y3;q7@z=f{L;_a`M@YlNPS8 z9*ulgHggi5KF3-JVZqsvl)ctmYVtd`et6cI%OA$jy?A^4NWcB-tV}&vggb zxvY~r0oikX?*1N6pZ+jOdj2L15)l~R?Ui(@A}*sVCF}V1F`a?@88hZ1;>frC2QQv% z*%yAjgwY+2950=UnHU+v}-cIp^<3kM_M-O06Pk zCA9pxit3%Sb*d^H4(LBVaQFT|Lr&(lUdZ)pKm1Sb0B;EKE6v3P@incAK;e$KOe2l` z$bl$r5E@+i5PTuoW>l&C1^8Cvl8$6yR^1W2=(o|@cQ zmCxwi1St!?up2QhCB9R{iv;5Eg<=4@(9M9?s@Q&h)8%7B>Z?!sRWMcr^F9SMI`kp; z!;W`oatV1ENke!e?t@Qk_*f&VNOge`7M>+H$g{He$;Sl@9|sq`Dn~^Nfg{V0TJ=WW zKl`{HPOsCmuPHkB?inRYl(QUKmk1{~5-(EdQJl^topg-QnmLW@R@2ZmM48H^HnWWj z8q=7k@c!e<(Kvsv$i+BUtqW1p{}Zg5&SCrX`s2Pu-OnCVfI&n$;8FD z?Hlcl$y3^IuSjT%|9qgYvG|lgFKeRRbZXCeJ!k!+|H|tm7A?Y=%k$ z)y&&$vFDbrtxcb%_}oj&8G-ye0RNY(djCz3d0C9?kDYKXG7;0&E6$8cG#* zL;DKq?PUGmj_!C706pIGcl0X(?!a=TDW8-;gF11cv|j~jOEG@%pi)sWueJV3ajfRg zSj`wFqnEs79mo32gm9w=lrKmf>YQF-7P1M_a4DW2zc_nITlQC*-fhE8yhs=Gn(kj+ z3yP|_FNVkXUcB{*jOx{B=~M?(`RjfSb+^V*l)Wt-HGgU>WAev1b+RG~BrafXN>gP| z20Uz;iX32Kw!xyw`^BsnMPb4cKW;@*zx8nAJ{uy&`C47a2>g)Bx=V+8Jlb%TsZ^j3B0a1gEBfUs4gp<QjXGS@4k<0lr$GqDK&#?6dVQP7r{VD&%=_#KHI1 z4Zhu<%O)DGsH4G8>^6xqxAthE*B?rSpIUpz4h&_K#ZS~|mfbpZC^F=>JdD)fK_qJm z3^>1ytER-&?0=E?tPz+de^gc-E&gR6zDmo-zo}8R7&nryMA+?}QWn%`lr!(0Y>>Wr zP_@UVZ*m7pU7+pY<#dogE;WwLZZdY|Cb3*>UwGQjq@&qi@!f)+meR)GrD`!!UM()w z)SQOUoM%V1=03gSp}uxsV9kV#OYzTgIHs;_a5l`L&8Yh7ix5ldPUF*U>CeSGm9*m9 zXq;n1uWF=dg;lb08>^i1YWR<7V{lbip*qD3D7CajJuVA0P8smDKi;hKYgBmM%e^#` z4~wsoO_~i`+y7>z{X{aBQL+X~N(!t>?Fs{x}PB#VAo z_v$@zWtRA@hv!%R;Pu{6vwN_Y|k{$mEb>c@vH}F%2!3mBykUD$9l9MygsEgFsgT7V&QIK|!DR&yK6# zsmDN^pB_&Q>+;vcm7qzwhfCt@^u$zBx<^ILzneMWj|0AtK4sPH1_WSw1;z0+4Lo$CaSw>g2`yG^{O#q0AZev?0YA* zu%UTSyy2}feL7=L4=vX!RB4846*8x(1En5P&O%(Kbe@DiXe|T|t)P&ZmQ`X4s9g{L zY4RlOc)MWxvNEj3uh5Tryn;q;2$wL5f>MY2UN~;$R0P3G0t&Vvyr}M7;#lb*3YGx; z$nAZh3Hjvc3L4%pta>>)QeQg1Uqy-{g6)Sng=*Y=F?|YsN^iVgYQTOHMXj6-<^mt- z10(6GVrIrNoLVmxN%mOLjv}PAzyyaL0gk>5FcmFA8Gw>29Azg8x$t%6-xg6Vd8<0w zw6Is|u`#2j%!Gxv=T2-A-iR#kkJo)Sb+=Tpay&LRdDQfh#|~rB@TSHtJ3A^brRZLK z#$Y#%sr09zZzeB7jGzh;do?CD%D<5{j!Mdv)~}*gZ%m3QoZeD3YhUl8BF|CMyaN2OOGp?)MJfyvUBi`>QVgGF|{b zxxqlh!l|+P>z^}RTJaanx-I1WZWU8MTnLo58t-XU^D8M<#=kT0n9pt;<)M1E@|6f7WKLNjpV`Eh(DyC4Xr6k5LWHX{BV$(Io!HbRp#9#me zLtmI{W~{ut=~BHY z!`~i#1Z~*70~r?@2eI(PG`%lyakq}~kG9zjn!&iY6Pr-RU|1@Ogi z-UmH(Tn+nLT$(2O?3W}x-?u$k0^u-~NEI@2U-qx~y8chXPM&e7{P24!Yec-bUnnQG z9u}@bhIhpq0T?>~?Y5`0DuxduCCQeuXFx_uEU4ZZy};@=0oJFWB#haQ1uqdNQ?v0h zPI_rF>ijEo6VnIks#5qW$mLK)mY2!G(Hk!uyymUEAW-^{gdo|7jEIppR+PRXI?dLj ziZBlJ!N5Rr-=wgX4gFL#-NJOVv>ea~GF=rbYEq@6|Lv11&&OsmSo$*7h9~aH42LRSHH4aosvqZG6>c~w1t)Ph zMfDI4UL2k-AEC*hJ;jjmgM?Up(S{xrAh#OT+dtF0Vcz>-02-eEv`UEu=@Go2}`BcH@V9BHt-?8T;<2wd>#j* z-jB5cvPRF`9P296I2G}-S?_%zV~?U^(+~ea=~;}g7s1wBWzVP2tyo#i8&Sy1_=7LP zU^s&P@v_xnbU{EP$#c6Gvv^v0CQm6g!5nNzI*Zv)?Eap7M&EfJ;;P5S%-CqIdRiXx z9EtoLswbyeNphW^nwe8&+Hpi|#1y5(iF)YDTh|7h&uj&mtvGts6coiyQ7Gk!p`eMa5P|dtB8{G8sxr#X4zF>_sw@Y?eU% zlj%D07mow`t03whfmT!fcvVtSI7IT0;#;a+=J8VUV!!|b_(6zNsKKi8&4n*sMIuiO zbZNmF;8i2CeFFjJ!ujAKM1F(9KBJfmS6PY(%yib{&*LRDcA-8t|O$ z4VkxIMIAPdSMncfPREtYX7HDNf48L_;@tZET{qTgPIW=WBxTO>lkuXCN#EB}WlWMx zMdcbzISbOfY9dmp-5`JgAfwwK_A3ip;Tg}^v9QgETBD4mKJ5dVUcS!Wx$PDTQ2j+= zdcxHSpRvWK7;uA=pbBEbvv@;wPWnp$7p^+*rj~xk0ZoBOcqyG()l1psTsjSk*_=Wk zdV)_tg%2rrKvS9#mmU{SSu^9fMq=zfpWU%i>G{o$;w9geAOm}|ay9=Cn$BHuGXc5o zW-C4}V&VV%G)9F_IjPA!`vuCVEk5898UarXApB{730uVf{5I^VZ0xc4g~r8k;6j3y zaX!KlvLay|cZ^N@qnD z8kkT0qH>CWpa1%5Gh9C{d>{GAQEAvBpgF%5ddB@&uHNMXP>_IK_bs~YH%MbW+?$%{ zVQu&UpI1PoO6?49SYlQcQj-6et}pWIlj7~yw06CpCE{i)l9)=wZ;V@bHH{;r{{jQa z*u34xb~J7z7AuiZmg?le;lXEvZ!2cgtxtq6oz|d|W_2yv)Gg&cVDui$V+Z!Z^$rR%>})@+f&; zLRCL*Wo`F7Z|$N0QfZpNi1Sg7w|ePi${h19pWSXF8Re7_3jsUPgjLd6mPe~IT(E7J3pNs@hFV&HMztEMmuPQ~One+9jVJ(4;?MQkn6ItLCpd@>nz^Pe>*VLu{!2VCJ+KzwK zjIT10)c-E!%|mC^xXEEs#s-7e5!nKyRwk3rOqse3ocJ=6hTbH6je0)T?$%Qg`2g>^ zY)0!jzjZ`k_If(�!o8^XY&C06hi}a5SOxpZba5U^Tq&MCF?|4$;T|4QhY@BXCvm zrfWE>N|8GCPy4E9jR&z}t6>?>;-fq&?m#Y&#dTN7cvpjeU*600O(6EgXOMBdZ~FXM z@>}}`ZI#}COO1~p#Xfn}&yOP21ePA|e;-+(3s%(~aLdcO8f|ek33QB#9>R-BpEImt z29-Kd8>KYwQwqD^YXyDknYGPsYbquK!>ZM71cETNI(pCKef;dlrtDvB9I`G=_b@J; z&%KVUGWL=f{Sx9hZdE2x?7YwHT_1^_Rr~B$Yz3{YrJ5G#p4EoHIS8 z4**VF{xk5}k-@!)f+_+ercj-fB51$odYAYKDArdKZ_$6qcl^QWt}9h&eqlh%BX%Th6h7=PaTpm{)JyozEWXe&G> z%a|}@VSJTc>Cilo<{fWd?Jg1l$m1zU&5GI|rt(pliSPvL@RwD$HW)s?=^BW;;$eE zT5BNWgiYxouw^JsxbPL%!`;9!oYnWLcvm9urN<>r6D!CKXiJTHQ>%$;1*6p)MJklJ zrHPV=`JXD2iRi{%;sBX{ldkn{I=54#xp@z`9%p@+ZC)>92a4pMKN195CAu?%m$SGe z{TYzQ3r)-?cu|Vx9Y#pAcke`-xzo-2KYd*LhgG6h#LrXbjop4NO;f4z^niYshNkgH zN>s@>6LIbC>NWI%((eOX$V5P!_(-CuhneV7U|l!qEpt)aHg-}zsVqF` zK)NSn=8a4;wVE2Vsf;3sE+-)UmA8|q8DS+{#fa?ZL!H_6mZew$98Hh_tv+WQ&#ey4 zcFiCJ3CPr-_m_-mZCHckl=tcR>y}gkwWS0+KM&Nd8T$)d(bx(yqJ_0ogQ?{F4&9RGPSN6MSnRJ*Z9uRID=td{&zkQG8Z)d7t9zqoTA( zRsF&9C5mHEaX8KyxFT$_;!7mela!|f!uFB4_A+I^#YjrHm5OoWl(5UFhk2!d@&m|? zls2ilj~mOrqe6}Y=%Fi8z5(fplDv$CqK)?odFj`msJ@Dto~>5uYBW4IQT>^-1Ie?Hyk49awQ?NlUhx!)Sg#*mdWo%_~R4gMXgJWpKtVGDx; zfn=Rejb*Iqy2%sMM<9}~IZQ1cIize`4o({ep7+1i2)K%RARlg3k^L1gT68eoY;V%T zKh>9_AW{W_qlkbbl$EtmjQRvDIbP@|I;D!U&ugzbO}4KLGEisb{Gv^&8D>%yA<0Wh z@dGdx0Xu>~<(ZLo*?l_vXd?3m#JI!+hL)_xvM3eSvmrWM9m^q#`eK6V@E;Y$jEdSg z0~L%!+-tbczaMKyGy2eY(7UVQsT>MJzKIYh|89RM!66kf`eY)1`t#zMW#xpnatrVB zyHZA~78&K6)yRJCs0l64<=h{5V(T5w10641PdWblq?!Fxu8G=nTWvhn_SY%LtFTqm z)$T`3EPpUxeIqQT6IOic;XL=PziWT@;!697Ak*p0#jUS2Q9ia$t>3>^nX6!`$u;$n zxNL@#aYscbHxxJg8TZ?MMSjtT7js5rG}G*ahSsl7!5a_)RyKG7@mJ!3U$|0yl=kmm z#Fc@)o(6`qTB?lVLwcj_Oi4~nTq5~kTZi^DpUs|LW zPu4`Dz4-SJR{VS6I0pEEK@^<-t>1t`+u%bA3VLh2jt^yu4}c&nZl%4_6y9h+K*Brj z0gmm!0g~b9^dfK>j0g)W$N_)Fj0f{9me>e*xXRg*6^xX64%=VkIx3ZCmB7ySIJn%g z?134D5o%$REkv~(QKTl{G=;lJX1r1!&r=!IE&O`_8`JKc9H52>lB?!_Kh#5h12iSJ*jn9(!LcU>a@zjMFQZc_F~w+pxN>TlBKN zTJ}(I`EX}P{33}PGC%K$foXY?Aj!`7m77G^;8VYU>{&g%13e4jABJ`ADP&k+f)u70 z5!y%1bEuYY*D|dwEotsqqm0UrCQjwFMuImW$8f0ao(tze_bugvJJ5%VRtXHlmqb~9 z1{FptImjFY*_Xf7GV0r4?n6W$4z5lgPQf;JZ(;tPT)gHYRB;$?shd=01 z7y?tE1;5lKv;5>9Vv3BW1-o&#azq@%Ck*|h1yc;X+)VjWYBs3{Tc~(xpQ^@2%{nyC zj^pXQX`d)>x>$BS<_v;-cn04RmZdT^+yjO1$4I2rv(#H)dX|u~`9`faOYh-G%wL&{ zrSz6<7!@nIL1cv#Oe@=qLv??3GdKHEEp7NjVs*0va_|U}n$JJOF_QjXx}>)8a~l=% zSCszjbOB_-g6CD$h@%Ik1+lqjH66P{)sB;NUS`vouQpXCW6h_JDUZB0+#QRiR9AP- z#5NF6@|M+W9-b69iYqlp{tmP{`cC#MS}0mk?brHTAmUBurIrW_N19gIoaKSEK%137 zd);c1q}3(gGN8+tNq8yXvi{j@vAWB-|Mim}?4&w^h1N=dYK6Mv5&cKNko%vGNTUjO ziJEKzcb|Qbk<7c z+4A8S-N)H4CNzx$q*aPV24rMl=OOC*tn47q>R^B~r8l6inDQbl%}rw~dz3^{ox<4W zcN+X=Pom`Oi`x!5@vw0>;!BgxtSqJm##C>DSx>X>fzEgNg2}zFhs=lh#oAl8hoYBL z>6o^y{(Vq}i7xeebU7|~LO=NCRL*O2y1sZ`RQsj>S*pL;DZV`@B|Sr7D%PgOTt%?f ziFlFhL%l<(A&v-7Nu{?@-_trebEMLTk}p5X)g+kq#%|Lj|5?vMEWSJrkZt)WX3Wsq0-3ahR)u%Koe!US| ziZ_qh7wE}&?Hzx)!}h~}u*ylC=rc!TDUt%&htw~Nal^vBRT3C!mHUjy^x4B$)#*1N z9^b*2xF%7Kxx7l#X63S9s0qAgAD}mDT{{Lvwu4O_Da|)2*INiJFW_FcJ!nCyJoPg> zIfbjis@`k0I*j3!LaeRAVpL)+|a z9o^*S6=a7jzQrgIB5s)ZuIyl-kBHJfp?dmx{)qYl8xAd`!Gx9ar;*%to}Lc zJ(*FrI-9nAEg83GNL#$+(Bdn}(#?&`rc+eG{KfV3iA+A-xc$Hz@v~MWmj66o0!5Z% z<)ORM<6Qv1fKhG+(oWSg9bVUKUEJRHeVXLD^cwZ%seOq*PvS?G^UA7AfBBWZ&4Z;n z5$uzT{Zqf?P>BSn>pc9*Icl->U)O^)GA(KAYU`Ui#$MaB(;$~CUnF7%v%)Ymm7|Mv zs(9;V6V&}!i`sie3z$X$6)^gRfKq?ak*|7jr1I;d`#$f6NLFtLWD^gZEds2VH2n_1 zZT`%Rn+Lh3h>Lo^9)XUfz?SY%nfyb!GY;QH+bj`fQalC*SNefn{-bsq7(;~n0fJdb z<_}_UvlBUWc>OgsRn^foh^|Ujb2II2^Roy6Mf`oTs#4w`Kt>CGiCL@^{P+DbSSCT- zVwP2y{*q_$Ice>jbdvEucipAPTb?^mjp@$K5y}}u{ylWz01ZL92Lk8C;}PjQkcA#9 zsXJI#=p1#E)E^jwxxNEsV<$a7+_&&MZilwk5qK^=+$oSGc1rOjVo_%y7<*G2+5cKV zk|EHKoyPA3e4hiTaP%MXAL@W;qywkTpYD-8_584^I2)7M&-MGLY+=#mnR@Sk7==Re zAs+?%7H&hkG%JT?V6v>0sVcQT1;3Y~J}GXIG5AweVHj~7C+O)3Abtj-YX6Ih`A^+S z1jv($L1DA4;F@p=Bf_!@qD_EMnP!!a!euoy!o3-%KQp3F)Z{g~P9bx-D$cXu#c>nA zq10?Kz6SuG4R2gI&R_)^4?Md!_8f@|4@rO8gW$VNhuSfBpe|8;s@1H|Yy6%f^iL`b zDP?ru?eIzvU*uH|{QJqfrkdY(KPwNfr7^GNGdEBpCx+r)U34)-6oubY`k?<)pIg>w z_tWd31W}KXWSL9WRH<@@2mXS41kVH>TTC)o*1VFG>pCoE+LAxVk3bxQ!-;5&3?o=4 zaB(P-{U{jcmI9;W@Ko@{@WS}myoyrx81)6ivXu6~O1KP4vPSq~!uMU&;@)c1Zij^f zX@9tEIP?x-`w_Fu^C{`njlawoh^jGpS}$S6J1~LSp%9_ac;rp)f=f@^Kz_R^X^}Pm zPdBG5a%YE9V0Mr14Zd2-2JgIpOV!Z$gOcw-(NBERX6AI6E;A0EW@FCJZz`-DS{PHL zW*Vm>x}q`Fc&zX=er{QZ!H1dwmeUS=#t6rn5#N(5@vUXY`nthJ@tUHJJ5c&eLA&6C zd*x+ypaad5&AP6pCfMpx5ShlgVwdJ_ojFuy) z96dD_9ylTk9eS4NL*L9CMiIx$#ymNAMZ>ZB2fe_9A{5?YZccH*;yd^NA}g z@h12&w)m3Nw<*T?H}*~kC*D9k4h|8?OiTN-{p$)7Jke|a{>XZ&LtH#A zhHBR?^2LjZN=_`#b>@!0zkg7jw%&+5`INi6+f|T1EdR#IdaebkQzot>X}885tvLhLtRh2+89X@aQpdlk5kl635{___Dos7a|!hK7n`zd zoqH&;^H;*9k$Wo!XF`qc*T!_;RS3!4R-l>?a~?v&`)XtL_$vRTe`qMdWeyT^AtN|> z2su;N<$kN+&k$1gu-T${XCy@J&q+w$;T$^D4)eY#5PJRT{PGU;GW0}mNS-B@7CcG#a=9)nmy73J3Sn`=ztbE>OQ=L^;`Op(r>eg^6fg zjlE|la_49RnRNqubTgK<*-ZB{9p%@5@YPgOjG3PA9X=@@jBGznZPYrl#3{Tw z?b@AIcHX~HUc5tn;m6Olm*eZsn%9{Vm;ClA=&`*-IiHol_covP+Q$_M-9#qs>`<(B z1(Q!qy(LZZSG(osTe^ZnAVMfQ<_Gd5uR{bH(*EWZ4y<)gVE+-TABJ;oL#qdAYrU+m zgOWH-f)otlC|MT5<3(Sr_P>c=qe!xYfmGgKQehI96uCU%XO0$xbSV)A>3Q}HJB>Vnc0)e8xc{cSJs?7<4fZ#yn=!h%o*kaYj$ zohH2&*N3lv2Xv?l_)(L+o)|`+cLADaN z7Pm0qD0D^xtg)m^r{ElC`~2Iwd`HGRkcn1yTiOe8%oCKq)bqNY9=Wq}^t*h~5(N5;Cn#$06_bP}Q?rm~MzrIcNUYw)2~h6H(DW7FwVA z?;As1jz$u^PlDv!ue@%0pqI0+!n4|wo}pjOjF!jXteaN%?A6P_Z?gRb_2&Q<5< z@2&aMHO|l77+w`5MLi(*{3>6i&oH%U;=9$UTdx*_w6c-EcB#QaX3#>*B^LurKlK-$ zFIzYW1O)7DsP1Mgafht%?6kL?PmOG5|8co;M=Owr$X|=>&CM}s4|+ZjV-0h7b8nzU z&OV|Ap4*ilJbApclemc4sSnlrcz#_Ahx5gEo^9fAhZ*I8ROc*Rd8#%8?GJIr*q;w{ z)X^2##+WXyVe@woHb@{N{OqOA+*5uA1eYY9O1{cfhs&+h$mhM*9IVzwL9L1U3PZfj zvtjC7ix6(9t#`eE$h6palzm2(%#rYEdFF2HzM)7Bio= zmjo9u{B1{jAGJ-{qLXgpW53xu%4URgq2&~=Jp-p~bi^yTqRkSRiRzh2$~s57SvZD| zrMdzWb=FW5I=DhQwsPTy7*9Y=BT2cnv_Tm7p(3M5!pCufeb32*T^P z3(=^r-o28a8{X3Lg0G=VZoe$Eh$YoluiSxJy9&^udKYy6%8t?HbJKSqgpJ+}to)i% zDk_!2n?7pN>Q9eQN-vc5Qm5OSy*jL)p~Ra(a}sKfaQ%zAvZ2N5-e%iLj=kJ~NN8z3y4v^EGfG*B9kTNdME9-z9^DzH40SF`N$2QJ4NWEVJj` zYLh{gy$!8MdIB{i;GUebzH!wN%|Sk|Th83pVKc?y0`nRZ@7lY@r*^PLQR~yTg?%N6 z-cw#YEu)D1q>W>er_@F`m6U4FLBdp|yV*-*wM1||MD#>=e`FxnZCFL=E;u5S}=p?gZou(P>YvEv`{@C`#K9_u&saS=0^t!oRz4D}V zaDUgY!hAu+oc+Q~zsN|^p_q|^T1jzL>rn1z_zyp8idEod5Pep@Lb)gDf?o#Z6gUTg z1P~%tQLsAotv-cRp{NRw6TTU@f;_QeobWW+<;T)FYGQHxg6g+tFa>Xb^J@F1prgVi z$F3=lmHfdjD95Cwu7GPLGpFI?wi9u2+S+L4^QTtgjlBy?=Wr6!_FD8u>}$_EkbA*a zM)%Y_cfo6zSM8Gz{kYf2KZyLkPOFrDDH)$@=;sp z{_n$y1fn0m%areDv+a{(M{9j<TUyflJZ>wv!m_*oL!gh%LN+W2*k9TO4&A^l1KX z!>?`O$B0z>if@t*Pc+lK4>p!p%wu-CV01S806rcnI4+kVd7Y3r@+XOA(&49c5;^7Q zLBVzIN}n)>dXQF>Pg$PeZU8* z=Y*+c+US(`O=1xjS4}=Vl8~?7a)KyOQN^@=yx_75&?4ICIqq#a3SDLVM~YpO*4}}R z=I=n?Nb;M2J##Zw3A+P*0q#>$KwBLJW&6JHTbmxcWiW;I0+B4X(EhXF1ME@g$Tdg4 zdppN+cTz@#2C1t+3+qMe;8INE#}u5IPtlA^y!KCPLxj9dw*@d=S1_i63GNkSm%x~{ z*KO#DpZ#R_sAs;`rhj#=H)nP#%($ixJ%F(E*bP})YYkcdP)GAfwK~ zB2X8sR3BXvv_d@L&xnjh^ovLN+xrX2&bks#Xe?o-q`ypk>DOQ(kK-c+I@g}Yt!ZCV zFJ!x=^Y`xs2hwkrq2tjlwQMVY2!=>@0}I;SkKpsAqqaf|xAked8a-!^Ui)BI|B(J< z%xtZBs~k3)NX@h2eIl#CvwJ#nWX|F|dQvYzGZ`>v+i}UfB#574C;Jy`|dpYazP) z<5TA@EYde`E%8r6w1(>akF6#$KbsXIGvUXraBg|XB5>Us^-4eVM%?^bA#fz0usitg z4PNoT#qyMt&mkF;FZ@j4=e8Btf*n|VBG&wRCHoS4|H@xM?Do&{7W{+duWt4T{dsvF zLkL9=r0c}TpN@sO{@cGBD1`a_+C=u>b6XyvG9dEmpb*BDP{|#jR&;SOJ_043(o;;~ z-A^Bg1Qf7hH*>#E{d>y(<|pmSk0F}|HVzT!3)FSb(fZmoylr$R<4x=xs2!{x3*5(M z6RL^|QefCS$hnz8hx%U%UCM0Oo}Q=n zNtd>Fpd?_OuVrC7=gJpCr(o%u*iwK3D%iS3?RJt32SRW#8S4Y8K^!FOXJeSo5TJ?X zPh!!!199Fa;rt%X5n|W=lxr<8CM-9w**;K$ zuRkV3D3{w`JLaSHBvMsf(! z5SAX1`s5RY`2Lu58Q}`qSw;)y3tj|IozErw8V_C!AvtfkIh0vxrP3UM^E0yS_Aoat zGwHa2?m)A)JWFDEjW-^*Lg!;#xt-3(9Xsc?NQc|rgl{~=n*O=)=7M|4YM9|9s7;2% ztwGJvh0n65aQmjK2ZBkzkc-4l*^XU1r>^))yoXT9wrRwGj z=njE$5!5-<=hf3;I}@xBC=@vG+!tSt^t4BPnU|c77%Q7u9{J(KcF2}+v5ki=Z)(b= z1#!L%s~3dwL6n&_{F;pduY_{Sx@Xn?-5hc39wT7`dUMB~dVwYGfkU1NL;U+1i77XI znVBvZoi3g&5M*+zfViP4dg!t~Z>-fPROv$ge*gMGh)f9o#m(mr?SIhZ{^GUtviIVb z;N`AuAqzB%q~C$4JJ8|f&B{#$j(caFe@@V`B@U)7jE$+wTAC?W@er+ZyS7FOm_3dskPc`%*snzLEao z0FN2JadxdYM`8E6$8T}F4R=bDW-i3Mb|1}5*nG6P*ScVy7s4VMgOkvlCE(na^oBO1 zr6;x9cV2XIBP}P%y2sX;a`W{Fo^s7aXzWwRVe!2af7v6)trOJI9+c&(C`DMq>QS$0 zh$6(LB&(i0Vf|>VYf2+8BlJBLxz>(DD5WO0I%x(vDL=YA(pQSy+?lh+nvET)$;+%e z1S@YSjEY)LrMgV5AESHbhkCi^bKF;STF&JeHMruZ9qB}i%n=#R?$$SYZ#Q?=G1=w^ zpINSXd-uGMWLy7CLR!#rhJUY0k%$5f*f8?Vp2oRwuW66Z)_{b)Ziqg-rz4Pkz;e+%jH%e}dFhSF`U zBd%ghq~#*cZ^c9BiCW{`+SyPSqJv8fA^!Vq=H$FK$A$ z0`uOF&7EUDKGS&eO*Ohs8h^#VzRJ&LX?SzdQCiP3m>sg9R$ez+X9HZ?xWAIN7rG|d zgg~7iUI*`P52SLaS(mF3bW3qBClvtiT_`@3aW7clobCR(+)Eb=1DQJzEft{GfL=rD z^RosXRBRL@c1q5zckesfy;|mHx&y_Ne+%w(+|Ug=AAJ@inUs>};?`XOpoG-5z2n=o zw88&-fDhV`_HTcJ*PrOi8qK95J~O{>aqR2&$?ZTk!`BKCF0trD)C>M6&dJtbTV_p{0UbB4+Y@{3dPx zW}CD-6K3frCAI|zT8)qR`ctXP%s&0I&&3f^sj#1*jG&nE;jZwNOHJA%e8f>u@$cc3YaT6bS{W~aS=%Md{ex1*jj z4WZC7s*t(zgJjWslFXU0lHksNhKYLB!(}a ztww9-$r8joln1dM$J``E>Z>99;>(9b(B5n%Iu-i+SnuywW-!jSH@u&6DYf3W6QcaxizW*Jz& zc7=kqaXH`8N)0R$vevcwn!z*sMr3W|E)deTTLnV;adeVY7C66l>#hekR?@P4*>giZ1tHo{k2b}L;X9to^*&Mo{ z*2l)Cy9r;`vJIi$54`rdAZ?xNj0yI4KYjjL(C@YAm9ZD%gLaQz(uR$$Ief3BO`Yv& zyZD)+?>;q_uW9lnpKQxoH4*!S%U)cE@@~Ktr6t!NcS<>zQd->r#j-hu_xmkmZ@TyOuVe40Q<~}z? zk|&YjjgROH)sqNFu``#59)90hc$0rhdkU&8} zc`pig&ydf}$^IdLh&q9ky#2?;c_#7($`;MXVsw{6bZIvWFvEYg7dIPv)Lqo0C)~)R=4d0n7PS?FR z1ek5;@M$(r%gt?zFPM-UTay5b_Ws0Z!I$>+;2FQxw=bZ5rzf`u^$Il0UZ^DU=D;r} zP(;Uj>u&e`@4MID7#&UD;$L4dG`j7eUMH50 za9ZBHnC_OPnaaMjbBu$hBc*johWlV4X=@j^UrE0L-IFW8^#g2mZvcS5#0xU7B>t^j zVAaqHKL0*Du%xF`KWHj(1D(>R9h1!TEOjhgEeqXS?8@G&udPOZMcfl8V{G5a_X%S* z2NMuP0d&>b9!zjbdWho?&8!gB2ZadU+uCch&SrIGB3N>Mysn}<}qh+2l5NLvydqj%EhzpVDud?4aJ~G?m z^8d#1O3+<&9H;8sr8&AS+WMfJ7=xHm#(rQuhM+lQj~te z4J*FoIX_}LL_ngS-2l5tcf|W@hp&5r!?u$)&i~PDw&xtmMj?3FmVIN5^Y+NL(eZtf z$Vp29gR|<1^MR?|Jc7kAdLwy-U+4M4i}IULGLmiot~=0DK^~@l@94uJ%+`N0RA>v0 zg@pOS-7(rebDxi7Vy>s)pwP69epwaL6TVb084QIP7EJ)k$q0bU*79fCn2KjO2cAtfO zho#s5CI|RG$dCF}k(W`=V7B~&fCKqu5A^@@z@Cu5`HPj|bmZRWwJ2LH8><7B zurscy%wR~(0zi2G{pG`gojYeQ^ZE(hhv}Ura2R&3Eqan`(gYu(OK0VLxE5bXgI&-(}XDPm1xz+(d;2lWx zEp{k3b9@+GXEBbm`}|uZ7;PSOsJC6e&y0A76$DBcenETU4Icw3-9(N;7NmC0xfYeq z@IANAY*@=Fd_n~SJaL%n#;NOvkR6PrmZT42&F417(Ear-VvrHWg@{Dk769X&>u%uX z{>3%(H*KVnGQPufdZkG0-)r6pNE-6@7lLrs&s_UJ3lM0@7Oa10R6*l_zaxFU;c3jh zGXr5*Vjt}ae;yFxK?M1wFC>21nW}Ld($qV992m-deSUO)b4G9B&VKVekQ?NCpFEpz#McG=uGv%CXUUdk%mfq-9b zLk-{@)XJPLzbkTy+kyb0Tw4Z`Iup2QcS2aay6W zwM$!``K=a^PL5ysP`7jn9Dd4?`O z*5k-YiGJs|7btm#MU9ywdN}scvT1*gA>x>!p;8nY6Us9AkWR$){fk6-yQ8WO)MmTq z>C=siB^fz!SUiB<`cO}zc0(-ce%bt^i`iW%N#8+~bM~R+1rZ*B5YCmlj+H(P?EM8H z_Gb`d!5ygKxAwIyw#CBKcnMt!wS+)0wv|>qn53yA1#DGl&gFz%yc?rxz21Ybs&ryWtR7Mx#%ICHyK^=7F-;z zhPZU;k{Nq1F@5;;eBk-zqak+=Hvuy43ldA`?mV}Xt7W~&z9ET?TqxvEgs<3S`v^YX zj{_V2vecnCH1oztxsW_!PhbvGFt&mDbCa=5^Z!^n>#!#O_wCaup_J0njX_E(AYIZq z3F*<@p!A0pk?t_|f3AxH2q(H^}u$(169E=QlCeD9Fsy*yMd%H$qm+1vh{;;yfUPu6klzUEH>3icOE zSK%*KeXzxCP4C(B!(I%~s4@JD)oklou-}Vjzp2j-R31gK+$CwBAKp1R%3V6NbX;wB zINo1gp@;rr4V_>>>yko(@nUTgPql>F;QO#1_|S&?Ud62+Xm%!Sz?|ie1@enYh!(#( zv>x9bR*q(=K7+v1;Xd&6`dQb^jne|R;digTj#p3x8i*DoHRO%8L6-+OF>auR$eOOR zk?nIOhU5wNjlI_7nV>dQ7{y2DgDVVCru}xBP51|zHJ_<37`nwPGEw*_Ozr`4D*SW% za9}GVZA&_Zc&F!aZ)$H??b6f)4x3_PS+%_E=8AXiotw~Y0KJ8b7x&g(x&#Fx$yWaq z!~eNA0@Yo|1>LKc6$kxJ@@pS{Ek=(I<-G>IM0WVXN0-cI%~fwna8+@-(@#3?ggIfO zvn&kBGkReyBHOuPV~pq}n^9nQQxs>t?dHc2UeWSv4O|24y3_~cq9>~cKT64;Dq?Bs z(05>;v%cQR&|#nPXLYAG;{EtBSMF<)(_^*qxWOb8udS3`v*(Cg{FIB<+@BR&oFwAK zC!Mt~{p0g(d~%9?yPXOU(5^Xm!1*{%5&PN%w?#e@Czh2hPYI_O7|^)mW=D|VM9ks6 ztE9vNusOJj8ZB27gN)`bv8B#&nR|OQbkyxNMg=+Xhb_&kcb4!Y>0n0lY&XHJN?mim!=#0A|l?iQ9f0tTA}>VXHzXf(fML<3!u5nB)36L=QjjeIxp_OM9Tv| zC|XuX&v5XLj@(rW`urrs&H4P|^zLq}XKACT{Ym?;=cn39i#DP47&o8!tqr(q)0#~0 z#QJ)srKKdaD>zin?N?qu#6sCeljS}&RCY%w?6P9yPcz*209cs?bsZKg*;($zj*G9q zA2c3Hhq1S^-cQWW#yCTK=gvaLVk{Z@HxBF|3&>>nAlvxOMkOk4}Z z{V^d^^FAPqqCQj(vJk4+(UI3$@N{JOay4)6l75s@g&x6-lS?Zyo2eR?z`PO~hC2-J z4MmGX+wVZjsN$g`i*)C_64EC}QA6l$zmyMbU&v_6;uluLxjF8Q8u~Y3$wyG}#FkuB zOXRWHJ?t!`gn>Qaw+HGT+)pm~=|Rd!3XEVb&3ThazYJDk$*ex)1AlTYof8l$2G#2B z_HteHf>iA9SBQI9Np-)yoaR1MObk;Ztdjq}{Hm&QyHlIRt>^+H06wAzy*yaIvOm8K z1+9!8g)A|R1&mHc)Vt_W8ZTmzW7m?k<0CRl2G%Vvb3_1z>WOvSj`D4k#n<7&b$w(0s2uH&=iT=&)78r^8u#y@$QVQy zl?DZ2E%CSQ&C{tf{!2?`a;Oo7_LwZP_4+RsT}~KP&S|K+EV5ieCMICzPA}-?YvU&N zGh3UHcOwjDt>2v_AD)0>&bxWLyMxp3Sb9#n56W_L{a}|pnf7;8OJ=oXc0fsE^RkkK zKp`;8%;AJo1vQK4<(vQn$bPRdyeK)7{-b-w^wUt5QK(eIw`Y&-J_?h+R4ahD(B=8R z?{kuaxEQG4wGbVeZM?<%$PJGKd8I9(fHeb!ibZ5(DlsXTDXj3dz zFdZT5r;>N>dN%WNLqvO7vhs4i^;Wt{3X~{g>SwFuHY$YFL)}u*i#IFBdw;Q*}esA1ER7lBGa=#lv~8pzx)e?@%cW zqyjsv%e%`rPMoJyR@OQuSNPdLm_BiFIW=&JZh#+WjKR?(2Uj<+Li-2p&q&37o9^`o zKDByU2W|zD{SA++=0>aWKSx};V;%XHTz#IANzGwgK`Vdg%9H& zLIa1RhuqlR!E_sNRxbzh9o&f-0R=nVz|Q|p&8*ug3Je@{7P>Q4G}n03@O$lk^zD!f z3+6o>D6KD_d;Z0uB%Rm_tAK1a*nh-83$_bd4+`9Y1d%%v^BHvewqf$l?{@YaGjxas zYUo+Fi94H-)A#vCScCUQyS`0w`CBXK9(d^xqAYd8n5g$w6U2@1n@m6JeT{zUwFx={ z!I|hht^SMih@;t~K+~o7!yomq%=Xp=7S|twPrs4q)tq{mODE(V00CAD35+Yo zAcqyUt8pBcCYLOgUZ+M0IaD;ji?)Ingw+h(qZWcO7vMf0SKecb2HA#)ezeS%n}^R~ zft2;evf-uJM~U2w(5MUkU~_VX{%Y+`r&w z2lr&bqCUz@`Wst62fR_q@8Ow2WBmsq_7$L9^fnRkiG`a;aw1SYX$P1cCRW(qApdAB zM7LlUpB=Wjf_hG+LnI`2n4#I|rW$GN87fVqhG-1k`SCu*-Ne6IBUXz)K&WRb;j`Aj zCe7%70$=DZzg<84ez)Ma0Df*cMLM~8iaMT!UFsi8q^+oofqu4nWFI$_g)9R)JKW(O zM5l${9aPS3*b4p04)Eydm-jYe%v_)B#w-pjI73m#cVX0$R3nmDNna?+io7>AvY~G6 zcjXw(w8>@e@4YEy=Baq+tmITPqq@muQv#HdI&DA1~Eak$c+H z5gGm=%m%ze*mudT>_%G~vdimfwio#9Wl_vKAKnIe<{ICdcG7}poDFX%-p_@)<44DaJn;{i?auy7`_4 z{}I44Hi1rjeh0+@ zwCc5lWP&6r`gg7{(}QCdi+epi9{I#0136jy`N$)rviiVCLm16<2oyO+*WtaIOXcRLXCiIUKjw-Z2kaI> zQY-!)_iknN5VQRJuRrgC|D$?&RUeO5TX6GK-oEGiAQ&RUJA)NF%(GM*-xkW<>-1Fp`iAQj)9mU8G{QAgQr_1wIti zyYCii^cX$7l{KTna&duX72GRLrywjiGP_}H4)(pewOReTslYFvRZ$uC%pCL2jEsLD ze3UPqUYoB4frbTvAg2UliFDawnQ|B-eAh1U!R{1G&YC~ap0#lZqI)cB390LxB!YrDXn>i-EW9R6T z5Dga0#0ru|DnQn?_b8;{FV;E|=vm*5%>kl^Kg)-wS}WRFm>uA+!UzI)Iv|XmGN}D3 zOQ{g{!@tfK{v0HG)9HT0qBoRjVgCcueF^Q&;4k}`K7RG3D~^=PVy7&GS^MSpou2z_ zw|W!|GJALvE&Y{U#D<7b`%yU}2xNM=9yFD(ahN14Q(nMu(25T0J!g-8zoe{Q;xb|!S@8kTcR@)b%3_EUrU=VIa+s>di;zO}ejMa?E`mecgePay2RGK!P>u)aJPmyCnR;!@oYSN6&J!>2KsOS!Jug>7 zdUUEVE+muVyo)B}Zubv0THl!k2gnA-)R4+X&#&+B(7xR>uViEaI_3|NlBj)&X z6nM-YGth*}2)6;;N?mentj&n;p3^vNQIu~YzEcyHp2=68ZHGq#4&eB&M{uyQi}7#> zbrpvT^>vs(6H}AN;$V3zDWdr4-)zXY@T;H=5@@(XivU3M;tK%Z-ucsR{QP_U3>zU7 znYjsJjhH&Cv!d)k$keyus$y5b2h2I8NachHUkHqwJTRf`suoWQtCZG9CV}e~CNt`V z!0lH#&K@m6EG~ZKQ;7B$Lea*d?5m53I6+d*x@2XeIl0aKUh&OqvlGk1u*{vaP!t>u zPZ)zW2Ww(p+=52#A6xWaB{rnqFfdLeR|7SDb`N`jMy4E&EdTt*T^pAq_fB%&PMD@0 z${mRoM}Z()wl1D1ai?()lmIbc2Vm)RE7JY!G>Cbne6O+^E#4M1m~F1vTz4(^@R()x zzDwh<4i<2F4Vv6<_U%b-KV^7n4$EU7jh}L48FjvH9lPjWk)y~cx8F-1KDm*`aG@a; zQ)X9akCB}#!_!#xLWj{Z?RYl~rtdUr^IKxH5uWL&R;f#akkQK!4qAvg7jkwe!8(<^@^{oI}2r>Ni8_W@LUJv)^m7en%m8E)`0Q zy2ZqtgSc0&TYKb~?t%?^tqNN0mD1T?ttGBEz1XNwurxHyrxTBvsK2r|39%pBxJ}sh z2naS(^=Qq{1d>MDA#a=8JKd~LUDIr@XWdO*v=0nWAqO%0?ta=wm-kZ%e-ORe1we~F zsA9*XvA3!}?cN}HQS8ccZDdJCTeU8Tv%-wY;%)TU#MFkCw$aShu{WSWYEu`xY3MzA z>l}8ak~}aLgAoVig@DjgV;Hh9Q$qBwDL2djG0R@Nptdt?M;kpg0(@W7Fy{!m_en`VKv_cN5~OPS!{GQe5nnbA6ap!SA41_eH-4wNsiMay^`j&)YBPq|;Vc-$vI< z(=`|TfMuFARJfIF`!gSmY@C6iQe9{h^cdoa+10vN)8mBzGe(c5RngY6NrJU;C-UcX=;6B2zuw&#|a5WZosg~{z|O0EvnP_FP7(-=ScTJP)P42a$xH=d;DJDW?;{P zOQAn^iC|aepny5u2;_y5x$h}k@|_4_8yEI=AuFuFPrNRN2^&Fz{$g<_4qV*X&90%s z9=arv9QO0ea`)aairs?iItK1AAolU0%no1@=!SwOA?Jg??v+k${l$tX&19%w+7rD9 zW_gK_?9RzozkyO#(&o$fbuQZ1N_UoIM%N^DzcYs(=b>MZYc+>Xf22}f*lR*1Wv*-2cX18JCIM~uRb>IR1{?)r3 zVS+m_WaId93Lz#}z0gcWk+U6O7QhHecQd7CY&8vt9b8dO$KJym{c6RS&ZXgvo7VB- zzjat-hu-2tTi5q27K!(?VlXkI>C=!gS7xT`((z@J>#a_qG^nrcMLu5^EB~xTq<1vf02GarIw?MKibD@2k3F zj0z)>v_QO;eE&5oUZHcItt0O8yH>Wspn7F;r#{^?l4)0^(R}sqz((kk51SM3-W=Cz zRLb0I-Uu}jF`rk@#eLS2QGcCu>ox>R%!tn4>wrLDwXQHlHBp?pC-j3FYWCdzpK~8uom<{Fajt z!wydbavo`K<3mfFSGPeYAmQ|-0Q++OWB0Ik{&!&_oyb{PWLD|Q(Vwb5zvCk30zZkE zx9iF;6bw$oR{Y^850rD52KvEGcmCq`-r@wj<^Bt30;1KMXU5)sXZhS1C4v0$*(>fZ zR^jZ8FzgyMhgiu)fC@lst-vflOco`)C;Z6n`kxk72pA-vJImb~tRID>d1#vgh?T^8 z93(ypsPq^d7dFnOu6ucVn{VhX)8*3Y!txL6ndCa~81%-$XYT?msV_Q1lmED$++10s zHNvt11*Uy4{4vkarQS!=FjIl!<502YvZ>926MJp@GqD~!IUspVkP`1?o}NvlB)oSM zy%&Jm%U#m+NL&sf!(y(WnS|d|Vd*Xy?G1FCdr$*`lkyiix2F)@Zu^b?^&TiU)Z@&1 zGY@hZW)H6!*$U$3%JV-46t(cH-QPh^M+UvH$>R-aBY9rqy+hC~A}s<$n(w-lhhX4# zROa0hEN6B)^)%;;L`#a3fMYerXQW)Lc@q;=zPvPct|W5tt;f)=u15BakC<7CVVc@q zhv0CfrBmyZ>Z#5>T+#^H6@-D}ht19eV-1nEo^taTQm1xL&*3j!nkA5u|8Ul-Z|-v! ztzqhM;oq^yDmb^`cBVSk(ee0`f2_cbSWO+OO4tSjC27$FSMu^CxQg%Ob(qVjumOXj z6xn#Z@K4_j7}K#$o>8dCztUlw{jtlyPN*IKT7iRrK1V3kActMGsm_YqOu6Tc{DG5| zh6jCQ^usKi1v+dPDDpjRnhwXisx5t-9WyrDRq7Y|@=BDfd=cMyJ^^SE?`m5mY#p38 zI3&3GSlvm)QIz|izDonR(e?jZC;(uzT*L2QQ_J`4QYzqt8$2M>p}`@DrEv;xna7RA zWWTe4!&(CDZ&?871FIG44AZ%F$oD?i?poCrmLiiQ7h=c4!)981KAtwUL;$O?S0=|xtmF#aO1)(H%zV!gQL z&ESg1EBa?mp+ZR`zly_2!WK)-^O}!0N&nerJ!XeTM2rq?GquU{POsJMJuEm3Lp7j! z|CquP8S|}14*b2p1%FnbbvSXnWePmOY?VDf-mLv^PM_0}P@iO%A+*duAaJ)?<=a%1 zS9J$-O`c;Yu4l)B(Nq3BgWm;a^}a++AnnM7k{6Cn4x$#N6hnyS#*JY2@oi<+r-uYT znZh`CH_jwQzBs#N3}p^&tcBZ+Izn(6GE~f04Kixvrt&LEM=* zz4>XIVXZG?;6u-EN$S$p7Lu{}$Vak`e`0Jbs&yG`CS{FV1_4Q>rwfVxvRVH;2 z%W53ToKO_Cpofix&!6?RI_D?fjx*kib}p~`rhdrzMZM2Y7u(3QvMzGYJ@eZ2^dZJd zN%pJXO|D|Rq!b^gtGDZ~D5(crb_&{*v@Xw5q^V3Rze>CseJt?`rUV%3k^tAI8Y?xi zA_wsjTfb{{>^!A^>Oz!wS| znKBu>zxBZ0E_V6FXsW|f2fBRsoq9PXw7<(c% zEI+t%zD3a+II*?F+!?M~`Ba^w4N@Q0J>~fn!R%C3VtQ^E$1YAPlAxO;hdQVB?FCmj!!d9@1UEYeK6t-G^JBs2 zqXW;k_b0rzuc@nfiUDQ~F*ZRgBTQgblDaaMs5ruaQfZDUv0W=%K~PrqxRv0`v?nzKM9{wk7im{sx5h}?3niDeaid=EZLNH z{m$LQJG{F2qjtrwa;TIhPs-_RR*Kp8&5voGL1+&cT0I9gGz6Mu*$3?QM}0S&GPawS zm>0A4zXw_Jm1(f(9_v1n2bP)2iy|8paA&CaBg-D*TukGfGwCYESEY1PN!@$4w!II`=1dzHZ*nT6-9MS`#YosXP2*N_tjzA~K$8T~{b#uF_|>ICdIGUZ04hP#+*Og@>n(P|5?uA^B9RGNor3irONE ze014S23qQmAT(Njzo-lVAh2geO)@9a;%#u6;g(Oz83?%V9%5#cGAk>0btlEIhv{5~^I@#U`SA>}G+n?G!~q1Eq427W*o@(HI`9_aB+G!7F7&4#u<$#B$=iRU?TzEXBjnuOY!V# z8BN&>#qh|cVt`MpSm>iK!4p+2fJ4H&A^$J%;P+8367TZTOuGH<2#_CQ3RJO75-jyx z^6~tN&icHFRwd?#LDHY?@jEePoqT&)=H8vl1Kb5@WmJ10F*FtEIEjC7e}XiI0sDUyt=fhff!q>qis^-m7^% zZ2c5UNn3aIy{diyb}$^F|H3B>Pa{@=v&w*Xf*BeA`Bk<*Pic514J8vLuw^I@=rdz^ zfE&UG&)AWt60v2dDC}d9>fXR!S^KPle?lAZbf`siR3ZZpYYnAmZjxh8tB=`O1F8{f zQAezyHM%sw6*z4AUv~8{8zo=3TLZPuZtMI=T2ZwvwlyKgBV6skkk%|;HywlZdXGj61A+U#Kb)9Fn6vfS^)qExMf{Wei4+`?9)WS>-p zkFX^kqomY#+BhRsR@~b91^lCP;^TV{HdXw~;!`iLm%hGV8T{WfY^(e0#AG zYEH&MY3snccPTItm>hPO81*skx1>D-GY|Gdxt5sU0=vK?@a3dLtGL~lDVD*_A6b%q)c*cKxAq)CTRuoR(l+Sr)U#iY z{3`LH!l+oO;e!jUct6%^ZCa;}}6Z%khFKYH)0A5)uL z6mGWe1Ck5#=(vA=+skt6b+VK0+Us#s04@+ha)mN*NSx-!s9nwH85H8Lk_dHM`f_hD3c(A5azx&~FCf5re zqepQj1t~-Xg}mO8<3XF_IGaWW2|tAT5%0cP%$px$M_mVH4Q7a$ALCdBl5g2R>afHm zBMOS7@?52p>enOv=0>Uderxh{w$(A~lv&iclZ)y>>~Nj_p~9y`Y5nj1MV%445AvqX zif!=~QkV-hCDgHot~ znzRh3f|?w*67CdEFdI*3IEpu|^cuMFa9F+M>j8SwTrs{rF?FXd9to?F{OZ0_Sp>G8 zrQ@4`CV69iuK_`?LM-;RkTqLHtB zh-U(PjT2EuJ(H>{J#9SqW*vVa4MB} zCUpZ}r0Kmj8{an#osiOseCvO$)2ukHLNC;8&ATmI-+(`>^0FeJ$inBpdF6Ik_FlAR z1Gy<5^RhsE+T-!2Xc5C2DRTv(UdR>goXncPWJfwUuZ^5gL7uG8k_=+KFiz?HQfYL~ z*je6q*h8#P-e*0+GM4F@RS8>Bq#N&{+76d25k2Py8AMC32J*~4fa;H3OCy+@Pd z(_D0(%-CWBbyBl&4vYJ6qa&w1n9ah*#&LxUjp5em<@xm_jSz#K;pylQX2( zlGUXcmc1V$W@tU>3^zm~8ol|fGNufkRh8s@vQVeut#_q&D2gactrWD$E96E*zD`V? zo!^tIC{Qi#0q{2@U!Ofyr=swf0_GLQ$ACC;YFzl2XBZrL)`?V(4Rrg9MSLSX)t*7r zNG-2G+^bq4qEon89HRtQ%h1Ey6?})xj_qkYd}7jJCm`Ubowl7eyx5=uJF|2R@!MPi zFejlEw?SI6GQQg@Be2%RO-9SPL3jb)gW(lV8}BTw5jS(N6-2=}&|%dmk!lSoQA}_*r!xIY?Bv&{_k;%S?Xpc>S7GKgNlos``Yy)i}DMqd1AK z_?=+iZ@q-xyQOP^L#_7@F%Vrhaj`s}5 z4iTtMV->}n``2&cz+w%u&?3T3!CsH>kOzz}Q~*GbQ9RD_o6p>fta8IV1(X}6{*}1i zr)rGlg!p|STuCIj-fI3NML?CR-$~eNSM{$dW%V!QU}ZJH!HJE;*I`a8q}J!a`uu>C zdPoA_;6W0}U~z47Z~UBrWWk2g%|OPO}wrCs7B^3zxIdv(V*K{pIs|e zjINd5Pu0!|I?RJ{8$hRYnkpN_^V4lB^H+Ogy--#J_exglP`^rhKXDiEDmc^W%q4%+2Abe$?sH~*+)#;G_+w0o zu7nq5(mvsI6_^nAdTbt;i`L{n2N^|Aw4cYAEXZocfD!Lk);TjAMjXp{|6(~_3o{~3 z$2UV-5jV@tkgKk9sf@jv0<2!-f>}5u}nDm&o)qYsmT58IN zLx#0{G0kad8O{mvGUNSyx{99*)@jnc$K=2qm8C;!Mf&{}2KiSDp?ymshmDv!R~KuekGpn? zzlK^jZftQfPVv2wG06qyQ#0)uYd7vAahYNq8|B89#;5DEZ=eLX%ixSrX!sK9fo50Z zsh8)H?chh6>QM{ z0|yHr&EkQrWE3~^xhvE5hl2!^6fsL1N=pb%c*OpF`P9Zc;E~qRSI}c%s{mLATwA8c{3SqI-(xw7m4Iq=9vy#mL=dJd(SgD}*%P+0>mS2>*9VY3Aa5K}kBU;)o zWmW{;27L0RPp|!!LS-7(#xG#km>9C|oXvAbV8Oeh_TIR60&-IDr5nXt=iwkXHnh?$ z%ki`IJgn-b6&@mz-?<}Kz|x0X=xEv9E0p-#MVjV_1_^mKr|aB3+TA7XN=vGjGMbyi zAD!U!d9)?RQi0;jfu4V}%Tr&0!#Wd#sut%C;`p7a_^qJSURpw@U;NcQ^Yxp;@aN1z z*stoe)M;I+g!*u6-bQsy7zy0mnLkn?Ej^lsu7Th9ywK;a` zV1*AIBY1BgeBIYHIQlF;KVtvrY6l&P1#$d@_ijCt4WZ!Oe^Xm0)9G59fi z$Deg3ri*B!N{tx4TAYSVd3CU81h1mB;`J%d-Vyn?4twcmU7#^ac^>{=1eV&M7d^J8A zK1zB|9sWX~jsgw?niLKqpt^U8n7d)6k>^pvSD3&Zh!MdP>FU#1WyJ-Xo~aQNw8HvS z<%OVe;m)8wLLz9oa#YG2P6@tG5fkqs30Yhn7zrnoXn?auvXWRtJ~}os{F5%HqDb{4 z0*QHQm_sew6aER~neOt@R6_-|g)!aoQ2jy!-vxFSwl_P!7-)7E_!`@4-tY>wJ}UGm zl>U-xYNUTnMyF~0WLBn&@0kE<<0ztn!-gp*S-Sl9!z5yg}UG*ufkl!WrJrufpvZo-6zkpc9DuD9>lhiLJyzAy4_LxJ7Sl${ry3PIHWUPb%Hhm6%wjR1U z+7i}A`xh%8`T!zi(GYmooHU*cG5H2P^s;W~``*yCh43&v=-#~v4W0iPAOe;d+n5a8 zU>kBg49M$QHgi1>KU+MtcTRAU_fjp%-e)3JwYa{oH7uV3#(Hr=3kiXLR8Tzfk~uEp z!4x>#lCjP)n?`eI&qc?|VNAxLlcJc+#OC9}VLYmIGRd%Jep#`Z9fGb8fXXefE%;AC zm(*Q0(SMsbOJVCv?Pq7I&J327ZDeuRhmOA8Mw44xW5Tt7*6=S@megOY(|)u(wEiy^ z5W#(*$z;D@lq9$Ne&6uh{E3BX7mn+bW4y0_cNrLS|7PR#ae5}u5_>t^ep zC&(9a;6Asc;7`VsSs%>*>G}j5CZz2E|qIrTyxzZF;>FGV?{ zJ#J|BPJp#3*jfF*S9q-a7wZAM_Y{cq`od*Ly<>9x<;Pr(Wpw?`yh9^xIhw8QjW0dP zc-9OykUwwabb)tM&*b??z1t)w!xuddi#W!5JO1T`Yux15Vb=*ROZT)Ft4+S}>rfDZ zbi+Px>lE`>>;}cJp>FAE$E|SZ9Oa7mS{kg?LJ`K4J{@wR_oUdXaj|a2 z@Eae+#wY!WJ9~{rJkgrvgr@P6Y9HQ(#3fC;dS>Z|xed$a8Sd~+WN<8bF0Mnw6a84z z>3BQa#!M0rF=gMUC$6h|20JAzYTnq@F5YQ zHm@9k3m36k_~dTua~|&XC)Rdq`FH5&e8{R$Q0f?E4PBOU!ETz{jE(s<`rpEp>3C5; z`}172yl*NKFd?bAMfD+`Eu z@=mA?rw+)w{I7}n|38Tm(E!sT`O`whXNCS?z>j2?aiJjQs>*@mm#zxK>`-)zF9_&6A##8<598+0LFnT)i`{yDnvvN=c#96 znJ@H+%PZMa7YYr9C{;9Ri)%D)@vCTgwPkSj>T9CKER~#k==XVX)N3}}vUeY!o7FsE zV=FPxwN$VcF^jFft4~ciferQPIQUnkKfUoZV#T#OJgmmm9a{p%QEy`1w8wt)kw(Zd zJK{L34aKZSzMX+|P8vv<)Q~$C>6Z2_n7po2(#O_S^V823%5K*D`7@JEX8~7jcC{X^ zN+pDZba^W(S?G8aYONR3kC*7h8<(_8=g^pLo>PtzXTDL&-sm8>Pb+Vf(^1 zsjyNd%YMhcO-#QaaIe0@gt0#K2qh6=us@qP<5b1GCZ(im)~R$D#B%@Qh#>TCDskv9 z)}dz##b2!0h(KvgkKS#LA8x&iKY$d_nd!az8tc7z`%UMLuWu55){BYInn8dRu!y>(5M{&+GWT0I;{TIt5Sazk}tq8g&SMu#ep4yV| zz;|KDc37E(*hTOaB0A3-gfk?H&Lq2wK8TCKCEdz5d|t=QeJ$v*=ewlxH7Il0@#)~7 z0FT_)FJAH35bCKH^wk{Rz#wt6VQ*P}e`%6tT6!+8(fH~k`Vk$4OAo)a7dhdP<%2NP zj(6%GEU3IvD-*VV_gHA1Jvi_i+mMY?X43QpSBTuLGxtM`rF2+|@U$BS*nH+My9l2C zNE@7Y(Ddq6Y)%e#Si1`UwQ$z@B7aiGA0QZt0;=bW!)QwNXj{dI(Ik-B@Q|BPko%2< zt4S&v%qq-cTM-=c^e+~PWN#+G!c5%J5!JmnXN|vLS>wqKN{JyG;Cg0~6 zr4KJGS1})SY4lx5&ZNIhtmigboj+I!n;t@Z-MtCaKoIZZiEZ;p@o7*<>8 zwO+z;&T)p8ibfBf`ctTO`20fGCvqchVK5tMNBARfcY@JO^B zq4$10E}T7}l97>mB$ax*QlwZ2XI}{KQJfZD)Z>;IBaU~!=BnFCaN=KArDIuJ&2i~6 zoUDbNExw3914~R|461sb)d=;ILJK12w#wb7h7T7_o#tn}l#ca7XS3lgj{*eID$PFj zeP4zGz8Y>NYEJ9}Y-BBmp1}n|dI|pdps3%*Zs6}Xyvv6AJ7FJht2u0 zOmpWwON3p-$`dWPQ#y1CT1)qvjZ8M5*l+qGR#WJK09O6Z#pD5tY9)})(SRTy#IyG# z*|`Wm3^`wOtF_Y}NqWpAiD_3nbP`&dNHAg$uq0O6mFjw0pjX{-xZdAU7q?=aZ!g5) zUp+f`{J`&Beenh)QA70UQLuP&tU=N81}gBV*Jso6y!wO{16Zt|Ug-1K-jW;1SI%j~sLs=I&gj07Wrpdh z7k(Z|-&N2bHj*2_=8h!zm7UM>yHZhteqoq2SZS_s8e0cwvGW2p^}KzQZwMjq6O*D* zK*T~hkNp(e2`Ba`4i8h`8+x^((&F!&Gz{_WlrjrdhJ3^ViUso5o|4!>u@n z<#jLe*AM3XQXk^rRNH=fR{KW|hD(<(8FE z!prz;FFow!0D690k8dAFvJ(lSEFftwE$aKewGl*K&7Fhfa&m+WyBHsEwV1S63bwtN zjf=>odv+3WPx}TKIuPUR7e5hG4kzX`{tvM{@a@~&vYW+=CP|m&zS-^;ngf`|E0wZY z(}jZoZ>-50cg6a#LpfiYtK=Z7qx4931XJQyCDn)O^5$5u((vQRy@3&Uo9=}&BDt*# zgs|u$^@hJJu`}1GXEr|X7troiPY8P^P1lf?1zN=`f-dSt`M>7;{w=ym(SIZTkc-Y z3MZlkvELV(2bc@^JtA9oWkTcdX1@VP^!Icc7_=J(;G(b9yt zQUam;e}bZhSa#gPl&8`G%H~T=V{HD7NpMLt|L?Fhr0qwS{*|7GuQ?j20AGlPy2Ja- z0MElAS7uFAbIXgDvKz;esgE8sST$}jD6@EOO>AoVHBN;zT25afto;0z!tUzY)y&e# zpZAU9M81u{OzOyD%?C+Hif+z6gsFc$W1PCSzAH$~M@rddD5E$3Wjo9^ToO(!ulV`k>$V4yNkaW67Rd5CU3+%oK(xboY>9 za9B#+BdgKXe_7$t69=RvA<0Ek%f7%&_H>}X5I30fgWt}*gddk-@VPJ4m$xr#U}A90 zYdzSfSHbMT;D2sm zPc~kAbr~qUGWr+m3plsO4~7Z1)b_!s-e{JL^ba7k64oRaxDF9yk#*qZKEK%nUePg{ zyrC3T4k4h!#FX&dkL9}6xSQJvBX&P@YTT`A`q1@Z=cRdl?6;Tf(tv;1=h~6~5}m$k zUF3K9v%kw_W?C)ICEkwJQhALtC+|>{R*YYaYaQYJ>6yh-s+L(QZMn#oG#zN)MMOMM!OdAgcsg|N-h;*WAkPs3JE1;Fp7% zu@1 zJDCgjr@*q4m9UvP_(Xv)eQR3rJ9FpLj|LP)dIFo3dR$sf(Kv0VN-3+#ob=x-KdEuz z>*zaFQn6M8vs0Yv>At87{nO%j_i6p&*r&Mg!)t+gNuWVY*zJZiNhk5nL?y` zj<2PG#)8AEGPcw*kAmM2P^rfPNZ=dwUKnz_HgEPwF7#*`Du714FfOG|;~KS2 z{2otf!lJHnEwEzIFyOv@`_auTVcyE@tDG-%)ur~~d$&d1pVKqHH{G+s{l#>yqL7+x zH{}%Rn5UTItXC!oiXs>qPNjW6dMplSuAOhc8|w~=6@_o_rRPrj{zRodmi`Ie`w&XH zbHn)MVvNCXMKI8`o8eg|H)rb0s=)|*lg|b}?-~&~{7JH~4)q6Qx7L-Z9}z<_BEfXM z(Pz%D49iWQhnycT66W}^|Hb0Onq8*f3r+%MZ`as`^dFJUycj>6W%JLgeXH=xAB~d; z(5KTwHG9As^T8I2ry3(gDNS!FjjysP-+rR$Z~N)8?H78}VH5k(@5$MFJgM0)%91?_ ziNvQyp%zzPmzH`)HFKHh1fDn?F86mG_SoQxnH!F1HIk0Ks+vp)^mMB@LvZQZ*-hn0 zoq3jdpO5&BJr(kh<){xbb9Jk-Q>GB+CimU48ov*YM!)#EK12~~WO21{(XPsXM87>w zn~dmEk-*&>02L@1m7r0=6E&@#Aw%SD9vX?wH=nb$hUZkBzu(>{t{hje^xCJwb|Btst~!fTNVZ2ponUR{AX`0p>tx~ zZO}cM(IIih6f!1m_Rxzq;`^nEjZGuuLE;0#Dt9lqQgF|Yw*}1xpAv)C*C0+AO3ty|s z)4Cp^suUJIs!pvHve=uLEev+`nn&5$_}F+?mL5sNrx7EuXw;t5LB)^Ok(SuWg!~(T zOHhhb`T|p(l=gUtdU?yKXMyOT6yL-jApBgOEDm#K;{I?;5j99T_4p)jJ?MRVM5eBg z*Jy022${KzLo12*PCrhf|M}KJM)jvo1`{KrMKKLa1O!^?^ zlzS_O1iCh${PSb4XPXQlclkH_3*(AbuNE^PfG#ukR;SaeX*N(d;JX-cuYgacy7A1D zCOs~!er}AKI~$yXyrd}Fl1qn*pn8IZrIh*uHz)Oz|F-b8=WDsIB%Z{}G~M~}j&D8x z&o_v31Qs)C6TX*=C(CwJ6ozxtUN6w_sNC`?8YQp8aZ9)+CmwPD5!4bRXC4DJ49rqL z=xR^g$Cv!W5^F8z_}h^B3Hx+%{=3&y2E{y5*d`?k={D=_Cb0Cu$WLHHmV|c04`JKu6wwewKNP+c=-^BL|05V@kQz+(e?m2e?`z z4}3yFX<_~3eCuO|3`Vx2#b-~|jAn%O~Kc_ZMJa?A)t1m!}PptEK@hZW)uLib%VemWbH9_LSN`V@O>1_L zA4iXZ|9nv^SeL?i{N`6l#f)+7P$-%s0Klon`#-(*hl0L1@6uBz#`<=716V2F7aeF4 zo2!b=V@+=zzNZStuc%X-oW(J)he-yl60YS?wC#OkpYNT>{v5gl-i^M4W-x)DPF|2t zRb=q!1q}SEzy9mA&<6)j{Zhj&QF)2A=uKXUPyR4!P+OVST0R`M#2;ayev27G4H;f* z=q5}DABgo=A-V6T*PJ`8Y{KEJBNtaazz<)0He;5DZ+6P>UTe)QD6=5y?U23CwKq3HRh8@cR0VYk7WjyF9#LkX}A7Fx=q-6>BacZ~-#et;zrFaji9Jix<==GytUwZh(G~1JP{XPM;`Y zf9|#~3M_!sW_87UM9%Bf`%uPqA#DBdure_Z?sW!GU!0vF(k@3K}dRw$SCzGir1<{b-*csYZgwKbr9jh#fo9n)P%|J%2aF{T1HW85*lRZ^zn z_k*FYq}Mz#Uu?P##2!fq`?W{!cvsQTaY)s^EE6?QAyxKxHs6<$G#DiR-=fFz3ZFh3imMNj>)K>_nRbTIrwk@2dr8V< z{x*90`F1b~%9V%zH49lRq^;@upbaII=%##<`?byoVNMng_CI{pmhQwqsh;CkPvv+@2~=3lkx`oFSXAetJ9?GKw~osbsH8N<6gk<*;Z6J|-#PQN9ctnQ z8P<})ewznY^9y{?i|%3!WqH~89Or3gGR?L5mP;qk{+TS<{f(GRFQS+-=M-E!QNoD5 z;s2Sj5WwDz7#|-ZcS;A*L~QAoK1R6gK4M8;V!6Gw){iz%p-yS)OlwN4Mr`q9E1D`#w?q$rmd5Eh$Q#tqwQ{PXe zSfY5|u)>wx(o*bU3G^U<(T_}YyGdbDo|58&d-VLiFKA@IY_AY6(4I!lrAqaY>eTcq zRXRYt;d)VD_U4fd|0GXQ#SdkNVWdNnVFtNq!(UcokLxrjP>_PMGYD>FxmT+o*< z-i!XrH(6*__8cC1oL=~KxgFlmpM=Py#UvbLwpI#}FnuYEU2hW;6NB1`Va*u0HSy>x zq>L!_LY5b=(=6kSqAxu>f{ehRjdklR^-Lq`z2PDUMjbcN609Xq_*uOi{T83V-WwAs zE4+*fkt$e;WZ@{(J%iBxss~h`j#Kv_jPcIhF1Sc{W zx5i<`6B*vF;7mBiNLpV;e{Vm~aXmTykxxV^Z_(2~xrvq}9mxRv$@jER!B3u%Fcjmt zBOTJzDffk|EeR=sIs~8LG-1?`r;KUF)%O}?=#p?QpGPEdh2gHAhne~uN1RMP^g7-@ zFNO4NkE9F9`u1_IqTZC^;f9kZRB|eeDciTR)fQ-M&h3UU*%d@<7tVLoeV_Nxq(xm6 z_Grn2eHw8u1>jOhdj``jwZahuFqNC*1W5rX{a+S+{x$Eh+eqAMHW7|~m1i*NFFefc zI!1WUFU&j5lmAmkY_7oTXB_hcd;c*t4!7`bGp_lO0XAEqv$^j4dy|?&>7krs>Cgv#@vo8 zJIf~BHlXmR%6*>=Jon?PhM?8n5f&B>dvK#}rM{dfHF z6y`z>758aBbh@N8)Is@$<=-a&$nn1(q9(`p+3pn`uk>@!q6DQ+k+p|s+ARJq?a}9F zXRE_ai}igyz}!uL1OZYK=xgX6;drm7mph%tE=&+XI<||_p#3m{hP-1R2R1pN zEC;2|?07AayN`+X;8!D6KHj)O4%b)JxGj@nE-52Db|~5RS-4^_pm>{n) zEK4pIe&C|A<{NVygo3d_>2j}eiGHTKnO_W?P9cy2L=D%Ip$cmSu{+v-OPcwCVeYL;L%TU2JP*MFGu<6J&!IkTyy7-b+H~BoutM(#H(@3W7`#h#E zMDH`yh#`Vk>u_(4**11T}^iAj(VL* z?x4N8qZzNQdtRHebaNnvNPe%=d%fCa24*hN@?PZR7g#3Mc+g_XXI8*7G159do`^SAJgC1n}MH zjuZ|qZic;9=}(YTF_{aRbuBjxIU4R5q!46|cPza+*wDbl2 z;&}l@H#&fEpjs{6;uBJQ4nxE%#CbUq^mvtb*zznNvXEx{@ijVyYLZP z2#~Q|-%?1gPSnB5FmZfOVyLTtWEp-1n!=Y*HWsniKr!!_- z{8fGeoxYRX%iwmA}7yz6yh*;_UrCA?nto7G=m$Z8{zgnYYw*Z!sCu-F$<+dPs0`##rol*?ML^V)sSpacGK<#x;6 zpEnHRpWJgjnDbJ9xjj_D$3Y?C?vF zreOf2lGAIC*Ot4FM8#8 ziT;>f+&=+${rgAyAaXnO5a_YDu3w5>s8=4{Mjf5amJJUNf5i>LtCXrxBt3s-I~$$b zhP6lx9;}=ucSDW<#;O0GQiETd%L!W`VCQ@p^qHOm@N$v@81<>JOCpw4Fxu-#+=OJb z(*QMSk@wcgLS@mL3^^K{`^NK*j3m*z`lKS&8axtIJ}?R^?$IQMwYBND6$J{qB>6{V z3y6mSy zzr%Xbb-Z@B=@L^BeWbXY97h$Ok4)<#nn_5e4f4XGMS5AuJP_PRNo8g6e6>Z&C6Or; zr5OISm8nzH`?zdzt-)o7N6-i_2-i;0&sNwZw8&+_gNAy4ONUTLqfA1-@8?V-7JDJ< zmS2>0JTNw)70-4HVT+d z_3DMJ5cjhl6zov7y^1(2IySYwIqo_)PZQYE@>izZU|wN$+X#L-o1NI{YwVZnQX?9C zLPIC{pwznv<^9vJ3hN!%hP%M0z1k?_p7yU4hd{Fyu_YM^OnlIvv?RTeoXq*waJ!x+ z&P|`?iNv4@VWX~t{GCOii}{;&mn;8+y@vd(w_!&W8MRtfV|Mp>)}aF8Mh5$HShwE5 zgRGG|`&R3?y+p?j{R*wNkcOF%Jm%m?lmG;0sU@%7-dJcap^o*r#Lus4-t^=1aSUe2 zQ2efSFc8x{Lr9d_;`rMQ)ec)3uga7*%5bAhk2Y%vX>tG!jMi80^{=hLw=5!GdkztY zFKOKyH7(@ZT?C3*Ia94!i<~^4I{QdIyp>_ZePVjn2c@zApesFEXRy_E<&lglibtz! ze`dF1X;eM8IaC?nN%99Jid>A)nN?$Q#{nQZ*|xPiY>}je46)3Y#N*-GC>Z>Vpvt>) zXxR2!S59}Q#o+o^R)UDq2I8ONFUOt_#=P;`qU>4NX!!=7M&w&o-$}TW0dKIBxaFhnp#F_IC&9_~(9mAXfj++%; zIF)93cA>1WO_jb3p6O7$dY(+-k*&fru$9Xrb8%h9 zrlvQH3zi8AopCGXP#|stX9ES3sf3jGE4(oh&9nee3>16#uvPy;f zAes#k@)*PTNw@VVd3};FLfJgGfY82%tL;!o!NGko>4&FYF2U{5M9Sh=V-_z(6^N@= zG{t>}bx<5+nUvsQczDG0_^K6&u$FUc4La7GuN%h=&(Hia#Xr5j$o8IM#5#{n12g9w$>2-8)02oHzyjNiC4}T)xwChTu)r z;&{#%rf;!FrewbQNBXH&m~BEy)=xww!&W|mp3MNaABhv{ySQ5`GAFu!_|6Ay?9>d| zo@%OTzYP@kpd^eV!rbrsid~tH!>G|-8M-ZhvlNlOwlf>+Z$1;(f97Y#&nRvSDTW9>1-mdfsT#HGH@!gSr|-Tm-)xehAjAh!fU$9ibE% zp7BVO0VPPQ9Ja9lPqW^(SCvBlEo*DCbhmy;|B9*x{(1Pve7O1#_@-BL`RRcQYt#}p zwJZ+C_O)_s?*_Z{nW1{Z#fg{`<$(QXYr9XWa)9gCFp%669Gtt`%0b0@6x}rXl zr6iSJVZ=AGu4KGwrM#|;NBE092=Z2O?StqgP+leF(;n4I`U(KjaqwE%yPkvA!uMBa zz#nm;*$O+51A6F3Dr&n7gJCm0wX|aD=3u)_&d5jl@V{%@5}qvZYSGCkGolI_ktW+{ zV6>_=Y26fns!UCFTJI?&yS+fMxTEk8<}^*^y{!sIV5=&>De^~HtJQZVhb0&qhSaCj z*(OIN7>dM4biFSaG@;e%Rz93IS6O56kM;RVW`_&glqRH%(|1;-aZ*L_><7jLGeeoC3I_`%hi@tX?f3u^r)Sz0^ zbPKfemCb+E1JoTC*Krs#|JSk^1Jve6!iiAxp5_pxO9aq^k;WGuWPIe*-F7m+a~nEC z4>W?QwZbNXyRw*5MjiZStp225sOL4#`yRRsGnHF+`ckiMtvAg{nQofqctY5wbo2*I zO%`*LNhbuo>BWmJ9*XF9(*MwSNRb;s9F-2teH(2tFuhL}^SIdWvq9(Qgm`iPJi@?4 z(=jImMs!BJZ2iG%orLH&=!c<0WR}h*6FYM3wS%B%$g&=qFh4MG&T%_vs!T9sWI3lS zFFsxvY@bvBnh~?SCT4ABJXQ~0G%R@2e7r*yl}Nx!}mp zwOdNxFKSq?72?4ciLwC0fQ~`YpJGWD(`6FeTUzGW&$~o4J0j*=(y{Z948!m#bLg?{ z*kTR+MIAIt!F&zJ7$ABQ|D2N0;{*51gNXk#Jbn%%AauhOjZ-NqXn7V=FRwuh60}V4 zOR+J6)jJPj=3Jn(Q$suL-S7()Hj&&?N0h-M-|JF&#_jPL1ErnEGkOnC^fW)U8c;ni z7bW~UVl!v0r9A0`SbP=5^gKJm#O;lgPQ05FcN)IeyV6>5jKPzrJ(gtrV%*9pr{3$D zMu~^{)o}WO7=`PRr^zl$!vcE-^6eP+nLY021vFNYCV zW#gZK_!L8@)QI9AxasTlN3-A}+z;dx@ZzJ(q>o%wxd#NqWTruHh9?SR26i?F(nnF| z-`EPD3HsCGldKke3r}lMRVuJMtyyfKJXhF?-Knmvt|ok zSZeIC=J-5cjy1bNnSf;NF@y8#e{ihI(7?;{5Qr!usC;VKV_(joUmyye;OsxA=NqJ(S}suQ|OPFAl@o`{uTn681u? z_nV2Z@(rRU`qd>ZkixW(;FqNMg0BuoxE} zDOpj_+b`k`=Mq6Ye-VxGkTRKjPn2RhG%Y@v$Vmg7fPsluzLS#}H=UoL{nS*m{fBR;;#Ojf#(AWUOlfB^kx(Z)nNmL{3{OUN>EMGypepIn&KVkmNhJ2v4So zrFWk7$p7G0^zulj z#ijv45r32fZQZ2Q1BMqb%0vB|j}U9AvLQlg+suaG!sPNf$?KV$z)eG6KtUVU|}8G$S+&cL*D|b0>9K%H53PP`F%0K zL}s00`#j7)q3+Z9fZ{t~z~sjD+YIpKsC_VU`Lu#sQ=I5v3M<@Jb{XQ#i~Q19xr`rk zNj^~_#*7|Sf&Cp0?0xRVjJNT=VrsHM6ehm3lmWPV|IP%{n~bOvXx{3GZJ_^My4D^6 zR9*V8MJ6*VS?<+e8BT0SHJXcCD`qpbrqUZWdZfF1{ceO8Yr_BDAK2Ro4f639)PgS7 zFq~)R8%x1KMFBq4!nt=rjK-O22O)Di$JXq^(|ww_0++X%=D|BgjdJU|z0i-uy-tpUK7379P=LQ#nbX39hee7u;<%biGq=!#6=0}DOHP`8H zpHa_!0r2=N8#2bs18hDQH* z-0e39C&>;F#@!=7FLlc%@(pC0r_0muCkgPcR@0uQx&yXrzs}ow6jQ(AgFO>+fy?Kj zHxo)xkKIOYjmv$r*yI`N!KNwYf&LGtVf9unSOCMALQ%u%-bFaB1)4`4V|-jpuybkl z^U}S4>?nRTx1)J)6UaF0N;p5t9*qYzM@w*wxaF3}m>%TrZn7^9;g6O^PNr_+SV;6# z*>bB)tdHCn{9b48)l)8e?XkyP@$`?4{f_l%M%OsmxVSLL0njT64Dnrk6aWSTPKO&# zD*eZsQPNM?ac5G-HT56Q&jcm$*^#QrvA$kQz2x*z^B8dqyee~cV|rt~SuE@<$y_ZG z-}bpNzHZp|ltMHfrBjua+%@GZnx&m$SUEF~-U!H;jSz-T`jfwPdOqu5sd2X2u}ISG|yL}%B_GvCCd z=YM--@;U0{!XZm~GdpHkTcT@1E&t5bclYvVCHG2UtT|x8rCmR!*NRj;0tp`+72&Z- zPPDywr7-kh3NP|eiN~t_j~D=#pa$v?y|;~YoE@I3pz^a5ZqqeC4_NTN(4VM{qvqC+ z3#QYpiO9D(zUy)CaXKjf3o_wJ`j(ziZm$4k?F~GFYav|BkqfQAm>KAAtf|F5z8E}n z9W_`IN$BVTD^->4m?M^B<(ry+;#u_hW~lSqlaTZ^Al!R~*@icvsvqSiFeD#1XCGUz zN4x75n0NmWRhkP0U45T(thcwSe*#kcWU#(smMZxr0Gk&?sB~E_BZ-K8xA076({RST z#d7@Wf!b^VXJubw#%`4clW;=+Q}zk=Aqk4}z%mUND8;9$z(0N=uS#1hkGeE_W1|we zA9t07D9l1;#)4$dEvWvXvx;WkS+z?He@7|)#Ws4pxy!Hnd`*$xWa#>D^P_`@M=0VLSgfWTkql2$MOcISper;EDL zqF4KKW0Q54xVSQjyOq>P{|)qQ^ohiuD_2hi5+VQ37cJ6yX*^)KVRZy}%p);p6e=dxS2@$&W$7u)H>sjny|%aKRL~WkN5CnVTfZd*{xtQ+tTXA@{VgzPvKJP+BR-DT zl7s}cjG=r<#U7<94dTogAGIU3<_{3x4cAe5Bky<`y!@hU`=#GcFBBvG46MGdu7k!< zG}!tWCdOB_0~zaQMIO7k(k?qJ2N>}qd9q&8or`^cI=w(aLS)x;=p%nBb>I^)<;_51I$Z_17O7dcGRZj5hu z5kMl(>ah>2k`S&m z;MqSPg`Vj1F8-y{S*z@!AXszhQV6lYTYj?8gDn=~n|T-ZZSY zj=h};26%-(VJOBi-TtGuQOLC5WGc?w|4;WKQB-ghA&#y^vaS~A#h(G2Ak;~j3D#)e zDTD8-%;vWtkcpS6`PWbIUSsa4ULK21N!OlXeo>FPnh^KBc7fu7R>IaAByG#$FyjsT zC%FtCGm5TZJQmIe5K0iKX!jR0cn2s?M4V zTGZ?xl*~7~Hy5g!$#?Jr#NKwjfiz=$`l>z?&+})t-PqPWw~X0yg+*sM2rEbwE^`y& zD~cQYy?iKwLq>fN8FQE+;{91zNo9a~Br$S7cqUyhWKI+yJb|L?rx=q_Iw< zWsw+JLp{o@qg$}>^j247niays^)KmjF`2EcqLE>A$%xp5S|oG1iZ@MDv0jWg3s{(1 z2M`Q#-5$h6A^ z5cRK}5SguYYMwF5OkX7XL$l&0lsvKhWHzvsJO@LHgIsC$SZ_km1 zm!@Uon8t8tc3W=Jlq80v4lwoma&8?yziN%GS!MQ-{HaP5%+rtbnX@f!j*UH!eui3M zYU%rKb}am(5mZ5;1#@>5KViAVtMWTEn00mju2X?~cUV-5aoIAl&Xj5jRCA|oR_Ode z+P(CPfi@6va|qTUg(Z2{tN}jD8{y&EH>r8Bh?#OH&a(zke5WpXYV|_CwM!OqVJU-{ zoj1kMA3fK97L-xvF$&&L_|QM?Fk8!?xnI?XJ3TxJrezw<=Xb+R;|f=h#eU%T3XxZV zAv>BD5z*798ci1R??i42b!W?08pPPg$$?TQ5mFh}^&|z;OAd{}-op4M_-cflwd?cY2r-CfDyU&516 zHgz$MP)%t-nM+|(nUqUp&6SZ|cjP0_kJXO0#}ZU)n+cDSU5v^!ZDV|1^&Nv|MUQ!; z+%E-qO={h6=k$x4j zi>tdoQj(OF7-_WTD?}ISZH%VF8)k>Sf{S`#Wm2!J?moTD@8Wj>fP;{0Q2XYiBDYj1 zF{Ryb{<*IfQnS78YJ|L}Q>PD>^7qae>A+^KiC_N%%>q@H$6kcs@qiMoS z&#XUllbY5=jX~hI@cp*G>yynKkA&VFEYP*0W zk%WREn)|;L{4?UlaLXs+bJ3H%jw*Od#)!jjeqLZ`^w40mDp*bgeA#I5lX=;@!M(cg z?>wKYwa*0wUIKIn1FykOeQ^tu!awFoUM@6zU~T)^3wL-~4NP9*LrFhhT!r4ZW4!kg-|71ClZZ))Hn+Ar zThlH^>)|X(ODPCv2!kAo1TV_>xi0-z`HYH&-E7~@P(04iX9N#dSdj?o=hf#XPsFC8 zr|0-owrj3mtDVt1`w{I;X^4pE#}t*8^SD^%5mrrp4V;sD>MEX_6o#&+GwtvBZkXeR zu^DRfdGK!E!E_3mtmMJyoV!O2KbyP*#*mvS3Py&@eV`f7D5Wf>Uk&XFe;%bkAph=_ z1`nI}lF5@j;;gORjg4WEjC$qF%pc^We8^OD_42Cd%aE1M6i$Y@OT4zXzy*Y5+d~NV z0bV1W7iP}Anygw#7mybR<3oFPx?aa$L#Zl=mQVYdjZUu{$e`4trv)=1d`J0@1$X=w zx(>|{S~J69YOpuQPw91r0XlZled0KqlSYA^JVj$6fFvLr10SWF)>~cM6iuw8KR0x- z&jZ9HCokZr^8drL!{5fqyGL|KRbMi%y75=j{^pk zTTq3yFT0I@%$!V1z^vh?6B>ziz}p<7+z5O3`6#q1xOP>e#-bmMJu@Ajdhcoksc%vO zju{;;kHY9V)PV6!3^UkDc|z#R7>DZL&@x6}&uatFp`XmG`7-n47+0r_ zEnpxl%Sr7@>2mr@F=v{0m+`L3gY_DXy88Q=1-X>KIldeBojTVehM=^w3yCJUf&Y!z zFga#6P=K|jLX$@P;?aa(9*==t3m}kZrtMrMr4?2!#Vu`|E`5mjvEKF~dCM21EP3o% z)Z5W_$f+0fi~@ANamHgMwYFL2fi;GhoSq`==5O=$8(00nevfEz#+RRdg{{OD z8O-eb%iH$wjxD_v?=IJh0?+EEtI;m=NGN2!iAdCnrnPbloXg&Sf6$P4aq7M^Gt{qr zb>6y@;t_qDWNEN*6##rI)xH5^ zsTU+Ss?nx;Q$l5Veesw@wxgs0W>i-Zx0K(4XF33arCV3GeYI;CoR4KAlUq1jgF<#{FU|LH^ww%R zL|JyyYO85r{-26zFOwDLz{qC>F~B00Pm2Gy?n~g-{m1U>^pbR(5(Lc$=>8fnzi1iU z$|l1uu9wEW%qI%r`QYnn{WwDrw%(cZ*iTul1!&ZZ^cC|tKEFXmbnpo4mPasJ8+(|N;$9C5u|@Wd+lWaAgoc6kjReMqXnf`e8P$vHg{ zcgT$<#I5jn22WduqSy(`s7d<+XRA>HF1Dj3q|3HmFC3!iQ8{*J`gOSjFRdNMQFet| z*$N_KM&w^zDeQ1CAQT{hz0P^@mMIGbz;}`KQI{!_2HWAt7bV%ArOS2OhJyrXbIh zK*@|rC|l-9h<#k-Z?O1*Xwc6#eamWQ#b644<)lO?=bQY@&V=acLX7py=$t*KwVK|H z9eM8g@$Ii)vfsC`E_Xp5Fj)Bc^$KqtJrSp(1n}JlqIVlM?>5|AbW}o$BMl?=NepLa z@I)Sjaf``rU+L=%qhmRki*#@~+Bpb(Y|OiywY+${RdO$)ur#5ABrUnwO#Hz#q=@Lr z)xc_+tuF(w0H{3B33j?e00kWvK0;&7_9h#Qz<@{6-&VMUMZufh#=`h&k4x}f{Bozz z;#@!Q^+^=p%Y|QFv$#7Dl-df$n#d~~I3r?I`mnwqRr5(eyRD2tCh8`Bv=U~8ABc+b zlUIVb6JX|<7?~PoM$LT}MuHp0ze|Iu`hE2rMtk`FLO<%p+?Kj%=M<^Rd0VAHAF05e zo8~tKNyuyDT)8S6;%#!VzWx_877w5sHRU%m;p|{FD-IgAksreTDZna$8kz$hUN!W_ z_bX&gfFDcJiOH?=f?>q9rJiD3p%tRLMM-71M?I}u8#!laZtFD~hUVIHzU(N29*^(E=5*)wKYEulYdzm@*(tI1Hr<9bYba_jq!mBrE(DG>j(Z)VNH z8%tq{Bcj=vpyN;6hq05Krn3?FYUKRXWsyS5GK0j#65pHR3Sm3zd{<~)*8PL+eFS=#WwDIQ<}qU290YoO}DfcdM%-ggc4ZonQr+rcqV;5WlsU2zI3;MWB7=j6}zm%kw+|B~zqn6Ke4_3ROLG z(U%_+(Pc?+Ms0OPHN8ANSL~Vl?)s#p5z|G6kkys8zfF^*0G1cBAz$|;`BxJBxP-Bl zeoq8KTrDJLngZj+1z1dqle2}P5;m463>a%ln}7;!0Hy96kXR{1lL)kvNi^3WWE=;+ z^PeB>g9vWdT#~QfWSIy2=epq-fRR6Gv!bWxZPUn{!?AOG-Tc%ugmOZ6vZ-=$pR*W@ zkfFyMcefE#d^-6M+GVv4q@Z!1^s^oC>b7QY+*5?TG;9OP-u6XOmXe1L9p$A+{sMTq zxoeNhw^Q>I*Nb^WtbIo{loH9yrTnT1Kg5Y@AS|kKfw) zIPULKFdE@>+-16QYxlcXS&O%ii|L6Dr|Hmp0?VWy`&7h~7t(avqS0%kXAab{@J#PJo1AOtFv*v06`vAl+ zQlYr92-KUSQW_v#t(nR9+yFf0DmHYsEvrAKt+c+SQr?*?@K{lIwH6iGz`Qy4*kcUM z-v=-ZLQ7ISx>CuxDqA}zsBGt&Tm-E-n~R8PI_4CWra|F;V*3!rX)U;2f zUk2}`4YqNwU+YzVmu)3c)BVRsw*(KcYno1tM;m*_P4%a3n_KIs@_}24am*krk(tlI=1tlZz#HBwa-pHl0wqC;DfSdU_U{up93?#LFwGkG8xW1t5* zBQ8Zmfkmh&&>z$j&?ZbArDKD55JiN@SN_3@=tjsxEmdi`Q`4hIA@9~dDI|P&%W`p6 zbZQ#^eoyQ3%Dds;*L)W5Z@y6z>X|Z0ME~uOot}=483iICefbCKvF5K&e;bn0Yl2UK zl6vL}9;g2}$ZoXXj%aI>{f*7qYPF=L>e(x#U{uMyf_N}WuvHz6VjQe(yxeS8cXoz* z>%o0Ak32-`%_-`K%IlD>p_Y_#@vNmJ=53n~8SZ}Qm3&0wS1Kr7ORyOW3&$I%gCe08 z$GXofkZ-F3#YJZWl7b{~1T3*$k4xGOwVA+A#Ax3lyZd;YN-4K)81lU>W}8p3ts|rv zr%N00=(wgGuS?VLGl3M=l?E>wb*#ywen=G_iRh7j^#lx-Rtd!PkP}(32qw#u5)8bI zUVW<2L7&Z<2j|c#Gp#NzNXRL?Fii+FmMYww4|VYE4DkDNX8&lZ*>xCuCWo>$3ciLb z^Oem6dextv=0bk1yro)idn+b_khB=suvN`=I@{p@^}G90^E@J1{_oR3KRpLjT{~Bu zz1B}`^~ythy9L`-A8-IHIug}PcMM?lRD7I15pd{&XUn(bq?&hZ4pX``AqDolL4Qd$ z)a5T`e5QgLxcTsks7=*6dlgiOip4pjZ%kYw1VN69Na$cHPx_LO5a&azN_l9Y_i4d* zlhiz)hz(IKDMmMgbLklNaz7uPnGSvm+yV9|E~1NZl}T|3|!WD zcfjbn&uh+BmqT;#G<&~v$6K9dp;5^XarNq(NfPNQum+HX6 zlVZ;cI8Vfh?BLMSvQ11Ma_!9ggkcE&W-0PP#?^ITFEvCJ$Ktp(^=~rV;b9Ig3-0-p z9_!nYyzJ>%lfR`PrrFOJ%Eri*+pcc5JLfqPJaj1zfZy$xKz5o>8|3n zXZnPkBa>DZ`QD#@(zAATh2<6`B>LFo10QKJ&Pj*)y@wE2Lzixm=7y^_&=NmOM1}0% zvo}6a1|x`7wNjI1VcBrIj6FAa<)2;*dG2S*R)F@4rrEmTi0@K}q#X0x-4yYYcR41t zCXfIJ8a{(U0emBe8Yj!}wiC^mLUD9ot$8dnZ-J+l_e~A4FhDwk=z<;I7tCCCbywLW zBaJB3KTtgVJI24pSii78DfQT;cOObSOHOoJ<%1YZP4M+@mi?E1X{r$HFz;iot+oBVNlXr_1R9VKjETY=p$ZT%-W1)+MWOZ@N8xqur)sO zDzkX1juUEJZpM$XqSqahrYfv%Fh}GdGZnVosX2nTgd@6II8hk~So?w%?&GOll+Y+& zIp)<>h*x#R-K7>P-ZHOH4>cV7I)oIWT16Xqg5kQ(RU}^aidJg9r*);{u;$^t{om`2 zD*)!`sh;CqIG%HOJ9WPseTC9jaQ8O}M52F0L|O7`rIx*`wVT)v2ksioVpJ@t*J8)o zQ#C9BZj%bNA!Ez!d(Lqs+WdJ+ofJMPkUXJO`dNLdXVc17yr%WnO+tD zM}1GTT?(ldr&{&%+F8xaDfB>UuL=|Xi@u6lN|a6cwXsnS=Mll74QINNab>_d6_p#u zQ^tB4t@37`C87oXXARrskLW>KEpCBMs%^j4XFCP*NpH2MoxPDNh49myf83FgE5#K2 zPV~Bkzb+k*O}cnC35=ELX-=o{#F6_&E)0SBnfWo4rDtwY=VwNFF2=dyrd-f-e^IpG zp%W7xJ&+Zz7A74<5OrS!nQs{9lhJh={ z+)Dqm6%JbY6x;fwU<9%)+)&Hv8k1^WtTz9r9Ne#klu3a?R(6eycY`|esPab8oK9mD}ZM77B|OffAGHRLZALq_6A4# z^(H32#AS%8JnKh(+V8&aolVzRPRcP6kRh|_e4^$*fV_@ zEqLb8(jX$Z)%@iXbUl1VlAhlPK&58{4A=~|5%Vbs2xiK;XRY7NgBZuhwz}5T*)<^> zo`x~k;C|5tBgt4x-b9+p4?J{3ee9Ic<^B!Sq9|I-vb;^ocahwq-Zu<0SrZn92lml1 zPoLV^H84L@&7Ezs%ZpsTF0u2E6*I2L>+X)z*Tl%w$!;a~t8`Cls!BT*y_KHzws*-I zt~#7p?U)q+Ikf@AUPHZ9TioI;Ivh^-^%S#!JatZx)L*W2=R2b|fdei^6H_J#Z+PB5 z4c>Be-PehM)4$W)mhLso&W95{$uNXn?|ef##-7()e9UQ+;k={0)9UoK(*@3<9Wy7@ zlUbJFhL|g{IxQ4vra5KkRsU?#;%LZ<&Gq_B2{3MAszyXAvo=x^+0&}$a$TXD0%d9b zCTASU@?KR7Nl{r3mGI*Cclyi?Ez?$oHwG7BUJ>?giJ8a9bUXMOZ~H#3^+&uK2bV1r zHIBjb5>bcCeJiIFW(-lk%`<~qaWO(A92%j;TArbk9_RVZa5OuPXz&}2n&^mymbR;# z78fm57gUMz=tav3R0^IKIasSVMNw;B!+Yuu?voZiY$y%p$K9p~^Q_&N8?@35w|mjW z#m(78grC>IhllU_gNKHOyq~@upm^(b|wt8VO56f%6;p|EV{?Dt=gE0SrW@wbP^T4ZWng{EFZJ; z>hEzLvz@`3B1f^+FNss6sr5&o|Bt1!3~Ty*+c<)NN(o4}AT_#MRJxIFk!CP*GzcP~ zq=3|r?ivyUMoM=x28{07=vIHv{>SmW*o(c|0o!q3-}^ex^K)9fsl|u1nAw4zPVott zwe6lSJ5meXHCo*U1ZTkpIxco5UEvcFMEmOE@$&D`H?}eNfo5J)3$eASyMdpc?7@Oi z4BwhIuB4*HKX->{tyJYzjkclMcE__8ZZQfu&T2Lm183V=&?VQch1EP^aj(sew7Ju1 zZ*g9pp;w8Dj8ndUU(_*Kk0v+THXu@RLNb!l-5YWeyYPa#hdgS(XhqlX7?4t%wNDA%L z8E2%7ygC)8WnBj=PGc1^58I<@s9TS8M7xT*?E zbYJbyu3%xACV$(|GhzI5j4_t{?y6mO>cEi zdLohd@@RaxVY~xux-FjXWvy|6_+39#hy@o*>P7TfudYG3!8l(N)k*a2L?u1#!OoIa z;Awl4Xp|1^$=?Ct0_^RxqJP86znGtPXAxZbcmpwz{mhKJ*o16Sb zi++|JlWfoc4&wsfogIiyqJ`TPXbrs_!fmnhXwHTu8-lj{Ytc8z5R?GHy=dI=|F?C- zNlO-$Q56@nW$d~eXP-8p+Im%a6(p;coKV}XtT2$KHxgnub876TvD&wi%@_)pY-TpA z1CjJHQfw*5l{og3paPn;UV*o^?qJn+!kECSD?p8_(m0{=W9d8Lt^T<^y_y54^Ty5i zuKG6LxA~d4{nIn`!#Jy2lr-H%y}G$3&|z|D4>G0#TximcVIU=l7D=Q}JChD{hbnh? z1l&G{7t94d9qjk30W$mNC}ME`Rs$*M&`UnaQDnwk$poXcuv^SQsT9&g%K zk{PNq%^t~8n%8+F|C*}0uW(r49qefYfXT|OL5tHvZ`!^`1%6rL>{{rzBg>H~dT8+c z*k}~PvS2W7ep_?YyKLKqVnUEQ@ZP7i_?%jq)-CjHum|;=na1F_%(>xaic}~Z#Zg9T z_J$l~d^{!(nY9Gy+>Hl%g?s+cl;GLXm|8@y>V?fcMogM-Yt5-Wy=U@~2 zBd7nq?sppZFBFb8Ph~$H3VJ=1X-0Q}k4lQ+$>8F<*wr2Hn=T06Z7@wcu!>mVR23C` zl`e@>o3V43_hbtebjjC?^5R{mpC=NGfwdV1<^}oxfTzkbQ2o;%4t>oq&^Hc7s?y4Q zs~T5F1ZOkn&uWM0E474>d#6Zf$|WRnQW!Sr8hao73Z@hYP)hPwR<3N%4t#GMJm(*_ zJcf$0d1Wrp>UE(F$>5uJau9kincOp4Yj64VYES-sOX@(S@8^IB=L6g&zG(oPhjH37 zdy{3K%|6?8MT=QYEvfe7I}r!ps8wq`$UVKw*ItvxU>mN0F<`51F^PIf?A~@DrCPSh zlzcNPvqh@A=7X~{m5ku{#l=chT6N;>iK!>6A19!S^)UsFF3mujB~lw4$hi1^N6R5s zr%>Btv$GFLNshz?RQYmeY7NpzmK2sa#;9S!d3oQHti-^4{Eflk=KXs+=bZ7V=+c7) z16#YGO>F@af!6}=p4vaB(vAah-x6ull#$f*w(j-%4Q*kwhTf(0p8g>8^T%>i&i?}u zP1@;_VMw=oRq3&nAdr$7@iT>eU-_D!`t9nLey3sTmn)^HRy$B;VL+tyY%SI1nr2Ba zHH!o(>bu-6TJE@b&E-tR*x$i#-aQA;RF{>;T@I>kH0ks=4SoE5i-}$*4pG+XLDLG) z={;t^c;$g;tUKhlb~}!fuO)rm8Uy87p=)>UIyX*BU2b(v&EhkX6Lb zg`NFg_&DQtwV^8S7ch$GDZcHYSg&^+mQt+vJ3^%yRZ-p1ju%>ju97-Z41h=&<+y%hBIK$>@d5zz{I^f(n5`wRlS z3r;V#6rHq$Rcq+%|xjt@N6c@d3@YO-IG-r@# zrwh{iRS$LuL5z9~wPkdfn7-|HG*X z|1z!x&~9AUv@Y+i#YWHTgoekD6KY>JexRCcS*d0%}#rO3LeeMx3kCChv5s9m%Yl&$Z)a7)W+T_W3 zgIN-t&k*xfjo7G!RKiJc2B!fdsC;I0|MYaLMtK5(cDW&r?o`Q538)TKP@4ZJjc!MNARbcN1Wre|rz>ta?8{7#_k_JBHi2o)+R zac(qf`9|HxAzwk8w=;u{ZV8YeC^wsUE1V>ZKqxPy_*1@hM;3^SO%hEsCO7W{y=mSh>x>eoT7=k|=}`(R}8;v>NGI&4`+~owMv){k7th6uZ| zdT+ty^I9;(rHXwv4}VsNB@1S&4LE;w!0gmA9aP#9KUi>0V=K#cw(B4g(Tr1@y>l0E zK-VT8`^3xd`1z4|HPMDUY^hY_BJAoUP{cv1rL=l#I`lP7f8RLJicyX1NKnBk?F3BD z5T!nMSo((eWuIZG(rufcj$JRStD+f`{k*Yz?`Q;{=MGqaXk+m4IUjE5|&G)g_$5{W7RWUo{Kym7nm(Do=@`7iH!Zx zr!`=poNZR>u-ib%*s?G)YVNXP3hM`D|HyiuS_J&qnZ&|~@Wxh|w57H?3MbfJ0^b@- z-|Z$RKv~}S#kg*w18VF{AK@17cS&vs(gf{+3?J4y*idYKoT4$6Z>E9$XV4q*8s9(y zW39#1R+p7I^_qV`G_ZR9qs%?Ki*5cRyFlqcrRho{=_$qLo#!jHP+vQM(W{+1 zB2QPSg{#b698NY*8)RCwpKpZD1$t7r^aDL`?m;n>7y*>!dpZ%ig{{H(9hoNeT*6H-dX6rr) z(oyN-gxB-)lTEkIoca-Eg#m$ns|A+395ZR;Nq=yVU(rzoExLGiUCA|pep4e>79n{% z6&7b;)E%v{uuMu*BLn{PA5NX+{~TH4y7cd(ujFp4UKaXPt9KA?Hv&4hPivC4tSv{D ziAirRW;IPNpN3y|h5wrEfrPkYk5bLb75RHF@v>N40gs@ZfUx#wIF>jyl>w+h)I%z6 zd&BHIjCe_a5y&;YD5g>!XZ@2=)$|0?tbS7uPkD1^ankjW)#HaCzgN|-xM~yL4(7Ng z*coS~{30%DO6lej(RcTj*nJjELTc|c-tE7IC2Rf3ZJ)dlR8`y0%KV~-)8L2e7D!jA zolI$AQDa_6cgpLaL-LNR^(Q&*KIIz%7~*k4*2cVdCS|i{)=y(lay*}CPyoW|AgAj4 z3F2i{4mNzTe-khSFC3iJ;uH1#I&oGrW8#*Z-- zADXGT|D}H!7fLI}2|P7(F_BX{R&9D+UIRSruYI-Z$Gi?Q*!IwO;Rx@Xq!GvjTB{h; z`~OtcKlVB}-EQ+cXedT;iMH%I$QyqTs0ax>1sUB2C((^pC6LAL1pv&f;(U4_%Yjgn z#J(QI51cijKMon`teEsljXCV!lTl?G$=UYoIL>uvNq_HV_^DQIj?~KXLd~BEXhp?y zMun0JFa|XMHDSRzA&c33ADPf<@ve?CQk! z<3~MmL~VaSFh4ZlU9)}Ixz4YU!Xt|@YCa5|=`H%uCnA5^N!y*nI~)4%t~-{cBP%d={Uo6-?b8cVy2+pe||L_9jU|korZ=gtwND#-y zD9vY>#E7G?7lg#%*T?@RU+aGf#}Lhy!QJVzr4xFOp$1Q-PHI129bi&7=eB*M*WBCU z=o_8%7&B^hWi{qjg}o)1PG~O`2>;N81~yh@Cdy}nvo<~xe#Y2Zj27QQt!^Ab+kcFV z#W($VcK6RD`!q4w?V6++m(kRGs2|6MEHxNN=aci$xn;LSOLXtb4eC(fqH5+pJg@wy z$rH>hSYcyPod}n*6Y0n@# zV}I=K{PdD&3BGZ>4wG1mo%hvW$F;=Hp*tGa9arlM%&}Dw@z(EkrxLz~t$>?g$SS1W zNm7#CbI5nLwHT6mVgs~tY#?8G@!@@YdZj*jQ-@KZ1NBgR51#mL-5J%gS^z1SI&J27 z1)UW^hJJID2oV(IN|1nSLd^qMJgpvoxwp-STHI!R+#kj;{c~Re6{>wi_x6i{fYF-l zVtbpdOBID*Tb`Gc{}2<>a~211ngtJ>4zXWu-DiXe@J$bGkMqsoRpsPwcH9q>@2`P^ zDO@-~ewram;U=RO?Ok6!9^Ys=FMf+fYGKlayiRR$mv%3GddJ%yI`Ni|EmiN76Q12$ zbH$xO?_Dn%zTYugqOJNv6_&+Q7w(-);wYL_i8Azw!|iwm6i5Vs9crROTh<)^)g3vaM4_XcAgR}Yl!LN zw_$Mwk2IdqL0wm9N6iO$C+hDQ!-8^Tl(zgT@yx+S7I5J?i3GoF}}OUm1AvSNRBiVnXmld!WqbW2VqcyK=F;!L5ty-R=m{ z*>^f(EYCu^l+Z#+2$@fUg3k;tO^CvM6XBd`HM(8zGl>Nr=@Fr9{3^l++mlDq6kcNK z+Ja>)&%tsoxBPDy+>VxdFI%V5U}rZWE~nSq^-Lg00yjw7`!3i^kE=!Oxi-lkFxRd? z$}?>IdKlVB7<*8y=~;cgClk41<9|~#9K+CL{@@6(JTqSL++GCKp+1l}W0^YGjQ!ao zZ4=%dn0bs*Y`^t~BID=VPh2DD$%1&>>-8wR%?JecTGM~kMOStHbXObvBI6>HH}2QL zuKm?>>+(LaDq&GXnBYq9ab>nBv*cTyFZemGLXn!*8_Fy72fUx@3zIYrxLpWS3i?R1 z@o`vv4}6J=bM(X-am&5(sr5KB_Md&w82hG5Q8Ld-+2EN~WRyFUX&M(Cto>|!Q`UrS zP1)I4kirkz->$NyaSQcNi0vW`(b;SOEB`)Se>On>y~bvmqDQD_&*=Cu7dYOpUn?ih zb-310yW-RWnc-|lY>DmR(NTO=g9G=Q9b4jSl0N>A~zQJ*Tk$dTU_$%Vh8AXI1AkiL+6ei>^X}^Z7Q<_ z#3XjKy!a%zx9vZ35Sfm59r1kL3z(~bmJ4Im+}#~}CoTJ|K2qgSCNN|oahl8s?rB02 zX$dglO=C>Ob*uiO{`g!dhUj_8XMYeK#bV#IUHv-}K9Zf=ydfd&Ur{yE!J9G=CmYyD!eq%h%@bju_4Py!R|rLm=>{D zr@s9HPZ4qrd}QQcn{~}m(U^$0fZ9=kBGM}f6KKAlj^IdRQl8pm-tkO(YBdY~y#{3K4>4n^>+52<=RsAL&TbJpUxF5*tHa>v2KbW#AS6t{yT7nnD@Bnqanb%UGu zx^XR2WuH)1M1EKT829}S!R@lJb;$hHCu8Sa##-mssQD+VvFL04(AgwhzP4+7H><9< zI3`ZnWcf7ka{gm0&~C!<_o}e9`K|Snx;mTp9woUoS`5qwIf>5eZ|FaB*KE!=!pXcR zmS{Zx7)zY3w@z#hrkt?g58Pe{(U~WCqDt~P#0QPy1{-BlKDFgAzc{R5{}K!TLO$#` z#gVAd*cj4IVemAQNi!CoCvs;riTS1F#(HV1V+mB(ciDb8`FCqPODq;KxXJ1kEMR={ zbI8t?k8>L^Ix4jRV*a~mm6gzB_e(+;sfh^l7&!+aMwV-DY`~kx3rVq(WadBeEnB1n zu4;To`~8_lxqQY#W+@KSZp3C>gqgM#&E~YV3GuxtaSmR>&WuYmr>1y!eirT`>M;yI zI^~e{e`)js11Q=?^SNFeMTeY)yOVK= z!;{{c(f6%8#pCV_I*jw)oZn#XiLKR3oC#kfmdeMSFm2hwg{&;n>#b*JDE&bP2L&^t zl`AG(tR@!a#}u(hi80d}8L}mhG)4r3ObRxAls>`M-8H%gJcP09ssU;7|BhaS{LFCO z-jY4(fS7S|0=f_C*n;JB8Mdr0r*}j~?9(O!1q39yK0i?S`j(MG^qk2fm$co%^f449 zGUGV<@0E`x&Zxy4R@pSa%@_STwB{3z)cjmfGSH+bQ0~G(MczxX2 zIja0p4R^VI1TrytS~LgwMB-jcnl^9rRq2ZqIdER>gPtII{#5F{U4^!H(F%w=7^Jfij`1f`J_725gi_iqwsWo{5p z3Ah76Ar^->kbd(YPM{th>)ivh!Yd)R^f1S=jHBBcZL>CPbFxoTb2I*oD!}-RRUn|Y z-_AWn)d05fXvVqS0^=SeBWD^8%CH7nx*jno{@R0?MzkBdJAj*BnDWdQvO&dKdFi-F zD!`xTvS?*X4};?DWX`ew=L$MEAhyLO!(zIrl=^wY*I$-RivXo)*pCt#PQ#pJM*G#H zfT0?N;MLXd&0@f3?lrE)OH%t0kL;gd<3-qvkrG}d0d-z%!T1YaJ;lPupa|b*$XI)J z>nFUsAVOM`%ILVDgCFSkOKn9jwa%Vr$JkxKc_+r zFEyWIgIgD7XJQY(&9l*z#K+LFMUgkv+K+DqTJL1vVdJJOz+c52Jwd?XAm58)GawB+ zTJAR@3A+MDF4J^Yqd&PN%ArG6Kad^P4evSn%ATKGchs_wL?k#sIz6~v6;3$56Rz9N zTzF)Zi_~Rt1y}nnK<95 zhrPB0N`nxSe9&V|rsoGC#dUkn_14=zG(gBfao~?T(VdQ&@t|zMD)H3m<$W^xekZ@0JznD)jk zOCCeZ?5@BP8^Mj6xzGmVH^A0Pi?=40P3hdZ8tElfS_$K`MzL9vq9T0GaX%Hsw8dcj zUcsGL949`eZk-u4r1Dx=S9@1#o1;XH!goor`as56Y!*8JowynU>T|{`e&pRHJ2|>y z*QBuc~Y^q9Cp_0w{ zN^Dn>EH@)yv#vRTif?6Xujxl&-&uTvNqaw##9{)A0e~OhvP*U+&?IQbiqQLn-37I3%QDAqw7s!)f~qnf{0a(A1ns39 zaC%9~)OHLO&-nUX8nMonG+Br!*SHI!KW#=B&W`XFLfvWWb}+(k*jr8aNGq$o-4nd~ zgLWNxmac~im*|li>%1GvXFC|wne;@VB-^+8;eSr7schpCa=c}Zet#6AW!f`j*;03h zS?|@wZ0xkXn2MF~@muyQOI*&&`IPDIjomeB;TZBwB?}voHRc>d23?Dzx>#|`YH38M zfILU+elUBZh-ApTwkTQQ6G>|u!C{D&iUf+RKsMNRpl{IG?j0R1+$L*pw+RmK#CDdd z)tMgisoK0#-anHAVPLaX%(`+HIydsW7`Tm{8GCaf9#s-WGeDx)4xbx*YS!5EVP3pZ z{LqZrFP_^+OEg&p85TCs zmY_^m^In0OPzO+L=$_vGhNdg(Q-twvGj4HGG1fmdHd7@L6QO(pq1B~0M{;4lH=ZVs zqIOHS1J3Jes>Uq|I&~h;G`+(DUR}DTP1KFonZ;o(G zFK!S*gnCpZ+JqZ6Nkp8uH3~2Ak&OI*^mvhPJT?Is1Wt`Mpmy+^q>`j=zzsuXfjQ~B z*eAtV`TC`0-5}Qi6d*+%0g^%)^ip|f%wC!fQbOCd%@rN(6cVmoVz{P zB+qqr(1Fjb4wz$h@S?t#)_l-8->kg89`7ek?c?Xe-0@(kDIeb9v|ci=7549$TLE(W z9rRus6?E1~`iGoVP$N-uQ|tmD+o*)u`CGU?R$k&s#c1>As~1T*betq#Nm$wUl$kan1y*W z{p~^2icet8WZSZToDRWve5)L2t2n=J$jbh$ijQ-_@u0FS$Ng`p^g$+LP{}u?_|TT> zjd&9Du<6{J?D(;k9K2)XGb1a%{t=Vh6Bd`g)K+JfE9+dq!C7!LC-3+XWb6Ulxk<6# z?V}QhsLd+Did+LjD9N$6?-uS8#crV&p#THtZ`n;Dge7Q+-P)OXSXy=17VCdFdaiZN zN#{WRC(UE(x|tD1Bc}^+>ljIo&?laj&}`o0PfcJVOJ4YL<){`m6(>|8UOB+8QP6Ti z-cLso@L1qyh;bsobJ=MO@&)3Idv6)yW7=QyZxYSZ%$MG2{QNgq;cD-^J#le*(mi*v z5ly=wg-%Go5z|XMmE3MK78$`nk75XDl<^`0U$FXM8-oN8HQ>=P@A}fwtXU0pjs?Lg zXoJ~TG^-&_!jmVB|KaHNJ8>fyY#vLq&FDep>KD>hWCKxqgXDw+dV++rOD3{a32UN} z%x3ZDt^tA`)Ljy=_-ZZUKUqW_qF|JJv4?Q^>hdxp;B5#EOHIWOZ`*AG)|6WQrJYc6QQ29aoMWXX#NUo*?C-r9b z9Gu3ijN(^)jD3T;?B1_cZbr4DKH8V9y(qA~}j z4_e?-i{HPoi8DU25p;L!u$-CxZMx#bHkm6`beNeGtDdLwt5Wn@dKd^9q@0KgZR@Ke z)dl%od&+yMz8k`?3A{n1lWtsRH+$d5;XJNY$=zr-gZVHdE$rG{LvO6G{;%2HwcxDL z2k9=Qb9O35z7F$;+%)KE?}KK$jNWp15HN^y73)6Ay(zgav-{|-FF8asNOj(xB!KB( zTvQquSgq6(GOWdio1WXi<CMs8X6+qDU3Nxkz^D(R zM8yjLSXycvaT2q>vD|Yw>f?wi9pW5PYB5YONtDeV*0efuSq)=5kzbM^FhYR7U@PV4 z%iP{6+@+>3ZL0zQQTChla}^F1nL`q2R8mE@z2A2WQ32Sp%wm{wj4nJM0d*91y>~AN ztnK?x*b<;$5W%;X=r7UA&5DCDEg9|B*DSAQH==qg(9rW02_Dtrd3!s`-NEk`|A0}b zy8uD1JZwc27upt1{o7<4Q zfKXe}?=vzRtx-3_BsxmnuU{eGw>pNOxceYI9$$cnVHiTU^XeI6D5xDIZPvzb?y&y1Zo>R@6LD+|uyeDSutNo=GfN-o@(y_Z>d5w7mou!^E+1vMMY3=N=0_5;>Y_ z8^3x+Me6LQk!Gz6wp^vNerX~tc$CA?N{46bdQorl=?}v#A{2unuzj@eV-?MCJ?Tpg z@nT!v;A08jgvAv?Zun=U*!gQ-#~zh219c<;qFkOsmy0I2&V(JIB)(W|2cYQ~ zGv44d?0)?A?w@XIZgO11j8|R3U^w~Cqma=iAgKpjHoG`TYT%w;P?wA}X#NT@q;{9b zh6VYp1amS8<#Ju7#ZmEaEK|MMh5vRjFaLss&*OfJ;B$X@)tdI?D$<_%CB#;wArl4*-PwMs2HUBgTIP&rqW(wkwZ?4fJn26(c`gnA#>OECfhHU6*C)7 zJSn~rpKHZV-*HbE%T^ysd7Ds?k47|YKa-(`oU!t2U*}P~IXGT(4yQl8TzYzH1wL3 zY;U33JeRAGQQ;3Jn6CebK8;pdl8Feh*0E@yRbG}&?(Orm3lIM6<+5S|+qu)p<8;y# zF0aWzASph|3{~%5?(@L_j>eEm#wT+6-ttPN#6O2Ekwp6?UjxT88Dx!QSr6MR?Bm3~ zIbA&RGTPqTMjtR+gB-I8IB~xb6 z6}HJc4~c_$H@0=PeL&?)Ent`{UX&XQ{%?$QhzA;LT{!3*?1C--Dgcg-I5HDkgp|SF z%nY-om5}a@VpZ^+vA4CMqpy3N6^POF?hISc+(fSehZiCGmV$)0$0;X9k4lYq^Q zvbYu07nP_TFVtXK?))mtCv6tw8FuOCJw6SOyTRppH0RvnzG-;ux^)vq+&i`ow_)x> zTgUjL%BIJ$&r?e@M&Y+s?-+Up0MyLN=E`nIRIC@!iwCt8tl4f$CPn7b#-RU(c_IyE zt&ITxW%s@&m}iU% zd1}<7<{v+lux!{aQcA;yQO~-%``mw4q?znbDwg3xBfGT#*1?MW78&{<&(PFH<>lpy#sQ9V!X+qVXivq z2Zux#B_p(@J3Ryma|E?p4PQY?4_L2UbO22@@A$_X>K`IKi?WmUl|G@J&dD<7!Zg#D z?*}K&<&lwbNVl~gM}HHWfe-FYZ&de2j+@UCx@MD33C*_gu0tI1J$?N&p7S2vC*{;(=l4pJU5qS_1?kU1~NaN!E)o z>I?*W{8lu1BpZ0=R6W-PVaod&^YqC?dvb{6YBt|JNQ?EHPR3V&sil%f@&xbD*X5(5 zPaj}WN;lG{#b@fwu$L4 zVD&Yq2wkgM##SFtM<$n zGr(23OnwV6ba>H1>mzj4#~VVGy^vE~4V^%7x%|tdnxDg-pc2uvbpPSFuVY1IEcha@ zc~iTJNbr}xTu`RESPeEgBx-Rux020??6S2Q_hL^ukQT$9mep&`PoB8NgHX7dAryhD<*Y7mre?FFt=2((?2KCn@<|2ve9a=Y*$rMx;$tkuI zn-*yiqIZRbC+NbJhYcVFzrFQI`B{0sKYv|}>eecb@0j&VqAERVW}!CsS`0K}h}PBQ z4NBnajE0P}OFFqPF+m==%}VS+{(p{nUuLq!Q1Igb-`=I~#7jdrF&4C}{!wo)Pfz~< z4NN$%;g~CCSM8Cj(Nl2bl)cz1(I`#ESMx*?r6zR}!wzBvme*@f)32$!S#+AH-pf$X_f;fk`Vp?bvf+5`?Z|rBNRDE^4 zu`#sQG~D2{Y<^AYlW(1?UOfjxul(Zt+d!OlSVna!eU?GLG&G#VEUC8lNSo#<)PNKa zgsI@jn(lL*?!#7@;Xzxu-*oK=HC>w{_nWD_nQ4IHIyIKhgNmbJa8#4JxJ{2Fan zZNYNg-t8_?3pWxBhR^GKg?zHVNzMSmxk6Pv+~E908y+1XA9qUFw~Xsqhhcv` zXLm8&xaqR&MsmBqjZ1agWH|JC`>^J0n3)wPH7X(Y_fWQmpa5!#zr9H+_oAF2!sn`D z`3!W22_5{?f95MCWQf<>9lAz2h=d_6GGvpM>xF#VO;$TB0>*dz1UC9Z@%G`XL^J@c zvF;y0<%xqvkpMRVY|7Egpz^mb2oznBCMJ%kVBS_Fl{e%Ur{`?}hr*WmdYH(5z5aZ5 z;pH#fRCAoT-5X2!vcN>u7})yicVv`@GIwvfFo(Sp7Wg2$Sj8?*EP`rba_A zI9*Cg;D0`@(P2@MvPrCf-jcmkb^JdYm#mue%Sed0ErCzq?52gRc&|GB&1$d8-Opb_Z z0F5x%2v~1%bX^_?%(#dIH}7-5A=>3W3L;)PVvOyT==$1Qx9M+?P)So287U9UP85K+ zl=I%SAJibH`jV~7u21UJf!^L`yI8k)((c`-Cj%&X%b)yZk4M?aqlt_{!rJCN&l4|B z=x*F1iAi5lFD;v3)2@NVScZe8^w*VlJ_h4KRqE!4^oRLrDSQjILgG|3uyyU1KIE{jQ9!y^Iusc=u^?W328?hzXm1|F&zlPHht+w{w&usFa}2G`yX9sQT;^B>G6Ozw7(DtD{3^(^M1StNtAfK`ZzIC&j-bla zS--gPoPdcC89n<$utXH9o%^93n{f~U1=ZW~cN`>oRM=wNr_Ys> zDV{}Q{>1#!BcvfCW&G53r|{i#VI0t_YqbA6$ixEwnGKeNSQeazHMN#L zrKQKdK~`LWsl*kM>WoJ&khfaP>bxkJ@mhg-hU?M^Ob1nmTOmUcE`Q8O_oFP z`Q2yDN!lIs*#f;Q^ih=RI4xBf71DsiXjTYSq$G4;2YK_b1Mc#(g7! z4UIdd@-3YNziu!eXbME_vQk~N=W)riC%}UkrB3bMS%~3ux;It(F!e5{0rSIe&4L12 z!o=ZK86E~dZMdk8JP4!b+kY5-S7CIf_N&~NSb<9V!tVtY{v?9oj8e%sbUL;8drkB2 zwN6l5t*Xw-Z`C2m{X5%q=av{M>lJXHTQ-aS)3lLZ_G!mRQOIwdaM#rGUD?P_{kRvK*5n_`^ng2tUYjX?M)=#z^iZGu-wcd*zEPpGlC^jPNzhS5Bg?f@$^)!GPRn}D;~ zB`y8+kH2Hty~V9=a|>9?T;}oNAMDdN)WjCUg||EH-6@^^#bT8)&$Pg@mUJ|2!TXox z=DPzMs!4Z=Xx%*T?m-r-FkT&5v(cOt|1xc3l|wP04glHTpQLYLx9ELi*)%Y~oC0z- z(E*tiYg+Fu{>@8jw)@qhe@XQ!%pVJJMvMYNr&nkntN{g4y~vlJA27o_J`WUTD#YO#sM2PB@z&k7(t(|2=2RCyo8ae4ckVucoCklBhJZn| z6W>N%!;K5-bcGVSN0c_0I*7sgzD(&Z+C;f0%k(QRU1S{@z7I4(X$;MPiutCL0|Rl{ zq(E_z0Sy1yFVUGn$*JieDJh@BEUyNQyWA&LxjUEO6!z)PwQJ&(p|RzrJDu>_tlhx8 z|4pY930wC7>!Kk$I}k)L(tWjoeMA=7!L@wOlJMx?*E_-5t$puQf#Ws+}NKL27thm*!NhQij%9@}t9_xGOr8og6;pR=%D#B$(XV8E_N;<{v z07Qu8(U&@me97{e$AXp*iM?~{t%5G$EL2uYk|#(k7zrtTaie`i<`!3}O4I z{q30=xXVl;jeiZQO;RY{55}8o0E8>ua@{Jk?0}tOxUpgfeUs4 z39|cOC4PP<&WVW3y0-b4(>I`q4ONHE2KXZg{wASbW=gdptOQ%pwyTFtVH3ZXmgpGp zt4U~*GKSkqYB@10*<8Rik%Dwd5w4+|t(I7^KFc5(UHWHuo1KGX9Bb-MOPwAWgN`d} z&zK5Q_x(wkwCUJ$7`pa^ySuK++w4jLq^~gRtD!Uh;+TtDy2RqR01VVL+Nl8Bs4l}K zw)_x{dW-!v7G~5kP}Ev9qw_<;tYH2(R#CP6+(&Je=WjYl<7T_4YWL;n(Nb3#$R?-D zr{k!4F@J3nh4G^Hg8e?wBH_5qpNy94&EdYtVJA2?L&Z>`Y-fs>tVz9M$y#rot6^#z zdO-qE?j=*&ui-#QTwnhq@)jVz(w4qOqWUeVX%9TY7+-f-QZUS`cmBL(qUy;of`*0R zTxfC2FH4&wMa_`Yc`0Bt%6Vz+chFv=tI)?}p|>U(GJocapQjqE^U06CNo2o0zm2jJ zo1IMf4=3hx!S4ubo7!Q;?f3fXxQe^<K0`waZx!ThQszBE9(^N$NiwiPEdcv?T`2D>dL(n)*xNwo8Knm|fuF zYmg=KGmRGZo$sl?iknhUc*OsNU4U7FTiCg+GZ`{=t2s`;jL>(zC9wP{7Q0*TkPW|4 zkg6>Xd*r)ycG7PLN!O~GWF?qGZg!+-zqE)cxQ=lWkwS@$SHW8E!gNzTigKXWQk(s; z#W+(mlg*rrU7r4wd8TXJt-%Ec7(=Lw^R1O+y}5b!q-w()e~r#Q02=5h&E$?R z7-DOab^@ha;>}M=^H|*b1wwJ~MmpUxT*tBk*S!2Wb$oY{Ws(D&J2S{0&x5fK)gpMj zApvP9enxzf7nU4Aq8wYp5&mXMo^{$KO%sLvEUjh6CW%_xGI4B2-u9ab($d(C3SBB_ zMHCFc;fZh@a9OQ;C6p#+rBhJzg03yk`#+qFk@=XpbD~-nLSIcLCl`PF;7BF=HRbJd zx!|hY>BUDouf;bV7#sSN$U}-rHO9TGCm$vgkTXbAul3fy&-|e8I=8Te^xW`O03F)& z=yz79V;$m#XPysX9=5u0uFyhvPGpc5(DD)V+RcynmnJ(g*Y{gNm0Z6wAIpJ_YujQP zJN0+nL6cYh~Nb?`HrqlGC4uKDBiZC$r7OOn_E_Y1_J?Mboc0#7~SRb`Tm|iVXyn%=iKL<>v~_-t9DI$ z?$RXBgrP<_IsYxI5TL#9HI9p0+35sio712%ac}RzU_MECQFUq7!reV6;21y3{_E55 z^4QR+m=?tsD4v|cg7}R4*3}F@K4P)ggcginqxoR(2l)tOP?-~__^*9LMtNuedtD$C zh^VR9*hY{%ZbIA6qRt(;F5O9^g1?S9JThmCP4{F?{D;K@tu}fO`QAU`{ixb7f!Whj znIA7#m@8w`Gxa}DQw9wMjYB)JFBPrH?@O+b)(e|~SpI|TlLSfA$f*6)_Pipp(_15& z28-tHN?MthLH?OLI`Fa4?VkcAt7X_z+DrU>Pm2uRCfT@cN`lbepuanAVoEtd=ue`* zyb3oE7#g|x?hU!=0a>((O{;3Aw}Y3+CrIehO|b27SRt^a_Q2g=T|pa6jwy>&Tg#}Z zq?Bleiz<*IhA8k&!%D+8>#Wko4Jr3_Jbn8-zRmayhgMebA%oCBqGn8HJPGiL?Q5Ds&cR+j+PQ(%PXkll! z5-c_^(G}OUA$&$3G3%R6PgU-oKp3igRAN|JsLj-uO8w|ro$L2zyt6DS(jT|e5>3BA z0zBSTj^T@*__P#sO#(%xkQZ&vl(IY6Yd#7o3Ui$|0VqIkThs+bcRC>ij&7Q5)3ZKe zH!U$(WmRhKTe@SSI_#J3!F*GA8XkVRfMh|mdd+8slT{5RZyj?hKjMyrQb*Pf>KD-O_MI0~A9s`Z7>F|Ybzm!Kpm8AQCe-iAc0hq|D`icvT zP_dNXZt5QLlvOs!e^?CRB>Zytobv{#~g zRw4RbT!eG(c)Rf@-HWalrgjfl(?ly)T3(a%jmn9`EbT>j+K6~7oulaEMtk(J^bbS`^mjcZbN-5;>BUx`Y+x1+eE7n&%Xi1 z1%cWVALW_z@`DY@3ruawFD52#Q$EpRu<$S0AiONLu0ku<2B*5P5(=J`CbsNJ17Tel z)_D9%>%iP>H!6={xM5&!BIqT2ZcB%XE`*%p<2k9G*@ZCPw31C8mEKJm7Q1zcq05@R zoKoi1C+1l<4KiBwcMCWHRit<=&xGCwVwy?=MqYk2IF`opGE?r|Fz2i@F}7jfrsk}3 zwItx#Uw_(Vag?eT=4njtu3>RhNSz9Y4v06hCC{xSuEI*xpKZOuNqez(9`Uj)t{US! zUCF2k#J{-(1KOzl(S*}_oPEQy6T$Gwz?}2S^^P5A?Wy%XgJ9t#Kma}P2uI~oduVxC zW>kPr)z9(vE@G;!|BRIRET{s{X2S$>#-~Y*t1YzmTC*93+2YT;MfKS!fbN)hYw0D* zA=eDM` zE>qw=q#*JKadH0F`V|HZ<$O0eHtCu~MYGe8J<@J@u{QVTrpoFxRYs5SyrvvCsmN9R zq#-iS^Zo++`{^G>w--`oIl`lIUc=nK8!`1AJCE@|kjb`o&6J4uKmnr|ipPAG&$%G~ zhn0}U7#()4l@Ih}nmUHACIX@D?yx3Lf0abNr?!C=O{ALm`WeiQgJNFaw?#ux$+MJ| zGb^T@QFH_!zLSCJcO7&DCBYXjOkH^8a8i6ds>(EV*w`o2P=RcdtnvzABvI1uq*(7^ z9o%$wVAzza_mjj?yp`z@TGgZQ)c>$Tf` zV)@d+aleNkfji+F11qVO(gO&U~9g!tr?-=mdQ5d+ChFEEQ)vg>}y1R22)k1ebqI18>x~o4{ zb_zTr#($RL*~8<6U0n?V^;`5O4Z@ntnT7xk0cI^yd9jA&yD*=q*I%wfB_v)eJ%`54A+X?caE%2a zi%zO2>b9U=R9CW{lPBM>IPAxnaK=-wi{0`#x}~q@FHX!Yv<=?USK#^_@C~38wi<>Z z9qoV6H8xf~YXr*&$hkUt&n1byy|Ct|&lfdJf5N9i2lfq$W2DbbXsfR##B^UFC0}n|+z`&vw0g$dABfW?AyJcgQ`#l|Qpv4rha>Mg#-LH&t?O zvwvqjXENj%li%a~<|o+Ltyo-1s{~6e7!D^iZIFPx-s#LPFQ=o5bhiq;Gwt$Edo73H_<`*c4!4hUTH%#{59oHE_+S!<)@W!4wwcp{;+rQRYHB*iv9421 zw<>~lzKH1^-v*_2KlQg)P&c)kby+#NPPFkMMNeDeZm=cqm+!NQ4C0~IHt4(i3Qu>lEgZ(oWijb;m zudd~XF4R2GhE)s<%3e#$kzyEai)+h;+~Zo$En8(Qb>6pzltp(mT!M=$!snPP;vhG}@0)b?pL_A*`q$1Y`a7?BsDACq^BL<8t?w9lC!0K~``0rQ*Ih{d_6pr-MAAih+XuVkYP$4DBrtyp-SaB>7 zJDa?rOjq5zqT=*+H}B}vLz`kcDXq^xS=N>S|8NC2j?Ce$M9?GNfY_D8&#qmT&re12d0kj}}86+{C zxz=b9$V3|EyA-k3(EAtN`7MCG$qumBSecM-HqC9>>_O8#%Jn1J&B^UPhG49AT(LCq z!-QHcaB05=OwOZ_06*1FpoH}3RlIf@bA=i%vOMUI?pP~Q;DN;`V@D#vq-E1bgAecP zpS*Rvc=zmKF*9~h#Dfni_5rz$J5Rodep^g`^WILWxI#VKD%ToXja^dSC&IDSG|xhW z5+GYf&V%SgJxVH1iq87^fawIxLV7_o#cnYMNEj-1f0Z!_WSr3M z^BZ!#Ff1FjKl;I0)vxd3~+gZ zrGOP!C14D8U-ZpFSgKm0JcX)MrpJzavRt>dZPzSjZeoch*?p0_3nCup5IBvH-89wG zB&4DWX>$ZouKKXB8KBUA#FliVjmDYmDX96@T?_L3sXmbnE?@-sl1-Ls00_%E&{s~f-b5i*nbntHN8q3LZ7JH zA5%eF!aH207lws#^hL9Vi34uDpwOugUO!rek~S<0oSVhcicn~1xFC8S*7T=Qn zQlghiCHXb0ji!(%&@g?gdoy%7pe-u+45afjG7O$VCHe8nndH-JlVk?qDofCL_St{M^?0msibGtUB2jTrQuQ6#wQypX11$3JbF! zfi#Pi;hG6J9Gt%R;z>qMd{6cC6C6VU-H%ze;x>giXeO+Ufs$bSZ?~;BZjppN%s2++ zGpV{^j;X$!wS!}T0C4e`>T``pKG0guJL66EQ-p}=H(NqG`GbU>Pk3+|9L^*Q4YIr9 z?S3;efPR4fA*0giooy)Z|AeEkCEY0EHoa;do^y`=+K(3pD*$G(=uQOOZhWttn0ZaS zp(Uj*b{?QvHzxt2orBafZtQC=O9nW^S3jeg*ZV`$5&jO!_0e;!oopTY!HYL-x8r0B zygZmZATfSu5J~aYc*)5mSD+EQ&c{>sQY#fq9w*xX9K*Z?k8)Dn5wf*3-B@E2f?hllK>wtwP<+)<1^|Y-2s+Tb)ac6ve1M7|a}% zmSBHduh+_knp9ksGGmYOj;@Gq=0TE@q8BSi>AZ#LvS15 zOVGPD?-$e6OTO&KKQ0abb~zJoVJ1j3DTZ{!|Wo4z=vNOjaqb###YmKaoVWZI#v{s0DStWAjjS0t>s8`700lSK+ z)oY|CjD_UKZ{E39{^ zZ>?Exyp18=^u~}@VvtyHJUBRXv+Xr-H@Ae$3?5tN{H+=1eiHJL zLolSh-r{fC==r8@UW|~(=%KGxz?DbA#-=q!$ej1A=0`c~`r zgXNs3*@eBKpZ4>xe5!_TNZwJ8RZiTT-pWV3nLesQ$x<**VB}G2s)~7E;y&10rO91E_V52;t-_cD z^O+OYx@_ddJ``wy3ZG)7KVjd1ldl>xI>XxJLix!=Jt_^fon||OLOd_Z=cZ8+on6p5 z_}oZ%pve@6zNx~iNW%3i`k8j;L99=_l^>d#Qx_l8Y5q!S3=3W}h|8+|yOvTp>8X#V2|2)QgWbsC#K%`9S| z*Oq4zREEExXvs+0i&t2DYKK)D{n~8EX6U&MZFu^kjUE-EDAGAmOrL$>1%bwXccU(X zAa4IRR2RXQRJd;^uI)`hKs4|@GAWbq+dx_sEhz{m_fPy7x7c#lB-N~MRqe(X(PwPS z2*_~Df3Xi3za?Q71}->Y4m*!lGEE!4(a9lG=4AZ=@WeWN^bfw8yJi2w`ldp;DiTqp z+NzqtHSy)H`{euD)HFKFch?tTJMAqj| zd!3~4@4zuO9j@64hYT^6TU8s;K-|l{T2A0MDXfmYE)lWslb@dP zNDUf!&={^f{^7V$#qXs*2 zo{hQvc!H@MyB2syS@1nVC}N7doL`;&m&!9hzF3kN2k+V_faE7V-_MAVBt zJT7`?4dpo%6|O$O>xD0(Bx!B|nfaKzUgxTq{Onk0V$c~KHbWD zya7P5vvk?Z;3y23+U;8R9H$I-^E#h}b%x-)`u-$Pi7UJp=r3)GTn?I=EeMc08h(45?W_4lQ`3BcyiMz3i=g~ZJb}x2UlITbOsn-|jT$ zB37HO*pZH~@@;+2%ek}4>zxRqym+zlh%XZ{pFANyO=)bS%ZYGgx6pCq=%987hf!0c zSd6gkuP(s3u`iY_gs|sTgR8JNVY+t(czEj{Wu37`+;L{UsQu)0bVV<|k#iy@IknHx zXpbq9;`};FI&21wL{37Cc33~K9gOT!KO?fP*zNK> zj|ayJ2_kmu(MoCHq8hJfZs!CoH6Q1#vM=;1$i8wyZ~L~|49iaZ9Ng~ZPAZU7evLxS zl#RAmyarTm36)0}2kKLB}pia}rRGSr=`J+&vM5jvaOI(sW-OZXK+ zO-&<>H442>o}ZriTY1S6r3Ev{kaHyL?~6%-;_|QwX|>p|_k9E0+^@35lN|`l7nr_# zA6#nQq_oQC>V625d@Id5SaC_@P!xfsFx3*<0b4t|@A_!o-oV;%56Du>E=y^4o;$j% z^(B(Qv^u_K9xEU@u1|_JpIE93h~g;4(7x4o`ocXOk@r$DpH;h&dUqIwo`+H8IUn6G zVLmnS-olx;{04FzPG? zmz<+n#aN{u%kBId(epLHAn-X#L($-doWstYfxc+rZZ~T-VydgV2p46S+HXMr1Pgn` zMt>}b26t%c-JZs*$rK4fuDfH^3TyHciE#G%{wLZC(~rB`>d0GK2I^g=^zhhp2aQSQ zq@Bj+jRtk7k>4Qx{39oAHy6hZ*=^vVgP3N=$stfHR#8xG4SHnn1uHWQB?VtdzF$Si z*7!bY^`pZXERSA-9(|UsJjHZea zYfa9dW}pKy=opw!%oNSyQ1i%mh23w_I~AuIB-PY!!gV`b$UaX%FqaE%KYXS+&Ur01 z8c#jb%*K7pce)0CrJL32ekVmSUri0r}#@Uf4?yf|6-)wlF zz?_8UO&DG2RItx3Gf$Kz$5pD22FEc6P~(W#k4K;jg7Z`^o%i zHSI5p9jlJ?1|t%U`&6R8?5nOvxA)^ z(mSJ_kM&-!nq-0-MV$A<%H4R+gnk|vXrQL4f7WW0wsFfOrc-BZytZsgMJLzYZd@3- z;sBe2HxZv7JTe!Vnc4q|TaH{5ijIM8kAs9CQPCfRAgis3Hsi8hn4@>qo|8bRwf6|O z$ny1vm|v2oUR*ZODG-3f=CmXBCN^4U@R$<~@}WY^1#^Os=+{G@j5&ScB&G_Bh?SxS z474Vfd`T4&#`@YNsfL(_+NEUcs#3^iaMrG=;{1x;ocD)xd$A__9B~M&x~TC;hq;P! zzXfmYV0LEz;Zv<)hp>`68MUiQf>TK$j=ib7rMjP6&c}zH_);%Z%D0UL+*T3y4hA_SlqfX@F950a3y~TmQ?-U zEO%aF&Cj8;Xl49tssEPjCb+R}(4BUi;M!>=hT`LxPYm(XhxGFOr6&i&vr*Te`>mPt z7$Q#}J+5+?B+F#eVB<c*oAv%Hd0auPRJ>#3Q4U_8!!5?w2xt7c3U~HW=jH0@e*a0A zX{R%@jpcFKCBxay7-DPEsl=kcQVe_GThRx}p}~Va5N8agE1>kTz?wr^)tV9HCEj}# zT$SOWw&wu33QATiX>Yov^%X0|rHElr9iOZ^AL|oK(HDFyQL@h&n)=Yg)_N^Mx{u?k z+8cK}wW^K|bf3usSYSA)75|ak8azDZ3C6PH@O z&p3fFisM}Y31EVl$>dgXtOw@ZQ-anqWE5<=Mxjiope+cQbzWdgvbMTt68oZ>A0;2EW z!UDgPOV!(p_4?R0x8!4=bMiAfsPHMQx<~JWN|czG0cS(((}xKHg*mov1!?hup6HDU zY=Cd5%ECmxveRraO-%cs0t<^%2elMGw^@R8uti06Jui!xW+2y=XSop7xsJC{DMf-~ zejKP!u!iRTz!p#kb)^du9D>fnwTJ#viX+P1L{^O0oZ>A`Ly#_=P{l-pz6~}J_Hgmv z5x(!JG!`1aJLcD%I2{>!G*wP=FEeW`meYN_@bb#RTnZ? zX~DTg-e%9BOvzOj!9t#v-ld6-EhW`k?VUR`W}cFvj9;M!}d z7DnN0E|6Dw^5m~JS2P6&kZp}}EQrDa^8HTx)(r}01q+jajMC8(9i~|Pt)9agJLPgh z3dsRSrgW5NV!8Dx^xl0iCP?PtdG0|cK^a%aAiLT!{f%EgKtuR+f7iunCkRy`KwGU!y zr)QA3xtacc8h##TZHk#0c%3VC)pvW5ux?nE1?N0GptVE1h>U`~C9NHfU0bMx=ML5*EPb-@8-b#c^H5;5EKxH51(gh_poqLZF95=5vS*Uv@rS}B}mS!T$ps;oC)yn;@L*LpVlzMpPO$qbS#sd__XoSG12J2 zFb1~5qff9X+rPFx<$4Y4?QtJ=GW%l~O_sKd1alE0f!wl|G0!{s6tNw)9fj>g?bVG! zb77|^Zzdi-IChCNB0SIj>}b+%H};!moZM37l-LHzGH|hE2;s&P)zx#ti4tIAOPW zm$xY+hqonFE9lYwoFFGP}a2rKC-0{l^ZCyUN%^>vqd|&O=>2_6j0s4H_*rm>_ zch_RwB|HiNJ4e)}w}^`SSUs97*yD>SIHT{v^VRN<|Xc}mTo4^ruB1D z8j-q*slD`8BZk-0H%X27NdtzlEbdq`Sf7&!vggP6Y+ZCE%6~rsXQrh1zp8VyB?O7T zDP6`Dsid2>83Kj=!)LBV^6&!{+H!PPo{6k zKfREpQ+bQIizIIZ7BG=Ykl~fi z&1W$w5;h84F%D)?iB4i*5^CfHG(|K?;n68nkiRlIhUK(F{w5}Upugp6uXn}=YO*)U zEln*@nsgm!)|-kdiBkLBhn*Wy6P!8w0%h~2xl1(ykN^fUXH@NALi>DL^|M)-hB6wD z<7D2PwQHJ~RCO7E%6cd6 zb32>3+Owy<{EpIkWA!V)($B|Zv}pqS5gC%dPuO?dEkn?hhA4c5>lc8+O{)-W)~q+{ zkE}HQJ4=tc7CXNE@;G-jtc|Y+eRIZ!j9bIJiU&uEM46_b}ZkicLCG8*XyW(q2XEHbO?@&Bta#RJm5V056i}Fw$zj{ zEC8^+=hTaprOvlb*gw;n8RGg6sp|;9;_Gty_9~aVN=~!vwZIiV6>QEH&Kb?C)C$uL zkwwe1PRYb;^NiI{`ZKQBiYI=n1BvP_1xE$k`G%58owDEy;5EP_KzCt&E|av^(`$Ez zxXRW^iHVDD@akq^_DF3nw|bE0J(ZkM`wR^Xp0`=LNGq&$h(>?#^6~ZHA!ScJj>6M}@7X zvYv2@xD3Y&`r*Ax!Fg?x(MiR4ovqs(77XYl5xKBXW7o7rLmR6bLCx-Q3s@?)3uE8) z^(U|~j;{;D|4eXIRW<=8cj9zJZoZ<2y6}t^SxK#}UdGR^NYmAQf>XSvEM{%ya?1R|2%y;xR2R}s;J zmFE_$6{$%$c+tez6*ww)AQ|YkvfQwdBTp%08@l1OvS>5Im3L~vy~~F7L+`_9Q%$F< z6litYPx#XpV?c3et*F=gBV0I%P7HO(3JlMRn@)roz-$;9CuSY;JA z>CmVIX>GGoW9=LS2j87+%u}o@Lr1FVE`Qc3@HCy;L&MAEg084c)13|O8|O?ABQ_iW zUX*gNaiFZak!s=DOxj-AH~fcntbaRYN0Zfdp1Ic3>lC7-z%NNKIJi%>O>#h=(O}18 z(m_p)62;`uQnBI%;Z2PB^l`92iu z*#RvpS3Ed{kO}v6CJ!(=W2zH(ppc+cQ2OzXb{npl@;6oI!N)8+y7Mm0^mAh}jGiK% z6vWeZf2?wG(95mdB@2E9gRGES;Sj&2thyxr2SM4T_L zoguF1v42>!u=Ber3OowlXIq~bce35ndzsq)TtF|Zgt=I`1m{x({;rK#vmgc(QvcxY zN!2aZB#$EaCj8ze2>}(7?8`^98;?NLVxe;Cx&Af7%3bOAP&SzzQAYy9ZgoqZ7-K8! z`jyqnBqaEO38#xup&RQn-}^=JXAkkQr2z{cb``N#>Gy>*jW!)>Z;vu6>#w%sX4J_) zCIOHORkLV0@lp`^BjG1i^tV%R!*r;r3}rRL>pslqao!WguIORs07gSs7%j`qeEf!Z z7u9hjL$5C<0|OmInS1P=>MySkFs!UE3LFm)HA+Zeh^IO0bq0|dath>a)SPZ^Rq1o!=igKDBOFabc*Ba8cECk)ABhnVF@SoJJ5gWbhg`9`-0_q4^Y0^zabh| z`fSS|j(YAlnZoj-dX#LWnc}x#da8^u^yIqJ5$+WaMM3l4zqPZrlR zaL-)U(z~<#E!`knadl=9L;$X%7wA@ifR~9H9>$JuE+YcKx4fZQM@VX(?vJ4^&!8%B zTK^TfX&vsd3+m<_mfeZJY59TXYE}XW{4~ZU`J?t zKIyc6QaNCl70N;?yhrpEJ2>dj0ajjeA@>*44DpE~bHsHBj%~JpO|HTvmc(c6y+gRV zd@;cH$fNO*>l$LL-Y8$^p7IIZ@VrU#(m~ncd{>NXg2Z@q z!&)-~ZS0o_J*SoBX3)3_SR*AVF6GCSC3A|Qudi#oi1g-dH2 zQxqH7qCbcwh=i#RPuR66j%PT)*-?7O?<|4_rnN0$gg0?)4`}V}nKUi;q4oJm-KlJF21;ej! z@Z%J@WFdE9=tZSF$`n=S7|mMpA@Ck?aCQX)thsNx3%!gm>p|@{OeoEHJ-`8nYC~Z6sFN} zO*jtURd~GJyZ)rU#I_uimEhF@J$vP?lkaT(`6EMff7DXhDvSkYUy{F2G&-q^j$oc_ ztl1|@SD&Tk)Je!t79FHdsOzK&w&HA6;{b{Jym^FZi$AslVXV6cIrep-F!PFBjf6y8 ztg7{Zm$(f@ZAY@)kv9jIAfEy8U6XxaKxGL;Yt@KM{Gpln4KhuKOhK)${Q#k_x+;6*0!v zmMoUSfFSvpKvQq%XjazZBKMyUfQoUNpuH7TI$nm79VE;;7JOx5Y0&f}@Tx*h8zcl( zY7s$Ae(N6gR=X~!%4_Gpg3+E>`}ycpC=D7UD)=Y260nh=#tm|u25s2oUKJxN_H|2< zSP}W5w*sK^J^`LTZg~VTz4{)jl8|T<7|%z+yoZ3VS+`W8U2=z~r?Z>W;n5?$#nd$A-%(k8PZyQ+a6Pq%E`84JU$+`emgcrvWWL+Ko}3(S z7+Q!Va=S!S(GLKS!IQ9YDyBuLh>ZryS=ZR1iZv;oTW$8J3c1@-FrSgfJsbIZV?H`5 z^0<8sF9uB`ZU*YNB&BA60$1}6kQ+~{c;6GAI^RS|#4oR~AJwI8L!|=1(Og`;rb+XT z-n2j*&3yXPZ%+47;03|WE5B|;HEYLgyHw-+hZYGD|GT8^jDw@;b1p5J*l;6Bb$SV| zdx9d@D^AEyOu0Rpq<%Pc>^hQM>dfZoipI$&eq%?>+3_Qmsjx`>bx2Cj`u?ys$^O$G zd$BvpI~k?~|+u{)eS{ME&`K+Gje)nyNf=OTqkF$&b-(vH%N#@SghaPe!dm_onvy z1wOA{l)p7av2}&M6fgN{f`ojQ1MxhaSew&Wd(X(dmXS_aBOO`ETAAz8kEHTeSwyU3Kf=pQ2LJhyBgZ`(NYf}%f2BL% zVc}Uyv<__QwFGHfm-$1y6IscLS|Y=O7Gd3IO~-t7u5C4WXC+{^urE7*7F1uWY68`1spb9kZ_XU4O-KKlhi~QJ-c80T0Mw+N} z{+e0nd*@U`5xXvfv9&AQ*mtL=mX=LlPajh$q0w50f@e@mhjIIS5}w@G_1D1}w>sdr zm0mFJwRGp};o_%8WP96(E`OVG8rfX9bH0NPZ0e7Un$`VPCN5%E;d*5hL<+ALJUaaB z?%9&kYnw^oIfF#vHcP8DX5^Gt0N$GZ=vG_(dV)H_+k=T8SNN^0#6q)o4Xx0lP#LAB zAph6Xk-aCv}& z2!X>^;zT>@5Kgdl)SJ_#H+|qqyyr}pyp}%JTXvdpue5ixMn|_Mv8-cI8U5k0rND;} zD=)=>KTnI7)aM!$W8b5X-9z`X#4H%}iqfSo+l!hIWm^uF$fXGQk`CPucjx32Zja

    og#=d=q4@mo_!BQCEB!_;>Y&ZZ)_+ zPZ%vf@lDeE!)ZHzto;}pH!A#jYNQhbiTR#j5e!KXT zTU8>wNh1p1;B}=m)5!xrNKf-tS#;mDi&{$~5$1O{mpSJ-Jou2MEQfGfDxwj^gmULg zb;`OaOm0Qc{QqyI&yF~vaLLe#NAn*>W%iAXDl$+dH#`C11L6h^qo83K<51N&^|}vp z=6N;h`T@f|mG0PoEc7F(*(X5Xh9|#nLq53huvpf~!3aLDD`uff{wn(nPX<;M`=v)za65n7fr9pyfStdLJ-_^( z|3D&~oPqlba!GNBl5JdeD`WkKtzR9|<%lB)FP zT(VR#!4@EGa1{=$r#IHu^JE*YQ+&s+!`v>d@-EOI2>0sc}} diff --git a/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian.md b/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian.md index b2f8c87aabc..db3d0e4d80f 100644 --- a/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian.md +++ b/docs/development/nodejs/how-to-install-nodejs-and-nginx-on-debian.md @@ -2,7 +2,8 @@ author: name: Joe D. email: docs@linode.com -description: 'How to install Nginx for static content and Node.js for dynamic requests.' +description: 'How to install NGINX for static content and Node.js for dynamic requests.' +og_description: 'How to install NGINX for static content and Node.js for dynamic requests.' keywords: ["linode guide", "hosting a website", "website", "linode setup", " install node.js", " install nginx", " debian", " front-end requests", " back-end requests"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: ['websites/nodejs/how-to-install-nodejs-and-nginx-on-debian/'] @@ -10,7 +11,7 @@ modified: 2017-04-11 modified_by: name: Linode published: 2015-01-14 -title: 'How to Install Node.js and Nginx on Debian' +title: 'How to Install Node.js and NGINX on Debian' aliases: ['websites/nodejs/how-to-install-nodejs-and-nginx-on-debian/','websites/nodejs/nodejs-nginx-debian/','websites/nodejs/how-to-install-nodejs-and-nginx-on-debian/index.cfm/'] external_resources: - '[Node.js](http://nodejs.org)' @@ -20,6 +21,8 @@ external_resources: - '[npm](https://www.npmjs.com/)' --- +![Install Node.js and NGINX on Debian](/docs/assets/node-nginx/How_to_Install_Nodejs_and_Nginx_on_Debian_smg.jpg) + Node.js is a JavaScript platform which can serve dynamic, responsive content. JavaScript is usually a client-side, browser language like HTML or CSS. However, Node.js is a server-side, JavaScript platform, comparable to PHP. Node.js often works with other popular server applications like NGINX or Apache. In this guide, NGINX is configured to handle front-end, static file requests, and Node.js is configured to handle back-end file requests. ## Install and Configure NGINX diff --git a/docs/email/zimbra/zimbra-on-ubuntu-14-04.md b/docs/email/zimbra/zimbra-on-ubuntu-14-04.md index 14bb4157c77..17304e62725 100644 --- a/docs/email/zimbra/zimbra-on-ubuntu-14-04.md +++ b/docs/email/zimbra/zimbra-on-ubuntu-14-04.md @@ -16,6 +16,7 @@ external_resources: - '[Zimbra OSE Documentation](https://www.zimbra.com/documentation/zimbra-collaboration-open-source)' --- +![Install Zimbra on Ubuntu](/docs/assets/zimbra/Install_Zimbra_Open_Source_Edition_on_Ubuntu_1404_smg.jpg) [Zimbra](https://www.zimbra.com/) is a complete mail server that provides a configured Postfix with OpenDKIM, Amavis, ClamAV, and Nginx, ready to handle mail for one or more domains. Zimbra on a Linode is one of the quickest paths to an up-and-running mail server that you will find. This guide will take you through the Zimbra installation procedure. diff --git a/docs/game-servers/multicraft-on-ubuntu.md b/docs/game-servers/multicraft-on-ubuntu.md index 5c797857422..e17f3541266 100644 --- a/docs/game-servers/multicraft-on-ubuntu.md +++ b/docs/game-servers/multicraft-on-ubuntu.md @@ -16,6 +16,9 @@ title: 'Installing Multicraft on Ubuntu' aliases: ['applications/game-servers/multicraft-on-ubuntu/'] --- +![Installing Multicraft on Ubuntu](/docs/assets/multicraft/Installing_Multicraft_on_Ubuntu_smg.jpg) + + [Multicraft](http://www.multicraft.org/) is a control panel for single or multiple Minecraft servers, with free and paid versions available. This guide will help you install Multicraft on a Linode running Ubuntu 14.04. {{< note >}} diff --git a/docs/networking/squid/squid-http-proxy-centos-6-4.md b/docs/networking/squid/squid-http-proxy-centos-6-4.md index 2242106e597..b79237948e4 100644 --- a/docs/networking/squid/squid-http-proxy-centos-6-4.md +++ b/docs/networking/squid/squid-http-proxy-centos-6-4.md @@ -14,6 +14,8 @@ external_resources: - '[Squid Official Site](http://www.squid-cache.org/)' --- +![HTTP Proxy Using Squid on CentOS](/docs/assets/squid/Creating_an_HTTP_Proxy_Using_Squid_on_CentOS_64_smg.jpg) + Squid is a proxy/cache application with a variety of configurations and uses. This guide will cover using Squid as an HTTP proxy. Please note that unless you follow the last section of the guide [Anonymizing Traffic](#anonymizing-traffic), this will not anonymize your traffic to the outside world, as your originating IP address will still be sent in the X-Forwarded-For header. Additionally, the traffic is not encrypted and will still be visible on your local network. If you are looking for a solution that offers greater security, you may want to look at our guide to [Setting up an SSH Tunnel](/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing) or [Deploy VPN Services with OpenVPN](/docs/networking/vpn/secure-communications-with-openvpn-on-centos-6). {{< note >}} diff --git a/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing.md b/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing.md index 49581f4d7e5..8b3dbae1c03 100644 --- a/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing.md +++ b/docs/networking/ssh/setting-up-an-ssh-tunnel-with-your-linode-for-safe-browsing.md @@ -17,6 +17,8 @@ external_resources: - '[Wikipedia](http://en.wikipedia.org/wiki/SOCKS)' --- +![SSH Tunnel for Safe Browsing](/docs/assets/ssh-tunnel/Setting_up_an_SSH_Tunnel_with_Your_Linode_for_Safe_Browsing_smg.jpg) + Often you may need to browse the web from a public Wi-Fi access point, such as a coffee shop or library, where you do not know the security measures taken by the administrator. Your communications could be snooped on by a malicious user or even by the network owner. This guide will show you how to establish a secure connection for browsing the web through a tunnel between your computer and your Linode. With this method, you will set up a tunnel between your computer and your Linode. All your web traffic will be encrypted and forwarded from your Linode on to its final destination. diff --git a/docs/networking/vpn/pritunl-vpn-ubuntu.md b/docs/networking/vpn/pritunl-vpn-ubuntu.md index 4d3f6f641d2..1c24432a08b 100644 --- a/docs/networking/vpn/pritunl-vpn-ubuntu.md +++ b/docs/networking/vpn/pritunl-vpn-ubuntu.md @@ -15,6 +15,8 @@ contributor: link: https://github.com/agottschling --- +![Pritunl VPN Server and Management Panel on Ubuntu](/docs/assets/pritunl/Pritunl_VPN_Server_and_Management_Panel_on_Ubuntu_1404_smg.jpg) + Pritunl is an open source VPN server and management panel. It gives the user the power of the OpenVPN protocol while using an intuitive web interface. This tutorial will show you how to install, configure, and connect to Pritunl VPN. {{< note >}} diff --git a/docs/platform/nodebalancer/nodebalancer-reference-guide.md b/docs/platform/nodebalancer/nodebalancer-reference-guide.md index bc25d7076eb..bfe1535d6ab 100644 --- a/docs/platform/nodebalancer/nodebalancer-reference-guide.md +++ b/docs/platform/nodebalancer/nodebalancer-reference-guide.md @@ -13,6 +13,8 @@ published: 2011-07-08 title: NodeBalancer Reference Guide --- +![NodeBalancer Reference Guide](/docs/assets/nodebalancer/NodeBalancer_Reference_Guide_smg.jpg) + This is the NodeBalancer reference guide. Please see the [NodeBalancer Getting Started Guide](/docs/platform/nodebalancer/getting-started-with-nodebalancers) for practical examples. ## Adding a NodeBalancer diff --git a/docs/security/backups/backing-up-your-data.md b/docs/security/backups/backing-up-your-data.md index 2f10ccf60c7..ebf1fb09033 100644 --- a/docs/security/backups/backing-up-your-data.md +++ b/docs/security/backups/backing-up-your-data.md @@ -16,6 +16,8 @@ external_resources: - '[WebGnuru''s rsync Tutorial](http://webgnuru.com/linux/rsync_incremental.php)' --- +![Backing Up Your Data](/docs/assets/backing-up-data/Backing_Up_Your_Data_smg.jpg) + If you store any customer or personal data on a Linode, it's important to make regular backups. Data can become corrupted or inaccessible for any number of reasons - accidental deletions, misconfigurations, hacking, or software updates that don't play nicely with the rest of your configuration. Having a recent backup on hand makes it much easier to recover from these mishaps. ## Assess Your Needs diff --git a/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora.md b/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora.md index a271e102e82..4ffd587b4f5 100644 --- a/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora.md +++ b/docs/security/ssl/obtain-a-commercially-signed-ssl-certificate-on-centos-and-fedora.md @@ -15,6 +15,8 @@ external_resources: - '[OpenSSL Documentation](http://www.openssl.org/docs/)' --- +![Obtain a Commercially Signed SSL Certificate on CentOS and Fedora](/docs/assets/ssl-cert-centos/Obtain_a_Commercially_Signed_SSL_Certificate_on_CentOS_and_Fedora_smg.jpg) + SSL/TLS encryption is the standard for securing web traffic. This guide will show you how to install a commercial SSL certificate on your Linode running CentOS or Fedora. As SSL certificates can be used by many kinds of software, the steps provided are generic in nature. If you intend to use your SSL certificate on a website powered by Apache, continue to our [SSL Certificates with Apache on CentOS 7](/docs/security/ssl/ssl-apache2-centos) guide once you've completed the process outlined here. diff --git a/docs/security/ssl/ssl-apache2-centos.md b/docs/security/ssl/ssl-apache2-centos.md index bc473e10bd8..252e02542f9 100644 --- a/docs/security/ssl/ssl-apache2-centos.md +++ b/docs/security/ssl/ssl-apache2-centos.md @@ -15,6 +15,8 @@ external_resources: - '[Setting up an SSL Secured Webserver with CentOS](http://wiki.centos.org/HowTos/Https)' --- +![SSL Certificates with Apache on CentOS](/docs/assets/apache-ssl/SSL_Certificates_with_Apache_on_CentOS_7_smg.jpg) + This guide will show you how to enable SSL to secure websites served through Apache on CentOS or Fedora. ## Before You Begin From 68afdac268833b319b8012d420893f18c022fa78 Mon Sep 17 00:00:00 2001 From: Angel Date: Fri, 2 Feb 2018 14:44:05 -0500 Subject: [PATCH 22/25] [UPDATE] Install Caddy on CentOS * added wording to clarify latest licensing issues * Data center is two words (#1479) * Remove whitespace * Caddy compile Guide added * whitespace --- .../caddy/compile-caddy-from-source.md | 40 +++++++++++++++++++ ...install-and-configure-caddy-on-centos-7.md | 5 ++- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 docs/web-servers/caddy/compile-caddy-from-source.md diff --git a/docs/web-servers/caddy/compile-caddy-from-source.md b/docs/web-servers/caddy/compile-caddy-from-source.md new file mode 100644 index 00000000000..aabebb02cfa --- /dev/null +++ b/docs/web-servers/caddy/compile-caddy-from-source.md @@ -0,0 +1,40 @@ +--- +author: + name: Linode + email: docs@linode.com +description: 'This guide will explain how to build Caddy from source' +keywords: ["caddy", "web server"] +license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' +published: 2017-09-14 +modified: 2018-02-02 +modified_by: + name: Linode +title: 'How To Build Caddy From Source' +external_resources: +- '[Caddy Official Site](https://caddyserver.com)' +--- + +[Caddy](https://caddyserver.com/) is a fast, open-source and security-focused web server written in [Go](https://golang.org/). Caddy includes modern features such as support for virtual hosts, minification of static files, and HTTP/2. Caddy is also the first web-server that can obtain and renew SSL/TLS certificates automatically using [Let's Encrypt](https://letsencrypt.org/). + +Caddy has recently updated their license, clearly defining what is considered personal or enterprise use. A commercial license is now required for commercial or enterprise use, including any installation that uses precompiled Caddy binaries. However, because the project is Apache licensed, by building it from source you have access to the original, [Apache-licensed web server.](https://twitter.com/mholt6/status/908041929438371840). + +## Build Caddy + +You will need a current version of Go on your Linode. Read our guide on [installing Go](/docs/development/go/install-go-on-ubuntu). + +1. Pull Caddy from the source. If you followed our guide on installing Go, the `$GOPATH` is `/usr/local/go`, otherwise use `$GOPATH/drc` + + cd $GOPATH/src + go get -u github.com/mholt/caddy + go get -u github.com/caddyserver/builds + +2. Navigate to the Caddy directory and start the build: + + cd $GOPATH/src/go/src/github.com/mholt/caddy + go run build.go -goos=linux -goarch=amd64 + +3. When the build finishes you will have a Caddy binary in the current directory. Move the binary to `/usr/bin` so that Caddy can function correctly: + + sudo cp caddy /usr/bin/ + +Caddy is now installed on your Linode. Read our guide on [Installing and Configuring Caddy](/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7) to learn more about Caddy. diff --git a/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7.md b/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7.md index 2236bf92b61..682e5f25c14 100644 --- a/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7.md +++ b/docs/web-servers/caddy/install-and-configure-caddy-on-centos-7.md @@ -6,7 +6,7 @@ description: 'This guide will show you how to install and configure Caddy and ru keywords: ["caddy", "web server"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' published: 2017-09-14 -modified: 2017-09-18 +modified: 2018-02-02 modified_by: name: Linode title: 'Install and Configure Caddy on CentOS 7' @@ -44,6 +44,9 @@ external_resources: sudo yum install caddy +{{< caution >}} +Caddy has recently changed their [license](https://caddyserver.com/products/licenses). Please read over the license agreement to ensure that you are not violating the license with your project. To use Caddy without a commercial license, you may need to [compile from source](/docs/web-servers/caddy/compile-caddy-from-source). +{{}} ## Add Web Content 1. Set up a home directory, **web root**, for your website: From 6d347ae3388b3e3b3fd4a9e875eeddec3ec1e5d4 Mon Sep 17 00:00:00 2001 From: Angel Date: Fri, 2 Feb 2018 16:14:53 -0500 Subject: [PATCH 23/25] Copy Edit --- .../tools/split-files-with-split.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md index 11c9dcd18a5..d37d8353160 100644 --- a/docs/tools-reference/tools/split-files-with-split.md +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -4,7 +4,7 @@ author: email: docs@linode.com description: 'Practical examples for using split to divide large files into multiple smaller files.' og_description: 'split is a Unix command line utility for dividing large files into smaller files. This guide provides basic and advanced examples along with explanations of the most common options and parameters.' -keywords: ["split", "files"] +keywords: ["split", "files", "unix", "command-line"] license: '[CC BY-ND 4.0](https://creativecommons.org/licenses/by-nd/4.0)' aliases: [] modified: 2018-01-29 @@ -13,12 +13,11 @@ modified_by: og_description: “Learn how to use split for practical applications including dividing larger files into smaller files.” published: 2018-01-29 title: How to Split Files with split -external_resources: --- ## What is split? -`split` is a Unix command-line utility like `grep` or `tail`. As its name implies, it allows you to divide a larger file into several smaller files. +The Unix command-line utility `split` functions like `grep` or `tail`. `split` allows you to divide a larger file into several smaller files. {{< note >}} Certain options for `split` will not work by default on MacOS because the GNU version of split does not come pre-installed. Use Homebrew to install `brew install coreutils` then invoke in GNU split via `gsplit`. @@ -41,7 +40,7 @@ example line 9 example line 10 {{< /file >}} -2. To demonstrate working with larger files, download the text of Moby Dick: +2. Download the text of Moby Dick to demonstrate working with larger files: wget -O moby-dick.txt https://archive.org/stream/mobydickorwhale01melvuoft/mobydickorwhale01melvuoft_djvu.txt @@ -65,11 +64,11 @@ moby-dick.txt xaa xab xac xad xae xaf xag ... #### Prefix -The first argument to `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the output files. By default, this value is `x`. +The first argument for `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the output files. By default, this value is `x`. split moby-dick.txt moby-dick -Each of the outputted files will begin with `moby-dick`. +Each of the files will begin with `moby-dick`. {{< output >}} moby-dick.txt moby-dickaa moby-dickab moby-dickac ... @@ -93,7 +92,11 @@ The `-b` (or `--size`) option divides files by size rather than number of lines. split -b 100k moby-dick.txt -You can specify this value in megabytes (m), gigabytes (g), terabytes (t), and so on (P, E, Z, up to Y for yottabytes). +You can specify this value in different formats: + +- megabytes - **m** +- gigabytes - **g** +- terabytes - **t** #### Split by Number of Files @@ -132,7 +135,7 @@ The following command combines the options above to split `example.txt` into 4 s example-0 example-1 example-2 example-3 example.txt {{< /output >}} -`split` can also be used to display portions of files without creating subfiles. The following command will break Moby Dick into 100 pieces (without creating any new files) and display the 10th of those pieces: +`split` can also be used to display portions of files **without** creating subfiles. The following command will break Moby Dick into 100 pieces (without creating any new files) and display the 10th of those pieces: split -n 10/100 moby-dick.txt From fd0b61ec9f1f61210c7e1ab4874d65ad2cdbdc2e Mon Sep 17 00:00:00 2001 From: Angel Date: Fri, 2 Feb 2018 16:22:59 -0500 Subject: [PATCH 24/25] TRAVIS --- docs/tools-reference/tools/split-files-with-split.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md index d37d8353160..b57af8559d1 100644 --- a/docs/tools-reference/tools/split-files-with-split.md +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -40,7 +40,7 @@ example line 9 example line 10 {{< /file >}} -2. Download the text of Moby Dick to demonstrate working with larger files: +2. Download the text of Moby Dick to demonstrate working with larger files: wget -O moby-dick.txt https://archive.org/stream/mobydickorwhale01melvuoft/mobydickorwhale01melvuoft_djvu.txt From bff2df172d7886102c417a59aaa1a9bd1c8c2859 Mon Sep 17 00:00:00 2001 From: Jared Date: Fri, 2 Feb 2018 16:55:18 -0500 Subject: [PATCH 25/25] Typo quick fix --- docs/tools-reference/tools/split-files-with-split.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tools-reference/tools/split-files-with-split.md b/docs/tools-reference/tools/split-files-with-split.md index b57af8559d1..a39f003b1e8 100644 --- a/docs/tools-reference/tools/split-files-with-split.md +++ b/docs/tools-reference/tools/split-files-with-split.md @@ -17,7 +17,7 @@ title: How to Split Files with split ## What is split? -The Unix command-line utility `split` functions like `grep` or `tail`. `split` allows you to divide a larger file into several smaller files. +`split` is a Unix command-line utility similar to `grep` or `tail`. It allows you to divide a larger file into several smaller files. {{< note >}} Certain options for `split` will not work by default on MacOS because the GNU version of split does not come pre-installed. Use Homebrew to install `brew install coreutils` then invoke in GNU split via `gsplit`. @@ -64,7 +64,7 @@ moby-dick.txt xaa xab xac xad xae xaf xag ... #### Prefix -The first argument for `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the output files. By default, this value is `x`. +The first argument to `split` is the name of the file, as demonstrated above. An optional second argument allows you to specify the prefix for the output files. By default, this value is `x`. split moby-dick.txt moby-dick